Main > Free Download Search >

Free 0.25 software for linux

0.25

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 45
Kagiru 0.25

Kagiru 0.25


Kagiru is a Sudoku puzzle game supporting automatic puzzle generation, manual puzzle definition. more>>
Kagiru is a Sudoku puzzle game supporting automatic puzzle generation, manual puzzle definition.

Kagiru also features automatic puzzle solving, multiple levels, puzzle loading and saving, puzzle progress, localization, and errors shown in play.

<<less
Download (1.0MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1199 downloads
RenRot 0.25

RenRot 0.25


Renrot renames files according the DateTimeOriginal and FileModifyDate EXIF tags. more>>
Renrot renames files according the DateTimeOriginal and FileModifyDate EXIF tags, if they exist. Otherwise, the name will be set according to the current timestamp. Additionally, RenRot software rotates files and their thumbnails, accordingly Orientation EXIF tag.

The script can also put commentary into the Commentary and UserComment tags. Personal details can be specified via XMP tags defined in a configuration file.

<<less
Download (0.010MB)
Added: 2006-10-06 License: Perl Artistic License Price:
1116 downloads
AweMUD 0.25

AweMUD 0.25


AweMUD is an in-development MUD server; a program that hosts a text-oriented game for multiple-players. more>>
AweMUD project is an MUD server, still in development ; a program that hosts a text-oriented game for multiple-players. What MUDs lack in graphics and audio, they more than make up for in gameplay and fun.
Imagination coupled with a love of adventure, has let multitudes of people enjoy the vast worlds crafted by the creativity of their minds eye, all through the use of a MUD server. If you enjoy reading, youll love playing a MUD!
Enhancements:
- Portability updates: Linux, BSD, Solaris, Cygwin, OS X.
- Better entity name handling.
- New String class.
- Re-written character creation process.
<<less
Download (0.62MB)
Added: 2006-07-13 License: BSD License Price:
1198 downloads
Qtarot 0.25

Qtarot 0.25


Qtarot project is a tarot reading/teaching tool using the Qt library. more>> <<less
Download (0.25MB)
Added: 2006-10-21 License: GPL (GNU General Public License) Price:
1100 downloads
octavia 0.25

octavia 0.25


octavia is a compiler for a music description language that compiles to MIDI data. more>>
octavia is a compiler for a music description language that compiles to MIDI data. octavia music source files can also use Python code to perform generic programming tasks that a composer might wish to accomplish.
Enhancements:
- This release deals correctly with accented notes in chords.
- The program should now work in Windows.
- #CUT and #SAVE points were added in the script to automate cutting octfunc.py.
- A file is not created unless a player function is seen in the source.
- Unprocessing a processed sequence recreates the chords and arpeggiation appropriately.
- Plugins are now also sought in the LaunchPath of octavia program+/plugins/.
- Text and Tracknames are created automatically.
<<less
Download (0.27MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1182 downloads
spam.pl 0.25

spam.pl 0.25


spam.pl is a perl script that extracts all relaying hosts from the headers of a spam mail. more>>
spam.pl is a perl script that extracts all relaying hosts from the headers of a spam mail and sends a complaint mail to all the responsible mail server administrators.
spam.pl is free software released under the GPL license.
There is no warranty, neither expressed nor implied, that spam.pl would do what it is said to do. It is up to you to use it.
Main features:
- Use your own complaint message
- Enter your own list of friendly hosts (probably the friendly hosts that relayed the mail to you)
- You should also instruct spam.pl what email-address it should put in the From: line when it mails its complaints.
- Run the script without sending any mail to see what receivers it could extract.
- Run the script with only one specified receiver, so that you can mail yourself and see what it looks good.
- Invoke the script from inside your favorite mail program. Just pipe the whole mail including headers into this script. You can of course just save the whole mail first and then pipe it manually into this script.
- Complain through the abuse.net service.
- Resolves IP-only addresses
- Optionally extract host names to complain to from the mail bodys http:// links.
- Can be made to use the whois.abuse.net lookup service.
<<less
Download (0.016MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1394 downloads
gmorgan 0.25

gmorgan 0.25


gmorgan is a rhythm station, a modern organ with full editable accompaniment for play in real time. more>> <<less
Download (0.68MB)
Added: 2005-11-09 License: GPL (GNU General Public License) Price:
1455 downloads
sccs2svn 0.25

sccs2svn 0.25


sccs2svn converts a SCCS repository into a Subversion repository. more>>
sccs2svn converts a SCCS repository into a Subversion repository. The script visits a directory tree with SCCS repositories.

sccs2svn project then sorts the SCCS deltas by time and applies them to a Subversion repository. The script attempts to transform some SCCS keywords to Subversion keywords.

The script assumes that your SCCS repositories are arranged in a hierarchy, where each directory has its own SCCS directory:

trunk
trunk/SCCS
docs
SCCS
README.txt
src
project1
SCCS
main.c
project2
SCCS
main.c

The structure will be replicated in the newly created Subversion repository, minus the SCCS directories. Each files history will be replicated as well. The script will attempt to merge together deltas that are near each other in time, and have the same comment.

<<less
Download (0.008MB)
Added: 2006-02-21 License: LGPL (GNU Lesser General Public License) Price:
1340 downloads
froofyJIT 0.25

froofyJIT 0.25


froofyJIT is a C++ syntactic sugar front-end for Paolo Bonzinis GNU lightning library for dynamic native code generation. more>>
froofyJIT is a C++ syntactic sugar front-end for Paolo Bonzinis GNU lightning library for dynamic native code generation. froofyJIT program uses C++s powerful language facilities to allow GNU lightning instructions to be expressed in a more concise way that approximates a real assembly language.
Below is a program which uses froofyJIT to compute a Fibonacci number (directly translated from tests/fib.c in GNU lightning):
#include < cstdlib >
#include < iostream >
#include "froofy/jit.h"
static jit_insn codeBuffer[1024];
typedef int (*pifi)(int);
int main()
{
pifi nfibs;
int in;
{
using namespace froofy::jit;
label< > basis;
nfibs/ !org, codeBuffer;
prolog, 1;
!arg< ui > in;
getarg< ui > v0, in;
blti< ui > basis, v0, 2;
subi< ui > v1, v0, 1;
subi< ui > v2, v0, 2;
prepare< i > 1;
pusharg< ui > v1;
finish, nfibs;
retval< i > v1;
prepare< i > 1;
pusharg< ui > v2;
finish, nfibs;
retval< i > v2;
addi< ui > v1, v1, 1;
addr< ui > rr, v1, v2;
ret --;
basis/ movi< i > rr, 1;
ret --;
!end, codeBuffer;
}
std::cout<<less
Download (0.015MB)
Added: 2007-08-01 License: LGPL (GNU Lesser General Public License) Price:
814 downloads
Test::Unit 0.25

Test::Unit 0.25


Test::Unit is the main PerlUnit testing framework. more>>
Test::Unit is the main PerlUnit testing framework.

SYNOPSIS

This package provides only the project version number, copyright texts, and a framework overview in POD format.

This framework is intended to support unit testing in an object-oriented development paradigm (with support for inheritance of tests etc.) and is derived from the JUnit testing framework for Java by Kent Beck and Erich Gamma. To start learning how to use this framework, see Test::Unit::TestCase and Test::Unit::TestSuite. (There will also eventually be a tutorial in Test::Unit::Tutorial.

However Test::Unit::Procedural is the procedural style interface to a sophisticated unit testing framework for Perl that . Test::Unit is intended to provide a simpler interface to the framework that is more suitable for use in a scripting style environment. Therefore, Test::Unit does not provide much support for an object-oriented approach to unit testing.

<<less
Download (0.31MB)
Added: 2007-05-07 License: Perl Artistic License Price:
900 downloads
Inline::CPP 0.25

Inline::CPP 0.25


Inline::CPP is a Perl module that can write Perl subroutines and classes in C++. more>>
Inline::CPP is a Perl module that can write Perl subroutines and classes in C++.

SYNOPSIS

use Inline CPP;

print "9 + 16 = ", add(9, 16), "n";
print "9 - 16 = ", subtract(9, 16), "n";

__END__
__CPP__

int add(int x, int y) {
return x + y;
}

int subtract(int x, int y) {
return x - y;
}

The Inline::CPP module allows you to put C++ source code directly "inline" in a Perl script or module. You code classes or functions in C++, and you can use them as if they were written in Perl.

<<less
Download (0.024MB)
Added: 2006-07-06 License: Perl Artistic License Price:
1205 downloads
GFingerPoken 0.25

GFingerPoken 0.25


GFingerPoken project is a BlackBox-type GTK-based game. more>>
GFingerPoken project is a BlackBox-type GTK-based game written in C with graphics in POV-Ray

It uses GTK+ 1.2 or higher and is based on an old MS Windows shareware game called Marble. It features an easy drag-and-drop interface and randomly-generated levels with adjustable difficulty.

It now features network play with two different game types. It is currently fully playable, but is still a little rough around the edges.

<<less
Download (0.16MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1067 downloads
Uncle Unc 0.25.5

Uncle Unc 0.25.5


Uncle Unc is a generic framework for network-based services. more>>
Uncle Unc is an application that provides an integrated view of structured data sources. Using a very flexible and powerful representation model, many services can be represented in Uncle Unc.
Uncle Unc is a framework for network data-sharing, enabling remote administration and access to a range of services from a range of clients, using a simple text-based protocol that isnt tied to any platform, operating system or programming language.
Uncle Unc is a toolkit for agile development of interfaces to network services that are easy to maintain, and will grow as the service grows.
At the heart of Uncle Unc is a small generic specification of what a information-based network service might look like. This specification is very generic, and free of reference to any specific technologies or buzz-words.
It is based on the simple observation that much of the time we spend with computers is spent organising and categorising data, pushing data from one box to another, and invoking actions on that data. Most user interfaces attempt to represent this activity for a single type of data, such as a mailbox, a filesystem, a relational database, a network of computers or a music collection. Uncle Unc provides a framework that makes it easy to interact with any data source.
If you feel constrained by the user interfaces you are using (or developing!), or frustrated by having to use a poorly-designed user interface for a particular task, then Uncle Unc may turn out to be a good friend!
Uncle Unc is based on the simple observation that much of the time we spend with computers is spent organising and categorising data, pushing data from one box to another, and invoking actions on that data. Arguably, we ought to spend less time doing this sort of thing and get out into the fresh air more! At the very least, we should be able to do it efficiently and effectively. The more energy we expend on wrestling with the user interface in order to get these low-level jobs done, the less we will have to deal with the high-level problem-solving tasks that can make the difference between work and gainful productivity.
Lets call this low-level categorisation activity as stamp collecting, at the risk of offending philatelists. Most user interfaces attempt to represent stamp-collecting activities for a single type of data, such as a mailbox, a filesystem, a relational database, a network of computers or a music collection. Uncle Unc provides a framework that makes it easy to interact with any data source at this level.By doing it once, we can take the time and effort to do it well, so that it doesnt intrude on the users activities unduly.
Computing is a rapidly changing field, full of powerful new uses for computers such as digital multimedia, realistic graphics and artificial intelligence. And yet much of the time that we use computers, we are performing essentially the same stamp-collecting tasks that we did twenty years ago.
Even when dealing with the new high-powered uses of computers, this is the case. How much of a digital music player programs code is devoted to playing the music, compared to sorting through and organising album playtracks (and which does the user spend most of their time doing?). 3D graphics and neural network designer applications have a similar requirement to present their internal information in a useful way to the end-user.
There is currently little cohesion in the way that software developers address these tasks. Each application codes its own listings widgets. Some have sortable fields. Some have filters. Some can divide the results into pages. Most do some things quite well, some badly, and some not at all. Most will present the interface in a single medium - as a desktop application, or a HTML web interface, a java applet, a flash movie, or whatever. Most will run on a limited number of platforms, Operating Systems or browsers.
This situation restricts the exposure of the application behind the interface, by tying it to that interface. It also limits the exposure of a front-end to a single application. The proverbial wheel is frequently re-invented, and often under tight pressures of time and resources, with less than desirable results.
Uncle Unc is an attempt to develop a generic component framework that allows many different structured data-sorting tasks to be harnessed in a manageable way. A small central set of open interfaces serve as a broker between any client and any service, giving the owners of the network the maximum degree of flexibility. In the language of Desiogn Patterns, Uncle Unc implements a bridge pattern between list-like clients and list-like servers.
Main features:
- A common set of interfaces are provided in the java programming language, and the framework has been developed to make it easy to expose any java object as an Uncle Unc service, and to control what gets exposed and how.
- Network communication between clients and severs is done using XML, opening the door to non-java programs. Over time, we may develop more detailed frameworks for interoperability using PHP, Python, .NET or other popular programming languages.
- Clients and servers are decoupled. That is, a client that can understand one service can understand any service. A service that can talk to one client can talk to any client. This results in a very efficient path to network-enabling a service across a range of platforms, or allowing access to network resources from a new type of client.
- This increases the incentive for developers to provide new capabilities to the system. A widget set that provides a better view of a list of items does so for files, mail, log file entries, databases, newsgroups, etc. without any reworking. Similarly, a new backend service that delivers an Uncle Unc interface will enjoy exposure on all Uncle Unc client platforms (with plans afoot to cover web front-ends, smartphones, and scripting language access as well as the desktop clients).
- The content of the user interface layer is directly defined by the properties and methods of the back-end service. As the back-end service evolves, there is no need to recode the GUI (or other UI), simplky the skeleton used to support it. Even this can be automatically generated from the back-end systems objects. Agile development is supported and encouraged in this way.
- Defining the UI structure directly from the back-end has the further advantage of providing a good fit between the two. A hand-coded UI may omit certain capabilities of the back-end, because they are hard to express using an ad-hoc composition of low-level widgets such as textboxes, tick boxes and drop-down lists.
- The UI is built around an open-ended description of the structure of the service that one is interacting with, rather than expressing a set of fixed pathways of interaction. As such, it supports a flexible, problem-solving approach by the end-user, rather than a purely mechanistic one.
<<less
Download (1.55MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1633 downloads
GNU Shishi 0.0.25

GNU Shishi 0.0.25


GNU Shishi project is a (still incomplete) implementation of Kerberos 5. more>>
GNU Shishi project is a (still incomplete) implementation of Kerberos 5, which can be used to authenticate users in distributed systems. GNU Shishi contains a library that can be used by application developers, and a command line utility for users.

Shishi supports Kerberos authenticated telnet client/server, IMAP client/server (via GSSAPI), SSH client/server (via GSSAPI), rsh/rlogin client, and a PAM module for host security.

<<less
Download (3.2MB)
Added: 2006-05-03 License: GPL (GNU General Public License) Price:
1269 downloads
AudioCD::Mac 0.25

AudioCD::Mac 0.25


AudioCD::Mac is a MacPerl extension for controlling Audio CDs. more>>
AudioCD::Mac is a MacPerl extension for controlling Audio CDs.

SYNOPSIS

#!perl -w
use AudioCD;
use strict;
my $cd = new AudioCD;

$cd->volume(255);
$cd->play(2);
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);

$cd->pause;
print "Now pausedn" if $cd->status == CD_PAUSE;
sleep(5);

$cd->volume(100);
$cd->continue;
print "Now playingn" if $cd->status == CD_PLAY;
printf "Volume is %dn", $cd->volume;
sleep(5);

my @info = $cd->info;
printf "Currently at track %d, %.2d:%.2dn", @info[0..2];

$cd->stop;
my $status = $cd->status;
print "Now stoppedn" if
($status == CD_FINISH || $status == CD_STOP);

if (do CDDB.pm) { # sold separately
my $cddb = new CDDB;
my @cddb_info = $cddb->calculate_id( $cd->cddb_toc );
my @discs = $cddb->get_discs(@cddb_info[0, 3, 4]);
print "You were probably listening to $discs[0]->[2]n";
}

$cd->eject;

This is the MacPerl module to be used by the AudioCD module. Other modules can be written for other platforms, but this one is Mac specific, calling Mac OS APIs to control the CD player.

<<less
Download (0.014MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1220 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3