Main > Free Download Search >

Free to implement software for linux

to implement

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2481
Implementing Mobile Calculi 0.2

Implementing Mobile Calculi 0.2


Implementing Mobile Calculi provides a Java framework for distributed applications and code mobility. more>>
Implementing Mobile Calculi provides a Java framework for distributed applications and code mobility.
IMC (Implementing Mobile Calculi) is a Java framework for implementing distributed applications possibly with code mobility.
The name is due to the fact that this framework was originally built to help implement the run-time system of a mobile calculi implementation, i.e., calculi accessing remote resources and nodes, and, possibly, exchanging code, processes, and mobile agents.
If you dont need code mobility features, you can simply ignore them and use IMC for building any distributed and network application.
Enhancements:
- SessionStarter is a base class instead of an interface (*)
- IpSessionId syntax (*)
- Primordial log capabilities
- close in NodeProcess and NodeCoordinator (*)
- autogenerated names for NodeProcess and NodeCoordinator.
- The same SessionStarter should not be used for concurrent accepts. (*)
- Udp, Tcp and LocalSessionStarter are in separate packages
- ProtocolStack.createXXX (passing the ProtocolLayer to be considered
- as the highest layer). (*)
- closeSessions(SessionId). (*)
- mark, reset, skip in UnMarshaler (*)
- ProtocolThread moved in topology (it is now a NodeProcess) (*)
<<less
Download (1.8MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
914 downloads
Objective Modula-2 1.00 (Reference Implementation)

Objective Modula-2 1.00 (Reference Implementation)


Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2. more>>
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2 based on the object model and runtime of Objective-C.
The design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.
Objective Modula-2s scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
Enhancements:
- This code is used to verify ideas and concepts which come up in the course of defining the language.
- It is in an early stage, incomplete and subject to frequent changes.
<<less
Download (0.019MB)
Added: 2007-07-21 License: (FDL) GNU Free Documentation License Price:
825 downloads
 
Other version of Objective Modula-2
Objective Modula-2 1.00 (Language Definition)2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code
License:(FDL) GNU Free Documentation License
Download (0.23MB)
516 downloads
Added: 2007-07-21
Net::Stomp::Frame 0.32

Net::Stomp::Frame 0.32


Net::Stomp::Frame is a STOMP Frame. more>>
Net::Stomp::Frame is a STOMP Frame.

SYNOPSIS

use Net::Stomp::Frame;
my $frame = Net::Stomp::Frame->new( {
command => $command,
headers => $headers,
body => $body,
} );
my $frame = Net::Stomp::Frame->parse($string);
my $string = $frame->as_string;

This module encapsulates a Stomp frame. Stomp is the Streaming Text Orientated Messaging Protocol (or the Protocol Briefly Known as TTMP and Represented by the symbol :ttmp). Its a simple and easy to implement protocol for working with Message Orientated Middleware from any language.

Net::Stomp is useful for talking to Apache ActiveMQ, an open source (Apache 2.0 licensed) Java Message Service 1.1 (JMS) message broker packed with many enterprise features.

A Stomp frame consists of a command, a series of headers and a body.

<<less
Download (0.006MB)
Added: 2007-06-23 License: Perl Artistic License Price:
853 downloads
Test::WWW::Simple 0.24

Test::WWW::Simple 0.24


Test::WWW::Simple is a Perl module to test Web applications using TAP. more>>
Test::WWW::Simple is a Perl module to test Web applications using TAP.

SYNOPSIS

use Test::WWW::Simple;
# This is the default user agent.
user_agent(Windows IE 6);
page_like("http://yahoo.com", qr/.../, "check for expected text");
page_unlike("http://my.yahoo.com", qr/.../, "check for undesirable text");
user_agent(Mac Safari);
...

Test::WWW::Simple is a very basic class for testing Web applications and Web pages. It uses WWW::Mechanize to fetch pages, and Test::Builder to implement TAP (Test Anything Protocol) for the actual testing.

Since we use Test::Builder for the page_like and page_unlike routines, these can be integrated with the other standard Test::Builder-based modules as just more tests.

<<less
Download (0.012MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1040 downloads
mozplayerxp

mozplayerxp


mozplayerxp is a scriptable Mozilla mplayer plugin. more>>
mozplayerxp is an attempt to embed videos in mozilla firebird and mozilla under linux, the goal is to implement as much windows media/apple quicktime support as possible.

you might ask why another plugin theres already one out there? mplayerplug-in?

mplayerplug-in uses many global variables in its shared library enviroment this is not reliable since there might be problems when running more than one instances (its like 2 people are going to share 1 glass at the same time)

the second aim is usability, this project relies on GTK2+ right now, another patch has to get submitted to the mplayer project for adding ALT-RETURN support to that plugin as well.

currently the plugin is able to switch to fullscreen, start and stop without any problems (that means the hardest part of that plugin is done since threading and forking dont affect anything else anymore).
<<less
Download (0.03MB)
Added: 2005-05-05 License: Free To Use But Restricted Price:
1632 downloads
OpenDocument Text Library 0.0.1

OpenDocument Text Library 0.0.1


OpenDocument Text Library for creating OpenDocument text files. more>>
There are some interesting projects (OpenDocumentPHP, OpenDocument Fellowship) around the creation of OpenDocument Text from a Web-application.

Thus far none of these projects yielded a result to create an OpenDocument Text. Therefore - and inspired by an article in the German cumuter magasin ct - I desiced to implement a libary that takes a template document and adds some to it.

<<less
Download (0.037MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
658 downloads
Persistent::DBI 0.50

Persistent::DBI 0.50


Persistent::DBI is an Abstract Persistent Class implemented using a DBI Data Source. more>>
Persistent::DBI is an Abstract Persistent Class implemented using a DBI Data Source.

SYNOPSIS

### we are a subclass of ... ###
use Persistent::DBI;
@ISA = qw(Persistent::DBI);

ABSTRACT

This is an abstract class used by the Persistent framework of classes to implement persistence using DBI data stores. This class provides the methods and interface for implementing Persistent DBI classes. Refer to the Persistent
documentation for a very thorough introduction to using the Persistent
framework of classes.

This class is part of the Persistent DBI package which is available from:

http://www.bigsnow.org/persistent
ftp://ftp.bigsnow.org/pub/persistent

Before we get started describing the methods in detail, it should be noted that all error handling in this class is done with exceptions. So you should wrap an eval block around all of your code. Please see the Persistent documentation for more information on exception handling in Perl.

<<less
Download (0.010MB)
Added: 2007-05-19 License: Perl Artistic License Price:
889 downloads
App::SimpleScan::Plugin::Retry 1.02

App::SimpleScan::Plugin::Retry 1.02


App::SimpleScan::Plugin::Retry is a Perl module to implement retry pragma/command line option. more>>
App::SimpleScan::Plugin::Retry is a Perl module to implement retry pragma/command line option.

SYNOPSIS

simple_scan --retry 6

or in a simple_scan input file:
%%retry 6

Both of these would retry fetches up to 6 times, pausing an increasingly-long time between each try. If all attempts fail, the failure reported with the last fetch is reflected back to the test program; if at any point the fetch succeeds, further retry attempts are abandoned.

App::SimpleScan::Plugin::Retry allows simple_scan to use the retry function implemented by the WWW::Mechanize::Pluggable retry plugin.

This allows you to retry a transaction multiple times; it checks $mech-success> to see if the transaction was successful.

If you need more sophisticated retry testing, youre better off scripting this yourself using WWW::Mechanize::Pluggable and WWW::Mechanize::Plugin::Retry. One way is to use the %%retry pragma in input to simple_scan --gen to generate skeleton code, and then replace the call to retry to retry_if with the appropriate status check subroutine (see WWW::Mechanize::Pluggable::Retry for more details).

<<less
Download (0.005MB)
Added: 2006-12-15 License: Perl Artistic License Price:
1043 downloads
XML Cleaner 0.2.2 beta

XML Cleaner 0.2.2 beta


XML Cleaner is an XML filter and validator, similar to xmllint. more>>
XML Cleaner is a command line utility to filter and validate XML files.
XML Cleaner is written in Ada 9X and so it rather fast.
XML Cleaner is an XML filter and validator, similar to xmllint. It can remove superfluos namespace declarations from an XML file, expand XML entities, recode XML files, and more.
Main features:
- removes superfluous namespace declarations;
- Unicode support;
- (More to implement: XML validation, XML canonicalization, reformatting, whitespace removal, comments removal, XML charset recoding, XInclude processing, inplace file modification, etc.; XML Cleaner is to grow into a full featured command line XML filter and validator.)
XML Cleaner is developed to become xmllint replacement.
Enhancements:
- An option to choose whether or not to escape apostrophes and quotes in output was added.
<<less
Download (0.026MB)
Added: 2005-10-03 License: GPL (GNU General Public License) Price:
1483 downloads
Regular Statement String 2.5.7

Regular Statement String 2.5.7


Regular Statement String (RSS) provides several libraries in C, Java, and COM. more>>
Regular Statement String (RSS) provides several libraries in C, Java, and COM to implement and demonstrate the key-value development method using well-designed "strings" (RSS) as the media. Regular Statement String also shows a way to write "Process Oriented" applications.
Enhancements:
- This release adds an implementation for SUN Solaris (SPARC).
<<less
Download (0.33MB)
Added: 2007-04-12 License: Freeware Price:
926 downloads
OpenWFE 1.7.3pre

OpenWFE 1.7.3pre


OpenWFE is a workflow engine. more>>
OpenWFE is a workflow engine. OpenWFE is robust, extensible, and scalable.
Access libraries for Python, Perl, and .NET make it easy to write custom interfaces or agents (automatic participants) for a workflow-enabled system.
Main features:
- a worklist component for storing workitems (tasks) for participants,
- an APRE component, allowing you to implement automated agents into your work flows,
- Droflo, our web-based flow designer,
- and a well-documented REST interface and several libraries to access it, with more on the way.
<<less
Download (38.4MB)
Added: 2007-02-08 License: BSD License Price:
990 downloads
cdp-tools

cdp-tools


cdp-tools is a software that provides tools to work with the Cisco Discovery Protocol (CDP). more>>
cdp-tools is a software that provides tools to work with the Cisco Discovery Protocol (CDP).
They were written because of a particular hosting center that insisted on learning routes using CDP, and thusly required Cisco Switches for doing their dirty work.
cdp-listen/cdp-routemgr are proof-of-concepts that may be useful if you want to implement a similarly brain-damaged proposal.
cdp-send is a must-have tool if you are in that situation. It can pretend to be just about any kind of Cisco hardware you can imagine.
The source is a bit difficult to follow as a requirement was that it build under both the ancient libnet and the new libnet code. hence, much nasty macro-ing.
Enhancements:
- DESCRIPTION, README: More docs...
<<less
Download (0.016MB)
Added: 2005-11-11 License: GPL (GNU General Public License) Price:
1451 downloads
Flickr Photo Compass 0.8

Flickr Photo Compass 0.8


Flickr Photo Compass displays the 8 closest photos to the actual one in the directions: N, NE, E, SE, S, SW, W, NW. more>>
The Geo Radar released by .CK reminded me of an idea I had had a while ago and provided me with the tools to implement it quickly.

This greasemonkey is a simpler version of the radar that displays the 8 closest photos to the actual one in the directions: N, NE, E, SE, S, SW, W, NW.

Flickr Photo Compass is a simple tool to browse photos of some place. By clicking on the direction icons, you can move around and find other photos.
<<less
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1037 downloads
GPGlist 1.0

GPGlist 1.0


GPGlist project is a Perl script to implement gpg encrypted alias lists in a mail server. more>>
GPGlist project is a Perl script to implement gpg encrypted alias lists in a mail server.

GPGlist is a Perl script to implement gpg encrypted alias lists in a mail server such as Sendmail or Postfix.

It uses one XML config file to store information about lists. It backs up messages if an error occurs, and sends out error messages to the sender of the mail.

You can decide whether or not a list only accepts encrypted messages.

<<less
Download (0.005MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
poker-network 1.1.1

poker-network 1.1.1


poker-network includes a poker server, a client library, an abstract user interface library, and a client based on it. more>>
poker-network project includes a poker server, a client library, an abstract user interface library, and a client based on it.

The server deals the cards and checks the user actions using a poker game engine (poker-engine). It listens on a TCP/IP port and understands its own specific protocol. The persistent information is stored in a MySQL database.

The client library implements the poker-network protocol for the client. The abstract user interface library provides a framework based on the client library and suited to implement a user friendly client.
<<less
Download (2.2MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
898 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5