scores
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 292
Gscore 0.0.9
Gscore is a non-page-oriented notation program, entirely written from scratch in C & GTK+. more>>
Gscore project is a music notation application. Writing scores becomes as easy as entering text in a word processor.
You can then export it to various file formats (abc is currently supported, other are in progress) and easily share your scores with your friends. You can also import various files, thus you dont need to rewrite scores you already have!
The printing of your scores is not supported yet, but it will be of high quality, since it will use lilypond as a backend.
Writing your music as fast as possible means that you dont need to re-learn a new syntax if you already wrote scores with your favorite text editor (abc, lilypond syntax...). You can also define modes and gscore will use them.
Also, efforts have been made with the user interface: making the software easy to use without having to read tons of documentation.
<<lessYou can then export it to various file formats (abc is currently supported, other are in progress) and easily share your scores with your friends. You can also import various files, thus you dont need to rewrite scores you already have!
The printing of your scores is not supported yet, but it will be of high quality, since it will use lilypond as a backend.
Writing your music as fast as possible means that you dont need to re-learn a new syntax if you already wrote scores with your favorite text editor (abc, lilypond syntax...). You can also define modes and gscore will use them.
Also, efforts have been made with the user interface: making the software easy to use without having to read tons of documentation.
Download (MB)
Added: 2005-07-20 License: GPL (GNU General Public License) Price:
1563 downloads
qscore 0.0.6
qscore project can parse Quake3:Arena (and compatible) server.log into high scores and statistics. more>>
qscore project can parse Quake3:Arena (and compatible) server.log into high scores and statistics.
Options:
--version output version information and exit
--help display this help and exit
Strip & Sort:
--sort=HOW sort player results
HOW=0 do not sort (default)
HOW=1 sort by frags
HOW=2 sort by rounds
HOW=3 sort by average
-r sort reverse
Output:
-o=FILE output into FILE (default: stdout)
--txt output as plain text (default)
--ansi output as text with ANSI colors
--html output as html
--csv output as comma-separated values CSV
Enhancements:
- The whole code was optimized a bit.
- Total game time statistics were added.
- A remote console for Quake3:Arena (and compatible) server administration was added.
<<lessOptions:
--version output version information and exit
--help display this help and exit
Strip & Sort:
--sort=HOW sort player results
HOW=0 do not sort (default)
HOW=1 sort by frags
HOW=2 sort by rounds
HOW=3 sort by average
-r sort reverse
Output:
-o=FILE output into FILE (default: stdout)
--txt output as plain text (default)
--ansi output as text with ANSI colors
--html output as html
--csv output as comma-separated values CSV
Enhancements:
- The whole code was optimized a bit.
- Total game time statistics were added.
- A remote console for Quake3:Arena (and compatible) server administration was added.
Download (0.022MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
815 downloads
Score Rated 0.3
Score Rated is a rated scoring script that uses the rating as a factor in the scoring process. more>>
Score Rated is a rated scoring script which uses the rating as a factor in the scoring process. Higher ratings leds to higher score. The rating is factored in each play.
I make no promises but the script hasnt messed up my system yet.
Usage:
You must use ratings for this script to have any point. Run the script, and it will be used to calculate scores for your tracks from then on. The script can be tweek by editing the file.
Known flaws:
Script reads rating when the song starts playing. Changes made after that is not considered. To make sure a new rating is used you could stop and restart the script or pause and play the song.
I will be looking in this for a future version. Suggestions are welcome.
<<lessI make no promises but the script hasnt messed up my system yet.
Usage:
You must use ratings for this script to have any point. Run the script, and it will be used to calculate scores for your tracks from then on. The script can be tweek by editing the file.
Known flaws:
Script reads rating when the song starts playing. Changes made after that is not considered. To make sure a new rating is used you could stop and restart the script or pause and play the song.
I will be looking in this for a future version. Suggestions are welcome.
Download (0.030MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
966 downloads
ScoreWatch 1.0
ScoreWatch provides a Cricket Score watcher that displays the score in the status bar. more>>
ScoreWatch provides a Cricket Score watcher that displays the score in the status bar.
A Cricket Score watcher that displays the score in the status bar panel based on RSS feeds from popular cricket sites.
Main features:
- Score refreshes automatically in regular intervals.
- Pops up alerts on the fall of a wicket.
- Allows selection of RSS feed source.
- Allows configuration of alerts and refresh interval.
Sources supported:
- cricinfo.com
- ecb.co.uk
<<lessA Cricket Score watcher that displays the score in the status bar panel based on RSS feeds from popular cricket sites.
Main features:
- Score refreshes automatically in regular intervals.
- Pops up alerts on the fall of a wicket.
- Allows selection of RSS feed source.
- Allows configuration of alerts and refresh interval.
Sources supported:
- cricinfo.com
- ecb.co.uk
Download (0.016MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
914 downloads
Games::Score 0.02
Games::Score is a Perl module to keep track of score in games . more>>
Games::Score is a Perl module to keep track of score in games .
SYNOPSIS
use Games::Score;
# these three values are the default ones, by the way
Games::Score->default_score(0);
Games::Score->default_step(1);
Games::Score->step_method(inc);
# start two players
my $player1 = Games::Score->new();
my $player2 = Games::Score->new();
# set a winning condition
Games::Score->victory_is( sub { $_[0] >= 20 } );
# and something to do if it is achieved
Games::Score->on_victory_do( sub { print "Won!" } );
# give points to the players
$player1->add(2);
$player2->step();
# look at section FUNCTIONS for more functionalities, such as
Games::Score->invalidate_if( sub { $_[0] > 20 } );
Games::Score can be use to keep track of several players points in a game, regardless of the starting amount of points, winning and/or losing conditions, etc.
It provides several useful methods so that the user doesnt have to keep testing values to see if theyre valid or if the player condition has changed.
<<lessSYNOPSIS
use Games::Score;
# these three values are the default ones, by the way
Games::Score->default_score(0);
Games::Score->default_step(1);
Games::Score->step_method(inc);
# start two players
my $player1 = Games::Score->new();
my $player2 = Games::Score->new();
# set a winning condition
Games::Score->victory_is( sub { $_[0] >= 20 } );
# and something to do if it is achieved
Games::Score->on_victory_do( sub { print "Won!" } );
# give points to the players
$player1->add(2);
$player2->step();
# look at section FUNCTIONS for more functionalities, such as
Games::Score->invalidate_if( sub { $_[0] > 20 } );
Games::Score can be use to keep track of several players points in a game, regardless of the starting amount of points, winning and/or losing conditions, etc.
It provides several useful methods so that the user doesnt have to keep testing values to see if theyre valid or if the player condition has changed.
Download (0.007MB)
Added: 2006-12-27 License: Perl Artistic License Price:
1031 downloads
Score2Rating 3.0
Score2Rating is a script that converts the scores of your tracks in amaroK to ratings using some pretty accurate intervals. more>>
Score2Rating is a script that converts the scores of your tracks in amaroK to ratings using some pretty accurate intervals. In future versions of Score2Rating, the intervals might become changeable.
This is mostly usable to give you a starting point for using the new rating system in amaroK 1.4 (SVN).
NOTE!
It is recommended that you back up your database (the statistics table at least) before running this script. It should do no harm, but you can never be too safe.
Note that tracks with the same score can get different ratings, this is because amaroK rounds the score that is saved in the database.
An example: If the shown score is 95 (the limit between rating 4 and 5), the database can contain anything from 94.500 to 95.499. If the "real" score is below 95 (94.500-94.999), the track will get a rating of 4, if its above 95 (95.000-95.499), the rating will be 5.
This will happen around all the rating limits (20, 60, 85 and 95).
It is recommended that you back up your database (the statistics table at least) before running this script. It should do no harm, but you can never be too safe...
Usage:
Just start it and then click configure, and it will do everything automagically!
It will tell you tell you (using a popup in the playlist window) when its done.
<<lessThis is mostly usable to give you a starting point for using the new rating system in amaroK 1.4 (SVN).
NOTE!
It is recommended that you back up your database (the statistics table at least) before running this script. It should do no harm, but you can never be too safe.
Note that tracks with the same score can get different ratings, this is because amaroK rounds the score that is saved in the database.
An example: If the shown score is 95 (the limit between rating 4 and 5), the database can contain anything from 94.500 to 95.499. If the "real" score is below 95 (94.500-94.999), the track will get a rating of 4, if its above 95 (95.000-95.499), the rating will be 5.
This will happen around all the rating limits (20, 60, 85 and 95).
It is recommended that you back up your database (the statistics table at least) before running this script. It should do no harm, but you can never be too safe...
Usage:
Just start it and then click configure, and it will do everything automagically!
It will tell you tell you (using a popup in the playlist window) when its done.
Download (0.003MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1183 downloads
Klaverjas Score 0.2
Klaverjas Score is a program to keep track of the scores during a game of klaverjas (a Dutch card game). more>>
Klaverjas Score is a program to keep track of the scores during a game of klaverjas (a Dutch card game).
The program is meant to replace written score keeping, making accurate score listing much easier. It also keeps track of previous games.
Klaverjas Score is very suitable for small groups of people that play together regularly and that would like to have a record and comparison of their games.
<<lessThe program is meant to replace written score keeping, making accurate score listing much easier. It also keeps track of previous games.
Klaverjas Score is very suitable for small groups of people that play together regularly and that would like to have a record and comparison of their games.
Download (0.13MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
893 downloads
ScoreBoard 0.2 Beta
ScoreBoard is a tiny program to keep scores in a quiz. more>>
ScoreBoard is a tiny program to keep scores in a quiz. It allows users to customize the appearance of each group.
ScoreBoard project may comes handy if you are organizing a quiz.
This is my first QT project. I am still trying to get to the subtle details of QT. There maybe bugs in this program. Please contact me if you found any.
Icons used in this application are taken from Crystal Clear icon set and Emotion Icons.
<<lessScoreBoard project may comes handy if you are organizing a quiz.
This is my first QT project. I am still trying to get to the subtle details of QT. There maybe bugs in this program. Please contact me if you found any.
Icons used in this application are taken from Crystal Clear icon set and Emotion Icons.
Download (0.64MB)
Added: 2006-07-29 License: GPL (GNU General Public License) Price:
2153 downloads
Canzoniere 0.2.0
Canzoniere is an Mp3 mood classifier. more>>
Canzoniere is an Mp3 mood classifier.
Canzoniere is an mp3 classification tool, which allows users to classify their songs using personal criteria such as artist score, song score and moods (i.e. romantic, relax, party, etc.). Users can then select their mood and play songs that match.
<<lessCanzoniere is an mp3 classification tool, which allows users to classify their songs using personal criteria such as artist score, song score and moods (i.e. romantic, relax, party, etc.). Users can then select their mood and play songs that match.
Download (0.60MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1565 downloads
JTourney 1.0
JTourney is a Java based tool to support tournament directors conducting small to medium scale round based tournaments. more>>
JTourney is a Java based tool to support tournament directors conducting small to medium scale round based tournaments for multiplayer games.
JTourney tries to encaspulate over 10 years of experience with various tournament formats for different games. Those tournaments were conducted either manually or with the help (of many kind people and) a predecessor programm, which finally became too old and too small.
The need for JTourney arose since the tournaments conducted were rather flexibile: Players could hop on and hop off between rounds, the games played might allow variable number of players. Beside this flexibility JTourney could of course be used to support more rigid tournament formats, but this is not its focus.
Main features:
- Keeping player lists.
- Playcing players on tables for next round by variuos strategies.
- Generate score sheets for tables.
- Keeping track of game scores
- Calculating player scores, tiebreakers and rankings
How it works?
JTourney is a very simple design. It merely parses text files into its memory and composes new ones on design. While parsing its internal datafiles it also feeds this internal information to the RenderMode, therefore it provides you with more beautiful information than just the raw internal text files.
Note the system never stores things like standings or total scores of players internally. It turned out, that parsing input is very fast and never is a real problem for (say) 100 participants and 12 rounds (this is not a limit, it can most likely handle much more participants and more rounds) on a recent PC.
While this architecture is from the computer stone age it is flexible and powerful. Maybe a bit volatile, but after all it is entirely appropriate to put whatever kind of GUI on top if necessary!
<<lessJTourney tries to encaspulate over 10 years of experience with various tournament formats for different games. Those tournaments were conducted either manually or with the help (of many kind people and) a predecessor programm, which finally became too old and too small.
The need for JTourney arose since the tournaments conducted were rather flexibile: Players could hop on and hop off between rounds, the games played might allow variable number of players. Beside this flexibility JTourney could of course be used to support more rigid tournament formats, but this is not its focus.
Main features:
- Keeping player lists.
- Playcing players on tables for next round by variuos strategies.
- Generate score sheets for tables.
- Keeping track of game scores
- Calculating player scores, tiebreakers and rankings
How it works?
JTourney is a very simple design. It merely parses text files into its memory and composes new ones on design. While parsing its internal datafiles it also feeds this internal information to the RenderMode, therefore it provides you with more beautiful information than just the raw internal text files.
Note the system never stores things like standings or total scores of players internally. It turned out, that parsing input is very fast and never is a real problem for (say) 100 participants and 12 rounds (this is not a limit, it can most likely handle much more participants and more rounds) on a recent PC.
While this architecture is from the computer stone age it is flexible and powerful. Maybe a bit volatile, but after all it is entirely appropriate to put whatever kind of GUI on top if necessary!
Download (1.8MB)
Added: 2006-03-23 License: LGPL (GNU Lesser General Public License) Price:
1310 downloads
Score Reading Trainer 0.1.3
Score Reading Trainer helps you improve your (musical) score reading skills by practicing with random scores. more>>
Score Reading Trainer helps you improve your (musical) score reading skills by practicing with random scores.
It works in a very simple way, you choose the clef, the key and the accidentals you want to practice as well as thee range of notes and then, the program generates a on-screen score with that parameters but randomizing the notes and the accidentals (and everything else that is randomizable).
The keys of the keyboard are mapped to the notes like in a piano (it would be nice to support midi in the future) and all you have to do, is press the right key for the first note you see in the score on the screen.
If you pressed the right key, the note will disapear and replaced by the second one, a diferent note, and you have to repeat the process.
As the notes are generated randomly, theres no way one can predict the following note and since several notes (as much as the screen allows) are on the screen, one can also train pre-reading (reading ahead of the current one) of the notes.
The program doesnt emit any sound (at least, yet) and its not inteded to teach rithmic or melodic concepts.
Enhancements:
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Try harder not to leave any extra line floating arround.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Respect the position (over the third line) where notes are inverted.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Limits wasnt really respected in other clefs than G2.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Solved important bug. Extre lines was not being shown correctly (http://sourceforge.net/tracker/index.php?func=detail&aid=909427&group_id=97653&atid=618659).
<<lessIt works in a very simple way, you choose the clef, the key and the accidentals you want to practice as well as thee range of notes and then, the program generates a on-screen score with that parameters but randomizing the notes and the accidentals (and everything else that is randomizable).
The keys of the keyboard are mapped to the notes like in a piano (it would be nice to support midi in the future) and all you have to do, is press the right key for the first note you see in the score on the screen.
If you pressed the right key, the note will disapear and replaced by the second one, a diferent note, and you have to repeat the process.
As the notes are generated randomly, theres no way one can predict the following note and since several notes (as much as the screen allows) are on the screen, one can also train pre-reading (reading ahead of the current one) of the notes.
The program doesnt emit any sound (at least, yet) and its not inteded to teach rithmic or melodic concepts.
Enhancements:
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Try harder not to leave any extra line floating arround.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Respect the position (over the third line) where notes are inverted.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Limits wasnt really respected in other clefs than G2.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Solved important bug. Extre lines was not being shown correctly (http://sourceforge.net/tracker/index.php?func=detail&aid=909427&group_id=97653&atid=618659).
Download (0.13MB)
Added: 2005-06-01 License: GPL (GNU General Public License) Price:
1611 downloads
Console Lines 1.0.4
Console Lines is a Lines game for the Unix terminal. more>>
Console Lines is a "Lines" game for the Unix terminal. There is no in-game help available right now, so check the README file. To move the cursor, use arrows (or jkhl), to select or to move a chip, use space. To instantly quit, use q. Console Lines requires a certain terminal size, supports a mouse (curses or GPM), and works with various ncurses libraries.
You will need an ANSI standart C compiler, GNU make, and a decent curses library that supports colors.
The current lists of operation systems tested:
Linux, glibc 2.2
Solaris 9
OpenBSD 3.8
CygWin 5
Enhancements:
- Support for smaller terminals (as small as 19x19).
- Support for terminal resize.
- Support for black and white terminals.
- Support for command line options.
- A workaround for a nasty ALTLinux/Debian GPM bug.
- Persistant high scores.
- A man page has been added.
<<lessYou will need an ANSI standart C compiler, GNU make, and a decent curses library that supports colors.
The current lists of operation systems tested:
Linux, glibc 2.2
Solaris 9
OpenBSD 3.8
CygWin 5
Enhancements:
- Support for smaller terminals (as small as 19x19).
- Support for terminal resize.
- Support for black and white terminals.
- Support for command line options.
- A workaround for a nasty ALTLinux/Debian GPM bug.
- Persistant high scores.
- A man page has been added.
Download (0.070MB)
Added: 2006-10-21 License: GPL (GNU General Public License) Price:
1100 downloads
Cisco::IPPhone 0.05
Cisco::IPPhone is a package for creating Cisco IPPhone XML objects. more>>
Cisco::IPPhone is a package for creating Cisco IPPhone XML objects.
SYNOPSIS
use Cisco::IPPhone;
$mytext = new Cisco::IPPhone;
$mytext->Text({ Title => "My Title", Prompt => "My Prompt",
Text => "My Text" });
$mytext->AddSoftKeyItem( { Name => "Update", URL => "SoftKey:Update",
Position => "1" });
$mytext->AddSoftKeyItem( { Name => "Exit", URL => "SoftKey:Exit",
Position => "2" });
print $mytext->Content;
Cisco::IPPhone - Package for creating Cisco IPPhone XML applications
This Cisco IPPhone module was created to provide a simple convenient method to display Cisco IP Phone objects and gather input from a Cisco 7940 or 7960 IP Phone. This module supports all known Cisco XML objects for 7940 and 7960 phones. Knowledge of Cisco XML syntax is not a requirement.
This Perl module gives the ability to use simple PERL objects to display XML on the IP Phone unlike to Cisco Software Development Kit (SDK) which uses Microsoft IIS Server, ASPs, JSPs, Javascript, COM Objects, and requires knowledge of XML syntax.
The following list gives typical services that might be supplied to a phone:
- Weather
- Stock information
- Contact information
- Company news
- To-do lists
- Real-time NFL scores
- Daily schedule
<<lessSYNOPSIS
use Cisco::IPPhone;
$mytext = new Cisco::IPPhone;
$mytext->Text({ Title => "My Title", Prompt => "My Prompt",
Text => "My Text" });
$mytext->AddSoftKeyItem( { Name => "Update", URL => "SoftKey:Update",
Position => "1" });
$mytext->AddSoftKeyItem( { Name => "Exit", URL => "SoftKey:Exit",
Position => "2" });
print $mytext->Content;
Cisco::IPPhone - Package for creating Cisco IPPhone XML applications
This Cisco IPPhone module was created to provide a simple convenient method to display Cisco IP Phone objects and gather input from a Cisco 7940 or 7960 IP Phone. This module supports all known Cisco XML objects for 7940 and 7960 phones. Knowledge of Cisco XML syntax is not a requirement.
This Perl module gives the ability to use simple PERL objects to display XML on the IP Phone unlike to Cisco Software Development Kit (SDK) which uses Microsoft IIS Server, ASPs, JSPs, Javascript, COM Objects, and requires knowledge of XML syntax.
The following list gives typical services that might be supplied to a phone:
- Weather
- Stock information
- Contact information
- Company news
- To-do lists
- Real-time NFL scores
- Daily schedule
Download (0.17MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1202 downloads
Score Cluster System Software 6.0.1
Score Cluster System Software is a cluster system software is designed for the high performance cluster environment. more>>
Score Cluster System Software is a cluster system software is designed for the high performance cluster environment without using the TCP/IP protocol stack. Score Cluster System Software features high performance communication, efficient computer management and single-system image, higher usability and availabily, and a seamless cluster environment.
Enhancements:
- Support for PM/Myrinet2XP devices and X11 relay has been restored.
- This release adds checkpointing, autoconfiguration, and dynamic reconfiguration.
- It eliminates the need for kernel patching through the use of modules.
- There are many bugfixes.
<<lessEnhancements:
- Support for PM/Myrinet2XP devices and X11 relay has been restored.
- This release adds checkpointing, autoconfiguration, and dynamic reconfiguration.
- It eliminates the need for kernel patching through the use of modules.
- There are many bugfixes.
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1032 downloads

ScoreBoard for Linux 0.2 Beta
ScoreBoard is a tiny program to keep scores in a quiz. more>> ScoreBoard is a tiny program to keep scores in a quiz. It allows users to customize the appearance of each group.<<less
Download (647KB)
Added: 2009-04-25 License: Freeware Price: Free
181 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 scores 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