Main > Free Download Search >

Free 0.01 software for linux

0.01

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 293
Lexi 0.01

Lexi 0.01


Lexi project is a dict client and vocabulary builder. more>>
Lexi project is a dict client and vocabulary builder.

Lexi is a dict client that also serves as a personalized vocabulary builder.

It caches definitions and has a persistent word list.

The interface is structured to be quick and easy and features synonym clicking, drag and drop word queries, and spelling suggestions.

<<less
Download (0.025MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1089 downloads
blah 0.01

blah 0.01


blah project consists of a utility for maintaining a list of frequently copy-and-pasted text. more>>
blah project consists of a utility for maintaining a list of frequently copy-and-pasted text.
When an item is selected from the menu the corresponding text is automatically placed into the clipboard.
You can then use the paste feature in another application to transfer the text.
The current version is functional and usable. However, my goal is to re-design/re-write the code as a GNOME panel app.
Enhancements:
- added rpm bult from archive.
<<less
Download (0.009MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
990 downloads
wmap 0.01

wmap 0.01


wmap is a tool for creating log files about the reachability of wireless access points with signal strengh and GPS coordinates. more>>
wmap is a tool for creating log files about the reachability of wireless access points with signal strengh and GPS coordinates.

Options:

-i Interface Name - Network interface to use (i.e. wlan0 or eth0),
default is wlan0
-l logfile Name - Name of the data logfile, default is wmap.log
-d debug - For debugging / direct console output set this to
anything != NULL
-h IP - The ip is nesecary to run wmap. Normally this is the ip of
your AP or Router

<<less
Download (0.002MB)
Added: 2005-09-21 License: GPL (GNU General Public License) Price:
1499 downloads
JDBC 0.01

JDBC 0.01


JDBC is a Perl 5 interface to Java JDBC (via Inline::Java). more>>
JDBC is a Perl 5 interface to Java JDBC (via Inline::Java).

SYNOPSIS

use JDBC;

JDBC->load_driver("org.apache.derby.jdbc.EmbeddedDriver");

my $con = JDBC->getConnection($url, "test", "test");

my $s = $con->createStatement();

$s->executeUpdate("create table foo (foo int, bar varchar(200), primary key (foo))");
$s->executeUpdate("insert into foo (foo, bar) values (42,notthis)");
$s->executeUpdate("insert into foo (foo, bar) values (43,notthat)");

my $rs = $s->executeQuery("select foo, bar from foo");
while ($rs->next) {
my $foo = $rs->getInt(1);
my $bar = $rs->getString(2);
print "row: foo=$foo, bar=$barn";
}

This JDBC module provides an interface to the Java java.sql.* and javax.sql.* JDBC APIs.
<<less
Download (1.9MB)
Added: 2007-06-04 License: Perl Artistic License Price:
874 downloads
SIAR 0.01

SIAR 0.01


SIAR (Simple IP Account Reporter) is a plug-in for pmacct (Promiscuous Mode IP Accounting Package). more>>
SIAR (Simple IP Account Reporter) is a plug-in for pmacct (Promiscuous Mode IP Accounting Package) for creating specific reports of traffic on a LAN.

SIAR plugin creates an overview of the total of traffic that passed through the interface, a top protocol table, a top listener table, a top talkers table, a total situation table, seek for an IP source, seek for an IP destination, seek for both, a top conversation table and a graph for a specific day

Installation:

After you have download the file, you have to decompress it in the web-server folder. I suggest to decompress it in /var/www/, infact if you decompress it in an another you will have problems with the code.

cd /var/www/
tar xfz < name >-x-y-z.tar.gz
cd < name >-x-y-z.tar.gz

The tool is now installed. Read the CONFIG file for the configuration.

<<less
Download (4.5MB)
Added: 2006-03-15 License: GPL (GNU General Public License) Price:
1318 downloads
Toyd 0.01

Toyd 0.01


Toyd is an advanced next-generation Window Manager. more>>
Toyd is an advanced next-generation Window Manager. Toyd is built on top of Aoof-Wm, an Advanced Object Oriented Framework designed specifically for the development of portable Window Management systems.
Main features:
Unique configuration
- Evoluate through different environments without seeing any changes. Switch your Operating System but keep the same Interface, the same window manager, the same unique configuration.
Theme
- Master your environment, personalize it, make it your third hand by choosing among a lot of different themes. And if none of them satisfy you, you can still design your own easily !
No click
- Let your instincts drive your computer with the intuitive next-generation no click user interface. No more dashed movements as moving, pointing, multi-clicking, you can now control your machine with smooth peaceful gestures.
Add features with the plugin manager
- Delivered with a wide variety of functionalities, the philosophy of the project is a high level of self configuration with no restrictions at all, you can add features with the plugin manager. Dont be restrained to enable or disable a feature, make it yourself, and then fill any lack you may encounter.
<<less
Download (0.10MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1228 downloads
Myco 0.01

Myco 0.01


Myco is a Perl module that contains the myco object framework. more>>
Myco is a Perl module that contains the myco object framework.

SYNOPSIS

use Myco;

### DB connection
Myco->db_connect(@dbconn);
Myco->db_disconnect(@dbconn);

$storage = Myco->storage; # Tangram connection object

### Object retrieval
$obj = Myco->load($id); # retrieval by Tangram object id

# Retrieve all of given class
@objects = Myco->select(Myco::Foo);

# Retrieve all of given class, using remote object and filtering
$remote = Myco->remote(Myco::Foo);
@objects = Myco->select($remote, $filter);

# Retrieve all of given class, by cursor
$cursor = Myco->select(Myco::Foo);
while (my $obj = $cursor->current()) {
# process $obj
$cursor->next();
}

### Object insertion and update
# Myco::Base::Entity alternative
Myco->insert($obj); # $obj->save;
Myco->update($obj); # $obj->save;
Myco->update(@objects);

### Object removal - from db and memory
Myco->destroy($obj); # $obj->destroy;
Myco->destroy(@objects);

### Object removal - from just db
Myco->erase(@objects);
See Tangram::Storage for other miscellany.

Encapsulates functionality of Tangram::Storage but treats the storage connection object as class data, allowing access to object persistence functionality via class method calls.

Intended for use with so-called myco "entity" objects, that is those belonging to classes that inherit from Myco::Base::Entity. Use of inherited instance methods for managing object persistence state where possible is preferred. (ie. use $obj->save instead of both Myco->insert($obj) and Myco->update($obj).)

Pulls in all other required classes of entire Myco class system.

<<less
Download (0.085MB)
Added: 2007-05-09 License: Perl Artistic License Price:
899 downloads
Qubit 0.01

Qubit 0.01


Qubit (Qmail Ultimate Backend Integration Tool) is a fully Web-based qmail server configuration and administration suite. more>>
Qubit (Qmail Ultimate Backend Integration Tool) is a fully Web-based qmail server configuration and administration suite.

Qubit project is based on the qmailrules qmail server installation style. It has the same features as other similar tools (like vqadmin and qmailadmin), and it also gives you full control to administer your server with all sorts of features and applications.
<<less
Download (0.038MB)
Added: 2006-02-22 License: GPL (GNU General Public License) Price:
1341 downloads
pyD20 0.01

pyD20 0.01


pyD20 is a combat manager for D20 or DND3e. more>>
pyD20 project is a combat manager for D20 or DND3e.
pyD20 is a combat manager meant to be used by a DM while playing the D20/DND3e role-playing game. Its features include a pyGTK2/Glade interface, the ability to track combatants, initiatives, and HP, the ability to reassign initiatives during combat, and the ability to add or remove combatants during combat. pyD20 is designed to be simple for the DM to use.
Main features:
- Track combatants.
- Set initiative for those combatants who want to roll manually.
- Roll initiative for other combatants.
- Track hit points for combatants.
- Change initiative during combat (refocus, triggers, delay).
- Counts the rounds of combat.
<<less
Download (0.011MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1022 downloads
PayVeX 0.01

PayVeX 0.01


PayVeX project works with PayPal IPN to sell files, this approach ensures you are paid for your digital content. more>>
PayVeX project works with PayPal IPN to sell files, this approach ensures you are paid for your digital content before a customer can download it.

For the customer using PayVeX, a purchase is quick, convenient, anonymous and simple.

In this day and age, asking for information can lead to lost sales. People are in a rush and arent interested in taking the time to fill out lengthy forms.

For the merchant, impulse buyers and people who would otherwise resist due to privacy or credit card concerns suddenly become buyers.
<<less
Download (MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
828 downloads
Tivoli 0.01

Tivoli 0.01


Tivoli is a Perl extension for Tivoli TME10. more>>
Tivoli is a Perl extension for Tivoli TME10.

SYNOPSIS

Not (yet) Autoloader implemented.

use Tivoli::DateTime;
use Tivoli::Logging;
use Tivoli::Fwk;
use Tivoli::Endpoints;

This Module will handle about everything you may need for Tivoli TME10. If anything has been left out, please contact me at tivoli.rhase@muc-net.de so it can be added.

Tivoli::DateTime

This Package will handle about everything you may need for handling the date / time.

Tivoli::Logging

This Package will handle about everything you may need for Logging.

Tivoli::Fwk

This Package will handle about everything you may need for Framework.

Tivoli::Endpoints

This Package will handle about everything you may need for Endpoints.

<<less
Download (0.014MB)
Added: 2007-05-25 License: Perl Artistic License Price:
885 downloads
SLOOPS 0.01

SLOOPS 0.01


SLOOPS - Simple, Light, Object Oriented Persistence System. more>>
SLOOPS - Simple, Light, Object Oriented Persistence System.

SLOOPS is a lightweight Object Oriented persistence system.

If you want to follow the tutorial, uncompress the distribution from command line !

It has been designed with simplicity and reliability in mind. So you should expect:

- VERY EASY AND QUICK implementation of your own datamodel. - VERY EASY retrieving of your data. - Some limitations that are negligable for 90% of cases !

It has been tested in production environment for months, so you can relie on it !
It allows to make objects persistents with just a few lines of declarative code. It supports:

- Inheritance
- Class polymorphism.
- Scalar attributes ( can be Object ! )
- SQL Free queries !
- MySQL database ( other ones in the future ).
- Optionnal caching based on Cache::FastMemoryCache .

It doesnt support :

- nonscalar attributes. So you have to do helper objects to support n-n relations . Is it so bad ?
- transaction . Thats a serious issue. Will be implemented with other database support !

<<less
Download (0.014MB)
Added: 2007-05-16 License: Perl Artistic License Price:
891 downloads
libmpd 0.01

libmpd 0.01


libmpd is very new, I wrote it to abstract the mpd abstraction out of the code in gmpc. more>>
libmpd is very new, I wrote it to abstract the mpd abstraction out of the code in gmpc. Therefor making gmpc code easier to read, but even more important easier to debug.
Libmpd will now be released as a set of C files. The main goal is to make it a seperate library. Comments/suggestions are more then welcome, just keep in mind this is a pre-release.
Goal:
Trying to provide a easy to use high level, callback based access to mpd. It tries to be fast and keep the data transfer with mpd to the minimum. Todo this it implement qeues for deleting and adding songs. There is extra functionallity added for the eas of the programmer.
Its written in plain C and uses the following header files:
- regex.h
- libmpdclient.h
- stdio.h
- stdlib.h (using __USE_GNU)
- debug_printf.h (should come along with libmpd)
Main features:
- Basic player access.
- Playlist access.
- Error handling.
- Command queues.
- Advanced search.
<<less
Download (0.30MB)
Added: 2006-04-03 License: GPL (GNU General Public License) Price:
1299 downloads
YAWICA 0.01

YAWICA 0.01


YAWICA stands for Yet Another Wavelet based Image Compression Algorithm, it is the result of my diploma thesis. more>>
YAWICA stands for Yet Another Wavelet based Image Compression Algorithm, it is the result of my diploma thesis. This source code is for educational purposes only and not for any commercial application.

So it is neither optimized for speed nor does it accept other image material than PGM images with 256 grey levels. It is intended for photo realistic images and will give a poor performance on bilevel ones.

Here some PSNR-values in dB for different images transformed with the 9/7-wavelet with 0.5 bpp in comparsion to SPIHT and EBCOT.

picture resolution SPIHT EBCOT YAWICA
lena.pgm 512x512 37.25 dB 37.32 dB 37.68 dB
barbara.pgm 512x512 31.40 dB 32.31 dB 32.25 dB
goldhill.pgm 512x512 33.13 dB 33.24 dB 33.49 dB
mandrill.pgm 512x512 25.65 dB 25.58 dB 25.82 dB
bike.pgm 2048x2560 33.01 dB 33.55 dB 33.66 dB
cafe.pgm 2048x2560 26.49 dB 26.84 dB 27.24 dB
woman.pgm 2048x2560 33.59 dB 33.65 dB 33.95 dB
<<less
Download (0.025MB)
Added: 2006-04-05 License: Free For Educational Use Price:
1299 downloads
NetChat 0.01

NetChat 0.01


NetChat is a very versatile tool for layer 5 protocols. more>>
NetChat is a combination of NetCat and ppps "chat", put on steroids for high performance. It is meant as a network exercise tool.

Using simple "say this, expect this reply" scripts, NetChat can be made to easilly speak most text-based protocols (such as SMTP, HTTP, POP3 etc.), and many binary protocols, very easilly.

In addition to the above, NetChat is built to perform a large number of concurrent connections. This makes NetChat an ideal network protocol stress-test tool.

Current code is limited to client only and simple send/receive matching. Future extensions will include the ability to work in listen mode, as well as use random elements in the replies and requests.
<<less
Download (0.074MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
2368 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5