built in
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2985
Build Order Analyzer 2.0
Build Order Anlyzer for the Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. more>>
Build Order Anlyzer for the Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Many sites go to great lengths to explain Build Orders, but the Build Order Analyzer is the first tool to actually allow players the ability to define a Build Order and then compare it to other Build Orders over time.
Key Facts to know about the Build Order Analyzer:
Only tool of its kind
Can support multiple types of RTS based games (not just Axis & Allies RTS!)
Built on Java technology & open source software
The Build Order Anlyzer 2.0 for Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Wikipedia has a great defnition for a Build Order. To summarize, a Build Order in an RTS game defines the order in which a player builds their buildings, units, and upgrades. Understanding the timing and affect of various build trees is critical in making the appropriate tactical decisions during the game.
The BOA allows a player to build and analyze multiple Build Orders without playing a game. Lose to a player due to their build? Then plug it into the BOA and figure out a build to counter it! Gamers no longer have to play game, after game, after game to figure out a decent counter to another players Build Order, they can use the BOA to figure it out. The BOA can literally save serious gamers hundreds of hours of game play!
<<lessKey Facts to know about the Build Order Analyzer:
Only tool of its kind
Can support multiple types of RTS based games (not just Axis & Allies RTS!)
Built on Java technology & open source software
The Build Order Anlyzer 2.0 for Axis & Allies RTS is a tool for analyzing builds in the Axis & Allies RTS game. Wikipedia has a great defnition for a Build Order. To summarize, a Build Order in an RTS game defines the order in which a player builds their buildings, units, and upgrades. Understanding the timing and affect of various build trees is critical in making the appropriate tactical decisions during the game.
The BOA allows a player to build and analyze multiple Build Orders without playing a game. Lose to a player due to their build? Then plug it into the BOA and figure out a build to counter it! Gamers no longer have to play game, after game, after game to figure out a decent counter to another players Build Order, they can use the BOA to figure it out. The BOA can literally save serious gamers hundreds of hours of game play!
Download (0.002MB)
Added: 2006-07-24 License: Freeware Price:
1188 downloads
MailStore 0.02
MailStore is a tool that is built in python and provides a mail proxy for POP3,IMAP4 and SMTP protocols. more>>
MailStore is a tool that is built in python and provides a mail proxy for POP3,IMAP4 and SMTP protocols. However, beyond usual proxies, it makes a backup of all incoming and outgoing email and stores them in a Maildir format.
Emails then can be accessed through an IMAP server run on the same machine using the backup Maildirs as mailboxes.
The idea is to provide a realtime , centralized backup of all incoming and outgoing of an organization without the need of user intervention, especially for organizations that use shared email hosting. Many of this hosting providers allow for only POP3 based access of the email.
Secondly, due to its shared hosting environment , there is limited space hence all email ends up being downloaded directly to the client. Any backup effort has to be taken up by the user on a periodical basis. This is prone to problems due to the fact that users might either forget or a data disaster might happen in between a backup cycle.
With a backup proxy like this all email is always available at the backup proxy. Any backup need be done by the administrator only at the proxy server itself. This we believe to be a much more convenient task then backing up user systems individually.
Secondly the MailStore server will always have all the emails the user has sent or received at any point ,hence the backup will always be current. To access the email, a local IMAP server can be run that will provide the user with access to the email that has been backed up. The user may then add this account to their email client and backup all the email out of it locally. (E.g. In Outlook you would probably export all the email in the account). Following that the user will import back the mail back into its original account.
Thirdly , the system requires minimal administrator involvement. It handles the creation of new maildirs for new domain/user combinations. Hence administrators dont have extra config files to play with whenevr new users are added to the system. Whether a user exists or not is left up to the mailserver that mailStore is proxying.
The mailStore system is built in Python. It has been tested with Python 2.3 and 2.4. Any system which support Python 2.3/ Python 2.4 should be able to run it.
<<lessEmails then can be accessed through an IMAP server run on the same machine using the backup Maildirs as mailboxes.
The idea is to provide a realtime , centralized backup of all incoming and outgoing of an organization without the need of user intervention, especially for organizations that use shared email hosting. Many of this hosting providers allow for only POP3 based access of the email.
Secondly, due to its shared hosting environment , there is limited space hence all email ends up being downloaded directly to the client. Any backup effort has to be taken up by the user on a periodical basis. This is prone to problems due to the fact that users might either forget or a data disaster might happen in between a backup cycle.
With a backup proxy like this all email is always available at the backup proxy. Any backup need be done by the administrator only at the proxy server itself. This we believe to be a much more convenient task then backing up user systems individually.
Secondly the MailStore server will always have all the emails the user has sent or received at any point ,hence the backup will always be current. To access the email, a local IMAP server can be run that will provide the user with access to the email that has been backed up. The user may then add this account to their email client and backup all the email out of it locally. (E.g. In Outlook you would probably export all the email in the account). Following that the user will import back the mail back into its original account.
Thirdly , the system requires minimal administrator involvement. It handles the creation of new maildirs for new domain/user combinations. Hence administrators dont have extra config files to play with whenevr new users are added to the system. Whether a user exists or not is left up to the mailserver that mailStore is proxying.
The mailStore system is built in Python. It has been tested with Python 2.3 and 2.4. Any system which support Python 2.3/ Python 2.4 should be able to run it.
Download (0.020MB)
Added: 2005-10-17 License: Python License Price:
1469 downloads
Java::Build::JVM 0.05
Java::Build::JVM is a Perl module that starts one JVM for compiling. more>>
Java::Build::JVM is a Perl module that starts one JVM for compiling.
SYNOPSIS
use Java::Build::JVM;
my $compiler = Java::Build::JVM->getCompiler();
$compiler->destination("some/path");
$compiler->classpath("some/pathto/jar.jar:some/other/path/javas");
$compiler->append_to_classpath("something/to/add/to/previous/path");
$compiler->compile([ qw(list.java of.java programs.java) ]);
This class starts a single JVM which it then helps you contact for compiling tasks. This is the most important feature of the popular Ant build tool. Using this class, you can effectively replace Ant, and its notoriously unmaintainable build.xml files, with Perl scripts. Most Ant tasks are already built in to Perl with far more flexibility than Ant provides.
To obtain a compiler, use this module, then call getCompiler. It has that name to prevent conflicts with the Java new keyword.
Once you have a compiler, you may change the destination of subsequent compiles from the location of the source files to a directory of your choice using the destination method. You can create or append to a classpath with the classpath or append_to_classpath methods. Note that your CLASSPATH environment variable still works in its usual way.
Finally, once you have the destination and classpath set, you can compile a list of files by passing them to the compile method. Note that they need to be in an array reference (if you dont know what that means, put the list in square brackets).
Note that you must have tools.jar in your CLASSPATH when you run your script. Without that, JVM.pm will not be able use Inline::Java. The classpath you use inside the script may be the same or different than your environment variable, depending on how you use the classpath and append_to_classpath methods.
Since Sun has, in its finite wisdom, chosen to deprecate the compiling methods that javac uses, there will be one warning for each time you call compile. It will say something like this:
Note: sun.tools.javac.Main has been deprecated.
1 warning
This warning is not a problem in Java 1.4.
<<lessSYNOPSIS
use Java::Build::JVM;
my $compiler = Java::Build::JVM->getCompiler();
$compiler->destination("some/path");
$compiler->classpath("some/pathto/jar.jar:some/other/path/javas");
$compiler->append_to_classpath("something/to/add/to/previous/path");
$compiler->compile([ qw(list.java of.java programs.java) ]);
This class starts a single JVM which it then helps you contact for compiling tasks. This is the most important feature of the popular Ant build tool. Using this class, you can effectively replace Ant, and its notoriously unmaintainable build.xml files, with Perl scripts. Most Ant tasks are already built in to Perl with far more flexibility than Ant provides.
To obtain a compiler, use this module, then call getCompiler. It has that name to prevent conflicts with the Java new keyword.
Once you have a compiler, you may change the destination of subsequent compiles from the location of the source files to a directory of your choice using the destination method. You can create or append to a classpath with the classpath or append_to_classpath methods. Note that your CLASSPATH environment variable still works in its usual way.
Finally, once you have the destination and classpath set, you can compile a list of files by passing them to the compile method. Note that they need to be in an array reference (if you dont know what that means, put the list in square brackets).
Note that you must have tools.jar in your CLASSPATH when you run your script. Without that, JVM.pm will not be able use Inline::Java. The classpath you use inside the script may be the same or different than your environment variable, depending on how you use the classpath and append_to_classpath methods.
Since Sun has, in its finite wisdom, chosen to deprecate the compiling methods that javac uses, there will be one warning for each time you call compile. It will say something like this:
Note: sun.tools.javac.Main has been deprecated.
1 warning
This warning is not a problem in Java 1.4.
Download (0.030MB)
Added: 2007-06-04 License: Perl Artistic License Price:
877 downloads
KmPlot 1.2.0
KmPlot is a mathematical function plotter for the KDE desktop. more>>
KmPlot 1.2.0 offers a software which has features of a mathematical function plotter for the KDE desktop. KmPlot is a mathematical function plotter for the KDE desktop. It has built in a powerful parser. You can plot different functions simultaneously and combine their function terms to build new functions.
KmPlot supports functions with parameters and functions in polar coordinates. Several grid modes are possible. Plots may be printed with high precision in correct scale.
Major Features:
- Powerful mathematical parser
- Precise metric printing
- Different plot types (functions, parametric, polar)
- Highly configurable visual settings (plot line, axes, grid)
- Export to bitmap format (BMP and PNG) and scalable vector graphics (SVG)
- Save/load complete session in readable xml format
- Trace mode: cross hair following plot, coordinates shown in the status bar
- Support zooming
- Ability to draw the 1st and 2nd derivative and the integral of a plot function
- Support user defined constants and parameter values
- Various tools for plot functions: find minimum/maximum point, get y-value and draw the area between the function and the y-axis
Requirements: KDE 4
Added: 2008-06-11 License: GPL Price: FREE
12 downloads
Other version of KmPlot
License:GPL (GNU General Public License)
libCoroutine 0.9
libCoroutine is a simple stackfull coroutine implementation, largely based on ucontext and fibers. more>>
libCoroutine is a simple stackfull coroutine implementation, largely based on ucontext and fibers.
This library is built from the coroutine implementation of the Io programming language project.
<<lessThis library is built from the coroutine implementation of the Io programming language project.
Download (0.012MB)
Added: 2006-05-22 License: BSD License Price:
1254 downloads
X11::GUITest 0.21
X11::GUITest is a Perl package intended to facilitate the testing of GUI applications by means of user emulation. more>>
X11::GUITest is a Perl package intended to facilitate the testing of GUI applications by means of user emulation.
X11::GUITest can be used to test and interact with GUI applications which have been built in some fashion (X toolkit, GTK+, Qt, Motif, etc.) upon the X library.
<<lessX11::GUITest can be used to test and interact with GUI applications which have been built in some fashion (X toolkit, GTK+, Qt, Motif, etc.) upon the X library.
Download (0.047MB)
Added: 2006-05-18 License: GPL (GNU General Public License) Price:
1267 downloads
Citadel 7.10
Citadel is an advanced messaging and collaboration system for groupware and BBS applications. more>>
Citadel is an advanced messaging and collaboration system for groupware and BBS applications. Users can connect to Citadel using any telnet, WWW, or client software.
Among the features supported are public and private message bases (rooms), electronic mail, real-time chat, paging, shared calendaring, address books, mailing lists, and more.
Unlike other collaboration servers, Citadel provides its own data stores and is therefore extremely easy to install; you dont have to "bring your own" email and database because theyre built in.
The server is multithreaded and scalable. In addition, SMTP, IMAP, and POP3 servers are built-in for easy connection to Internet mail. Citadel is both robust and mature; it has been in production since 1987.
Enhancements:
- IMAP ACL support.
- Small enhancements to the calendar service.
- Enhanced support for certain text-mode mobile devices.
<<lessAmong the features supported are public and private message bases (rooms), electronic mail, real-time chat, paging, shared calendaring, address books, mailing lists, and more.
Unlike other collaboration servers, Citadel provides its own data stores and is therefore extremely easy to install; you dont have to "bring your own" email and database because theyre built in.
The server is multithreaded and scalable. In addition, SMTP, IMAP, and POP3 servers are built-in for easy connection to Internet mail. Citadel is both robust and mature; it has been in production since 1987.
Enhancements:
- IMAP ACL support.
- Small enhancements to the calendar service.
- Enhanced support for certain text-mode mobile devices.
Download (0.67MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
528 downloads
HostGIS Linux 3.6.1
HostGIS Linux is a Linux/GNU distribution specifically made for handling GIS information. more>>
HostGIS Linux project is a Linux/GNU distribution specifically made for handling GIS information. HostGIS Linux saves hours or days of installing MapServer and its components, and will have you serving GIS maps in minutes.
Main features:
- All the usual amenities of a Linux distribution: compilers, Perl, etc.
- Apache webserver, with PHP
- MapServer, and MapScript for PHP, Perl, and Python
- PDFlib, with support built in to PHP, Perl, Python, and MapServer
- PostGIS-enabled Postgres database server
- MapServer Web Client (MWC) to display great interactive maps without designing any HTML or JavaScript
- Example maps already installed: shapefiles, ECW raster, PostGIS, MyGIS, WMS server and client, and Flash output
- Webmin, phpMyAdmin, and phpPgAdmin for easy system administration
Being a Linux, HostGIS Linux is of course completely open source and may be downloaded, modified, and redistributed free of charge.
Enhancements:
- All the usual amenities of a Linux distribution: compilers, Perl, etc.
- Apache webserver, with PHP
- MapServer, and MapScript for PHP, Perl, and Python
- PDFlib, with support built in to PHP, Perl, Python, and MapServer
- PostGIS-enabled Postgres database server
- MapServer Web Client (MWC) to display great interactive maps without designing any HTML or JavaScript
- Example maps already installed: shapefiles, ECW raster, PostGIS, MyGIS, WMS server and client, and Flash output
- Webmin, phpMyAdmin, and phpPgAdmin for easy system administration
<<lessMain features:
- All the usual amenities of a Linux distribution: compilers, Perl, etc.
- Apache webserver, with PHP
- MapServer, and MapScript for PHP, Perl, and Python
- PDFlib, with support built in to PHP, Perl, Python, and MapServer
- PostGIS-enabled Postgres database server
- MapServer Web Client (MWC) to display great interactive maps without designing any HTML or JavaScript
- Example maps already installed: shapefiles, ECW raster, PostGIS, MyGIS, WMS server and client, and Flash output
- Webmin, phpMyAdmin, and phpPgAdmin for easy system administration
Being a Linux, HostGIS Linux is of course completely open source and may be downloaded, modified, and redistributed free of charge.
Enhancements:
- All the usual amenities of a Linux distribution: compilers, Perl, etc.
- Apache webserver, with PHP
- MapServer, and MapScript for PHP, Perl, and Python
- PDFlib, with support built in to PHP, Perl, Python, and MapServer
- PostGIS-enabled Postgres database server
- MapServer Web Client (MWC) to display great interactive maps without designing any HTML or JavaScript
- Example maps already installed: shapefiles, ECW raster, PostGIS, MyGIS, WMS server and client, and Flash output
- Webmin, phpMyAdmin, and phpPgAdmin for easy system administration
Download (291.4MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1180 downloads
YesScript 1.1
YesScript Firefox extension is a JavaScript blacklist. more>>
YesScript Firefox extension is a JavaScript blacklist.
JavaScript is not something to be feared. Firefox is the most secure browser, and any vulnerabilities found are patched within days. However, JavaScript is sometimes misused by sites. They can show obtrusive ads or try to limit built in browser functions such as the back button or the right-click menu. Poorly written scripts can also hog your systems resources.
YesScript provides a JavaScript blacklist, letting you specify which sites arent allowed to run JavaScript. A single click on the status bar icon can put the current site on the blacklist or take it off.
<<lessJavaScript is not something to be feared. Firefox is the most secure browser, and any vulnerabilities found are patched within days. However, JavaScript is sometimes misused by sites. They can show obtrusive ads or try to limit built in browser functions such as the back button or the right-click menu. Poorly written scripts can also hog your systems resources.
YesScript provides a JavaScript blacklist, letting you specify which sites arent allowed to run JavaScript. A single click on the status bar icon can put the current site on the blacklist or take it off.
Download (0.025MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
829 downloads
cbMySQL 4.0.2
cbMySQL is a PHP Class witch can create, alter, and modify MySQL databases and tables. more>>
cbMySQL is a PHP Class witch can create, alter, and modify MySQL databases and tables. For backup issues, you can export CSV data directly with only one class method.
The MySQL object is much easier to handle than PHPs built in functions, and theres no need to install anything like PEAR.
Enhancements:
- This version is completely compatible with PHP5 and mysqli.
- The mysql extension is still supported.
- Some bug were removed and examples were added.
- The licence was changed to the LGPL.
<<lessThe MySQL object is much easier to handle than PHPs built in functions, and theres no need to install anything like PEAR.
Enhancements:
- This version is completely compatible with PHP5 and mysqli.
- The mysql extension is still supported.
- Some bug were removed and examples were added.
- The licence was changed to the LGPL.
Download (0.043MB)
Added: 2006-10-17 License: LGPL (GNU Lesser General Public License) Price:
1104 downloads
PHPulse 1.0.2
PHPulse is the FASTEST PHP based MVC framework in the world! more>>
PHPulse project is the FASTEST PHP based MVC framework in the world! It is built to be EXTREMELY lightweight and fast with a modular development environment allowing for quick plug-n-play functionality to be added merely by dropping in extra modules.
Most other frameworks attempt to try to do everything at once but PHPulse allows you to build or import the modules you want, use them when you need them and reduces the overall amount of overhead that other frameworks have.
With PHPulse, nothing is loaded except what is needed to build the page; no extra function calls, no extra class includes and no extra overhead. Which makes it the fastest framework in existence.
Main features:
- Built in breadcrumbs
- Automatic Error handling
- Easy templating system
- Administrative Interface
- Privileges management
- Form generation
- Extremely small footprint
- and more!
<<lessMost other frameworks attempt to try to do everything at once but PHPulse allows you to build or import the modules you want, use them when you need them and reduces the overall amount of overhead that other frameworks have.
With PHPulse, nothing is loaded except what is needed to build the page; no extra function calls, no extra class includes and no extra overhead. Which makes it the fastest framework in existence.
Main features:
- Built in breadcrumbs
- Automatic Error handling
- Easy templating system
- Administrative Interface
- Privileges management
- Form generation
- Extremely small footprint
- and more!
Download (0.13MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
919 downloads
Exaile 0.2.10
Exaile is a media player aiming to be similar to KDEs AmaroK, but for GTK+. more>>
Exaile project is a media player aiming to be similar to KDEs AmaroK, but for GTK+. It incorporates many of the features from AmaroK (and other media players) like automatic fetching of album art, handling of large libraries, lyrics fetching, artist/album information via the wikipedia, last.fm support, and optional iPod support (assuming you have python-gpod installed).
In addition, it includes a built in shoutcast directory browser, tabbed playlists (so you can have more than one playlist open at a time), blacklisting of tracks (so they dont get scanned into your library), downloading of guitar tablature from fretplay.com, and submitting played tracks on your iPod to last.fm.
<<lessIn addition, it includes a built in shoutcast directory browser, tabbed playlists (so you can have more than one playlist open at a time), blacklisting of tracks (so they dont get scanned into your library), downloading of guitar tablature from fretplay.com, and submitting played tracks on your iPod to last.fm.
Download (0.29MB)
Added: 2007-07-14 License: GPL (GNU General Public License) Price:
835 downloads
Ghoti IRC Client 0.86
Ghoti is a GUI-based IRC Client for unix/linux. more>>
Ghoti is a GUI-based IRC Client for unix/linux, written in Perl, and distributed under the GPL. Ghoti IRC Client has an uncanny similarity to mIRC.
Main features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
<<lessMain features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
Download (0.15MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1190 downloads
firefly 1.0.11
firefly is a firewall and QoS script for Linux netfilter. more>>
firefly is a firewall and QoS script for Linux netfilter. It is all-in-one and very easy to use. The configuration is cached and the firewall built in such a way that it can be rapidly rebuilt as a dial-up interface goes up and down (and the IP address changes).
There are two ways to install this software:
Automatically:
Run (as root) ./install.sh
Manually:
As root:
1. Copy firefly.cfg to /etc
2. Copy firefly.py to /usr/local/sbin
3. Copy firefly.8 to /usr/local/man/man8
4. Copy firefly.cfg.5 to /usr/local/man/man5
<<lessThere are two ways to install this software:
Automatically:
Run (as root) ./install.sh
Manually:
As root:
1. Copy firefly.cfg to /etc
2. Copy firefly.py to /usr/local/sbin
3. Copy firefly.8 to /usr/local/man/man8
4. Copy firefly.cfg.5 to /usr/local/man/man5
Download (0.022MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1213 downloads
SimpleDBM 0.58
SimpleDBM projects goal is to build a Relational Database Manager in Java. more>>
SimpleDBM projects goal is to build a Relational Database Manager in Java. The planned features include support for:
Transactions
Write Ahead Log
Multiple Isolation Levels
BTree Indexes
Entry Level SQL-92
System Catalogs
A distinguishing feature of the project is that the DBMS is being built in a modular fashion. The aim is ensure that each module is usable on its own ; for example, the Lock Manager or the Log Manager modules can be used on their own even if the rest of the system is not of interest.
There will be two major sub-systems in the dbms backend. The Data Manager subsystem is named RSS, and is responsible for implementing transactions, locking, tuple management, and index management. This sub-system is currently under development.
The second major sub-system will be called SQL Manager. Its job will be to parse SQL statements, produce optimum execution plans, and execute the SQL statements. Development of this sub-system is expected to start sometime in 2006.
SimpleDBM is being built in Java 5.0 and will use new features such as java.util.concurrent package and Generics available in this version of Java. SimpleDBM will not be compatible with previous versions of Java.
<<lessTransactions
Write Ahead Log
Multiple Isolation Levels
BTree Indexes
Entry Level SQL-92
System Catalogs
A distinguishing feature of the project is that the DBMS is being built in a modular fashion. The aim is ensure that each module is usable on its own ; for example, the Lock Manager or the Log Manager modules can be used on their own even if the rest of the system is not of interest.
There will be two major sub-systems in the dbms backend. The Data Manager subsystem is named RSS, and is responsible for implementing transactions, locking, tuple management, and index management. This sub-system is currently under development.
The second major sub-system will be called SQL Manager. Its job will be to parse SQL statements, produce optimum execution plans, and execute the SQL statements. Development of this sub-system is expected to start sometime in 2006.
SimpleDBM is being built in Java 5.0 and will use new features such as java.util.concurrent package and Generics available in this version of Java. SimpleDBM will not be compatible with previous versions of Java.
Download (0.50MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1102 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 built in 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