Main > Free Download Search >

Free ist software for linux

ist

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 18
HistView 0.1.3

HistView 0.1.3


HistView takes an ASCII changelog as input and outputs a formatted HTML page. more>>
HistView application takes an ASCII changelog as input and outputs a formatted HTML page.

When developing some piece of software, one usually records its development history in an ASCII file, preceding all changes with a "hint" of the kind of change - such as an "+" for a new addition, or a "!" for a bug fix. After a while, one decides to release the package. And a while later the question arises, how to present the latest changes to users who wish to see the list of changes first to decide whether its worth to update. At this moment, one can just place the plain text file somewhere accessible on the net - but wouldnt it look smarter to have it formatted as a nice HTML document? If you would like this, but dont want to waste time rewriting the history in HTML, HistView ist for you: it just reads in the history file, and formats it in HTML. Provided you use a style similiar to what I do.

<<less
Download (0.021MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
802 downloads
gst-pulse 0.9.4

gst-pulse 0.9.4


gst-pulse is a GStreamer 0.8 sink for the PulseAudio sound server. more>>
gst-pulse project is a GStreamer 0.8 sink for the PulseAudio sound server.
It ist tested and works quite fine with Rhythmbox. However, theres much room for improvements:
- There is no source for recording yet, only an output sink.
- The PulseAudio stream clock is not yet exported to the GStreamer API.
- The latency information is not yet exported to the GStreamer API
- Volume manipulation via the GStreamer API is not yet impemented
<<less
Download (0.32MB)
Added: 2006-09-20 License: LGPL (GNU Lesser General Public License) Price:
1131 downloads
Class::Agreement 0.02

Class::Agreement 0.02


Class::Agreement is a Perl module that add contracts to your Perl classes easily. more>>
Class::Agreement is a Perl module that add contracts to your Perl classes easily.

SYNOPSIS

package SomeClass;

use Class::Agreement;

# use base Class::Accessor or Class::MethodMaker,
# or roll your own:
sub new { ... }

invariant {
my ($self) = @_;
$self->count > 0;
};

precondition add_a_positive => sub {
my ( $self, $value ) = @_;
return ( $value >= 0 );
};
sub add_a_positive {
my ( $self, $value ) = @_;
...
}

sub choose_word {
my ( $self, $value ) = @_;
...
}
postcondition choose_word => sub {
return ( result >= 0 );
};

dependent increase_foo => sub {
my ( $self, $amount ) = @_;
my $old_foo = $self->foo;
return sub {
my ( $self, $amount ) = @_;
return ( $old_foo < $self->get_foo );
}
};
sub increase_foo {
my ( $self, $amount ) = @_;
$self->set_foo( $self->get_foo + $amount );
}

Class::Agreement is an implementation of behavioral contracts for Perl5. This module allows you to easily add pre- and postconditions to new or existing Perl classes.
This module provides contracts such as dependent contracts, contracts for higher-order functions, and informative messages when things fail.

At the time of this writing, Class::Agreement is one of only two contract implementations that blames contract-breaking components correctly. (See: "Object-oriented Programming Languages Need Well-founded Contracts" at http://citeseer.ist.psu.edu/findler01objectoriented.html.)
Using Class::Agreement lets you specify proper input and output of your functions or methods, thus strengthening your code and allowing you to spot bugs earlier.

<<less
Download (0.027MB)
Added: 2007-02-28 License: Perl Artistic License Price:
968 downloads
jrawio 1.0 RC5

jrawio 1.0 RC5


jrawio is a Service Provider Implementation for the Java ImageIO API. more>>
jrawio is a Service Provider Implementation for the Java ImageIO API. It provides the ability to read images coded in a digital "camera raw" format (such as NEF for Nikon or CRW/CR2 for Canon).
jrawio is to be pointed out that jrawio is implemented in 100% pure Java.
In simple words, a Camera RAW format is the dump of the data collected by the camera sensor, with basically no post-processing applied. While it has the pitfall of requiring heavy processing in order to achieve a displayable image, the basic advantage is that any transformatio applied to it is "reversible".
From this point of view a Camera RAW format can be thought as a "digital negative". But dont confuse this with Adobes Digital Negative format (.DNG), which is just the try to define a standard format of RAW images. Indeed every camera manufacturer (e.g. Nikon, Canon, ...) has its own format.
jrawio is presently a Release Candidate for v1.0, so its coming out of beta stage. Please refer also to the Release Notes for information about issues.
It has been tested with about 8,000 photos taken with Nikon D100 and D70 cameras and with about 250 samples of various cameras downloaded from the web. jrawio has been explicitly tested with the following models:
Canon CR2 Digital Rebel, EOS 1D MkII, EOS 1Ds MkII, EOS 350D
Canon CRW D30, EOD 10D, EOS 300D
Leica DNG R8, R9
Minolta MRW DiMAGE 5, DiMAGE 7i, DiMAGE 7Hi
Nikon NEF CoolPix 5400, CoolPix 5700, CoolPix 8700, CoolPix 8800, D1, D100, D1X, D200, D2H, D2X, D50, D70, D70s
Pentax PEF *ist D, *ist DL, *ist DS
Sony SRF F828
Enhancements:
- This release fixes bugs related to application integration.
<<less
Download (0.96MB)
Added: 2006-02-18 License: IBM Public License Price:
1349 downloads
KVortaro 0.0.1

KVortaro 0.0.1


KVortaro translates words from one language into another one. more>>
KVortaro translates words from one language into another one.

The word can be selected via different methods:

* by selecting (highligthing) with the mouse-pointer (Left-Mouse-Button-Pressed and track)
* by copying the word into the clipboard (Ctrl + C)
* by klicking onto a word anywhere on the desktop (e.g. ALT + Rigth-Mouse button)

A small windows pops-up close to the mouse-pointer and shows the translation.

This project ist started because currently no fullfeatured, simple to use program exists for Linux/KDE.

Indeed some programs already exist, which do support nice features, but no program provides the following feature: klicking somewhere at the desktop onto a word, then doing optical character recognition (OCR), then popping-up a small window and showing the translation.

With the first release of KVortaro dictionaries for English-German and German-Esperanto are included. These dictionaries are simple text-files. There are plans to use a more sophisticated file-format later.
<<less
Download (2.1MB)
Added: 2005-06-01 License: GPL (GNU General Public License) Price:
1606 downloads
WWW::Webrobot::pod::Testplan 0.80

WWW::Webrobot::pod::Testplan 0.80


WWW::Webrobot::pod::Testplan is a Perl module that helps you on how to write a test plan for webrobot. more>>
WWW::Webrobot::pod::Testplan is a Perl module that helps you on how to write a test plan for webrobot.

A test plan is a list of elements. An element itself may be a request, a (sub) test plan, an include or a cookie control command.

While processing a plan will be flattened and all requests are executed in sequence. This ist the top level structure of a test plan:

< ?xml version="1.0" encoding="iso-8859-1"? >
< plan >
... request ...
... include ...
... (sub)plan ...
< /plan >

<<less
Download (0.096MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1136 downloads
cracklinux 0.61

cracklinux 0.61


cracklinux provides a kernel module and shared object for Linux 2.6.x. more>>
cracklinux provides a kernel module and shared object for Linux 2.6.x.
It provides a set of functions normally only available in kernel mode or as root.
Main features:
- change NICE value of running task
- direct access on IO ports (wrapper for inb() / outb() ...)
- read and write physical memory addresses instead of virtual ones
- install Interrupt Service Routines running in UserSpace [EXPERIMENTAL]
- enable IO access (like ioperm(), or like iopl() beyond port 0x3FF)
- enable IO access for other process (for given PID), or global for all processes
Version restrictions:
- cracklinux ist only developed for and tested on IA-32 Single Processor Systems.
- Further, some functions can only be used by one application at the same time.
Enhancements:
- A small bugfix in the Makefile.
<<less
Download (0.023MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
830 downloads
SVK::Log::Filter::Babelfish 0.0.3

SVK::Log::Filter::Babelfish 0.0.3


SVK::Log::Filter::Babelfish is a Perl module to translate logs to various natural languages. more>>
SVK::Log::Filter::Babelfish is a Perl module to translate logs to various natural languages.

SYNOPSIS

> svk log --filter babelfish de //mirror/project/trunk
----------------------------------------------------------------------
r1234 (orig r456): author | 2006-05-15 09:28:52 -0600

Dieses ist die Maschinenbordbuchanzeige fÃ1⁄4r die Neuausgabe.
----------------------------------------------------------------------

Uses WWW::Babelfish to translate the log messages into a different language. All filters downstream from this one see log messages in the new language. Of course, there are no permanent changes to the revision properties.

This filter takes two arguments indicating the source and destination languages of the log messages. The first argument is the two-letter ISO code for the source language. The second argument is the two-letter ISO code for the destination language. If only one argument is supplied, the source language is assumed to be English. Here are some examples

> svk log --filter babelfish de
[English to German]
> svk log --filter babelfish fr es
[French to Spanish]
> svk log --filter babelfish es | babelfish es en
[English to English via Spanish]

<<less
Download (0.005MB)
Added: 2007-02-20 License: Perl Artistic License Price:
976 downloads
Lemonldap::Portal::Standard 3.1.0

Lemonldap::Portal::Standard 3.1.0


Lemonldap::Portal::Standard is a Perl extension for the Lemonldap SSO system. more>>
Lemonldap::Portal::Standard is a Perl extension for the Lemonldap SSO system.

SYNOPSIS

use Lemonldap::Portal::Standard;
sub my_method {
my $self = shift;
my $user = $self->{user};
$user.="-cp" if $user !~ /-cp$/;
$self->{user} = $user;
return ;
}

my $message = ;
my %params =Vars;
my $stack_user=Lemonldap::Portal::Standard->new(formateUser => &my_method);
my $urlc;
my $urldc;
$retour=$stack_user->process(param => %params,
server => $ReverseProxyConfig::ldap_serveur,
port => $ReverseProxyConfig::ldap_port,
DnManager => $ReverseProxyConfig::ldap_admin_dn,
passwordManager => $ReverseProxyConfig::ldap_admin_pd,
branch => $ReverseProxyConfig::ldap_branch_people
);
if ($retour) {
$message=$retour->message;
$erreur=$retour->error;
}

See in directory examples for more details

Lemonldap is a SSO system under GPL. The authentification phase need to display a form with user / password . Standard.pm manage all the cycle of authentification :

step 0 : setting configuration
step 1 : manage the source of request
step 2 : manage timeout
step 3 : control the input form of user and password
step 4 : formate the userid if needing
step 5 : build the filter for the search
step 6 : build subtree for the search ldap
step 7 : make socket upon ldap server
step 8 : bind operation
step 9 : make search
step 10 : confection of %session from ldap infos
step 11 : unbind
step 12 : re-bind for validing users credentials
Any step can bee overload for include your custom method.
standards errors messages :

1 => Your connection has expired; You must to be authentified once again,
2 => User and password fields must be filled,
3 => Wrong directory manager account or password ,
4 => not found in directory,
5 => wrong credentials ,

warning the value 9 for error message is returned then the form is empty ist not an real error , perhaps its the initial request.

<<less
Download (0.019MB)
Added: 2007-03-22 License: Perl Artistic License Price:
946 downloads
dvbsnoop 1.4.50

dvbsnoop 1.4.50


dvbsnoop is an open source DVB/MPEG stream analyzer. more>>
dvbsnoop project is a DVB / MPEG stream analyzer program, which enables you to watch (live) stream information in human readable form.

Its purpose is to debug, dump or view digital stream information (e.g. digital television broadcasts) send via satellite, cable or terrestrial. Streams can be SI, PES or TS. Basically you can describe dvbsnoop as a "swiss army knife" analyzing program for DVB, MHP, DSM-CC or MPEG - similar to TCP network sniffer programs like the old and famous snoop on Sun Solaris or tcpdump on Linux (which is in fact a kind of a snoop clone). You may also analyze offline mpeg streams, e.g. stored on DVD or mpeg2 movie files.

dvbsnoop is helpful for people interrested in DVB and/or in the technical part of digital television (e.g. if you are a developer of DVB related software). If you are in need to sniff data streams (e.g. tcp/ip, multicasts) send over cable or satellite, dvbsnoop also offers some features and protocol decoding.

In the beginning dvbsnoop was mainly written to learn and understand the DVB protocol structures and streams sent via satellites. Out of this reason, the program ist not highly performance optimized, but it hopefully will do its job. Have a look on the feature list, what dvbsnoop is capable of and what it can do for you...

Dvbsnoop is still under development and will be enhanced in the future (depending on my spare time). Ideas, bug reports, enhancements are welcome. Dvbsnoop is currently part of the tuxbox project and is designed to run on unix based set top boxes, too.

dvbsnoop is based on the linux dvb api. You need the dvb driver installed on your computer to use dvbsnoop. dvbsnoop is text-based, so it should work on any unix based system, which offers shell access and dvb support installed.

dvbsnoop is a commandline tool.
To tune in a transponder, use a proper tuning program like dvbtune.

dvbsnoop [options] pid

pid can be any unsigned number within the legal pid number range.
The PID can be specified in hex, octal or decimal version (using C-syntax -notation).
e.g.: hex: 0x1A, octal: 0722 , decimal: 6932

dvbsnoop tries to decode every data it gets....
E.g. if you try to decode a video or audio stream in section mode - dvbsnoop may assume a section table and will decode wrong data. In this case the decoding will be garbage! Using the -crc option should prevent this (if supported at hardware/driver level). Also the -sync option is very helpful, when using -s pes or -s ts. The -sync option tries to find TS or PES packet start sync bytes before decoding...

dvbsnoop doesnt do DVB stream validation....
dvbsnoop assumes correct dvb streams. Getting garbage, corrupted streams or streams with wrong semantics (e.g. incorrect length information) will result in wrong decoding output. Because od this, the usage of the options -crc and -sync is strongly recommended!!

Bugs and wrong decoding:
If you see any odd output, please report this.
Wrong decoding can be mostly avoided, using the options -crc and -sync.
<<less
Download (0.27MB)
Added: 2007-06-03 License: GPL (GNU General Public License) Price:
888 downloads
math4u2 (Linux) 2.2

math4u2 (Linux) 2.2


math4u2 ist ein Computer-Mathematik-System, speziell konzipiert f? Vorlesungen more>> math4u2 ist ein Computer-Mathematik-System, speziell konzipiert f? den Einsatz in der Vorlesung, im Unterricht und beim Selbststudium.
Das math4u2-System besteht aus dem math4u2-Tool und dem math4u2-Server.
math4u2 ist ein Projekt der Fachhochschule Augsburg.
Speziell f? Pr?entationen und schnelle Visiualisierung von Funktionen ist math4u2 gut geeignet.
<<less
Download (54.6MB)
Added: 2009-04-23 License: Freeware Price: Free
186 downloads
 
Other version of math4u2
math4u2 (Linux + VM) 2.2Joe - math4u2 ist ein Computer-Mathematik-System, speziell konzipiert f? Vorlesungen. math4u2. math4u2 ist ein Computer
License:Freeware
Download (54.6MB)
199 downloads
Added: 2009-04-13
math4u2 (Linux) 2.0Joe - -Mathematik
License:Freeware
Download (5.06MB)
185 downloads
Added: 2009-04-23
Felidae 0.1.0pre2

Felidae 0.1.0pre2


Felidae ist a collection of modules for Fvwm, written in Perl. more>>
Felidae ist a collection of modules for Fvwm, written in Perl. Currently it contains:

FvwmStorage
FvwmStorage is a fvwm module written in Perl. It lets you define variables, load and store then from/to files and execute any fvwm command using this variables. It is especialy useful to interactively change the fvwm configuration.

FvwmWallpaper
FvwmWallpaper is a fvwm module written in Perl. It lets you change your X wallpaper from within Fvwm. FvwmWallpaper tries to find the best way to display your picture and resizes it if necessary. Resized pictures are cached. FvwmWallpaper can display a menu with thumbnails where you can select your wallpaper. Thumbnails are cached too.

FvwmXMMS
FvwmXMMS is a fvwm module written in Perl. It lets you control XMMS by sending commands to this module.

FvwmOsd
FvwmOsd is a fvwm module written in Perl. It lets you display an on-screen display (like the one on many TVs) on your X display. FvwmOsd is organized in different "channels" each of which you can configure and use independently of the others.

<<less
Download (0.026MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1261 downloads
Building Block 1-0-0

Building Block 1-0-0


Building Block ist the Open Source Content Management Software for your website. more>>
Building Block ist the Open Source Content Management Software for your website. It is lightweight and has minimal hardware requirements.
At the same time it is powerful and delivers high performance. Building Blocks diversity allows you to create and manage professional web projects directly in your browser.
Enhancements:
- This initial release is stable and is recommended for production use on non-critical data.
<<less
Download (0.064MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1216 downloads
JSummer java 0.1.0.0

JSummer java 0.1.0.0


JSummer ist ein platformunabhängiges OpenSource Tool zum Berechnen und Prüfen von Hashsummen. Momentan werden MD5, MD4, MD2, SHA-160, SHA-256, SHA-384... more>> <<less
Download (2609KB)
Added: 2009-04-18 License: Freeware Price: Free
192 downloads
Locale::Maketext::Fuzzy 0.02

Locale::Maketext::Fuzzy 0.02


Locale::Maketext::Fuzzy is a Perl module for Maketext from already interpolated strings. more>>
Locale::Maketext::Fuzzy is a Perl module for Maketext from already interpolated strings.

SYNOPSIS

package MyApp::L10N;
use base Locale::Maketext::Fuzzy; # instead of Locale::Maketext

package MyApp::L10N::de;
use base MyApp::L10N;
our %Lexicon = (
# Exact match should always be preferred if possible
"0 camels were released."
=> "Exact match",

# Fuzzy match candidate
"[quant,_1,camel was,camels were] released."
=> "[quant,_1,Kamel wurde,Kamele wurden] freigegeben.",

# This could also match fuzzily, but is less preferred
"[_2] released[_1]"
=> "[_1][_2] ist frei[_1]",
);

package main;
my $lh = MyApp::L10N->get_handle(de);

# All ->maketext calls below will become ->maketext_fuzzy instead
$lh->override_maketext(1);

# This prints "Exact match"
print $lh->maketext(0 camels were released.);

# "1 Kamel wurde freigegeben." -- quant() gets 1
print $lh->maketext(1 camel was released.);

# "2 Kamele wurden freigegeben." -- quant() gets 2
print $lh->maketext(2 camels were released.);

# "3 Kamele wurden freigegeben." -- parameters are ignored
print $lh->maketext(3 released.);

# "4 Kamele wurden freigegeben." -- normal usage
print $lh->maketext([*,_1,camel was,camels were] released., 4);

# "!Perl ist frei!" -- matches the broader one
# Note that the sequence ([_2] before [_1]) is preserved
print $lh->maketext(Perl released!);

<<less
Download (0.006MB)
Added: 2007-07-28 License: Perl Artistic License Price:
819 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2