very fast
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2050
Earn-Money-Fast 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-16 License: Freeware Price: Free
191 downloads
Earn-Fast-Cash 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-19 License: Freeware Price: Free
189 downloads
Make-Money-Fast 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-09 License: Freeware Price: Free
200 downloads
Making-Money-Fast 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-27 License: Freeware Price: Free
179 downloads
Build it Fast 0.4.1
Build it Fast is a PHP framework for developing Web applications quickly. more>>
Build it Fast (BIF) is a PHP Framework. It contains several classes that help you develop complex Web applications in a short amount of time.
It brings the concept of the widget to Web development. It features Cascade Skins and transparent session management.
Its meant to make PHP programers life much easier, and making better web applications.
<<lessIt brings the concept of the widget to Web development. It features Cascade Skins and transparent session management.
Its meant to make PHP programers life much easier, and making better web applications.
Download (2.1MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1633 downloads
CherryPy 3.0.2
CherryPy is a pythonic, object-oriented web development framework. more>>
CherryPy is a pythonic, object-oriented web development framework.
CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This usually results in smaller source code developed in less time.
CherryPy is now more than three years old and it is has proven very fast and stable. It is being used in production by many sites, from the simplest ones to the most demanding ones.
Oh, and most importantly: CherryPy is fun to work with.
<<lessCherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This usually results in smaller source code developed in less time.
CherryPy is now more than three years old and it is has proven very fast and stable. It is being used in production by many sites, from the simplest ones to the most demanding ones.
Oh, and most importantly: CherryPy is fun to work with.
Download (0.17MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
809 downloads
wxDownload Fast 0.6.0
wxDownload Fast (also known as wxDFast) is an open source download manager. more>>
wxDownload Fast (also known as wxDFast) is an open source download manager.
Besides that, it is a multi-threaded download manager. This means that it can split a file into several pieces and download the pieces simultaneously.
Created in C++ using the wxWidgets(wxWindows) library.
Main features:
- Faster downloads (with Segmented/Multi-threaded/Accelerated transfers)
- Download resuming (Pause and restart where you stopped)
- Download scheduling
- Organizes files you have already downloaded
- View server messages (HTTP, FTP, file://). No HTTPS support.
- Available in multiple languages and easily translated. Now available in Portuguese [Brazil], Spanish, English and German
- Connection to FTP servers which require a password
- Calculates the MD5 checksum of downloaded files so they can be easily verified
<<lessBesides that, it is a multi-threaded download manager. This means that it can split a file into several pieces and download the pieces simultaneously.
Created in C++ using the wxWidgets(wxWindows) library.
Main features:
- Faster downloads (with Segmented/Multi-threaded/Accelerated transfers)
- Download resuming (Pause and restart where you stopped)
- Download scheduling
- Organizes files you have already downloaded
- View server messages (HTTP, FTP, file://). No HTTPS support.
- Available in multiple languages and easily translated. Now available in Portuguese [Brazil], Spanish, English and German
- Connection to FTP servers which require a password
- Calculates the MD5 checksum of downloaded files so they can be easily verified
Download (MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
1181 downloads
OvBB 0.16a
OvBB is a light-weight and fast message board system that mimics vBulletin. more>>
OvBB project is a light-weight and fast message board system that mimics vBulletin 2.x.x in both look and behavior, while incorporating new features and functionality.
<<less Download (0.24MB)
Added: 2007-04-08 License: MIT/X Consortium License Price:
930 downloads
Config::Fast 1.07
Config::Fast is an extremely fast configuration file parser. more>>
Config::Fast is an extremely fast configuration file parser.
SYNOPSIS
# default config format is a space-separated file
company "Supercool, Inc."
support nobody@nowhere.com
# and then in Perl
use Config::Fast;
%cf = fastconfig;
print "Thanks for visiting $cf{company}!n";
print "Please contact $cf{support} for support.n";
This module is designed to provide an extremely lightweight way to parse moderately complex configuration files. As such, it exports a single function - fastconfig() - and does not provide any OO access methods. Still, it is fairly full-featured.
Heres how it works:
%cf = fastconfig($file, $delim);
Basically, the fastconfig() function returns a hash of keys and values based on the directives in your configuration file. By default, directives and values are separated by whitespace in the config file, but this can be easily changed with the delimiter argument (see below).
When the configuration file is read, its modification time is first checked and the results cached. On each call to fastconfig(), if the config file has been changed, then the file is reread. Otherwise, the cached results are returned automatically. This makes this module great for mod_perl modules and scripts, one of the primary reasons I wrote it. Simply include this at the top of your script or inside of your constructor function:
my %cf = fastconfig(/path/to/config/file.conf);
If the file argument is omitted, then fastconfig() looks for a file named $0.conf in the ../etc directory relative to the executable. For example, if you ran:
/usr/local/bin/myapp
Then fastconfig() will automatically look for:
/usr/local/etc/myapp.conf
This is great if youre really lazy and always in a hurry, like I am.
If this doesnt work for you, simply supply a filename manually. Note that filename generation does not work in mod_perl, so youll need to supply a filename manually.
<<lessSYNOPSIS
# default config format is a space-separated file
company "Supercool, Inc."
support nobody@nowhere.com
# and then in Perl
use Config::Fast;
%cf = fastconfig;
print "Thanks for visiting $cf{company}!n";
print "Please contact $cf{support} for support.n";
This module is designed to provide an extremely lightweight way to parse moderately complex configuration files. As such, it exports a single function - fastconfig() - and does not provide any OO access methods. Still, it is fairly full-featured.
Heres how it works:
%cf = fastconfig($file, $delim);
Basically, the fastconfig() function returns a hash of keys and values based on the directives in your configuration file. By default, directives and values are separated by whitespace in the config file, but this can be easily changed with the delimiter argument (see below).
When the configuration file is read, its modification time is first checked and the results cached. On each call to fastconfig(), if the config file has been changed, then the file is reread. Otherwise, the cached results are returned automatically. This makes this module great for mod_perl modules and scripts, one of the primary reasons I wrote it. Simply include this at the top of your script or inside of your constructor function:
my %cf = fastconfig(/path/to/config/file.conf);
If the file argument is omitted, then fastconfig() looks for a file named $0.conf in the ../etc directory relative to the executable. For example, if you ran:
/usr/local/bin/myapp
Then fastconfig() will automatically look for:
/usr/local/etc/myapp.conf
This is great if youre really lazy and always in a hurry, like I am.
If this doesnt work for you, simply supply a filename manually. Note that filename generation does not work in mod_perl, so youll need to supply a filename manually.
Download (0.010MB)
Added: 2007-08-11 License: Perl Artistic License Price:
805 downloads
how to raise your credit score fast 1.0
Discover how to raise your credit score fast. free report... more>> <<less
Download (4KB)
Added: 2009-04-21 License: Freeware Price: Free
185 downloads
Set::IntSpan::Fast 0.0.5
Set::IntSpan::Fast is a Perl module for fast handling of sets containing integer spans. more>>
Set::IntSpan::Fast is a Perl module for fast handling of sets containing integer spans.
SYNOPSIS
use Set::IntSpan::Fast;
my $set = Set::IntSpan::Fast->new();
$set->add(1, 3, 5, 7, 9);
$set->add_range(100, 1_000_000);
print $set->as_string(), "n"; # prints 1,3,5,7,9,100-1000000
The Set::IntSpan module represents sets of integers as a number of inclusive ranges, for example 1-10,19-23,45-48. Because many of its operations involve linear searches of the list of ranges its overall performance tends to be proportional to the number of distinct ranges. This is fine for small sets but suffers compared to other possible set representations (bit vectors, hash keys) when the number of ranges grows large.
This module also represents sets as ranges of values but stores those ranges in order and uses a binary search for many internal operations so that overall performance tends towards O log N where N is the number of ranges.
The internal representation used by this module is extremely simple: a set is represented as a list of integers. Integers in even numbered positions (0, 2, 4 etc) represent the start of a run of numbers while those in odd numbered positions represent the ends of runs. As an example the set (1, 3-7, 9, 11, 12) would be represented internally as (1, 2, 3, 8, 11, 13).
Sets may be infinite - assuming youre prepared to accept that infinity is actually no more than a fairly large integer. Specifically the constants Set::IntSpan::Fast::NEGATIVE_INFINITY and Set::IntSpan::Fast::POSITIVE_INFINITY are defined to be -(2^31-1) and (2^31-2) respectively. To create an infinite set invert an empty one:
my $inf = Set::IntSpan::Fast->new()->complement();
Sets need only be bounded in one direction - for example this is the set of all positive integers (assuming you accept the slightly feeble definition of infinity were using):
my $pos_int = Set::IntSpan::Fast->new();
$pos_int->add_range(1, $pos_int->POSITIVE_INFINITY);
<<lessSYNOPSIS
use Set::IntSpan::Fast;
my $set = Set::IntSpan::Fast->new();
$set->add(1, 3, 5, 7, 9);
$set->add_range(100, 1_000_000);
print $set->as_string(), "n"; # prints 1,3,5,7,9,100-1000000
The Set::IntSpan module represents sets of integers as a number of inclusive ranges, for example 1-10,19-23,45-48. Because many of its operations involve linear searches of the list of ranges its overall performance tends to be proportional to the number of distinct ranges. This is fine for small sets but suffers compared to other possible set representations (bit vectors, hash keys) when the number of ranges grows large.
This module also represents sets as ranges of values but stores those ranges in order and uses a binary search for many internal operations so that overall performance tends towards O log N where N is the number of ranges.
The internal representation used by this module is extremely simple: a set is represented as a list of integers. Integers in even numbered positions (0, 2, 4 etc) represent the start of a run of numbers while those in odd numbered positions represent the ends of runs. As an example the set (1, 3-7, 9, 11, 12) would be represented internally as (1, 2, 3, 8, 11, 13).
Sets may be infinite - assuming youre prepared to accept that infinity is actually no more than a fairly large integer. Specifically the constants Set::IntSpan::Fast::NEGATIVE_INFINITY and Set::IntSpan::Fast::POSITIVE_INFINITY are defined to be -(2^31-1) and (2^31-2) respectively. To create an infinite set invert an empty one:
my $inf = Set::IntSpan::Fast->new()->complement();
Sets need only be bounded in one direction - for example this is the set of all positive integers (assuming you accept the slightly feeble definition of infinity were using):
my $pos_int = Set::IntSpan::Fast->new();
$pos_int->add_range(1, $pos_int->POSITIVE_INFINITY);
Download (0.10MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
KFilter 3.1
KFilter is a tool to design acoustic loudspeakers. more>>
KFilter is a tool to design acoustic loudspeakers in the theoretical way. It provides an interactive analysis of the equivalent analogue circuit design.
This is useful to create a good draft construction which can be improved by further measurement. Future measurement features are planned.
Main features:
- generating and simulation of the equivalent circuit design of a loudspeaker
- simulation of a passive eight-step topology passiv filter network
- generating of the equivalent circuit design of different volume types
- merging the results of point 1 to 3 in a free scaleable output window
- acoustic pressure, impedance and summary results of different drivers
- a wizard to generate standart filter circuit proposals for further analysis
- good optimizations / very fast algorythms
<<lessThis is useful to create a good draft construction which can be improved by further measurement. Future measurement features are planned.
Main features:
- generating and simulation of the equivalent circuit design of a loudspeaker
- simulation of a passive eight-step topology passiv filter network
- generating of the equivalent circuit design of different volume types
- merging the results of point 1 to 3 in a free scaleable output window
- acoustic pressure, impedance and summary results of different drivers
- a wizard to generate standart filter circuit proposals for further analysis
- good optimizations / very fast algorythms
Download (0.63MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1628 downloads

Gnome Catalog 0.3.4.2
This is a cataloging software for CDs and DVDs. more>>
Gnome Catalog 0.3.4.2 is a handy application for Gnome. It is actually a cataloging software for CDs and DVDs.
It can catalog your DVDs/CDs and files in your hard disk. Generate thumbnails of the video files and image files via nautilus (gnome file manager), and saves it in the database files. Save the metadata of the files, then you can search in the metatada of mp3, avis, images (exif).
The program have been develop in python-gtk for gnome desktop, using pyvorbis, mp3info, musicbraiz, and sqlite as database backend. The program should be very easy of use and very fast.
The program have been develop in python-gtk for gnome desktop, using pyvorbis, mp3info, musicbraiz, and sqlite as database backend. The program should be very easy of use and very fast.
Enhancements: Feb 21 2009
- German translation
- Solved bugs regarding utf8 characters
Requirements:
- python-gtk2
- python-pyvorbis
- python-pysqlite2
- python-gnome2
- gtk+
Added: 2009-02-21 License: GPL Price: FREE
1 downloads
Other version of Gnome Catalog
License:GPL (GNU General Public License)
ROX Filer 2.3
ROX Filer is a fast and powerful graphical file manager. more>>
ROX Filer is a fast and powerful graphical file manager.
It has full drag-and-drop support and background file operations, and is highly configurable.
<<lessIt has full drag-and-drop support and background file operations, and is highly configurable.
Download (1.2MB)
Added: 2005-09-05 License: GPL (GNU General Public License) Price:
1510 downloads
Fast Date Picker 0.02
Fast Date Picker is a calendar that is easy to integrate into Web pages that require the users to select a date. more>>
Fast Date Picker project is a calendar which is easy to integrate into pages that require the users to select a date like on travel sites.
Written in ECMAScript, it responds faster to the users clicks than most of the server-side-based or Java-applet-based date pickers often found on travel sites today.
The calendar can be added to your page any way you want (e.g. as a pop-up window or an expandable
<<lessWritten in ECMAScript, it responds faster to the users clicks than most of the server-side-based or Java-applet-based date pickers often found on travel sites today.
The calendar can be added to your page any way you want (e.g. as a pop-up window or an expandable
), and you can integrate it with any type of form fields for selecting dates.
In order to perform the integration, you do, however, need experience with ECMAScript - so if new Date() means nothing to you, Fast Date Picker probably isnt what youre looking for.
Main features:
- Allows you to set whether Sunday or Monday is the first day of the week.
- Can highligt certain days of the week (of your choice), e.g. Saturday and Sunday.
- Can highlight the current date.
- Can make dates up until a certain point (e.g. today) non-selectable so that users cannot select a date in the past.
- Easy to translate.
- Easy to change to fit the design of your website: Just edit the included style sheet.
- Made in a way that minimizes the risk of variable name clashes in ECMAScript and selector clashes in CSS.
- Uses standard ECMAScript, DOM, and CSS.
Enhancements:
- The problem with incorrect dates in calendars set to start weeks with Monday was fixed.
In order to perform the integration, you do, however, need experience with ECMAScript - so if new Date() means nothing to you, Fast Date Picker probably isnt what youre looking for.
Main features:
- Allows you to set whether Sunday or Monday is the first day of the week.
- Can highligt certain days of the week (of your choice), e.g. Saturday and Sunday.
- Can highlight the current date.
- Can make dates up until a certain point (e.g. today) non-selectable so that users cannot select a date in the past.
- Easy to translate.
- Easy to change to fit the design of your website: Just edit the included style sheet.
- Made in a way that minimizes the risk of variable name clashes in ECMAScript and selector clashes in CSS.
- Uses standard ECMAScript, DOM, and CSS.
Enhancements:
- The problem with incorrect dates in calendars set to start weeks with Monday was fixed.
Download (0.004MB)
Added: 2006-01-10 License: GPL (GNU General Public License) Price:
1390 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 very fast 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