Main > Free Download Search >

Free total gym software for linux

total gym

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 383
TEA Total 0.4

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".
<<less
Download (0.017MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1199 downloads
Math::TotalBuilder 1.10

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.

<<less
Download (0.005MB)
Added: 2006-09-26 License: Perl Artistic License Price:
1123 downloads
deal 2.4

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
<<less
Download (0.016MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
TA3D 0.3.2

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.

<<less
Download (1.1MB)
Added: 2007-06-25 License: Freeware Price:
861 downloads
themonospot 0.5.1

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
Download (0.093MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
819 downloads
Filesys::DfPortable 0.85

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.

<<less
Download (0.007MB)
Added: 2007-04-27 License: Perl Artistic License Price:
911 downloads
Netfilter2html 0.9

Netfilter2html 0.9


Netfilter2html provides a script using GAWK to process netfilter logs. more>>
Netfilter2html provides a script using GAWK to process netfilter logs.
netfilter2html is a script wrote using GAWK to process netfilter logs and generate a nice HTML output.
GAWK is faster to process text files, it can process 100.000 text lines in a few seconds.
Main features:
You can config...
- TCP/UDP ports that should appear highlighted (red color);
- IPs and (SRC|DST) TCP/UDP ports that should removed from the report;
- Max number of records/lines per page (to avoid flooding browsers);
- Name of HTML files and it extension;
- Destination directory to use for HTML files, images, etc..;
- Date selection by command line [--date Mar/3|--today|--yesterday].
- Just records that match the selected date will used in reports;
You can see in reports...
- Date (previous selected by command line);
- Creation date;
- Total number of log records that match the selected date;
- Total number of pages;
- Total number of warnings (TCP/UDP ports configured to appear highlighted);
- Total number of removed records;
- Log prefix, complet set of "most" important fields used in netfilter logs
- and the number of hits that a same netfilter log appeared;
Enhancements:
- english translation;
- added a nice HTML layout - thanks to Gustavo Nozella;
- netfilter2html.conf changed (font_color and nversion were removed) some minor changes in variable names;
- some changes in netfilter2html core;
- added a installer (installn2h.sh) - install images and style file in "/usr/local/share/n2h" directory; core files are installed in correct places (see README);
- netfilter2html copy all files located in "/usr/local/share/n2h" at first run to real HTML directory (defined in netfilter2html.conf);
- fixed bug in use of ENV[HOSTNAME] var on HTML links;
- added GPL license file;
- netfilter "ID" information is no longer used in HTML reports;
- favico (favicon.ico) added;
<<less
Download (0.040MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
927 downloads
Debt Payoff Calculator 0.0

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.
<<less
Download (0.007MB)
Added: 2006-03-28 License: GPL (GNU General Public License) Price:
1309 downloads
i.Task 0.2.0

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.
<<less
Download (0.68MB)
Added: 2005-04-04 License: LGPL (GNU Lesser General Public License) Price:
1670 downloads
Coldtags suite 3.05

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.
<<less
Download (MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
861 downloads
IsoQlog 2.2.1

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
<<less
Download (0.15MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1480 downloads
The Simpsons chalkboard openings 1.0

The Simpsons chalkboard openings 1.0


The Simpsons chalkboard openings project consists of a quote collection of Bart Simpsons chalkboard-writings. more>>
"The Simpsons" chalkboard openings project consists of a quote collection of Bart Simpsons chalkboard-writings.

It is a collection of Bart Simpson’s chalkboard-writings from the opening credits of episodes of the television show “The Simpsons”, packaged up for use with the fortune program.

To install these fortunes, copy the .dat file to your fortunes directory (possibly /usr/games/lib/fortunes).

To use it, simply type:

# fortune chalkboard

DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR
DODGEBALL STOPS AT THE GYM DOOR

Bart Simpson on chalkboard in episode BABF12


<<less
Download (0.005MB)
Added: 2006-12-13 License: GPL (GNU General Public License) Price:
1050 downloads
FeedStater 1.1

FeedStater 1.1


FeedStater is an RSS/Atom feed statistics tool. more>>
FeedStater is an RSS/Atom feed statistics tool. FeedStater counts the number of unique visitors, total number of visits, and bot visits, and presents the results in a simple HTML report.

FeedStater reads your Apache log file directly so it doesnt need a database to work and is completely independent from your blog system, it will work with WordPress, MovableType, Bloxsom, PyBloxsom and any other self-hosted blog system.
<<less
Download (0.011MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1197 downloads
svndelta 1.0.6

svndelta 1.0.6


svndelta helps manage a Subversion project, identifying the local files that have been added, changed, or deleted. more>>
svndelta helps manage a Subversion project, identifying the local files that have been changed, added or deleted.
The relevant files can be automatically added to and removed from Subversion.
A list of files is produced, with a summary of content differences, i.e. the number of lines of code that have been added, changed, and deleted.
Example summary format of svndelta:
total added changed deleted file
======= ======= ======= ======= ====================
5 4 1 0 * Makefile
4 3 1 0 * bin/runtests
125 39 76 10 * share/svndelta/svndelta.rb
3 2 1 0 * svndelta.spec
99 90 9 0 * test/share/svndelta/tc_ignorefile.rb
5 0 4 1 * test/share/svndelta/testcase.rb
------- ------- ------- ------- --------------------
241 138 92 11 total
svndelta is written in Ruby, and thus can run on a variety of operating systems.
Enhancements:
- A bug occurring when a file has been deleted, set to ignored, then re-added was fixed.
<<less
Download (0.031MB)
Added: 2007-02-11 License: LGPL (GNU Lesser General Public License) Price:
986 downloads
Sofa Media Center 0.2.4

Sofa Media Center 0.2.4


Sofa is a media center aimed at easy usage for GNOME. more>>
Sofa is a media center aimed at easy usage for GNOME.
Sofa is a media center aimed at easy usage, minimal configuration and total integration with the Gnome desktop environment and existing multimedia applications. The project has a modular architecture. Two modules exists as of now: Videoplayer and Rhythmbox integration.
Supported Media
- Music (file types supported by Rhythmbox)
- Local video files (file types supported by GStreamer)
<<less
Download (0.81MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
814 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5