Main > Free Download Search >

Free combined software for linux

combined

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 515
Chindi 1.0

Chindi 1.0


Chindi is a client/server package for encrypted file transfer. more>>
Chindi project is a client/server package written in Java with functionality similar to that of an FTP server.
The goal is to create an old-school BBS-system combined with a FTP server.
All transfers are encrypted using a fast stream cipher combined with RSA encryption for the transfer of the keys.
Main features:
- An assymetric RSA-type cipher is used for the transfer of the stream cipher keys. The number of bits to use for the RSA encryption is optional. This means that communication with the Chindi Server is very hard to decode for someone using a packet sniffer.
- Remote administration of the server through the Chindi Client. In fact, all administration is remote, even when on the local machine.
- All user data is stored in a lightweight SQL-compliant database (HypersonicSQL by Thomas Mueller), allowing the use of the powerful SQL syntax for data management.
- System-independent file access system. You can set hierarchical accesslevels for directories and different operations.
- The client is capable of running scripted sessions.
- Different from an FTP-type datatransfer, a Chindi datatransfer does not occupy the current connection, but instead creates a new one. This means that in one login session several concurrent transfers can take place while still keeping the login session open for communication.
<<less
Download (0.23MB)
Added: 2006-09-28 License: Free for non-commercial use Price:
1121 downloads
HiveMind 1.0

HiveMind 1.0


HiveMind is a services and configuration microkernel. more>>
HiveMind project is a services and configuration microkernel:
- Services: HiveMind services are POJOs (Plain Old Java Objects) that can be easily accessed and combined. Each service ideally defines a Java interface it implements (but this is no longer mandatory). HiveMind takes care of instantiating and configuring each service just as necessary. HiveMind lets services collaborate with each other via dependency injection.
- Configuration: HiveMind allows you to provide complex configuration data to your services in a format you define. HiveMind will integrate the contributions of such data from multiple modules and convert it all into data objects for you. HiveMind configurations allow for powerful, data-driven solutions which combine seemlessly with the service architecture.
- Microkernel: HiveMind is a framework for creating applications, not an application, or even an application server, itself. The core of HiveMind is the startup logic that knows how to parse and understand the module deployment descriptors, and use that information to instantiate and initialize all those services and configurations.
In HiveMind, a service is an implementation of a Java interface. Unlike other SOAs (Service Oriented Architectures, such as a SOAP, or EJBs), HiveMind is explicitly about combining Java code within a single JVM. HiveMind uses a descriptor to describe different services, their lifecycles, and how they are combined. HiveMind takes care of thread-safe, just-in-time creation of singleton service objects so your code doesnt have to.
HiveMind represents a generous donation of code to the Apache Software Foundation by WebCT.
HiveMind originated from internal requirements for a flexible, loosely-coupled configuration management and services framework for WebCTs industry-leading flagship enterprise e-learning product, Vista.
Several individuals in WebCTs research and development team, in addition to Howard Lewis Ship, contributed to the requirements and concepts behind HiveMinds initial set of functionality. These include Martin Bayly, Diane Bennett, Bill Bilic, Michael Kerr, Prashant Nayak, Bill Richard and Ajay Sharda. HiveMind is already in use as a significant part of Vista.
<<less
Download (MB)
Added: 2007-01-10 License: The Apache License 2.0 Price:
1018 downloads
Biniax 1.2

Biniax 1.2


Biniax is an unique arcade logic game. more>>
Biniax is an unique arcade logic game. Simple and addictive, you can learn in a minute and play for hours.
The gaming field is a 5x7 grid filled partially with pairs of elements. Every pair consists of two different elements combined of four possible.
You control the box with an element inside and can move around the field on empty spaces. You can also remove pairs of elements if you have the same element as the one of the pair.
When you remove the pair, your element becomes the other one element of the pair and the score is increased. The gaming field scrolls down slowly and your goal is to stay on the field for as long as possible.
Enhancements:
- After months of playing, this release introduces the new time balance.
- This is an important change in the gameplay.
<<less
Download (0.044MB)
Added: 2005-11-04 License: Freely Distributable Price:
1449 downloads
Object::InsideOut 3.17

Object::InsideOut 3.17


Object::InsideOut is a comprehensive inside-out object support module. more>>
Object::InsideOut is a comprehensive inside-out object support module.

SYNOPSIS

package My::Class; {
use Object::InsideOut;

# Numeric field
# With combined get+set accessor
my @data
:Field
:Type(numeric)
:Accessor(data);

# Takes INPUT (or input, etc.) as a mandatory parameter to ->new()
my %init_args :InitArgs = (
INPUT => {
Regex => qr/^input$/i,
Mandatory => 1,
Type => numeriC,
},
);

# Handle class-specific args as part of ->new()
sub init :Init
{
my ($self, $args) = @_;

# Put input parameter into data field
$self->set(@data, $args->{INPUT});
}
}

package My::Class::Sub; {
use Object::InsideOut qw(My::Class);

# List field
# With standard get_X and set_X accessors
# Takes INFO as an optional list parameter to ->new()
# Value automatically added to @info array
# Defaults to [ empty ]
my @info
:Field
:Type(list)
:Standard(info)
:Arg(Name => INFO, Default => empty);
}

package Foo; {
use Object::InsideOut;

# Field containing My::Class objects
# With combined accessor
# Plus automatic parameter processing on object creation
my @foo
:Field
:Type(My::Class)
:All(foo);
}

package main;

my $obj = My::Class::Sub->new(Input => 69);
my $info = $obj->get_info(); # [ empty ]
my $data = $obj->data(); # 69
$obj->data(42);
$data = $obj->data(); # 42

$obj = My::Class::Sub->new(INFO => help, INPUT => 86);
$data = $obj->data(); # 86
$info = $obj->get_info(); # [ help ]
$obj->set_info(qw(foo bar baz));
$info = $obj->get_info(); # [ foo, bar, baz ]

my $foo_obj = Foo->new(foo => $obj);
$foo_obj->foo()->data(); # 86

<<less
Download (0.010MB)
Added: 2007-05-18 License: Perl Artistic License Price:
889 downloads
ruleCore 1.0

ruleCore 1.0


ruleCore provides a rule engine for event pattern detection. more>>
ruleCore provides a rule engine for event pattern detection.

The ruleCore Engine is an event-driven rule engine that manages and executes reaction rules. The rules are event-condition-action (ECA) style of rules.

The ruleCore Engine provides capabilities for detection of complex patterns of events, called situations. Events can be combined with logical and temporal operators in order to describe complex situations.

When a situation is detected, the ruleCore Engine can execute an action to alert external applications or users of the situation. The ruleCore Engine is fed with events through connectors.

Currently, connector implementations exist for plain sockets, XML-RPC, IBM WebSphere MQ, and TIBCO Rendezvous. Experimental support exists for running the engine within Zope and calling Zope methods when a rule triggers its action.

<<less
Download (18.8MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
978 downloads
Bio::NEXUS::DataBlock 0.67

Bio::NEXUS::DataBlock 0.67


Bio::NEXUS::DataBlock is a Perl module that represents the deprecated DATA Block in NEXUS file. more>>
Bio::NEXUS::DataBlock is a Perl module that represents the deprecated DATA Block in NEXUS file.

SYNOPSIS

$block_object = new Bio::NEXUS::DataBlock($type, $block, $verbose, $taxlabels_ref);

The DataBlock class represents the deprecated Data Block in a NEXUS file. Data Blocks are still used by some prominent programs, unfortunately, although they are essentially the same as a Characters Block and a Taxa Block combined. Data Blocks may be used as input, but are not output by the NEXPL library. For more information on Data Blocks, see the Characters Block documentation.

METHODS

new

Title : new
Usage : block_object = new Bio::NEXUS::CharactersBlock($block_type, $block, $verbose, $taxa);
Function: Creates a new Bio::NEXUS::CharactersBlock object
Returns : Bio::NEXUS::CharactersBlock object
Args : verbose flag (0 or 1), type (string) and the block to parse (string)

<<less
Download (0.15MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1038 downloads
Maintainer 1.0 Beta 1

Maintainer 1.0 Beta 1


Maintainer is a collection of scripts that make backup tasks easy and simple. more>>
Maintainer is a collection of scripts that make backup tasks easy and simple. If Maintainer is combined with crontab, it can be used for automatic backups.

<<less
Download (0.020MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1009 downloads
Gotmail 0.9.0

Gotmail 0.9.0


Gotmail is a utility to non-interactively download email from a Hotmail account. more>>
Gotmail is a utility to non-interactively download email from a Hotmail account. Gotmail project can download messages from all folders, messages from certain folders, or new messages only.
There are options to delete downloaded messages or mark them as read.
Gotmail can forward messages to other email addresses or save them as local mbox-style mailboxes.
Enhancements:
- Changelog AUTHORS gotmail.man Makefile.dist Makefile
- Makefile.dist NEWS PRESSRELEASE gotmail.spec
- Combined AUTHORS file and man page and removed AUTHORS file
- from package
- Updated Makefile and Makefile.dist to remove man page and
- AUTHORS file construction
- Removed PRESSRELEASE and NEWS code and files from the package
- Removed unused gotmail.spec.in file
- Fixed timestamp preservation issues in Makefiles using touch -r
<<less
Download (0.037MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
928 downloads
Coloryze 1.0.6

Coloryze 1.0.6


Coloryze is an application for generating color themes based on the theory of how hues can be combined. more>>
Coloryze is an application for generating color themes based on the theory of how hues can be combined. It supports monochromatic, complementary, split-complementary, double-complementary, analogous, and triadic schemes.
It can generate tables for a full range of saturation and brightness values, or it can randomly select a group of colors to comprise a theme. It generates both text and HTML, and an online version is available.
Enhancements:
- This version was fixed to properly use the background specified.
<<less
Download (0.010MB)
Added: 2005-09-29 License: GPL (GNU General Public License) Price:
1485 downloads
Band Saw 0.3.0

Band Saw 0.3.0


Band Saw is a syslog monitoring program for the GNOME desktop. more>>
Band Saw is a syslog monitoring program for the GNOME desktop. Band Saw project allows the user to setup filters that define which messages should generate alerts.

Combined with syslogs remote logging functionality it provides a scalable and easily deployed monitoring solution.

How does it work?

Band Saw is really quite simple; it monitors messages that are fed to it from a suitably configured syslog server, looking out for messages that contain text that the administrator is interested in. Any log message that matches the administrators filters will be brought to the users attention via a dialog box that pops up on screen.

Because syslog itself supports propagating messages between seperate computers, with syslog and Band Saw you can easily monitor a large number of computers for critical errors.

<<less
Download (0.18MB)
Added: 2006-03-09 License: GPL (GNU General Public License) Price:
1325 downloads
POE::Component::Basement 0.01

POE::Component::Basement 0.01


POE::Component::Basement provides Class::Std and base POE component functionality. more>>
POE::Component::Basement provides Class::Std and base POE component functionality.

SYNOPSIS

package POE::MyComponent;

# use as base
use base qw/ POE::Component::Basement /;

# where the initializations happen (see Class::Std)
sub BUILD { ... }

# see also Class::Std and Class::Data::Inheritable also
# for accessor creation etc.

# define states
sub state_one : State( :inline< _start > ) { ... }
sub state_two : State( :object< foo > ) { ... }
sub state_three : State( :package< bar > ) { ... }

# combined
sub state_multi : State( :inline< foobar > :package< snafoo > ) { ... }
...

# chained events
sub first : State( :object< foo > :chained< bar > ) { ... }
sub second : State( :object< bar > ) { ... }
...

# calling in a row
sub first : State( :object< foo > :next< bar > ) { ... }
sub second : State( :object< bar > ) { ... }
...

# usage
my $comp = POE::MyComponent->new ({

# single alias or array reference for multiple
aliases => [qw/ mycomp shub_niggurath /],

... # your specific init_args.
});

Provides Class::Std and base POE component functionality. This module is still kinda experimental.

<<less
Download (0.017MB)
Added: 2006-10-23 License: Perl Artistic License Price:
1096 downloads
C::Sharp::Tokener 0.01

C::Sharp::Tokener 0.01


C::Sharp::Tokener is a Tokeniser for C#. more>>
C::Sharp::Tokener is a Tokeniser for C#.

SYNOPSIS

use C::Sharp::Tokener;
do {
($token, $ttype, $remainder) = C::Sharp::Tokener::tokener($input);
} while ($input = $remainder)

use C::Sharp::Parser;
$parser = new C::Sharp::Parser;
$parser->YYParse(yylex => &C::Sharp::Tokener::yy_tokener);

C# is the new .NET programming language from Microsoft; the Mono project is an Open Source implementation of .NET. This code, based on the Mono project, implements a tokeniser for C#. Combined with C::Sharp::Parser it can be used to create a compiler for C#.

<<less
Download (0.017MB)
Added: 2006-07-06 License: Perl Artistic License Price:
1205 downloads
Cassiopeia 0.4.0

Cassiopeia 0.4.0


Cassiopeia is a board game similar to Carcassonne. more>>
Cassiopeia is a board game similar to Carcassonne. It allows playing over LAN and Internet and features also computer players. The project supports multiple Graphic Sets, on similar to the board game and one with a space setting.
The program supports two languages at the moment, English and German. The development documentation and the handbook in the game is only avaible in German at the moment.
Main features:
- Multiplayer over LAN and Internet
- Metaserver to find other players
- Computer players
- Most Carcassonne addons are implemented
- Gameoptions can be combined as you like
<<less
Download (MB)
Added: 2007-03-16 License: Freeware Price:
960 downloads
Xealous Nets 0.9

Xealous Nets 0.9


Xealous Nets is a set of programs that let you perform network calculations. more>>
Xealous Nets is a set of programs that let you perform network calculations. Network calculations are useful and handy for the typical network administrator as they allow classful calculations and classless (CIDR) calculations, combining the functionality given by several online similar calculators in one single and portable package with a simple and effective command line interface.

Classful subnetting and supernetting is done with the xealous_classful program, which gives you information about class type, network and host bits, network and wildcard masks, etc. It also outputs the subnets or nets being combined in supernetting.

As the number of subnets can be pretty high (for example, when you input a class A network and use 30 bits for the mask), it also lets you specify how many nets or subnets to display, if any at all. Usage examples are presented when you run the program without arguments.

Classless calculations are done with the xealous_cidr program, which is inspired in the famous IPcalc program. As with the previous program, usage instructions are displayed when running the program without arguments.

<<less
Download (0.009MB)
Added: 2006-04-25 License: MIT/X Consortium License Price:
1278 downloads
HtmlRipper 2.1.5

HtmlRipper 2.1.5


HtmlRipper project is a Java package that contains routines that enable dynamic data to be extracted from Web pages. more>>
HtmlRipper project is a Java package that contains routines that enable dynamic data to be extracted from Web pages, HTML documents, using pre-defined rule sets.
These routines allow you to dynamically create web pages for viewing that contain only the data you are interested in from your favorite web sites without all the annoying noise that surrounds them. Multiple data sets can be combined into a single dynamic web page.
The HtmlRipper software is ideal for the creation of data mining, page analysis, web page filtering and article clipping / ripping software especially for the creation of data pages for WAP display.
Enhancements:
- New division (packaging) of classes within the jar file.
- Minor bugfixes.
- Minor modifications to the interface with the updated Fishcroft Java Utilities.
<<less
Download (0.83MB)
Added: 2007-03-27 License: GPL (GNU General Public License) Price:
958 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5