read more testimonials
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2351
Read Local Lyrics 1.1
Read Local Lyrics is a little Python script works as a lyrics plugin. more>>
Read Local Lyrics is a little Python script works as a lyrics plugin.
If to some audio file, a corresponding ".txt" file can be found in the same folder, this is taken as the lyrics of the song.
<<lessIf to some audio file, a corresponding ".txt" file can be found in the same folder, this is taken as the lyrics of the song.
Download (0.030MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
Docutils 0.4
Docutils is an open-source text processing system for processing plaintext documentation into useful formats. more>>
Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX.
Docutils project includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language.
<<lessDocutils project includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language.
Download (1.2MB)
Added: 2006-01-11 License: Public Domain Price:
1382 downloads
Rawstudio 0.6
Rawstudio is an open source raw-image converter written in GTK+. more>>
Rawstudio is an open source raw-image converter written in GTK+.
Rawstudio can read and convert RAW-images from many different cameras, including Nikon and Canon. It uses dcraw.
Main features:
- Reads all dcraw supported formats
- Internal 16bit rgb
- Various post-shot controls (white balance, saturation and exposure compensation among others)
- Realtime histogram
<<lessRawstudio can read and convert RAW-images from many different cameras, including Nikon and Canon. It uses dcraw.
Main features:
- Reads all dcraw supported formats
- Internal 16bit rgb
- Various post-shot controls (white balance, saturation and exposure compensation among others)
- Realtime histogram
Download (0.26MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
813 downloads
Rediff Business 1.0
Rediff Business widget allows you to view and read the latest bussiness news from this Indian news source. more>>
Get up to date news about India Business from Rediff Business Edition RSS Feed.
Rediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
<<lessRediff Business widget brings, right on your desktop, the latest news from the bussiness world taken from this Indian news source.
Stay up-to-date with the latest bussiness news.
Download (92.4KB)
Added: 2009-04-25 License: Freeware Price:
191 downloads
Dappad notebook sidebar 1.0
Dappad notebook sidebar is an extension that lets you write and read notes in the Firefox sidebar. more>>
Dappad notebook sidebar is an extension that lets you write and read notes in the Firefox sidebar.
You have both public and private notes in one place. Your public notes can be shared with friends.
Notes are written in rich format, you can copy and paste content from web pages, Word documents and Excel spreadsheets.
Your notes are saved in folders, and can be tagged for quick browsing.
<<lessYou have both public and private notes in one place. Your public notes can be shared with friends.
Notes are written in rich format, you can copy and paste content from web pages, Word documents and Excel spreadsheets.
Your notes are saved in folders, and can be tagged for quick browsing.
Download (0.11MB)
Added: 2007-05-07 License: MPL (Mozilla Public License) Price:
900 downloads
Classfile Reader & Writer
Classfile Reader & Writer is a package for reading and writing Java .class files. more>>
This package makes it easy to read and write java classfiles. It doesnt, however, provide any help with displaying the contents of a classfile to the user (unless you count debug output), or disassembling the bytecodes.
This code snippet will read in a classfile and write it back out to a different file.
InputStream is = new FileInputStream("Foo.class");
OutputStream os = new FileOutputStream("FooCopy.class");
ClassInfo classInfo = new ClassInfo();
new ClassFileReader().read(is, classInfo);
classInfo.setName("FooCopy"); // Java requires the class name to match the file name
new ClassFileWriter().write(classInfo, os);
is.close();os.close();
The package can read "obfuscated" classfiles, like those generated by Crema, but it cant write them. Obfuscated classfiles have invalid data in them and the only reason they work is because most VMs ignore the data thats invalid (attributes like SourceFile, LineNumberTable, and LocalVariableTable). If a ClassFileReader encounters invalid data, it just ignores it.
<<lessThis code snippet will read in a classfile and write it back out to a different file.
InputStream is = new FileInputStream("Foo.class");
OutputStream os = new FileOutputStream("FooCopy.class");
ClassInfo classInfo = new ClassInfo();
new ClassFileReader().read(is, classInfo);
classInfo.setName("FooCopy"); // Java requires the class name to match the file name
new ClassFileWriter().write(classInfo, os);
is.close();os.close();
The package can read "obfuscated" classfiles, like those generated by Crema, but it cant write them. Obfuscated classfiles have invalid data in them and the only reason they work is because most VMs ignore the data thats invalid (attributes like SourceFile, LineNumberTable, and LocalVariableTable). If a ClassFileReader encounters invalid data, it just ignores it.
Download (0.056MB)
Added: 2005-04-22 License: Public Domain Price:
1651 downloads
Search::Binary 0.95
Search::Binary is a Perl module for generic binary search. more>>
Search::Binary is a Perl module for generic binary search.
SYNOPSIS
use Seach::Binary;
$pos = binary_search($min, $max, $val, $read, $handle, [$size]);
binary_search implements a generic binary search algorithm returning the position of the first record whose index value is greater than or equal to $val. The search routine does not define any of the terms position, record or index value, but leaves their interpretation and implementation to the user supplied function &$read(). The only restriction is that positions must be integer scalars.
During the search the read function will be called with three arguments: the input parameters $handle and $val, and a position. If the position is not undef, the read function should read the first whole record starting at or after the position; otherwise, the read function should read the record immediately following the last record it read. The search algorithm will guarantee that the first call to the read function will not be with a position of undef. The read function needs to return a two element array consisting of the result of comparing $val with the index value of the read record and the position of the read record. The comparison value must be positive if $val is strictly greater than the index value of the read record, 0 if equal, and negative if strictly less. Furthermore, the returned position value must be greater than or equal to the position the read function was called with.
The input parameters $min and $max are positions and represents the extent of the search. Only records which begin at positions within this range (inclusive) will be searched. Moreover, $min must be the starting position of a record. If present $size is a difference between positions and determines when the algorithms switches to a sequential search. $val is an index value. The value of $handle is of no consequence to the binary search algorithm; it is merely passed as a convenience to the read function.
<<lessSYNOPSIS
use Seach::Binary;
$pos = binary_search($min, $max, $val, $read, $handle, [$size]);
binary_search implements a generic binary search algorithm returning the position of the first record whose index value is greater than or equal to $val. The search routine does not define any of the terms position, record or index value, but leaves their interpretation and implementation to the user supplied function &$read(). The only restriction is that positions must be integer scalars.
During the search the read function will be called with three arguments: the input parameters $handle and $val, and a position. If the position is not undef, the read function should read the first whole record starting at or after the position; otherwise, the read function should read the record immediately following the last record it read. The search algorithm will guarantee that the first call to the read function will not be with a position of undef. The read function needs to return a two element array consisting of the result of comparing $val with the index value of the read record and the position of the read record. The comparison value must be positive if $val is strictly greater than the index value of the read record, 0 if equal, and negative if strictly less. Furthermore, the returned position value must be greater than or equal to the position the read function was called with.
The input parameters $min and $max are positions and represents the extent of the search. Only records which begin at positions within this range (inclusive) will be searched. Moreover, $min must be the starting position of a record. If present $size is a difference between positions and determines when the algorithms switches to a sequential search. $val is an index value. The value of $handle is of no consequence to the binary search algorithm; it is merely passed as a convenience to the read function.
Download (0.002MB)
Added: 2007-04-05 License: Perl Artistic License Price:
932 downloads
Gaim-RSS-Reader 0.1
Gaim-RSS-Reader is a plugin for the popular Gaim multi-protocol chat client. more>>
Gaim-RSS-Reader is a plugin for the popular Gaim multi-protocol chat client that adds the ability to monitor and read RSS feeds.
To install follow these commands:
./configure --prefix /usr --with-gaim=PATH
make
make install
<<lessTo install follow these commands:
./configure --prefix /usr --with-gaim=PATH
make
make install
Download (0.52MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Google::Adwords::CreditCard 0.6.0
Google::Adwords::CreditCard is a Google Adwords CreditCard object. more>>
Google::Adwords::CreditCard is a Google Adwords CreditCard object.
This object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
<<lessThis object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
firescope 0.1
firescope allows you to read kernel logs and other memory over FireWire. more>>
firescope is a port of Ben Herrenschmidts firescope tool to i386/x86-64 Linux with many additional changes. firescope allows you to read kernel logs and other memory over FireWire.
Enhancements:
- The program was ported to i386/x86-64.
- A log reader for printk buffers was implemented - the original could just talk to xmon.
- Lots of other changes were made.
<<lessEnhancements:
- The program was ported to i386/x86-64.
- A log reader for printk buffers was implemented - the original could just talk to xmon.
- Lots of other changes were made.
Download (0.007MB)
Added: 2006-04-04 License: GPL (GNU General Public License) Price:
1301 downloads
more.groupware 0.7.4
Moregroupware is groupware that includes standard modules like calendar, news, contacts, and more. more>>
Moregroupware is groupware that includes standard modules like news, contacts, calendar and more. To make a long story short: moregroupware is a web-based groupware application. Some of the features that are worth being mentioned:
- Contact/address management
- Webmail
- full-featured Calendar
- ToDo management
- News
- Project management
- Some preferences for each module
- available in different languages
- Skins based on Cascading Style Sheets
Main features:
- simple setup wizard
- easy module management and upgrade
- advanced rights management
- integrated online help
- easily skinnable with CSS
- based on the Smarty template engine
- works on MySQL and PostgreSQL
- available in more languages than just english
Enhancements:
- This release finally summarizes the tons of bugfixes done over the past year (more than that), and as usual we have updated the bundled libraries to current versions.
- Please read the NEWS-0.7.4 file and the documentation for more information.
- more.groupware is a web-based groupware written in PHP. Including modules like webmail, notes, todo, contacts, project management, calendar and others.
<<less- Contact/address management
- Webmail
- full-featured Calendar
- ToDo management
- News
- Project management
- Some preferences for each module
- available in different languages
- Skins based on Cascading Style Sheets
Main features:
- simple setup wizard
- easy module management and upgrade
- advanced rights management
- integrated online help
- easily skinnable with CSS
- based on the Smarty template engine
- works on MySQL and PostgreSQL
- available in more languages than just english
Enhancements:
- This release finally summarizes the tons of bugfixes done over the past year (more than that), and as usual we have updated the bundled libraries to current versions.
- Please read the NEWS-0.7.4 file and the documentation for more information.
- more.groupware is a web-based groupware written in PHP. Including modules like webmail, notes, todo, contacts, project management, calendar and others.
Download (2.3MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1280 downloads
pam_imap 0.3.7
pam_imap is a PAM module that authenticates against a remote IMAP or IMAPS server. more>>
pam_imap is a PAM module that authenticates against a remote IMAP or IMAPS server.
pam_imap program supports multiple servers, SSL, password caching, user blacklists (for admin users), and many configuration abilities.
Examples of recommended use:
1) A lab of UNIX/Linux machines that would require an easily accessible password database from an IMAP server
2) Authenticating users against a centralized password server that you have no control over, and it conveniently has an IMAP server. (The arms-tied-behind-your-back scenario)
3) Authenticating with applications that do not run as root. (Apache is a good example -- read user-testimonials below)
4) An IMAP cluster authentication relay -- pam-imap can be used for a cheap IMAP cluster solution. Have one or two master IMAP servers that have a username/password database (be it LDAP, shadow, etc) and an IMAP server. Have several cluster node servers to handle the bandwidth of client requests , and use pam-imap on each node to authenticate against the master server(s). (The node machines will use pam-imap in their imap service file)
Tie everything together with round-robin DNS and NFS mail folders, and you have yourself an IMAP cluster!
Main features:
- User BlockList: Allows pam-imap to ignore authenticating users such as root, apache, and others.
- Password caching: Possibly usefull in situations where network connections are slow, or server loads are high. Has a few security risks however. Checkout the README file for more info.
- Support for username@domain.com style logins. With Micro$oft style IMAP servers, the "@domain.com" can be appended to the UNIX username for easy compatability.
- Customizable "Password: " string... You could change it to anything! Maybe, "IMAP Password: " The possibilities are endless.
<<lesspam_imap program supports multiple servers, SSL, password caching, user blacklists (for admin users), and many configuration abilities.
Examples of recommended use:
1) A lab of UNIX/Linux machines that would require an easily accessible password database from an IMAP server
2) Authenticating users against a centralized password server that you have no control over, and it conveniently has an IMAP server. (The arms-tied-behind-your-back scenario)
3) Authenticating with applications that do not run as root. (Apache is a good example -- read user-testimonials below)
4) An IMAP cluster authentication relay -- pam-imap can be used for a cheap IMAP cluster solution. Have one or two master IMAP servers that have a username/password database (be it LDAP, shadow, etc) and an IMAP server. Have several cluster node servers to handle the bandwidth of client requests , and use pam-imap on each node to authenticate against the master server(s). (The node machines will use pam-imap in their imap service file)
Tie everything together with round-robin DNS and NFS mail folders, and you have yourself an IMAP cluster!
Main features:
- User BlockList: Allows pam-imap to ignore authenticating users such as root, apache, and others.
- Password caching: Possibly usefull in situations where network connections are slow, or server loads are high. Has a few security risks however. Checkout the README file for more info.
- Support for username@domain.com style logins. With Micro$oft style IMAP servers, the "@domain.com" can be appended to the UNIX username for easy compatability.
- Customizable "Password: " string... You could change it to anything! Maybe, "IMAP Password: " The possibilities are endless.
Download (0.032MB)
Added: 2006-04-18 License: GPL (GNU General Public License) Price:
1285 downloads
UDP Bridge 1.0
UDP-Bridge is a transparent proxy for UDP traffic, designed for use with Linux 2.2.x kernels. more>>
UDP-Bridge is a transparent proxy for UDP traffic, designed for use with Linux 2.2.x kernels. It provides two-way proxying of UDP packets, to avoid the port number mangling that occurs with Linux IP masquerading. This mangle rule causes problems for some online games.
This program was actually developed to solve a problem with handling Playstation 2 network traffic through a Linux firewall. According to testimonials, most games worked fine with this kind of configuration, but the one that I had tried (ATV Offroad Fury 2) would not work. The problem was apparently the UDP port mangling done by Linux IP masquerading, hence the need for this proxy.
To build the proxy, simply run make from within the source directory:
make
To install the proxy, run the following command as root:
make install
This will install the proxy executable (udpbridge) into /usr/local/sbin, and the man page into /usr/local/man/man8.
The last step is to create and install a configuration file. The included example.conf file is a good template for this. The default location for the configuration file is /etc/udpbridge.conf.
<<lessThis program was actually developed to solve a problem with handling Playstation 2 network traffic through a Linux firewall. According to testimonials, most games worked fine with this kind of configuration, but the one that I had tried (ATV Offroad Fury 2) would not work. The problem was apparently the UDP port mangling done by Linux IP masquerading, hence the need for this proxy.
To build the proxy, simply run make from within the source directory:
make
To install the proxy, run the following command as root:
make install
This will install the proxy executable (udpbridge) into /usr/local/sbin, and the man page into /usr/local/man/man8.
The last step is to create and install a configuration file. The included example.conf file is a good template for this. The default location for the configuration file is /etc/udpbridge.conf.
Download (0.019MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1224 downloads
Joystick
Joystick is a utility to read commands from joystick and send to BMPx via DBUS. more>>
Joystick is a utility to read commands from joystick and send to BMPx via DBUS. Commands are configured via .ini file. Should be easy to work with other DBUS-consumers.
<<less Download (0.028MB)
Added: 2006-08-15 License: GPL (GNU General Public License) Price:
1168 downloads
SkTvPrograms 1.6
SkTvPrograms is a superkaramba theme that read a XMLTV file and display what is on Tv now. more>>
SkTvPrograms is a superkaramba theme that read a XMLTV file and display what is on Tv now.
It uses XMLTV files (http://membled.com/work/apps/xmltv/) and PyXML.
Tested with XMLTV 0.5.42 and tv_grab_fr (France), tv_grab_it (Italy), tv_grab_no (Norway)
<<lessIt uses XMLTV files (http://membled.com/work/apps/xmltv/) and PyXML.
Tested with XMLTV 0.5.42 and tv_grab_fr (France), tv_grab_it (Italy), tv_grab_no (Norway)
Download (0.071MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1218 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 read more testimonials 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