advantage lucy
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 587
Thunar Volume Manager 0.1.2
Thunar Volume Manager project provides automatic management of removable media and drives for the Thunar File Manager. more>>
Thunar Volume Manager project provides automatic management of removable media and drives for the Thunar File Manager.
The Thunar Volume Manager is an extension for the Thunar file manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digital camera, it will automatically launch your preferred photo application and import the new pictures from the camera into your photo collection.
The advantage of Thunar Volume Manager over other solutions (like gnome-volume-manager or ivman) is that it does not require an additional daemon to be running in the users desktop session, which means it is very lightweight solution. In addition, the Thunar Volume Manager smoothly integrates into the Thunar file manager and the Xfce desktop.
<<lessThe Thunar Volume Manager is an extension for the Thunar file manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digital camera, it will automatically launch your preferred photo application and import the new pictures from the camera into your photo collection.
The advantage of Thunar Volume Manager over other solutions (like gnome-volume-manager or ivman) is that it does not require an additional daemon to be running in the users desktop session, which means it is very lightweight solution. In addition, the Thunar Volume Manager smoothly integrates into the Thunar file manager and the Xfce desktop.
Download (0.29MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
593 downloads
Data::Type 0.01.04
Data::Type is a Perl module with versatile data and value types. more>>
Data::Type is a Perl module with versatile data and value types.
SYNOPSIS
use Data::Type qw(:all);
use Error qw(:try);
try
{
verify $email , EMAIL;
verify $homepage , URI(http);
verify $cc , CREDITCARD( MASTERCARD, VISA );
verify $answer_a , YESNO;
verify $gender , GENDER;
verify one , ENUM( qw(one two three) );
verify [qw(two six)], SET( qw(one two three four five six) ) );
verify $server_ip4 , IP(v4);
verify $server_ip6 , IP(v6);
verify A35231AH1 , CINS;
verify 14565935 , ISSN;
verify DE , LANGCODE;
verify German , LANGNAME;
verify 012345678905, UPC();
verify 5276440065421319, CREDITCARD( MASTERCARD ) );
verify ATGCAAAT , BIO::DNA;
verify AUGGGAAAU , BIO::RNA;
verify 01001001110110101, BINARY;
verify 0F 0C 0A, HEX;
verify 0 , DEFINED;
verify 234 , NUM( 20 );
verify 1 , BOOL( true );
verify 100 , INT;
verify 1.1 , REAL;
my $foo = bless( 123, SomeThing );
verify $foo , REF;
verify $foo , REF( qw(SomeThing Else) );
verify [ bar ] , REF( ARRAY );
verify x 20 , VARCHAR( 20 );
verify 2001-01-01 , DATE( MYSQL );
verify 16 Nov 94 22:28:20 PST , DATE( DATEPARSE );
verify 9999-12-31 23:59:59, DATETIME;
verify 1970-01-01 00:00:00, TIMESTAMP;
verify -838:59:59 , TIME;
verify 2155 , YEAR;
verify 69 , YEAR(2);
verify 0 x 20 , TINYTEXT;
verify 0 x 20 , MEDIUMTEXT;
verify 0 x 20 , LONGTEXT;
verify 0 x 20 , TEXT;
verify 80 , PORT;
verify www.cpan.org, DOMAIN;
}
catch Type::Exception with
{
my $e = shift;
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
foreach my $entry ( testplan( $e->type ) )
{
printf "texpecting it %s %s ", $entry->[1] ? is : is NOT, $entry->[0]->info();
}
};
# believe it or not, this really works
foreach ( EMAIL, WORD, CREDITCARD( MASTERCARD, VISA ), BIO::DNA, HEX )
{
print $_->info;
print $_->usage;
print $_->export; # does it have other names
print $_->param; # what are my choice i.e. [yes,no]
print $_->isa( IType::Business ); # is it a Business related type ?
print $_->VERSION; # first apperance in Data::Type release
}
# tied interface (alias typ)
try
{
typ ENUM( qw(DNA RNA) ), ( my $a, my $b );
print "a is typed" if istyp( $a );
$a = DNA; # $alias only accepts DNA or RNA
$a = RNA;
$a = xNA; # throws exception
untyp( $alias );
}
catch Type::Exception ::with
{
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
};
dverify( $email, EMAIL ) or die $!;
my $g = Data::Type::Guard->new(
allow => [ Human, Others ], # blessed objects of that type
tests =>
{
email => EMAIL( 1 ), # mxcheck ON ! see Email::Valid
firstname => WORD,
social_id => [ NUM, VARCHAR( 10 ) ],
contacts => sub { my %args = @_; exists $args{lucy} },
}
);
$g->inspect( $h );
# compact version
overify { email => EMAIL( 1 ), firstname => WORD }, $object_a, $object_b;
print toc();
print catalog();
This module supports versatile data and value types. Out of the ordinary it supports parameterised types (like databases have i.e. VARCHAR(80) ). When you try to feed a typed variable against some odd data, this module explains what he would have expected.
<<lessSYNOPSIS
use Data::Type qw(:all);
use Error qw(:try);
try
{
verify $email , EMAIL;
verify $homepage , URI(http);
verify $cc , CREDITCARD( MASTERCARD, VISA );
verify $answer_a , YESNO;
verify $gender , GENDER;
verify one , ENUM( qw(one two three) );
verify [qw(two six)], SET( qw(one two three four five six) ) );
verify $server_ip4 , IP(v4);
verify $server_ip6 , IP(v6);
verify A35231AH1 , CINS;
verify 14565935 , ISSN;
verify DE , LANGCODE;
verify German , LANGNAME;
verify 012345678905, UPC();
verify 5276440065421319, CREDITCARD( MASTERCARD ) );
verify ATGCAAAT , BIO::DNA;
verify AUGGGAAAU , BIO::RNA;
verify 01001001110110101, BINARY;
verify 0F 0C 0A, HEX;
verify 0 , DEFINED;
verify 234 , NUM( 20 );
verify 1 , BOOL( true );
verify 100 , INT;
verify 1.1 , REAL;
my $foo = bless( 123, SomeThing );
verify $foo , REF;
verify $foo , REF( qw(SomeThing Else) );
verify [ bar ] , REF( ARRAY );
verify x 20 , VARCHAR( 20 );
verify 2001-01-01 , DATE( MYSQL );
verify 16 Nov 94 22:28:20 PST , DATE( DATEPARSE );
verify 9999-12-31 23:59:59, DATETIME;
verify 1970-01-01 00:00:00, TIMESTAMP;
verify -838:59:59 , TIME;
verify 2155 , YEAR;
verify 69 , YEAR(2);
verify 0 x 20 , TINYTEXT;
verify 0 x 20 , MEDIUMTEXT;
verify 0 x 20 , LONGTEXT;
verify 0 x 20 , TEXT;
verify 80 , PORT;
verify www.cpan.org, DOMAIN;
}
catch Type::Exception with
{
my $e = shift;
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
foreach my $entry ( testplan( $e->type ) )
{
printf "texpecting it %s %s ", $entry->[1] ? is : is NOT, $entry->[0]->info();
}
};
# believe it or not, this really works
foreach ( EMAIL, WORD, CREDITCARD( MASTERCARD, VISA ), BIO::DNA, HEX )
{
print $_->info;
print $_->usage;
print $_->export; # does it have other names
print $_->param; # what are my choice i.e. [yes,no]
print $_->isa( IType::Business ); # is it a Business related type ?
print $_->VERSION; # first apperance in Data::Type release
}
# tied interface (alias typ)
try
{
typ ENUM( qw(DNA RNA) ), ( my $a, my $b );
print "a is typed" if istyp( $a );
$a = DNA; # $alias only accepts DNA or RNA
$a = RNA;
$a = xNA; # throws exception
untyp( $alias );
}
catch Type::Exception ::with
{
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
};
dverify( $email, EMAIL ) or die $!;
my $g = Data::Type::Guard->new(
allow => [ Human, Others ], # blessed objects of that type
tests =>
{
email => EMAIL( 1 ), # mxcheck ON ! see Email::Valid
firstname => WORD,
social_id => [ NUM, VARCHAR( 10 ) ],
contacts => sub { my %args = @_; exists $args{lucy} },
}
);
$g->inspect( $h );
# compact version
overify { email => EMAIL( 1 ), firstname => WORD }, $object_a, $object_b;
print toc();
print catalog();
This module supports versatile data and value types. Out of the ordinary it supports parameterised types (like databases have i.e. VARCHAR(80) ). When you try to feed a typed variable against some odd data, this module explains what he would have expected.
Download (0.022MB)
Added: 2006-10-02 License: Perl Artistic License Price:
1117 downloads
Lucy 004
Lucy is for power users already familiar with usenet. more>>
Lucy is for power users already familiar with usenet. It wont hold your hand or nag you about proper etiquette. In fact, you are free to edit all the headers of your posts, if you want. (You can even violate the RFC protocols for usenet, and Lucy wont complain unless you ask it to) This may seem like a bug, but I dont consider it as such, its designed for people who are already familiar with usenet.
This newsreader is ideally suited to perl programmers. The examples include a skeleton outline for adding text-to-speech capabilities (for blind users, it works on a mac through the osascript command) as well as a built in regular expression calculator.
Lucy is a newsreader which incorporates all the features of a modern application of this kind, even if it works in command line. The keys are configurable and you can choose every key you want.
Some of the other things it supports are subject and newsgroup filtering, lets suppose you wanted to narrow down your list of newsgroups to those containing "perl" in their names, Lucy lets you do this.
One of the frustrating things about newsreaders (or any software programs for that matter) is remembering the keystroke to perform an action you seldom use. This is where a command interface comes in handy, commands are easier to remember than keystrokes.
When Term::ReadLine::Gnu is installed (highly recommended) command completion is available, so you only have to type a portion of the command to get a list of them. Lucy also has online help.
At first, one would be tempted to believe a perl newsreader would be slow, this is not the case with Lucy, its startup time is much faster than most other newsreaders because it will not contact the server until youve selected a group.
To minimize the startup time, it will load its perl modules dynamically. To improve loading time of your newsrc it uses its own variant of News::Newsrc (With dynamic creation of Set::IntSpan objects)
Currently, it requires the news server to support the XOVER command, most servers already do this (It was developed with the leafnode news server). You will find that using XOVER is much faster than downloading headers.
Whenever possible, it will use external programs. This was one of the things I didnt care for about other newsreaders, I wanted to use my favorite pager (less) to page articles, and I wanted to use my favorite mail program (mutt) for email. I dont like having different pagers for different programs. Furthermore, youve probably configured your email program to your settings, why should a news reader implement its own mail interface?
To make the pager work better within the newsreader, you can configure it to use the program exit code as a keystroke. This is very handy with the lesskey utility. With this approach, jumping from less straight into a followup is possible.
Lucy now has better support for usenet binaries, with background downloading. (Select files to download, it figures out which parts are needed and then downloads them)
It has several new commands to help in binary readings, such as a binary thread model.
To install, unpack it wherever you want, run perl install.pl and itll check for modules it thinks it needs, offering to run CPAN for you. Itll then create a simple shell script for running Lucy.
<<lessThis newsreader is ideally suited to perl programmers. The examples include a skeleton outline for adding text-to-speech capabilities (for blind users, it works on a mac through the osascript command) as well as a built in regular expression calculator.
Lucy is a newsreader which incorporates all the features of a modern application of this kind, even if it works in command line. The keys are configurable and you can choose every key you want.
Some of the other things it supports are subject and newsgroup filtering, lets suppose you wanted to narrow down your list of newsgroups to those containing "perl" in their names, Lucy lets you do this.
One of the frustrating things about newsreaders (or any software programs for that matter) is remembering the keystroke to perform an action you seldom use. This is where a command interface comes in handy, commands are easier to remember than keystrokes.
When Term::ReadLine::Gnu is installed (highly recommended) command completion is available, so you only have to type a portion of the command to get a list of them. Lucy also has online help.
At first, one would be tempted to believe a perl newsreader would be slow, this is not the case with Lucy, its startup time is much faster than most other newsreaders because it will not contact the server until youve selected a group.
To minimize the startup time, it will load its perl modules dynamically. To improve loading time of your newsrc it uses its own variant of News::Newsrc (With dynamic creation of Set::IntSpan objects)
Currently, it requires the news server to support the XOVER command, most servers already do this (It was developed with the leafnode news server). You will find that using XOVER is much faster than downloading headers.
Whenever possible, it will use external programs. This was one of the things I didnt care for about other newsreaders, I wanted to use my favorite pager (less) to page articles, and I wanted to use my favorite mail program (mutt) for email. I dont like having different pagers for different programs. Furthermore, youve probably configured your email program to your settings, why should a news reader implement its own mail interface?
To make the pager work better within the newsreader, you can configure it to use the program exit code as a keystroke. This is very handy with the lesskey utility. With this approach, jumping from less straight into a followup is possible.
Lucy now has better support for usenet binaries, with background downloading. (Select files to download, it figures out which parts are needed and then downloads them)
It has several new commands to help in binary readings, such as a binary thread model.
To install, unpack it wherever you want, run perl install.pl and itll check for modules it thinks it needs, offering to run CPAN for you. Itll then create a simple shell script for running Lucy.
Download (0.11MB)
Added: 2006-06-07 License: Artistic License Price:
1235 downloads
NAFE 0.1
NAFE is a tool to write and edit Linux console font files (.psf) with any text editor. more>>
nafe (Not Another Font Editor) is a tool to convert Linux console font files into ASCII text files that are human-readable/editable.
It also converts this text files back into system-usable PSF font files for display on the Linux text console, thus making font editing easy.
nafe is no consolefont editor, but a toolset to translate psf format consolefonts into text files
and text files into psf files.
The advantage is that you can edit the font in the text file easily with any text editor (not provided by nafe).
So you are independent from your actual terminal hardware and dont need stuff like svgalib
nafe understands and creates psf mode 1 and mode 2 files.
<<lessIt also converts this text files back into system-usable PSF font files for display on the Linux text console, thus making font editing easy.
nafe is no consolefont editor, but a toolset to translate psf format consolefonts into text files
and text files into psf files.
The advantage is that you can edit the font in the text file easily with any text editor (not provided by nafe).
So you are independent from your actual terminal hardware and dont need stuff like svgalib
nafe understands and creates psf mode 1 and mode 2 files.
Download (0.017MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1659 downloads
svgl
svgl is a library that displays SVG documents using OpenGL, taking advantage of the GPU. more>>
svgl is a library that displays SVG documents using OpenGL, taking advantage of the GPU.
Rendering:
A lot of svg 1.0 features are implemented: simples shapes, path, gradient, clipping, viewBox, opacity, < use >, animations etc.
Fonts are handled by the glft companion library, which allows for autoscaling according to the current scale, and automatic choice between vectorized glyphs or textures based on freetype2 rendering.
Texturized fonts are antialiased by freetype, while every other drawings are FSAA by OpenGL.
Next step is optimization by using various techniques like display list, culling, and cache rendering into textures.
Interacting:
Picking is provided under 2 forms:
- returns the deepest SVG element (leaf) corresponding to the shape designated by the user
- returns the stack of SVG elements under the cursor, so that UI techniques like toolglasses (see screenshot) is easily implemented
PanAndZoom done right (according to me...) : since its fast and usable, we can really use it in an interface
Tansform so-called "consolidation" (concatenation of transform matrices) allows easy implementation of scale-independant DnD.
Programming:
We try to make the api as simple as possible, for creating, manipulating, changing style, loading etc.
See demos/tutorial to see how to code with svgl.
A (pre-alpha) python extension allows for rapid application development and easy integration in wxPython.
<<lessRendering:
A lot of svg 1.0 features are implemented: simples shapes, path, gradient, clipping, viewBox, opacity, < use >, animations etc.
Fonts are handled by the glft companion library, which allows for autoscaling according to the current scale, and automatic choice between vectorized glyphs or textures based on freetype2 rendering.
Texturized fonts are antialiased by freetype, while every other drawings are FSAA by OpenGL.
Next step is optimization by using various techniques like display list, culling, and cache rendering into textures.
Interacting:
Picking is provided under 2 forms:
- returns the deepest SVG element (leaf) corresponding to the shape designated by the user
- returns the stack of SVG elements under the cursor, so that UI techniques like toolglasses (see screenshot) is easily implemented
PanAndZoom done right (according to me...) : since its fast and usable, we can really use it in an interface
Tansform so-called "consolidation" (concatenation of transform matrices) allows easy implementation of scale-independant DnD.
Programming:
We try to make the api as simple as possible, for creating, manipulating, changing style, loading etc.
See demos/tutorial to see how to code with svgl.
A (pre-alpha) python extension allows for rapid application development and easy integration in wxPython.
Download (MB)
Added: 2006-02-08 License: LGPL (GNU Lesser General Public License) Price:
771 downloads
Anonym.OS LiveCD
Anonym.OS is an OpenBSD 3.8 Live CD with strong tools for anonymizing and encrypting connections. more>>
Anonym.OS LiveCD is based on OpenBSD 3.8 with strong tools for anonymizing and encrypting connections.
Standard network applications are provided and configured to take advantage of the tor onion routing network.
Anonym.OS was first suggested by kaos.theory at Interzone 4 in Atlanta, March of 2005.
Nearly a year and a lot of marathon coding sessions later, its a reality and was released by elmore, fade, arcon, dr.kaos, digunix, atlas and beth of kaos.theory at Shmoocon 2006.
<<lessStandard network applications are provided and configured to take advantage of the tor onion routing network.
Anonym.OS was first suggested by kaos.theory at Interzone 4 in Atlanta, March of 2005.
Nearly a year and a lot of marathon coding sessions later, its a reality and was released by elmore, fade, arcon, dr.kaos, digunix, atlas and beth of kaos.theory at Shmoocon 2006.
Download (549.1MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1380 downloads
Spaminator Gentoo Stage 4 .01
Spaminator project provides a ready-to-use operating system configured to act as a spam filtering mail gateway. more>>
Spaminator is a server that is placed infront of your email server that allows you to take full advantage of the anti-virus/spam features while keeping your current email server intact.
Spaminator project provides a ready-to-use operating system configured to act as a spam filtering mail gateway.
This stage4 is a generic implementation of: http://www.gentoo.org/doc/en/mailfilter-guide.xml
Main features:
- Real Time Black-Hole Lists
- ClamAV AntiVirus filtering
- Spam Assassin
- Postfix
<<lessSpaminator project provides a ready-to-use operating system configured to act as a spam filtering mail gateway.
This stage4 is a generic implementation of: http://www.gentoo.org/doc/en/mailfilter-guide.xml
Main features:
- Real Time Black-Hole Lists
- ClamAV AntiVirus filtering
- Spam Assassin
- Postfix
Download (254MB)
Added: 2006-02-01 License: GPL (GNU General Public License) Price:
1364 downloads
Parallel Port Make 0.22
Parallel Port Make can build FreeBSD ports in parallel to fully take advantage of modern multi-core and processor machine. more>>
Parallel Port Make project is a tool to build FreeBSD ports in parallel to fully take advantage of modern multi-core and processor machines.
Default: pportmake.py --clean -- cleanup --install -job=2 [port1] [portn]
Example: pportmake.py irc/irssi irc/epic
Advanced: pportmake.py -rSvD -j 10 irc/irssi
-h --help Show this help usage message
-c --clean Clean port before compiling
-C --cleanup Clean port after compiling
-d --deinstall Deinstall ports, implied by reinstall
-f --force Force a port and all dependancies to be installed
-G --noconfig Dont recursively configure options
-i --install Install port (default)
-j n --jobs=n Number of threads to use, 1 or 2 per CPU core
is recommended
Default is 2
-O args --options=foo List of arguments to pass to make.
E.g. -O -DX11=yes -DFOO
-r --reinstall Reinstall port and ALL dependancies
-S --maxspeed Try and speed up by maximising CPU usuage.
This may break some ports, use with caution
-w --noclean Dont make clean before compiling
-W --nocleanup Dont make clean after compiling
-v --verbose Be extra verbose
-V --version Show version information
-D --debug Show some debugging info
-P --pretend Dont actually alter the ports
NOTES: It is currently only safe to run 1 copy of this and not have other ports compiling simultaneously
<<lessDefault: pportmake.py --clean -- cleanup --install -job=2 [port1] [portn]
Example: pportmake.py irc/irssi irc/epic
Advanced: pportmake.py -rSvD -j 10 irc/irssi
-h --help Show this help usage message
-c --clean Clean port before compiling
-C --cleanup Clean port after compiling
-d --deinstall Deinstall ports, implied by reinstall
-f --force Force a port and all dependancies to be installed
-G --noconfig Dont recursively configure options
-i --install Install port (default)
-j n --jobs=n Number of threads to use, 1 or 2 per CPU core
is recommended
Default is 2
-O args --options=foo List of arguments to pass to make.
E.g. -O -DX11=yes -DFOO
-r --reinstall Reinstall port and ALL dependancies
-S --maxspeed Try and speed up by maximising CPU usuage.
This may break some ports, use with caution
-w --noclean Dont make clean before compiling
-W --nocleanup Dont make clean after compiling
-v --verbose Be extra verbose
-V --version Show version information
-D --debug Show some debugging info
-P --pretend Dont actually alter the ports
NOTES: It is currently only safe to run 1 copy of this and not have other ports compiling simultaneously
Download (0.005MB)
Added: 2007-01-16 License: BSD License Price:
1013 downloads
DeVeDe 3.01
DeVeDe project creates video DVDs, suitables for home players. more>>
DeVeDe project creates video DVDs, suitables for home players.
DeVeDe can create video DVDs from any number of video files, in any of the formats supported by Mplayer.
The big advantage over other utilites is that it only needs Mplayer, Mencoder, DVDAuthor y MKisofs, so its dependencies are really small.
<<lessDeVeDe can create video DVDs from any number of video files, in any of the formats supported by Mplayer.
The big advantage over other utilites is that it only needs Mplayer, Mencoder, DVDAuthor y MKisofs, so its dependencies are really small.
Download (1.1MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
866 downloads
Blackdown Java3D for Linux 1.3.1
Blackdown Java3D for Linux is Java3D for Linux. more>>
The Java 3D API enables the creation of three-dimensional graphics applications and Internet-based 3D applets.
It provides high-level constructs for creating and manipulating 3D geometry and building the structures used in rendering that geometry.
With this software, you can efficiently define and render very large virtual worlds.
Blackdowns version of Java 3D uses the OpenGL low-level API to take advantage of 3D hardware acceleration.
<<lessIt provides high-level constructs for creating and manipulating 3D geometry and building the structures used in rendering that geometry.
With this software, you can efficiently define and render very large virtual worlds.
Blackdowns version of Java 3D uses the OpenGL low-level API to take advantage of 3D hardware acceleration.
Download (2.75MB)
Added: 2005-05-04 License: Free To Use But Restricted Price:
1640 downloads
assniffer 0.1 Alpha
assniffer is an auto saving sniffer for windows and linux. more>>
assniffer is an auto saving sniffer for windows and linux.
assniffer can monitor (using pcap) a network, and for every HTTP transfer it sees, save a copy of the transferred data.
This is less for sinister uses, and more for taking advantage of the already-transferred data that your computer may be exposed to.
Linux users should install libpcap, and tools to enable compiling.
Compilation:
- Go to the source/assniffer directory and type make.
<<lessassniffer can monitor (using pcap) a network, and for every HTTP transfer it sees, save a copy of the transferred data.
This is less for sinister uses, and more for taking advantage of the already-transferred data that your computer may be exposed to.
Linux users should install libpcap, and tools to enable compiling.
Compilation:
- Go to the source/assniffer directory and type make.
Download (0.030MB)
Added: 2006-03-10 License: Freeware Price:
1325 downloads
wadext2 0.1.0
wadext project dumps the lumps of a wad to files. more>>
wadext project dumps the lumps of a wad to files.
It does not perform any conversion on the contents of the lumps; it just dumps them byte for byte. wadext2 does with wad files what tar -x does with tar archives.
The advantage of this program over wadext(6) is that the latter can only extract one lump at a time. deutex(6), although it is more sophisticated than wadext2, is less suitable for certain tasks. Because it doesnt try to understand how the wad is structured, wadext2 works well with any wad.
It does not need the wad to contain a PNAMES and a PLAYPAL. It doesnt reorder the directory or lose duplicate lumps.
<<lessIt does not perform any conversion on the contents of the lumps; it just dumps them byte for byte. wadext2 does with wad files what tar -x does with tar archives.
The advantage of this program over wadext(6) is that the latter can only extract one lump at a time. deutex(6), although it is more sophisticated than wadext2, is less suitable for certain tasks. Because it doesnt try to understand how the wad is structured, wadext2 works well with any wad.
It does not need the wad to contain a PNAMES and a PLAYPAL. It doesnt reorder the directory or lose duplicate lumps.
Download (0.015MB)
Added: 2006-12-12 License: GPL (GNU General Public License) Price:
1051 downloads
nanoser 1.0.0
Nanoserv is a sockets daemon toolkit for PHP 5.1+ more>>
Nanoserv is a sockets daemon toolkit for PHP 5.1+
It is distributed under the terms of the GNU Lesser General Public License.
Its a complete rewrite of the shadok sockets PHP4 library (the one behind phpos and sh4re).
Main features:
- 100% object oriented
- native support for TCP with SSL/TLS and UDP connections
- multiplexing and forking listeners
- handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, ...
- transparent inter process communications with forked handlers
- and probably more ...
Most of the features work with PHP 5.0 but you will need PHP 5.1+ to take advantage of the shared objects and crypto support.
<<lessIt is distributed under the terms of the GNU Lesser General Public License.
Its a complete rewrite of the shadok sockets PHP4 library (the one behind phpos and sh4re).
Main features:
- 100% object oriented
- native support for TCP with SSL/TLS and UDP connections
- multiplexing and forking listeners
- handlers for raw connections, line input, HTTP, SMTP, XML-RPC, Syslog, ...
- transparent inter process communications with forked handlers
- and probably more ...
Most of the features work with PHP 5.0 but you will need PHP 5.1+ to take advantage of the shared objects and crypto support.
Download (0.017MB)
Added: 2005-08-26 License: LGPL (GNU Lesser General Public License) Price:
1520 downloads
KlearCase 0.5
KlearCase is a set of tools to access Clearcase using the KDE environment. more>>
KlearCase is a set of tools to access Clearcase using the KDE environment. Several KDE plugins allow KDE applications to take advantage of Clearcase features.
KlearCase project is a set of tools to use IBM Rational ClearCase from KDE.
Enhancements:
- Better integration Kde Application Menu Remount vobs and restart views at start up.
- fix for clearcase 6.0 fix for big list of vobs and views
<<lessKlearCase project is a set of tools to use IBM Rational ClearCase from KDE.
Enhancements:
- Better integration Kde Application Menu Remount vobs and restart views at start up.
- fix for clearcase 6.0 fix for big list of vobs and views
Download (0.59MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
918 downloads
XELand 1.0 RC3
XELand project generates night landscapes as stereo pairs for cross-eye viewing. more>>
XELand project generates night landscapes as stereo pairs for cross-eye viewing. Currently it uses two map generation methods (plus some variations). Generated height maps are seamless and can be saved as PNG images.
The program requires only JDK 1.5 or above, and is very easy to use. To take full advantage of XEland you should learn cross-eye viewing.
Main features:
- Simple to use
- Two terrain generation methods
- Exports maps to png files
- Generates seamless maps
- Uses StupidRendering techonogy
<<lessThe program requires only JDK 1.5 or above, and is very easy to use. To take full advantage of XEland you should learn cross-eye viewing.
Main features:
- Simple to use
- Two terrain generation methods
- Exports maps to png files
- Generates seamless maps
- Uses StupidRendering techonogy
Download (0.058MB)
Added: 2007-04-19 License: The Apache License 2.0 Price:
918 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above advantage lucy search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed