pass
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1054
File2Divx3Pass 2.3
File2Divx3Pass is a Perl-GTK frontend to mencoder for encoding media file to MPEG4. more>>
File2Divx3Pass is a Perl-GTK frontend to mencoder for encoding media file to MPEG4.
It can encode any media file supported by mencoder to DiVX, in 1-, 2- or 3-pass encoding.
You can create new, save and load projects and you can batch encode your projects. It also has an automatic video bitrate and bits per pixel calculator.
File2DiVX3Pass2 is a Gtk2 version, with the same functionality as the Gtk version. I have added some new features (see changelog). Formats tested by me that work: MPEG-1, MPEG-2, DiVX, WMV, ASF, RM, MOV, DAT, CUE/BIN and OGM.
<<lessIt can encode any media file supported by mencoder to DiVX, in 1-, 2- or 3-pass encoding.
You can create new, save and load projects and you can batch encode your projects. It also has an automatic video bitrate and bits per pixel calculator.
File2DiVX3Pass2 is a Gtk2 version, with the same functionality as the Gtk version. I have added some new features (see changelog). Formats tested by me that work: MPEG-1, MPEG-2, DiVX, WMV, ASF, RM, MOV, DAT, CUE/BIN and OGM.
Download (0.029MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1213 downloads
Password Strength Analyser and Generator 0.9.3
Password Strength Analyser and Generator more>>
Nowadays computers and internet are part of our everyday life: work, school, home. Nevertheless we have our private sphere and we are guarding it with restricted areas accessible with passwords. The better the password, the secure your information is. Therefore we need tools to test and to create better, nontrivial passwords.
- the analyser (shows the "strength" of your pass phrase regarding some rules) and the generator (generates a "strong" pass phrase regarding some rules).
More specific information (rules for creating secure passwords, how to use the tool etc.) can be found by following the above links.
Enhancements:
- A MIDLET version for Java-capable mobile devices is now also available.
<<less- the analyser (shows the "strength" of your pass phrase regarding some rules) and the generator (generates a "strong" pass phrase regarding some rules).
More specific information (rules for creating secure passwords, how to use the tool etc.) can be found by following the above links.
Enhancements:
- A MIDLET version for Java-capable mobile devices is now also available.
Download (0.030MB)
Added: 2007-05-02 License: BSD License Price:
908 downloads
pam_eps Beta1
pam_eps is a PAM module that allows you to authenticate users against a remote server. more>>
pam_eps is a PAM module that allows you to authenticate users against a remote server with a ssh daemon enabled. If the user exists in local machine, he is allowed entry.
But if the user doesnt exist (yet exists in the remote machine and the password supplied is correct), a new user with that pass and logname will be created.
<<lessBut if the user doesnt exist (yet exists in the remote machine and the password supplied is correct), a new user with that pass and logname will be created.
Download (0.29MB)
Added: 2006-05-16 License: Public Domain Price:
1256 downloads
Splashy 0.3.3
Splashy is a boot splash program that doesnt require patching the Linux kernel. more>>
Splashy is a boot splash program that doesnt require patching the Linux kernel. Splashy project paints graphic images directly to framebuffers using libdirectfb.
-----------------------------------------------------------------
VGA settings
-----------------------------------------------------------------
640x480 800x600 1024x768 1280x1024
256 colors 768 771 773 775
32K colors 784 787 790 793
64K colors 785 788 791 794
16M colors 786 789 792 795
-----------------------------------------------------------------
For 1024x768 at 16bit (64K colors or "thousands of colors") you could pass an argument to the kernel like:
vga=791
These values could be used in base16 also (hexadecimal) like:
vga=0x317
To pass arguments to the kernel, you would need to edit your boot-loader:
1. Grub /boot/grub/menu.lst
hint, in debian, look for "#kopt" and append vga=0x317 to that line. Then run update-grub. Other distros edit the kernel root= line appropriately
2. Lilo /etc/lilo.conf
hint, look for the default image= and edit append= by appending vga=0x317 to it
3. Quik /etc/quik.conf
on PPC machines. Append vga=0x317 to the kernel argument line
<<less-----------------------------------------------------------------
VGA settings
-----------------------------------------------------------------
640x480 800x600 1024x768 1280x1024
256 colors 768 771 773 775
32K colors 784 787 790 793
64K colors 785 788 791 794
16M colors 786 789 792 795
-----------------------------------------------------------------
For 1024x768 at 16bit (64K colors or "thousands of colors") you could pass an argument to the kernel like:
vga=791
These values could be used in base16 also (hexadecimal) like:
vga=0x317
To pass arguments to the kernel, you would need to edit your boot-loader:
1. Grub /boot/grub/menu.lst
hint, in debian, look for "#kopt" and append vga=0x317 to that line. Then run update-grub. Other distros edit the kernel root= line appropriately
2. Lilo /etc/lilo.conf
hint, look for the default image= and edit append= by appending vga=0x317 to it
3. Quik /etc/quik.conf
on PPC machines. Append vga=0x317 to the kernel argument line
Download (1.5MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
863 downloads
PApp::SQL 1.02
PApp::SQL is an absolutely easy yet fast and powerful sql access. more>>
PApp::SQL is an absolutely easy yet fast and powerful sql access.
SYNOPSIS
use PApp::SQL;
my $st = sql_exec $DBH, "select ... where a = ?", $a;
local $DBH = ;
my $st = sql_exec my($bind_a, $bind_b), "select a,b ...";
my $st = sql_insertid
sql_exec "insert into ... values (?, ?)", $v1, $v2;
my $a = sql_fetch "select a from ...";
sql_fetch my($a, $b), "select a,b ...";
sql_exists "table where name like a%"
or die "a* required but not existent";
my $db = new PApp::SQL::Database "", "DBI:mysql:test", "user", "pass";
local $PApp::SQL::DBH = $db->checked_dbh; # does ping
sql_exec $db->dbh, "select ...";
<<lessSYNOPSIS
use PApp::SQL;
my $st = sql_exec $DBH, "select ... where a = ?", $a;
local $DBH = ;
my $st = sql_exec my($bind_a, $bind_b), "select a,b ...";
my $st = sql_insertid
sql_exec "insert into ... values (?, ?)", $v1, $v2;
my $a = sql_fetch "select a from ...";
sql_fetch my($a, $b), "select a,b ...";
sql_exists "table where name like a%"
or die "a* required but not existent";
my $db = new PApp::SQL::Database "", "DBI:mysql:test", "user", "pass";
local $PApp::SQL::DBH = $db->checked_dbh; # does ping
sql_exec $db->dbh, "select ...";
Download (0.013MB)
Added: 2007-08-16 License: Perl Artistic License Price:
800 downloads
Acme::Tests 0.03
Acme::Tests is a Perl module to see how much do you know. more>>
Acme::Tests is a Perl module to see how much do you know.
SYNOPSIS
perl Makefile.PL
make test
This module is a "test software", it has tests in the software rather then software tests. Upon installation, you are reqruied to answered several question, and the installation would be only successful if all you pass them all.
<<lessSYNOPSIS
perl Makefile.PL
make test
This module is a "test software", it has tests in the software rather then software tests. Upon installation, you are reqruied to answered several question, and the installation would be only successful if all you pass them all.
Download (0.011MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
961 downloads
6502asm 0.11
6502asm project is a simple 2-pass assembler, capable of producing binary files for the 6502 processor. more>>
6502asm project is a simple 2-pass assembler, capable of producing binary files for the 6502 processor.
I will give you more updates once this project advances. For now, just run build.sh in your favourite shell and see what happens...
Enhancements:
- Support for single-quoted characters like 6,5,0,2, and a new output format called "src".
<<lessI will give you more updates once this project advances. For now, just run build.sh in your favourite shell and see what happens...
Enhancements:
- Support for single-quoted characters like 6,5,0,2, and a new output format called "src".
Download (0.007MB)
Added: 2007-08-12 License: BSD License Price:
803 downloads
KSFX
KSFX is a kernel module that filters all outgoing sound adding sound effects like low-pass, high-pass, vibro, echoes, etc. more>>
KSFX is a kernel module that filters all outgoing sound adding sound effects like low-pass, high-pass, vibro, echoes, etc. The advantage of doing this in kernel space is the low latency you get for filtering, which eliminates (or at least reduces) the clicking you get on slow machines.
It was built for a 2.4.18 kernel, but should work on any version close to that with little patching. If youre trying to get it to work on a different kernel version and want a hand, send me a mail.
Currently it supports (i.e. filters) only 16-bit native endian streams. It does come with a pretty graphical GTK interface to configuring it with.
Instructions for using the module:
First, configure your kernel to use a modular OSS sound driver. If OSS doesnt support your soundboard, theres nothing else you can do.
Replace the soundcore module with ksfx. That is, if before you used (for example)
# insmod soundcore
# insmod ac97_codec
# insmod trident
to load your sound modules, now you should use
# insmod ./ksfx.o
# insmod ac97_codec
# insmod trident
<<lessIt was built for a 2.4.18 kernel, but should work on any version close to that with little patching. If youre trying to get it to work on a different kernel version and want a hand, send me a mail.
Currently it supports (i.e. filters) only 16-bit native endian streams. It does come with a pretty graphical GTK interface to configuring it with.
Instructions for using the module:
First, configure your kernel to use a modular OSS sound driver. If OSS doesnt support your soundboard, theres nothing else you can do.
Replace the soundcore module with ksfx. That is, if before you used (for example)
# insmod soundcore
# insmod ac97_codec
# insmod trident
to load your sound modules, now you should use
# insmod ./ksfx.o
# insmod ac97_codec
# insmod trident
Download (0.056MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1178 downloads
Getopt::GetArgs 1.03
GetArgs is a Perl module to allow enhanced argument passing. more>>
GetArgs is a Perl module to allow enhanced argument passing, including passing of case-insensitive named arguments as well as positioned arguments.
SYNOPSIS
sub WHATEVER {
my @DEFAULT_ARGS =
( Content => "Default content",
Verbose => 0
);
my %ARGS=GetArgs(@_,@DEFAULT_ARGS);
# do some stuff with $ARGS{Content}
# show all kinds of detail if $ARGS{Verbose}
}
# a simple call to WHATEVER
WHATEVER( "Just deal with my content" );
# a flexible call to WHATEVER
WHATEVER({ verbose => 1,
content => "This is my content",
});
GetArgs needs to know * what your subroutine was passed, * and what it expected to be passed. * If you like, you can also supply default values to use when an argument is not passed.
Using this information, GetArgs will create a hash of arguments for you to use throughout your subroutine. Using GetArgs has several advantages:
1) Calls to your subroutine can pass named arguments, making the code more readable.
2) If its easier to pass a list of arguments as you normally would, thats fine.
3) With GetArgs your use of arguments in your subroutine code is more readable.
4) Your subroutines are no longer limited in the number of arguments they expect.
5) Arguments can be passed in any order (if passed inside the hash ref), thus only the arguments relevant to that call need to be passed--unnecessary arguments can be ignored.
6) Case is not important, as GetArgs matches argument names case insensitively.
<<lessSYNOPSIS
sub WHATEVER {
my @DEFAULT_ARGS =
( Content => "Default content",
Verbose => 0
);
my %ARGS=GetArgs(@_,@DEFAULT_ARGS);
# do some stuff with $ARGS{Content}
# show all kinds of detail if $ARGS{Verbose}
}
# a simple call to WHATEVER
WHATEVER( "Just deal with my content" );
# a flexible call to WHATEVER
WHATEVER({ verbose => 1,
content => "This is my content",
});
GetArgs needs to know * what your subroutine was passed, * and what it expected to be passed. * If you like, you can also supply default values to use when an argument is not passed.
Using this information, GetArgs will create a hash of arguments for you to use throughout your subroutine. Using GetArgs has several advantages:
1) Calls to your subroutine can pass named arguments, making the code more readable.
2) If its easier to pass a list of arguments as you normally would, thats fine.
3) With GetArgs your use of arguments in your subroutine code is more readable.
4) Your subroutines are no longer limited in the number of arguments they expect.
5) Arguments can be passed in any order (if passed inside the hash ref), thus only the arguments relevant to that call need to be passed--unnecessary arguments can be ignored.
6) Case is not important, as GetArgs matches argument names case insensitively.
Download (0.004MB)
Added: 2007-04-11 License: Perl Artistic License Price:
926 downloads
Splashy for Edgy 1.5
Splashy for Edgy project paints graphic images directly to framebuffers using libdirectfb. more>>
Splashy for Edgy project paints graphic images directly to framebuffers using libdirectfb.
Splashy is a boot splash program that doesnt require patching the Linux kernel. Splashy project paints graphic images directly to framebuffers using libdirectfb.
-----------------------------------------------------------------
VGA settings
-----------------------------------------------------------------
640x480 800x600 1024x768 1280x1024
256 colors 768 771 773 775
32K colors 784 787 790 793
64K colors 785 788 791 794
16M colors 786 789 792 795
-----------------------------------------------------------------
For 1024x768 at 16bit (64K colors or "thousands of colors") you could pass an argument to the kernel like:
vga=791
These values could be used in base16 also (hexadecimal) like:
vga=0x317
To pass arguments to the kernel, you would need to edit your boot-loader:
1. Grub /boot/grub/menu.lst
hint, in debian, look for "#kopt" and append vga=0x317 to that line. Then run update-grub. Other distros edit the kernel root= line appropriately
2. Lilo /etc/lilo.conf
hint, look for the default image= and edit append= by appending vga=0x317 to it
3. Quik /etc/quik.conf
on PPC machines. Append vga=0x317 to the kernel argument line
<<lessSplashy is a boot splash program that doesnt require patching the Linux kernel. Splashy project paints graphic images directly to framebuffers using libdirectfb.
-----------------------------------------------------------------
VGA settings
-----------------------------------------------------------------
640x480 800x600 1024x768 1280x1024
256 colors 768 771 773 775
32K colors 784 787 790 793
64K colors 785 788 791 794
16M colors 786 789 792 795
-----------------------------------------------------------------
For 1024x768 at 16bit (64K colors or "thousands of colors") you could pass an argument to the kernel like:
vga=791
These values could be used in base16 also (hexadecimal) like:
vga=0x317
To pass arguments to the kernel, you would need to edit your boot-loader:
1. Grub /boot/grub/menu.lst
hint, in debian, look for "#kopt" and append vga=0x317 to that line. Then run update-grub. Other distros edit the kernel root= line appropriately
2. Lilo /etc/lilo.conf
hint, look for the default image= and edit append= by appending vga=0x317 to it
3. Quik /etc/quik.conf
on PPC machines. Append vga=0x317 to the kernel argument line
Download (0.52MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
979 downloads
GWireless 0.0.3
GWireless is a simplist utility for managing wifi 802.11x wireless connections on FreeBSD. more>>
GWireless is a simplist utility for managing wifi 802.11x wireless connections on FreeBSD.
GWireless enables you to connect to available networks without touching the ifconfig command by hand.
Asumptions:
- sudo available without pass
- wireless is ipw0 (if not, "ifconfig yours0 name ipw0")
<<lessGWireless enables you to connect to available networks without touching the ifconfig command by hand.
Asumptions:
- sudo available without pass
- wireless is ipw0 (if not, "ifconfig yours0 name ipw0")
Download (0.28MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1527 downloads
pam_cloop 0.2.0
pam_cloop is a Pluggable Authentication Module (PAM) which tries to mount encrypted partitions when you log in. more>>
pam_cloop is a PAM module which tries to mount encrypted partitions when you log in.
In order to successfully log in, you have to enter your cryptoloop pass phrase in addition to your unix password.
My notebook had my home directory on an encrypted partition since I upgraded to Linux 2.5. It was rather annoying to have to log in as root first, then mount my home, and log in again as my normal user. Everybodys lazy, so am I.
I wrote this module to do that in one step: enter user name, the passphrase, and finally my normal password. No root login required.
By making this easy (but not insecure), I want to motivate myself (and everybody else) to put everything on encrypted devices. There are so many reasons for encryption.
Why not pam_mount.so? pam_mount.so uses a hack to store pass phrases in encrypted files... I wont go into detail here, I only tell you I dont like pam_mount.so. If you find pam_mount.so more appropriate, go ahead.
<<lessIn order to successfully log in, you have to enter your cryptoloop pass phrase in addition to your unix password.
My notebook had my home directory on an encrypted partition since I upgraded to Linux 2.5. It was rather annoying to have to log in as root first, then mount my home, and log in again as my normal user. Everybodys lazy, so am I.
I wrote this module to do that in one step: enter user name, the passphrase, and finally my normal password. No root login required.
By making this easy (but not insecure), I want to motivate myself (and everybody else) to put everything on encrypted devices. There are so many reasons for encryption.
Why not pam_mount.so? pam_mount.so uses a hack to store pass phrases in encrypted files... I wont go into detail here, I only tell you I dont like pam_mount.so. If you find pam_mount.so more appropriate, go ahead.
Download (0.012MB)
Added: 2006-05-16 License: GPL (GNU General Public License) Price:
1256 downloads
JOpt Simple 2.3.2
JOpt Simple is a Java library for parsing command line switches, such as those you might pass to an invocation of javac. more>>
JOpt Simple is a simple, test-driven command line parser for Java programs. JOpt Simple supports POSIX getopt() and GNU getopt_long().
What command line switch syntax does JOpt Simple support?
As closely as possible, JOpt Simple attempts to adhere to the rules of POSIX getopt() and GNU getopt_long(). You can find a brief summary of these rules in the javadoc for class OptionParser.
Enhancements:
- Minor internal changes.
<<lessWhat command line switch syntax does JOpt Simple support?
As closely as possible, JOpt Simple attempts to adhere to the rules of POSIX getopt() and GNU getopt_long(). You can find a brief summary of these rules in the javadoc for class OptionParser.
Enhancements:
- Minor internal changes.
Download (0.054MB)
Added: 2007-04-22 License: GPL (GNU General Public License) Price:
916 downloads
WWW::YahooMaps 0.3
WWW::YahooMaps is a Perl module which can create links to Yahoo! Maps. more>>
WWW::YahooMaps is a Perl module which can create links to Yahoo! Maps.
SYNOPSIS
use WWW::YahooMaps;
#first method: PASSING ADDRESS BIT-BY-BIT
my %addr = (
"street" => "555 N Michigan Ave",
"city" => "Chicago, IL 60611",
"country" => "us",
);
if (my $url = WWW::YahooMaps::hashreftolink(%addr)){
print "url1 $urln";
}
#second method: ADDRESS INFO IN STRING
#separators can be ";" or newline "n"
#street should come before city
#pass an additional 1 at the end if you want to pass city first
if (my $url = WWW::YahooMaps::stringtolink("us","us","101 Morris Street; Sebastopol, CA 95472")){
print "url2 $urln";
}
#third method: CALL A FUNCTION WITH BIT-BY-BIT PARAMETERS
if (my $url = WWW::YahooMaps::stringtolink("us","us","Paris, TX; Main Street", 1)){
print "url3 $urln";
}
<<lessSYNOPSIS
use WWW::YahooMaps;
#first method: PASSING ADDRESS BIT-BY-BIT
my %addr = (
"street" => "555 N Michigan Ave",
"city" => "Chicago, IL 60611",
"country" => "us",
);
if (my $url = WWW::YahooMaps::hashreftolink(%addr)){
print "url1 $urln";
}
#second method: ADDRESS INFO IN STRING
#separators can be ";" or newline "n"
#street should come before city
#pass an additional 1 at the end if you want to pass city first
if (my $url = WWW::YahooMaps::stringtolink("us","us","101 Morris Street; Sebastopol, CA 95472")){
print "url2 $urln";
}
#third method: CALL A FUNCTION WITH BIT-BY-BIT PARAMETERS
if (my $url = WWW::YahooMaps::stringtolink("us","us","Paris, TX; Main Street", 1)){
print "url3 $urln";
}
Download (0.004MB)
Added: 2006-12-12 License: Perl Artistic License Price:
1046 downloads
Mail::SendEasy 1.2
Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). more>>
Mail::SendEasy can send plain/html e-mails through SMTP servers (platform independent). Supports SMTP authentication and attachments.
This modules will send in a easy way e-mails, and doesnt have dependencies. Soo, you dont need to install libnet.
It supports SMTP authentication and attachments.
USAGE:
OO
use Mail::SendEasy ;
my $mail = new Mail::SendEasy(
smtp => localhost ,
user => foo ,
pass => 123 ,
) ;
my $status = $mail->send(
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { print $mail->error ;}
STRUCTURED
use Mail::SendEasy ;
my $status = Mail::SendEasy::send(
smtp => localhost ,
user => foo ,
pass => 123 ,
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { Mail::SendEasy::error ;}
<<lessThis modules will send in a easy way e-mails, and doesnt have dependencies. Soo, you dont need to install libnet.
It supports SMTP authentication and attachments.
USAGE:
OO
use Mail::SendEasy ;
my $mail = new Mail::SendEasy(
smtp => localhost ,
user => foo ,
pass => 123 ,
) ;
my $status = $mail->send(
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { print $mail->error ;}
STRUCTURED
use Mail::SendEasy ;
my $status = Mail::SendEasy::send(
smtp => localhost ,
user => foo ,
pass => 123 ,
from => sender@foo.com ,
from_title => Foo Name ,
reply => re@foo.com ,
error => error@foo.com ,
to => recp@domain.foo ,
cc => recpcopy@domain.foo ,
subject => "MAIL Test" ,
msg => "The Plain Msg..." ,
html => "The HTML Msg..." ,
msgid => "0101" ,
) ;
if (!$status) { Mail::SendEasy::error ;}
Download (0.011MB)
Added: 2007-08-02 License: Perl Artistic License Price:
816 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 pass 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