gs pay scale
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 656
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
<<lessSYNOPSIS
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
Download (0.008MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1179 downloads
Pay day Cash Loan 1.0
Pay day Cash Loan toolbar for IE with useful gadgets including a quick launch To-do List, Daily Calorie Counter, Email Notifier, Weather and News Tick... more>> <<less
Download (1101KB)
Added: 2009-04-11 License: Freeware Price: Free
196 downloads
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.
<<lessSYNOPSIS
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.
Download (0.013MB)
Added: 2007-08-11 License: Perl Artistic License Price:
806 downloads
Paymaster 0.9.9
Paymaster is a payroll system and hr package. more>>
Paymaster is an open source free payroll and HR application designed for small to large organisations. Paymaster project works in batch process system for paying employees, using journal entries and a series of ledgers for storing the accounts.
A customisable backed calculates the results to help meet the diverse requirements of payroll. Complex tax laws, leave, varying pay rates, allowances, superannuation are some of the things the payroll system can handle. Paymaster is written for gnome and uses postgresql for its database backend.
<<lessA customisable backed calculates the results to help meet the diverse requirements of payroll. Complex tax laws, leave, varying pay rates, allowances, superannuation are some of the things the payroll system can handle. Paymaster is written for gnome and uses postgresql for its database backend.
Download (0.38MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
938 downloads
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.
<<lessComplex 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.
Download (0.85MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1544 downloads
pyFretCalc 0.0.2
pyFretCalc is a handy little fret spacing calculator for luthiers (Guitar makers). more>>
pyFretCalc is a handy little fret spacing calculator for luthiers (Guitar makers). Simply enter the scale length you want and how many frets, then click on calculate.
To install it, first you have to have the following software installed.
Python http://www.python.org
QT 3 http://www.trolltech.com
PyQt http://www.riverbankcomputing.co.uk
For Linux and other *nixs just untar pyFretCalc-0.0.2.tar.gz to any directory (like $HOME/bin) and run main.py. Future releases will use some sort of packaging.
Windows/OSx users: Follow the same instructions and let me know how it works.
Enhancements:
- Changed to QT3 for the gui
<<lessTo install it, first you have to have the following software installed.
Python http://www.python.org
QT 3 http://www.trolltech.com
PyQt http://www.riverbankcomputing.co.uk
For Linux and other *nixs just untar pyFretCalc-0.0.2.tar.gz to any directory (like $HOME/bin) and run main.py. Future releases will use some sort of packaging.
Windows/OSx users: Follow the same instructions and let me know how it works.
Enhancements:
- Changed to QT3 for the gui
Download (0.025MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1187 downloads
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.
<<lessYou 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.
Download (4.4MB)
Added: 2007-03-14 License: Other/Proprietary License with Source Price:
954 downloads
Stippler 1.0
Stippler is software for turning greyscale images into stippled images. more>>
Stippler is software for turning greyscale images into "stippled" images. Stippler project uses a method described in research by Adrian Secord.
Stippler requires X11, OpenGL, and libpgm. Hardware accelerated OpenGL is required for high performance. To build stippler, simply install any needed development packages and type "make".
Several binaries are created, one for each different output format. These include postscript (stippler_ps), "g-code" to control a 3-axis milling machine (stippler), and a format I used to drive a DAC connected to an XY scope (stippler_dac).
Usage:
[environment] stippler pgmfile [scale [dotcount]] > outputfile
environment settings
VARIABLE_SIZE: if set, use variable-size dots
REVERSE_VIDEO: if set, use black dots on a white background
pgmfile:
A greyscale input file in "pgm" format. It generally must be smaller than the screen resolution.
scale:
internally use SCALExSCALE tiles each the size of the input image to make higher dotcount images give better results. If scale is bigger than 16, it is taken to be the dotcount, and scale is chosen to give approximately 500 pixels per output dot.
dotcount:
use this many dots, instead of a dot count that gives approximately 500 pixels per output dot
<<lessStippler requires X11, OpenGL, and libpgm. Hardware accelerated OpenGL is required for high performance. To build stippler, simply install any needed development packages and type "make".
Several binaries are created, one for each different output format. These include postscript (stippler_ps), "g-code" to control a 3-axis milling machine (stippler), and a format I used to drive a DAC connected to an XY scope (stippler_dac).
Usage:
[environment] stippler pgmfile [scale [dotcount]] > outputfile
environment settings
VARIABLE_SIZE: if set, use variable-size dots
REVERSE_VIDEO: if set, use black dots on a white background
pgmfile:
A greyscale input file in "pgm" format. It generally must be smaller than the screen resolution.
scale:
internally use SCALExSCALE tiles each the size of the input image to make higher dotcount images give better results. If scale is bigger than 16, it is taken to be the dotcount, and scale is chosen to give approximately 500 pixels per output dot.
dotcount:
use this many dots, instead of a dot count that gives approximately 500 pixels per output dot
Download (0.008MB)
Added: 2005-11-29 License: GPL (GNU General Public License) Price:
1426 downloads
Gatotray 1.3
Gatotray project is a colorful tray icon to watch over CPU status including usage, frequency and temperature. more>>
Gatotray project is a colorful tray icon to watch over CPU status including usage, frequency and temperature.
Main features:
- Time scale is non-linear: right-most columns reflect last seconds while lefter columns accumulate older measures, providing an idea of cpu usage evolution for up to 30 minutes in a glimpse. It makes a beautiful smoothing effect too.
- Colors of the usage bars vary with frequency, from green to red.
- Tooltip shows current usage percentage, frequency and temperature numerically.
- Instant temperature is shown graphically, in the form of a nice thermometer :-). Thermometer blinks on high temperature (>=85 C).
- Pops-up a top window with detailed system usage (on click).
<<lessMain features:
- Time scale is non-linear: right-most columns reflect last seconds while lefter columns accumulate older measures, providing an idea of cpu usage evolution for up to 30 minutes in a glimpse. It makes a beautiful smoothing effect too.
- Colors of the usage bars vary with frequency, from green to red.
- Tooltip shows current usage percentage, frequency and temperature numerically.
- Instant temperature is shown graphically, in the form of a nice thermometer :-). Thermometer blinks on high temperature (>=85 C).
- Pops-up a top window with detailed system usage (on click).
Download (0.015MB)
Added: 2007-06-08 License: Public Domain Price:
869 downloads
DebtPayoff 1.2
DebtPayoff is an application which can help you pay off your debt a bit wiser if not quicker. more>>
DebtPayoff is an application which can help you pay off your debt a bit wiser if not quicker. I developed this tool out of a need myself to find out when, if ever, at the current rate, my credit card would be paid off.
I discovered that at the current rate it would take far longer to pay off my debt than I had expected. Since this program is written in Java, it will run on Windows (95, 98, NT, 2000, ME, XP), Linux, Mac, Solaris and a great many other Operating Systems.
With this program you can see:
How many years/months it will take you to pay off your credit card
The actual date the card will be paid off at the current rate
A payment by payment breakdown of what you will spend
How much will be spent on interest overall at that rate.
You can also use this for other loans. For instance, I use it for my college loan.
The hope is that by seeing how much overall you will save by paying an extra $10 or $20 per month, you will be greatly encouraged to pay the debt off that much faster. This application was written in 100% pure Java, so you will need to download suns Jave Runtime Environment(JRE).
<<lessI discovered that at the current rate it would take far longer to pay off my debt than I had expected. Since this program is written in Java, it will run on Windows (95, 98, NT, 2000, ME, XP), Linux, Mac, Solaris and a great many other Operating Systems.
With this program you can see:
How many years/months it will take you to pay off your credit card
The actual date the card will be paid off at the current rate
A payment by payment breakdown of what you will spend
How much will be spent on interest overall at that rate.
You can also use this for other loans. For instance, I use it for my college loan.
The hope is that by seeing how much overall you will save by paying an extra $10 or $20 per month, you will be greatly encouraged to pay the debt off that much faster. This application was written in 100% pure Java, so you will need to download suns Jave Runtime Environment(JRE).
Download (0.017MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1178 downloads
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.
<<lessAlso 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.
Download (0.074MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
848 downloads
Ingres 9.2.0 Build 114
Ingres is a mature, high-performance relational database solution. more>>
Ingres is a mature, high-performance relational database solution.
The project offers scalability, integration and flexibility to leverage information resources across a wide range of platforms, including Linux, Unix, OpenVMS, and Windows.
Reliable and cost effective, it supports mission-critical applications in small to medium-size businesses and high- volume deployments in large scale enterprises.
Enhancements:
- Numerous major enhancements, code speedups, and bugfixes.
<<lessThe project offers scalability, integration and flexibility to leverage information resources across a wide range of platforms, including Linux, Unix, OpenVMS, and Windows.
Reliable and cost effective, it supports mission-critical applications in small to medium-size businesses and high- volume deployments in large scale enterprises.
Enhancements:
- Numerous major enhancements, code speedups, and bugfixes.
Download (MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
819 downloads
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
<<lessMain features:
- full ICMP and ICMPv6 support
- configurable scale and delays
- HIG 2.0 compliance
Download (1.0MB)
Added: 2006-06-23 License: BSD License Price:
1220 downloads
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.
<<lessNumeric 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.
Download (0.053MB)
Added: 2007-05-20 License: GMGPL (GNAT Modified GPL) Price:
908 downloads
Ploppy 0.9
Ploppy is a WordPress plugin for describing the state of your bowel movements using the Bristol Stool Scale. more>>
Ploppy is a WordPress plugin for describing the state of your bowel movements using the Bristol Stool Scale.
For example: Stools: Type 4 - Like a sausage or snake, smooth and soft
The complete Bristol Stool Scale is as follows:
0 Nothing (constipated)
1 Separate hard lumps, like nuts (hard to pass)
2 Sausage-shaped, but lumpy
3 Like a sausage but with cracks on its surface
4 Like a sausage or snake, smooth and soft
5 Soft blobs with clear cut edges (passed easily)
6 Fluffy pieces with ragged edges, mushy
7 Watery, no solid pieces (entirely liquid)
<<lessFor example: Stools: Type 4 - Like a sausage or snake, smooth and soft
The complete Bristol Stool Scale is as follows:
0 Nothing (constipated)
1 Separate hard lumps, like nuts (hard to pass)
2 Sausage-shaped, but lumpy
3 Like a sausage but with cracks on its surface
4 Like a sausage or snake, smooth and soft
5 Soft blobs with clear cut edges (passed easily)
6 Fluffy pieces with ragged edges, mushy
7 Watery, no solid pieces (entirely liquid)
Download (0.020MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1067 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above gs pay scale search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed