Main > Free Download Search >

Free 4.0 grading scale software for linux

4.0 grading scale

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 846
GD::XYScale 1.2

GD::XYScale 1.2


GD::XYScale can draw a 2D X-Y scale and use it. more>>
GD::XYScale can draw a 2D X-Y scale and use it.

SYNOPSIS

use GD;
use GD::XYScale;

$image = GD::Image->new($width,$height);
$white = $image->colorAllocate(255,255,255);
$black = $image->colorAllocate(0,0,0);
$blue = $image->colorAllocate(0,0,255);
# continue using your GD image object.

$scale = GD::XYScale->new($image);

# put the origin at x=50, y=80 and zoom-out with .5
$scale->origin(50,80,.5);
$scale->draw(1.5,$black);
$scale->name(up,
x scale,
y scale,
$blue,
gdSmallFont,
show_zoom,
$blue);

# draw some geomethric objects, curves,
# plot something... etc...

This module adds a 2D scale to your GD image. It needs a GD::Image object to work.
First versions were modifying GD::Image namespace and I then realized that this is not a good thing. In this version and future versions, the module will use its own namespace, so check your codes if you tried this module before version 1.2

<<less
Download (0.008MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1179 downloads
PHP Advanced Graphing Class 1.4

PHP Advanced Graphing Class 1.4


PHP Advanced Graphing Class is a PHP class that can be used to generate line, bar, and 2D/3D pie graphs. more>>
PHP Advanced Graphing Class is a PHP class that can be used to generate line, bar, and 2D/3D pie graphs from multiple data sets. PHP Advanced Graphing Class offers many style and data formatting options.
The graphs can be built from data defined with PHP code or with data imported from XML or CSV files. It can use custom colors, custom data point shapes or images, custom end arrows, an optional inline format, a custom graph scale, etc.
The graphs can be generated in PNG format either to a file or served as the current script output.
Enhancements:
- Bar charts and 2D/3D pie charts were added.
<<less
Download (MB)
Added: 2006-04-10 License: Public Domain Price:
1298 downloads
Strings edit 1.9

Strings edit 1.9


Strings edit is a library that provides I/O facilities for integer, floating-point, Roman numbers, and strings. more>>
Strings edit is a library that provides I/O facilities for integer, floating-point, Roman numbers, and strings. Both input and output subroutines support string pointers for consequent stream processing. The output can be aligned in a fixed size field with padding.
Numeric input can be checked against expected values range to be either saturated or to raise an exception. For floating-point output either relative or absolute output precision can be specified. UTF-8 encoded strings are supported.
Enhancements:
- GPS project files were added for GNAT users.
- A bug was fixed in Strings_Edit.Generic_Scale in which the caclculated precision was of the minor scale tick rather than of the major tick.
<<less
Download (0.053MB)
Added: 2007-05-20 License: GMGPL (GNAT Modified GPL) Price:
908 downloads
GradeL 0.8.2

GradeL 0.8.2


GradeL (Gradebook for Linux) is a gradebook program for teachers. more>>
GradeL (Gradebook for Linux) is a gradebook program for teachers. Written in Gambas, this program includes some features I felt were important in a gradebook program. While still buggy and incomplete, it is functional.

GradeL requires the development version of Gambas, currently version 1.9.26. GradeL uses Gambas components gb.eval, gb.qt, gb.qt.ext, gb.qt.kde, and gb.qt.kde.html.

Although my coding technique is at times inefficient, GradeL does meet my needs. It features a spreadsheet-style main screen with vertical column headers that include the assignment name, category, and points. Assignments are grouped in categories for reporting purposes. Teachers may enter numerical scores or alpha-numeric codes for student scores.

These codes may count either zero points or excuse the student from that particular assignment. Gambas Grade provides practical reports designed to give plenty of information while conserving paper. Current reports include complete class report, single marking period progress report, and progress reports for all students. One other feature that I really like is an average row included in the spreadsheet that displays the average for the class on every assignment and for the overall marking period grade.

GradeL project is still in its infancy. The program still has bugs and incomplete features. I am making it available now as a preview for review and testing purposes. You may not want to use it as your primary grading program at this time.

<<less
Download (0.50MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
836 downloads
Music::Scales 0.07

Music::Scales 0.07


Music::Scales can supply necessary notes / offsets for musical scales. more>>
Music::Scales can supply necessary notes / offsets for musical scales.

SYNOPSIS

use Music::Scales;

my @maj = get_scale_notes(Eb); # defaults to major
print join(" ",@maj); # "Eb F G Ab Bb C D"
my @blues = get_scale_nums(bl); # bl,blu,blue,blues
print join(" ",@blues); # "0 3 5 6 7 10"
my %min = get_scale_offsets (G,mm,1); # descending melodic minor
print map {"$_=$min{$_} "} sort keys %min; # "A=0 B=-1 C=0 D=0 E=-1 F=0 G=0"

Given a keynote A-G(#/b) and a scale-name, will return the scale, either as an array of notenames or as a hash of semitone-offsets for each note.

METHODS

get_scale_nums($scale[,$descending])

returns an array of semitone offsets for the requested scale, ascending/descending the given scale for one octave. The descending flag determines the direction of the scale, and also affects those scales (such as melodic minor) where the notes vary depending upon the direction. Scaletypes and valid values for $scale are listed below.

get_scale_notes($notename[,$scale,$descending,$keypref])

returns an array of notenames, starting from the given keynote. Enharmonic equivalencies (whether to use F# or Gb, for instance) are calculated based on the keynote and the scale. Basically, it attempts to do the Right Thing if the scale is an 8-note one, (the 7th in G harmonic minor being F# rather than Gb, although G minor is a flat key), but for any other scales, (Chromatic, blues etc.) it picks equivalencies based upon the keynote. This can be overidden with $keypref, setting to be either # or b for sharps and flats respectively. Cruftiness abounds here.

get_scale_offsets($notename[,$scale,$descending,$keypref])

as get_scale_notes(), except it returns a hash of notenames with the values being a semitone offset (-1, 0 or 1) as shown in the synopsis.

get_scale_MIDI($notename,$octave[,$scale,$descending])

as get_scale_notes(), but returns an array of MIDI note-numbers, given an octave number (-1..9).

get_scale_PDL($notename,$octave[,$scale,$descending])

as get_scale_MIDI(), but returns an array of PDL-format notes.

is_scale($scalename)

returns true if $scalename is a valid scale name used in this module.

<<less
Download (0.013MB)
Added: 2007-08-11 License: Perl Artistic License Price:
806 downloads
The Gimp 2.4.0 RC1

The Gimp 2.4.0 RC1


The GIMP is the GNU Image Manipulation Program. more>>
The GIMP is the GNU Image Manipulation Program. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. The Gimp works on many operating systems, in many languages.
GIMP is an acronym for GNU Image Manipulation Program. It is a freely distributed program for such tasks as photo retouching, image composition and image authoring.
It has many capabilities. It can be used as a simple paint program, an expert quality photo retouching program, an online batch processing system, a mass production image renderer, an image format converter, etc.
GIMP is expandable and extensible. It is designed to be augmented with plug-ins and extensions to do just about anything. The advanced scripting interface allows everything from the simplest task to the most complex image manipulation procedures to be easily scripted.
GIMP is written and developed under X11 on UNIX platforms.
Main features:
Painting
- Full suite of painting tools including Brush, Pencil, Airbrush, Clone, etc.
- Sub-pixel sampling for all paint tools for high quality anti-aliasing
- Extremely powerful gradient editor and blend tool
- Supports custom brushes and patterns
System
- Tile based memory management so image size is limited only by available disk space
- Virtually unlimited number of images open at one time
Advanced Manipulation
- Full alpha channel support
- Layers and channels
- Multiple Undo/Redo (limited only by diskspace)
- Editable text layers
- Transformation tools including rotate, scale, shear and flip
- Selection tools including rectangle, ellipse, free, fuzzy and intelligent
- Advanced path tool doing bezier and polygonal selections.
- Transformable paths, transformable selections.
- Quickmask to paint a selection.
Extensible
- A Procedural Database for calling internal GIMP functions from external programs as in Script-fu
- Advanced scripting capabilities (Scheme, Python, Perl)
- Plug-ins which allow for the easy addition of new file formats and new effect filters
- Over 100 plug-ins already available
Animation
- Load and save animations in a convenient frame-as-layer format
- MNG support
- Frame Navigator (in GAP, the GIMP Animation Package)
- Onion Skin (in GAP, the GIMP Animation Package)
- Bluebox (in GAP, the GIMP Animation Package)
File Handling
- File formats supported include bmp, gif, jpeg, mng, pcx, pdf, png, ps, psd, svg, tiff, tga, xpm, and many others
- Load, display, convert, save to many file formats
- SVG path import/export
<<less
Download (16MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
100334 downloads
Online Grades 3.2.2

Online Grades 3.2.2


Online Grades is the leading free-software project that allows K-12+ student grades to be posted onto a dynamic web site. more>>
Online Grades is the leading free-software project that allows K-12+ student grades to be posted onto a dynamic web site. Online Grades is not a web-based gradebook. Instead, it accepts grade export information from several popular gradebook software programs such as Easy Grade Pro, Gradekeeper, Misty Citys Grade Machine, and PGGP and places the grade information online securely.
Student, Teachers, Parents, and Administrators each get their own personal login into Online Grades, which allows them to see all of the grades in all of their classes. If parents have more than one student at a school or district, they only need one parent login to see the grades of all of their students.
The Online Grades software is free; there is no software cost to post your grade results online. However, to use the software, both an internet-accessible web server with PHP and access to a MySQL database are necessary. Because of these requirements, Online Grades is commonly set up and configured by a school or district tech person. If your school or district does not have the resources to set up Online Grades, you can alternatively buy hosting for your grades. Hosting is even available for individual teachers interested in using Online Grades.
Online Grades is free because the software is developed by volunteers and is in-part sponsored by the schools using the Online Grades software. Online Grades was originally based on the SourceForge project Basmati, and while backward compatibility has been maintained, Online Grades has many more features than the original Basmati grade posting software.
Main features:
Administration Center
- Password Protected
- Support for Multiple Administrators
- Admin Editor/Deletion
- Staff Editor/Deletion
- Built-in Email Client, Email Any or All Staff from with-in appication
- Email Welcome Info & Forgotten Passwords
- Easily Look up Student Password
- Helpful SQL Tools (Need need to know sql)
- Posting History (See What Others Are Doing & When)
- Add Students
- Edit/Delete Students
- Online Grades Stats
- Update Checker
- Ability to run a SQL Query
- Skinable & Skin Chooser
Faculty Center
- Password Protected
- Lost Password Recovery
- Simple and Easy to Use
- View any student grades with a couple clicks
- Server Time Check (Know when you submitted)
- Ability to Email Other Staff Members
- Add Notes To Entire Class
- Add Notes To One Student (Privite Note)
- Posting History (See What Others Are Doing)
- Easy Removal of Classes
- Ability to Change Personal Information
- Skinable
Student Center
- No Names
- Simple and Easy to Use
- Random Password
- Lost Password Recovery
- Shows All Classes In One Easy Place
- Each Class Has Detailed Grade book (See Demo)
- Show All Class Memo
- Email Teachers within Application (No Email Client Needed)
- Preferences
- Skinable
Parent Center
- Ability to have multiple student per account (login)
- Simple and Easy to Use
- Random Password
- Lost Password Recovery
- Shows All Classes In One Easy Place
- Each Class Has Detailed Grade book (See Demo)
- Show All Class Memo
- Email Teachers within Application (No Email Client Needed)
- Preferences
- Skinable
Enhancements:
- This release incorporates several bugfixes and adds a few new minor features.
- There are no database changes this release, so upgrading consists only of upgrading the files on your server to the new versions.
- A bug which caused all interfaces to go offline when the student area is set to be offline was fixed.
- The bug which prevented faculty from changing their password was fixed.
<<less
Download (0.35MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1102 downloads
GNU Ocrad 0.17

GNU Ocrad 0.17


Ocrad is the GNU OCR (Optical Character Recognition) program, implemented as a filter and based on a feature extraction method. more>>
GNU Ocrad is an OCR (Optical Character Recognition) program implemented as a filter and based on a feature extraction method.
Also includes a layout analyser able to separate the columns or blocks of text normally found on printed pages.
Ocrad can be used as a stand-alone console application, or as a backend to other programs.
Enhancements:
- The license has been updated to GPL version 3 or later.
- The "--scale" option no longer suppresses ORF output.
- The removal of thick frames has been improved.
- "Textline" now accepts more than one big initial.
- The files "configure" and "Makefile.in" have been modified to be more GNU-standards compliant.
<<less
Download (0.074MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
848 downloads
Ggradebook 0.91

Ggradebook 0.91


Ggradebook project is a fully-featured GNU gradebook. more>>
Ggradebook project is a fully-featured GNU gradebook.
An application for tracking student grades for teachers. It uses GTK+ and can optionally be compiled to use GNOME
Enhancements:
- Added possibility to set default preferences.
- It is now possible to associate a percentage with letters.
- Letters and numeric scale now configurable.
- Made some minor chang
<<less
Download (0.14MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1103 downloads
Gestalter 0.7.6

Gestalter 0.7.6


Gestalter is a free vector drawing program. more>>
Gestalter is a free vector drawing program. The user interface is loosely modelled after the famous Illustrator by Adobe. The central element is the Bezier curve used as a base part for almost every other object.

Complex paths are possible, compound paths can be constructed, grouping of elements is enabled and everything can be screened by a mask. Multiple layers are possible, one can choose between two display modes: a antialiased and a wireframe one. The native storage format is a subset of SVG, printing output is Postscript.

You can place pixel images and transform (rotate, skew, scale, etc.) but not edit them (use GIMP for editing pixel image data). You can open the Postscript output of gestalter in GIMP to use your drawings on The Net.

<<less
Download (0.85MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1544 downloads
OpenGrade 2.7.15

OpenGrade 2.7.15


OpenGrade is software for teachers to keep track of grades. more>>
OpenGrade is software for teachers to keep track of grades. OpenGrade can put the students grade reports on a Web server and allow the students password-protected access to them.
Main features:
- A variety of reports can be created.
- Grades can be uploaded to a web server, where students can have password-protected access to them.
- If you use a set grading scale, you can have the software use it to compute letter grades automatically.
- Grades can be based on total points, or on a weighted average of scores in various categories such as exams and quizzes.
- You can drop the lowest grade (or the N lowest grades) from a given category.
- Students can be dropped and later reinstated without losing all their grades.
- There is support for extra-credit categories, and for categories that dont count towards the students grade.
- Gradebook files are password-protected with a digital watermark, so you can detect tampering.
- Gradebook files are in a plain-text format, which makes it easy to work with them using Unix utilities.
You might also want to check out Ggradebook and Grades, which are two other open-source programs along similar lines. There is a category for this kind of software on Open Directory.
OpenGrade is designed to cooperate with my software Spotter. By using the two pieces of software together, you can post grade reports on the web, keep track of your students e-mail addresses, and collect certain kinds of work from them online.
Enhancements:
- This version correctly recognizes Perl/Tk 804.027 as being compatible with itself, rather than insisting on 804.029 or higher.
<<less
Download (0.20MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
Link Monitor Applet 2.1

Link Monitor Applet 2.1


Link Monitor Applet is a GNOME applet displaying the round-trip time to one or more hosts. more>>
Link Monitor Applet is a GNOME Panel Applet displaying the round-trip time to one or more hosts in a bar graph.
Main features:
- full ICMP and ICMPv6 support
- configurable scale and delays
- HIG 2.0 compliance
<<less
Download (1.0MB)
Added: 2006-06-23 License: BSD License Price:
1220 downloads
phpGradeBook 1.9a

phpGradeBook 1.9a


phpGradeBook project is a Web-based grade book. more>>
phpGradeBook project is a Web-based grade book.
phpGradeBook is a Web-based grade book that allows teachers to easily post students grades online.
Students can view their own grade by entering their ID or they can view entire class grades with a certain degree of anonymity.
It includes support for multiple languages.
Enhancements:
- fixed bug in SQL backup restore
<<less
Download (0.054MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1094 downloads
jPdfCalendar 0.8.0

jPdfCalendar 0.8.0


jPdfCalendar is a tool which allows you to create printable calendar pages as a PDF document from any of your images. more>>
jPdfCalendar project allows you to create printable calendar pages as a PDF document from any of your images. The iText library is used to create the PDF itself.
You can add your own "special days" for each month, customize colors, fonts, borders etc.
To create calendar file, you should prepare xml file which structure is described in dtd file. The dtd structure also is described in graphical manner in image file. These information can be found in dtd folder.
To create a sample, use bin/createme.sh script. This script will create sample/calendar_public_en_2007.pdf file according to sample/calendar_public_en.xml project and with images from sample/pictures folder.
Requirements
You need Java 1.5 (or higher) JRE in your OS.
This tool uses iText library (http://www.lowagie.com/iText/) to manipulate of PDFs.
Well-known problem
If image is too large, especially if a hight of image large when page hight, the auto scaling works not properly (the day table is pulled out on the next page). In this case it is necessary to use "scale" tag and set scale factor manually.
Additional tool
Also here is some additional tool, PdfImageRipper. This tool has been created to extract (rip) images from PDF files.
It uses iText functionality to do it and you can think about it as Front-End-Tool. To use this tool, get bin/imgrip.sh script.
Enhancements:
- Moon phases are now displayed in the days table.
- The first day of week is now dependent on the locale, but can be changed in XML.
<<less
Download (4.4MB)
Added: 2007-03-14 License: Other/Proprietary License with Source Price:
954 downloads
CAD::Drawing::Manipulate::Graphics 0.26

CAD::Drawing::Manipulate::Graphics 0.26


CAD::Drawing::Manipulate::Graphics - Gimp meets CAD. more>>
CAD::Drawing::Manipulate::Graphics - Gimp meets CAD.

Methods

All of these are CAD::Drawing methods (I force my own inheritance:)

image_init

Initialize the image at $addr based on the value at the fullpath key. This establishes the contained Image::Magick object and loads the image into memory in the image_handle key.

$drw->image_init($addr);

image_crop

Crops an image and its definition (actually, changes its insert point) according to the points given by @crop_points (which maybe had better be within the object (but I dont really sweat that.))

@crop_points should be in world coordinates as follows:

@crop_points = (
[$lower_left_x , $lower_left_y ],
[$upper_right_x, $upper_right_y],
);
# note that you can get these as
# ($drw->getExtentsRec($something))[0,2]

$drw->image_crop($addr, @crop_points);

image_scale

Scales both the image and the definition by $scale, starting at @base_point.

$drw->image_scale($addr, $scale, @base_point);

image_rotate

This leaves the definition orthoganal, expands the underlying image object, and resets the insert point and size properties accordingly.

$drw->image_rotate($addr, $angle, @point);

The current implementation does not handle the change to the image clipping boundary.

image_swap_context

This involves a scaling of the image (the contexts should be aligned over each other at this point or everything will go to hell.) Do your own move / rotate / crop before calling this, because all this does is to scale the underlying image object such that the vec property of the image definition at $dest_addr can be used correctly.

Note that this does not "swap" the image to $dest_addr, rather it uses the image definition of $dest_addr to change the image object and definition at $source_addr.
Also note that the image must fit completely inside (I think) of the destination in order for the composite to work correctly.

$drw->image_swap_context($source_addr, $dest_addr);

<<less
Download (0.039MB)
Added: 2006-10-25 License: Perl Artistic License Price:
1094 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5