total
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 378
TEA Total 0.4
TEA Total is a very small 128 bit private key based encryption/decryption system . more>>
TEA Total is a very small 128 bit private key based encryption/decryption system which uses the block variant of TEA (Tiny Encryption Algorithm).
TEA is said to be several times faster than DES, as well as being much smaller and possibly more secure. It also isnt encumbered by any patents and the reference implementation is in the public domain.
Currently TEA Total only supports encryption and decryption of files (with optional compression and/or Base64 ASCII encoding). I am writing a set of TEA based encrypted tunnel programs which will allow you to wrap applications such that their input and output will be transparently forwarded over a network in encrypted form.
About the name: TEA Total is a play on the TEA encryption algorithm which is at the heart of the package, and the phrase "tee total"; a term used to refer to a person who does not drink alcohol. This is appropriate because I am tee total myself.
To build TEA Total in a Unix type environment, edit config.inc to select the options you want to build, your install prefix, and your architecture type, then type make. Check that the compares succeed, then run make install (possibly as root).
After it builds, it will run through a set of self tests. Read the output carefully to make sure that they have all passed.
Note that the Makefile uses some GNU-Makeisms, so on systems which have pmake or something else by default, you may have to install gnu make instead and run it with "gmake".
If you are building on a currently unsupported architecture type, you will need to add a new architecture type description to config.inc and arch.h.
The program can be installed using "make install".
<<lessTEA is said to be several times faster than DES, as well as being much smaller and possibly more secure. It also isnt encumbered by any patents and the reference implementation is in the public domain.
Currently TEA Total only supports encryption and decryption of files (with optional compression and/or Base64 ASCII encoding). I am writing a set of TEA based encrypted tunnel programs which will allow you to wrap applications such that their input and output will be transparently forwarded over a network in encrypted form.
About the name: TEA Total is a play on the TEA encryption algorithm which is at the heart of the package, and the phrase "tee total"; a term used to refer to a person who does not drink alcohol. This is appropriate because I am tee total myself.
To build TEA Total in a Unix type environment, edit config.inc to select the options you want to build, your install prefix, and your architecture type, then type make. Check that the compares succeed, then run make install (possibly as root).
After it builds, it will run through a set of self tests. Read the output carefully to make sure that they have all passed.
Note that the Makefile uses some GNU-Makeisms, so on systems which have pmake or something else by default, you may have to install gnu make instead and run it with "gmake".
If you are building on a currently unsupported architecture type, you will need to add a new architecture type description to config.inc and arch.h.
The program can be installed using "make install".
Download (0.017MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1199 downloads
Math::TotalBuilder 1.10
Math::TotalBuilder is a Perl module to build a whole total out of valued pieces. more>>
Math::TotalBuilder is a Perl module to build a whole total out of valued pieces.
SYNOPSIS
use Math::TotalBuilder;
my %lsd = ( pound => 240, shilling => 20, penny => 1 );
# units for 952 pence
my %tender = build(%lsd, 952);
# total value of 3, 21, 98
my $wealth = total(%lsd, { pound => 3, shilling => 21, penny => 98 });
# best better representation of 18, 6, 40
my %moolah = build(%lsd,
total (%lsd, { pound => 18, shilling => 6, penny => 40 }));
This module provides two subroutines, build and total, which can be used to handle quantities of valued items. These can be used to build the proper tender to represent a quantity of money, to compose a mass from standard weights, to convert a difference of seconds to a set of time units, or other similar calculations.
<<lessSYNOPSIS
use Math::TotalBuilder;
my %lsd = ( pound => 240, shilling => 20, penny => 1 );
# units for 952 pence
my %tender = build(%lsd, 952);
# total value of 3, 21, 98
my $wealth = total(%lsd, { pound => 3, shilling => 21, penny => 98 });
# best better representation of 18, 6, 40
my %moolah = build(%lsd,
total (%lsd, { pound => 18, shilling => 6, penny => 40 }));
This module provides two subroutines, build and total, which can be used to handle quantities of valued items. These can be used to build the proper tender to represent a quantity of money, to compose a mass from standard weights, to convert a difference of seconds to a set of time units, or other similar calculations.
Download (0.005MB)
Added: 2006-09-26 License: Perl Artistic License Price:
1123 downloads
deal 2.4
deal project is a calculator to compute card-draw probabilities for games such as poker or Magic. more>>
deal project is a calculator to compute card-draw probabilities for games such as poker or Magic.
This program is a calculator for card-draw probabilities. Specifically, it computes non-replacement draw probabilities using the hypergeometric function. It can also be used to compute binomial coefficients and the gamma function.
Suppose I have M special cards in my deck and N total cards in my deck, and I draw k cards from that deck without replacement. Let X count the number of special cards contained in those k drawn cards.
Enhancements:
- Source RPMs no longer depend on --define myversion
<<lessThis program is a calculator for card-draw probabilities. Specifically, it computes non-replacement draw probabilities using the hypergeometric function. It can also be used to compute binomial coefficients and the gamma function.
Suppose I have M special cards in my deck and N total cards in my deck, and I draw k cards from that deck without replacement. Let X count the number of special cards contained in those k drawn cards.
Enhancements:
- Source RPMs no longer depend on --define myversion
Download (0.016MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
Filesys::DfPortable 0.85
Filesys::DfPortable is a Perl extension for filesystem disk space information. more>>
Filesys::DfPortable is a Perl extension for filesystem disk space information.
SYNOPSIS
use Filesys::DfPortable;
my $ref = dfportable("C:"); # Default block size is 1, which outputs bytes
if(defined($ref)) {
print"Total bytes: $ref->{blocks}n";
print"Total bytes free: $ref->{bfree}n";
print"Total bytes avail to me: $ref->{bavail}n";
print"Total bytes used: $ref->{bused}n";
print"Percent full: $ref->{per}n"
}
my $ref = dfportable("/tmp", 1024); # Display output in 1K blocks
if(defined($ref)) {
print"Total 1k blocks: $ref->{blocks}n";
print"Total 1k blocks free: $ref->{bfree}n";
print"Total 1k blocks avail to me: $ref->{bavail}n";
print"Total 1k blocks used: $ref->{bused}n";
print"Percent full: $ref->{per}n"
}
This module provides a portable way to obtain filesystem disk space information.
The module should work with all versions of Windows (95 and up), and with all flavors of Unix that implement the statvfs or the statfs calls. This would include Linux, *BSD, HP-UX, AIX, Solaris, Mac OS X, Irix, Cygwin, etc ...
This module differs from Filesys::Df in that it has added support for Windows, but does not support open filehandles as a argument.
dfportable() requires a directory argument that represents the filesystem you want to query. There is also an optional block size argument so that you can tailor the size of the values returned. The default block size is 1, this will cause the function to return the values in bytes. If you never use the block size argument, then you can think of any instance of "blocks" in this document to really mean "bytes".
dfportable() returns a reference to a hash. The keys available in the hash are as follows:
{blocks} = Total blocks on the filesystem.
{bfree} = Total blocks free on the filesystem.
{bavail} = Total blocks available to the user executing the Perl application. This can be different than {bfree} if you have per-user quotas on the filesystem, or if the super user has a reserved amount. {bavail} can also be a negative value because of this. For instance if there is more space being used then you have available to you.
{bused} = Total blocks used on the filesystem.
{per} = Percent of disk space used. This is based on the disk space available to the user executing the application. In other words, if the filesystem has 10% of its space reserved for the superuser, then the percent used can go up to 110%.
You can obtain inode information through the module as well. But you must call exists() on the {files} key to make sure the information is available. Some filesystems may not return inode information, for example Windows, and some NFS filesystems.
Here are the available inode keys:
{files} = Total inodes on the filesystem.
{ffree} = Total inodes free on the filesystem.
{favail} = Total inodes available to the user executing the application. See the rules for the {bavail} key.
{fused} = Total inodes used on the filesystem.
{fper} = Percent of inodes used on the filesystem. See rules for the {per} key.
If the dfportable() call fails for any reason, it will return undef. This will probably happen if you do anything crazy like try to get information for /proc, or if you pass an invalid filesystem name, or if there is an internal error. dfportable() will croak() if you pass it a undefined value.
<<lessSYNOPSIS
use Filesys::DfPortable;
my $ref = dfportable("C:"); # Default block size is 1, which outputs bytes
if(defined($ref)) {
print"Total bytes: $ref->{blocks}n";
print"Total bytes free: $ref->{bfree}n";
print"Total bytes avail to me: $ref->{bavail}n";
print"Total bytes used: $ref->{bused}n";
print"Percent full: $ref->{per}n"
}
my $ref = dfportable("/tmp", 1024); # Display output in 1K blocks
if(defined($ref)) {
print"Total 1k blocks: $ref->{blocks}n";
print"Total 1k blocks free: $ref->{bfree}n";
print"Total 1k blocks avail to me: $ref->{bavail}n";
print"Total 1k blocks used: $ref->{bused}n";
print"Percent full: $ref->{per}n"
}
This module provides a portable way to obtain filesystem disk space information.
The module should work with all versions of Windows (95 and up), and with all flavors of Unix that implement the statvfs or the statfs calls. This would include Linux, *BSD, HP-UX, AIX, Solaris, Mac OS X, Irix, Cygwin, etc ...
This module differs from Filesys::Df in that it has added support for Windows, but does not support open filehandles as a argument.
dfportable() requires a directory argument that represents the filesystem you want to query. There is also an optional block size argument so that you can tailor the size of the values returned. The default block size is 1, this will cause the function to return the values in bytes. If you never use the block size argument, then you can think of any instance of "blocks" in this document to really mean "bytes".
dfportable() returns a reference to a hash. The keys available in the hash are as follows:
{blocks} = Total blocks on the filesystem.
{bfree} = Total blocks free on the filesystem.
{bavail} = Total blocks available to the user executing the Perl application. This can be different than {bfree} if you have per-user quotas on the filesystem, or if the super user has a reserved amount. {bavail} can also be a negative value because of this. For instance if there is more space being used then you have available to you.
{bused} = Total blocks used on the filesystem.
{per} = Percent of disk space used. This is based on the disk space available to the user executing the application. In other words, if the filesystem has 10% of its space reserved for the superuser, then the percent used can go up to 110%.
You can obtain inode information through the module as well. But you must call exists() on the {files} key to make sure the information is available. Some filesystems may not return inode information, for example Windows, and some NFS filesystems.
Here are the available inode keys:
{files} = Total inodes on the filesystem.
{ffree} = Total inodes free on the filesystem.
{favail} = Total inodes available to the user executing the application. See the rules for the {bavail} key.
{fused} = Total inodes used on the filesystem.
{fper} = Percent of inodes used on the filesystem. See rules for the {per} key.
If the dfportable() call fails for any reason, it will return undef. This will probably happen if you do anything crazy like try to get information for /proc, or if you pass an invalid filesystem name, or if there is an internal error. dfportable() will croak() if you pass it a undefined value.
Download (0.007MB)
Added: 2007-04-27 License: Perl Artistic License Price:
911 downloads
TA3D 0.3.2
TA3D is a Total Annihilation engine. more>>
TA3D is a remake of Total Annihilations engine in full 3D with OpenGl&Allegro. Installing TA3D over Total Annihilation will port Total Annihilation to full 3D!!
TA3D loads maps,units,and more directly from Total Annihilation content. It adds some graphical effects like advanced particle effects for explosions,smoke,... and lots of things you would expect from a 3D engine.
<<lessTA3D loads maps,units,and more directly from Total Annihilation content. It adds some graphical effects like advanced particle effects for explosions,smoke,... and lots of things you would expect from a 3D engine.
Download (1.1MB)
Added: 2007-06-25 License: Freeware Price:
861 downloads
themonospot 0.5.1
themonospot can be used to scan an avi file and extract some information about audio and video data flow. more>>
themonospot is a simple application that can be used to scan an avi file and extract some information about audio and video data flow:
- Video codec used
- Frame size
- Average video bitrate
- File size
- Total time
- Frame rate
- Total frames
- Info data
- User data (in MOVI chunk)
- Audio codec used
- Average audio bitrate
- Audio channels
With themonospot is also possible modify FourCC informations (FourCC code in video chunk and FourCC description in stream header).
<<less- Video codec used
- Frame size
- Average video bitrate
- File size
- Total time
- Frame rate
- Total frames
- Info data
- User data (in MOVI chunk)
- Audio codec used
- Average audio bitrate
- Audio channels
With themonospot is also possible modify FourCC informations (FourCC code in video chunk and FourCC description in stream header).
Download (0.093MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
819 downloads
Debt Payoff Calculator 0.0
Debt Payoff Calculator is a simple set of PHP (5) scripts that will allow users of a web site to enter their monthly income. more>>
Debt Payoff Calculator is a simple set of PHP (5) scripts that will allow users of a web site to enter their monthly income, monthly budget, and outstanding debts.
The system can then generate a debt payoff report predicting how long it will take to pay off the debts.
The algorithm is:
1. Get total monthly income.
2. Get total monthly expenses.
3. Amount available for debt service is income - expenses;
4. Compute the "kicker" as %20 of Available, reduce available by this amount.
5. Compute the ratio of each debt to total debts.
6. Multiply Available by each ratio to get the potential payment.
7. For the smallest debt, add the kicker.
8. Test if any debts would be paid off
8a. If a debt could be paid off, make the payment, adjust the last debt pointer.
8b. Add any excess funds to the other potentials, using ratio2 which excludes the debt to be paid off.
8b. Repeat 8.
9. Make the remaining payments for debts not paid off.
Repeat 5-9 until all debts paid off.
Print the table of payments.
Enhancements:
- This release has been tested with Internet Explorer and Mozilla as clients.
<<lessThe system can then generate a debt payoff report predicting how long it will take to pay off the debts.
The algorithm is:
1. Get total monthly income.
2. Get total monthly expenses.
3. Amount available for debt service is income - expenses;
4. Compute the "kicker" as %20 of Available, reduce available by this amount.
5. Compute the ratio of each debt to total debts.
6. Multiply Available by each ratio to get the potential payment.
7. For the smallest debt, add the kicker.
8. Test if any debts would be paid off
8a. If a debt could be paid off, make the payment, adjust the last debt pointer.
8b. Add any excess funds to the other potentials, using ratio2 which excludes the debt to be paid off.
8b. Repeat 8.
9. Make the remaining payments for debts not paid off.
Repeat 5-9 until all debts paid off.
Print the table of payments.
Enhancements:
- This release has been tested with Internet Explorer and Mozilla as clients.
Download (0.007MB)
Added: 2006-03-28 License: GPL (GNU General Public License) Price:
1309 downloads
Coldtags suite 3.05
The Coldtags suite is a collection of custom JSP tags. more>>
The Coldtags suite is a collection of custom JSP tags that provides 90+ custom JSP tags for common programming tasks faced by JSP developers.
Coldtags suite also includes custom tags similar to the Web controls in the .NET framework.
Enhancements:
- New components were added, so the total amount is over 305 now.
- Features were updated for the existing taglibs, docs, and examples.
- Enhancements were made for many controls.
<<lessColdtags suite also includes custom tags similar to the Web controls in the .NET framework.
Enhancements:
- New components were added, so the total amount is over 305 now.
- Features were updated for the existing taglibs, docs, and examples.
- Enhancements were made for many controls.
Download (MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
861 downloads
FET for Linux 5.7.5
FET is a free timetabling program for schools, high-schools or universities more>> Main features:
- FET is free software (open source). You can freely use, copy, modify and re-distribute it, as GNU/GPL permits (but please consider a donation)
- Localized to English, French, Catalan, Romanian, Malay, Polish, Turkish, Dutch, German, Hungarian and Macedonian (maybe incompletely)
- Fully automatic generation algorithm, allowing also semi-automatic or manual allocation
- Platform independent implementation, allowing running on GNU/Linux, Windows, Mac and any system that Qt supports
- Powerful flexible modular xml format for the input file, allowing editing with an xml editor or by hand (besides FET)
- Possibility to view the currently generated timetable without stopping the ongoing simulation
- The resulted timetables will be exported into xml and html formats
- Very flexible students (pupils) structure, organized into sets: years, groups and subgroups. FET allows overlapping years and groups and non-overlapping subgroups. You can even define individual students (as separate sets)
- Possibility to consider a weight (percentage) for each constraint, from 0% to 100%
- Maximum total number of hours (periods) per day: 30 (can be increased, but until now nobody suggested a larger value)
- Maximum number of working days per week: 14 (can be increased, but until now nobody suggested a larger value)
- Maximum total number of teachers: 700 (can be increased, but until now nobody suggested a larger value)
- Maximum total number of subgroups (sets) of students: 5000 (can be increased, but until now nobody suggested a larger value)
- Maximum total number of subjects: 1000 (can be increased, but until now nobody suggested a larger value)
- Virtually unlimited number of subject tags
- Maximum number of activities: 2000 (can be increased, but until now nobody suggested a larger value)
- Maximum number of rooms: 300 (can be increased, but until now nobody suggested a larger value)<<less
Download (4.02MB)
Added: 2009-04-24 License: Freeware Price:
185 downloads
Other version of FET for Linux
License:Freeware
MikMod Utilities 0.2
MikMod Utilities is a collection of tools for manipulating the module sound files that are produced by tools like Soundtracker. more>>
MikMod Utilities is collection of command line tools for manipulating the module sound files that are typically produced by Soundtracker, Protracker and other tools.
MikMod Utilities contains the following tools:
mmuinfo
gives information about module
mmuplay
plays modules
mmuplaysmp
plays samples from modules
mmurender
converts modules to other audio formats
mmurip
extracts samples from module
mmutotal
computes total modules time
All tools has support for the automatic modules decompression from bzip, gzip and pkzip archives, but this can be configured at compile-time and can be controlled at run-time.
Also all tools, except mmutotal, can load modules from standard input.
<<lessMikMod Utilities contains the following tools:
mmuinfo
gives information about module
mmuplay
plays modules
mmuplaysmp
plays samples from modules
mmurender
converts modules to other audio formats
mmurip
extracts samples from module
mmutotal
computes total modules time
All tools has support for the automatic modules decompression from bzip, gzip and pkzip archives, but this can be configured at compile-time and can be controlled at run-time.
Also all tools, except mmutotal, can load modules from standard input.
Download (0.05MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1154 downloads
scytha 0.2.1
scytha project is a file manager in the style of the famous Total Commander but for Linux OS, written in Java, SWT. more>>
scytha project is a file manager in the style of the famous Total Commander but for Linux OS, written in Java, SWT.
Main features:
- Two file views side by side
- Common file operations: copy, remove/rename, delete
- Multiple language support (currently english, german, hungarian, turkish)
- Built-in text file viewer
- Online update
- History-button and button for the mounted directories
More features can be added as plugins:
- Viewer plugins (images, program code with syntax highlighting, etc.)
- FS plugins (these plugins are viewed in one of the file views)
<<lessMain features:
- Two file views side by side
- Common file operations: copy, remove/rename, delete
- Multiple language support (currently english, german, hungarian, turkish)
- Built-in text file viewer
- Online update
- History-button and button for the mounted directories
More features can be added as plugins:
- Viewer plugins (images, program code with syntax highlighting, etc.)
- FS plugins (these plugins are viewed in one of the file views)
Download (4.6MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
i.Task 0.2.0
i.Task is a small and fast process viewer. more>>
i.Task is a little task viewer for Linux. Source is included under the LGPL license. The distribution includes binaries for GCC3 based systems and the source code.
The external library Lgi is required to build from the source, but a binary of that is included.
Enhancements:
- Added a status bar with total CPU%, Mem and a tasks count.
- Added a copy command that outputs all the task information and totals to the clipboard in a nicely formatted text table.
- Fixed a crash when a process exits during the update phase.
- Added colour coding of tasks so you can see which belong to you.
- Added a history tab for CPU and Mem usage.
<<lessThe external library Lgi is required to build from the source, but a binary of that is included.
Enhancements:
- Added a status bar with total CPU%, Mem and a tasks count.
- Added a copy command that outputs all the task information and totals to the clipboard in a nicely formatted text table.
- Fixed a crash when a process exits during the update phase.
- Added colour coding of tasks so you can see which belong to you.
- Added a history tab for CPU and Mem usage.
Download (0.68MB)
Added: 2005-04-04 License: LGPL (GNU Lesser General Public License) Price:
1670 downloads
xenConsole r0.15 beta
xenConsole is a curses-based tty/console monitor for Xen 2.0 more>>
xenConsole is a curses-based tty/console monitor for Xen 2.0, basically presenting the output from xm list in a full-screen interface with additional domain information from SNMP, colours and somewhat realtime updates.
Main features:
- Xen/domain/host information shown:
- Most output from xm list
- Load averages for individual domains, if available
- Uptime for individual domains, if available
- CPU & memory consumption shown as percentages for each domain
- Calculated total CPU busy/idle times/percentages
- Total Xen host CPU load is indicated in various ways
- Continously updates screen automatically
- Full screen application, colourized
- Easy to use, type q to quit
<<lessMain features:
- Xen/domain/host information shown:
- Most output from xm list
- Load averages for individual domains, if available
- Uptime for individual domains, if available
- CPU & memory consumption shown as percentages for each domain
- Calculated total CPU busy/idle times/percentages
- Total Xen host CPU load is indicated in various ways
- Continously updates screen automatically
- Full screen application, colourized
- Easy to use, type q to quit
Download (0.038MB)
Added: 2005-11-05 License: Artistic License Price:
1448 downloads
IsoQlog 2.2.1
Isoqlog is an MTA log analysis program written in C. more>>
Isoqlog is an MTA log analysis program written in C. It designed to scan qmail, postfix, sendmail, exim logfile and produce usage statistics in HTML format. for viewing through a browser.
It produces Top domains output according to Incoming, Outgoing, total mails and bytes, it keeps your main domain mail statistics with Days Top Domain, Top Users values for per day, per month, and years.
Main features:
- Multi MTA support(qmail (multilog and syslog), postfix, sendmail, exim)
- Multi-domain support: Shows quite detailed statistics for not only your main domain, but also, any domain you want.
- Displays statistics for common mail delivery errors.
- For each domain you specify; displays Top incoming, outgoing, total and byte based statistics for users.
- Displays servers activity based on incoming, outgoing, total mails and size of incoming mail, for domain and its users.
- All days, all months, all years activities ( above ones ) are stored for future inspection.
- Multi-language Support ( Turkish, English, German,Portuguese,Spanish ,Italian,french, Swedish, Dutch, Polish, Norwegian, Russian, Czech, Romanian, Danish)
Enhancements:
- Zero size bug fixed.
- All Makefile.am files renewed
- "data" Directory created
- htmltemp & lang folders moved from isoqlog/ to data/
- isoqlog/isoqlog.conf-dist moved to data/isoqlog.conf-dist.in
- isoqlog.conf-dist file added to configure.in for updating prefix
- data/Makefile.am created
- CONFIGFILE variable defined in configure.in (see main.c:54-> readconfig(CONFIGFILE)
- config.h included in main.c
- you can change prefix as shown below (now it works, tested on slackware 10):
./configure --prefix=/usr/jail/ozkan
<<lessIt produces Top domains output according to Incoming, Outgoing, total mails and bytes, it keeps your main domain mail statistics with Days Top Domain, Top Users values for per day, per month, and years.
Main features:
- Multi MTA support(qmail (multilog and syslog), postfix, sendmail, exim)
- Multi-domain support: Shows quite detailed statistics for not only your main domain, but also, any domain you want.
- Displays statistics for common mail delivery errors.
- For each domain you specify; displays Top incoming, outgoing, total and byte based statistics for users.
- Displays servers activity based on incoming, outgoing, total mails and size of incoming mail, for domain and its users.
- All days, all months, all years activities ( above ones ) are stored for future inspection.
- Multi-language Support ( Turkish, English, German,Portuguese,Spanish ,Italian,french, Swedish, Dutch, Polish, Norwegian, Russian, Czech, Romanian, Danish)
Enhancements:
- Zero size bug fixed.
- All Makefile.am files renewed
- "data" Directory created
- htmltemp & lang folders moved from isoqlog/ to data/
- isoqlog/isoqlog.conf-dist moved to data/isoqlog.conf-dist.in
- isoqlog.conf-dist file added to configure.in for updating prefix
- data/Makefile.am created
- CONFIGFILE variable defined in configure.in (see main.c:54-> readconfig(CONFIGFILE)
- config.h included in main.c
- you can change prefix as shown below (now it works, tested on slackware 10):
./configure --prefix=/usr/jail/ozkan
Download (0.15MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1480 downloads
Stormbaan Coureur 1.5.2
Stormbaan Coureur is a simulated obstacle course for automobiles. more>>
Stormbaan Coureur is a simulated obstacle course for automobiles. n this game, your objective is to drive your car along an obstacle course. Success depends on total control of the car, and making use of the laws of physics.
Enhancements:
- New name
- Extended track with half pipe jump
- Extended track with turn tables
- Fixed joystick accelerator axis assigment
- Softened the suspension
- Added brake-light
- Added reverse-gear-light
- Improved leaderboard
- Added respawn points
<<lessEnhancements:
- New name
- Extended track with half pipe jump
- Extended track with turn tables
- Fixed joystick accelerator axis assigment
- Softened the suspension
- Added brake-light
- Added reverse-gear-light
- Improved leaderboard
- Added respawn points
Download (3.1MB)
Added: 2007-08-24 License: GPL (GNU General Public License) Price:
799 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 total 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