needing
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5333
Need-Money 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-08 License: Freeware Price: Free
202 downloads
Site Editor 0.5
Site Editor is a CGI script which allows a user to manage their web space without needing ftp access. more>>
Site Editor is a CGI script which allows a user to manage their web space without needing ftp access.
With only a web browser you can browse your web space, edit text files, upload files, and create and remove directories. Site Editor also has ZIP support making it easy to grab an entire directory tree.
Site Editor is completely functional but is missing some features and polish which would make it easier to use. Currently it requires access control to be handled by the web server. On top of this the code is a little raw, hence this is not a 1.0 release.
To configure for your system the "site_editor" script needs to be modified slightly. In the "Config" section edit the following variables:
$BASE_DIR Root directory for editing files.
$BASE_URL Web location for $BASE_DIR files. Can be relative or absolute.
$TITLE Title prefix to be used for each page.
$ICON_URL Location of icons. It may be relative or absolute.
$ZIP The full path to your Info-ZIP binary. Comment to disable.
I have included a simple patch to Apaches suexec which will allow the script to be root owned. With suexec and the script owned by root the user wont be able to modify the scripts configuration but will still be able to create and modify their own files.
Any comments and suggestions are welcome.
<<lessWith only a web browser you can browse your web space, edit text files, upload files, and create and remove directories. Site Editor also has ZIP support making it easy to grab an entire directory tree.
Site Editor is completely functional but is missing some features and polish which would make it easier to use. Currently it requires access control to be handled by the web server. On top of this the code is a little raw, hence this is not a 1.0 release.
To configure for your system the "site_editor" script needs to be modified slightly. In the "Config" section edit the following variables:
$BASE_DIR Root directory for editing files.
$BASE_URL Web location for $BASE_DIR files. Can be relative or absolute.
$TITLE Title prefix to be used for each page.
$ICON_URL Location of icons. It may be relative or absolute.
$ZIP The full path to your Info-ZIP binary. Comment to disable.
I have included a simple patch to Apaches suexec which will allow the script to be root owned. With suexec and the script owned by root the user wont be able to modify the scripts configuration but will still be able to create and modify their own files.
Any comments and suggestions are welcome.
Download (0.011MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1203 downloads
pmping 0.06
pmping provides a parallel multiple host ping with audible results (beep on the PC speaker). more>>
pmping provides a parallel multiple host ping with audible results (beep on the PC speaker).
pmping is a script that pings multiple hosts in parallel and gives audible results depending on host state.
The sounds come from the internal PC speaker, thus not needing a sound card. It beeps when a host OS is losing many packets, or when it is down.
If the host is down, the script can send an email notification or run a command. All aspects are fully customisable by the user.
Main features:
- Logs notifications to standard output.
- Reloads config file on-the-fly.
- Ability to run a command when a host is down.
- Sends e-mail notifications when a host is down and when it comes up.
Enhancements:
- Corrected dynamic config reload (wasnt really working).
- Try to catch SMTP connection errors when sending notification e-mails.
- Changed the way we check network errors (regex was not working).
<<lesspmping is a script that pings multiple hosts in parallel and gives audible results depending on host state.
The sounds come from the internal PC speaker, thus not needing a sound card. It beeps when a host OS is losing many packets, or when it is down.
If the host is down, the script can send an email notification or run a command. All aspects are fully customisable by the user.
Main features:
- Logs notifications to standard output.
- Reloads config file on-the-fly.
- Ability to run a command when a host is down.
- Sends e-mail notifications when a host is down and when it comes up.
Enhancements:
- Corrected dynamic config reload (wasnt really working).
- Try to catch SMTP connection errors when sending notification e-mails.
- Changed the way we check network errors (regex was not working).
Download (0.032MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
954 downloads
Getopt::GUI::Long 0.7
Getopt::GUI::Long is a wrapper around Getopt::Long that extends the value of the original Getopt::Long module. more>>
Getopt::GUI::Long is a wrapper around Getopt::Long that extends the value of the original Getopt::Long module.
SYNOPSIS
use Getopt::GUI::Long;
# pass useful config options to Configure
Getopt::GUI::Long::Configure(qw(display_help no_ignore_case capture_output));
GetOptions(%opts,
["GUI:separator", "Important Flags:"],
["f|some-flag=s", "A flag based on a string"],
["o|other-flag", "A boloean"],
);
# or use references instead of a hash (less tested, however):
GetOptions(["some-flag=s", "perform some flag based on a value"] => $flag,
["other-flag=s", "perform some flag based on a value"] => $other);
# displays auto-help given the input above:
% opttest -h
Usage: opttest [OPTIONS] Other Arguments
OPTIONS:
Important Flags:
-f STRING A flag based on a string
-o A boloean
Help Options:
-h Display help options -- short flags preferred
--help Display help options -- long flags preferred
--help-full Display all help options -- short and long
# or long help:
% opttest --help
Usage: opttest [OPTIONS] Other Arguments
OPTIONS:
Important Flags:
--some-flag=STRING A flag based on a string
--other-flag A boloean
Help Options:
-h Display help options -- short flags preferred
--help Display help options -- long flags preferred
--help-full Display all help options -- short and long
# or a GUI screen:
(see http://net-policy.sourceforge.net/images/getopt_example.png )
It can:
1) add a simple graphical user interface option screen if no arguments are passed to the program. Thus, the arguments to actually use are built based on the results of the user interface. If arguments were passed to the program, the user interface is not shown and the program executes as it normally would and acts just as if Getopt::Long::GetOptions had been called instead.
2) provide an auto-help mechanism such that -h and --help are handled automatically. In fact, calling your program with -h will default to showing the user a list of short-style arguments when one exists for the option. Similarly --help will show the user a list of long-style when possible. --help-full will list all potential arguments for an option (short and long both).
Its designed to make the creation of graphical shells trivial without the programmer having to think about it much as well as providing automatic good-looking usage output without the programmer needing to write usage() functions.
<<lessSYNOPSIS
use Getopt::GUI::Long;
# pass useful config options to Configure
Getopt::GUI::Long::Configure(qw(display_help no_ignore_case capture_output));
GetOptions(%opts,
["GUI:separator", "Important Flags:"],
["f|some-flag=s", "A flag based on a string"],
["o|other-flag", "A boloean"],
);
# or use references instead of a hash (less tested, however):
GetOptions(["some-flag=s", "perform some flag based on a value"] => $flag,
["other-flag=s", "perform some flag based on a value"] => $other);
# displays auto-help given the input above:
% opttest -h
Usage: opttest [OPTIONS] Other Arguments
OPTIONS:
Important Flags:
-f STRING A flag based on a string
-o A boloean
Help Options:
-h Display help options -- short flags preferred
--help Display help options -- long flags preferred
--help-full Display all help options -- short and long
# or long help:
% opttest --help
Usage: opttest [OPTIONS] Other Arguments
OPTIONS:
Important Flags:
--some-flag=STRING A flag based on a string
--other-flag A boloean
Help Options:
-h Display help options -- short flags preferred
--help Display help options -- long flags preferred
--help-full Display all help options -- short and long
# or a GUI screen:
(see http://net-policy.sourceforge.net/images/getopt_example.png )
It can:
1) add a simple graphical user interface option screen if no arguments are passed to the program. Thus, the arguments to actually use are built based on the results of the user interface. If arguments were passed to the program, the user interface is not shown and the program executes as it normally would and acts just as if Getopt::Long::GetOptions had been called instead.
2) provide an auto-help mechanism such that -h and --help are handled automatically. In fact, calling your program with -h will default to showing the user a list of short-style arguments when one exists for the option. Similarly --help will show the user a list of long-style when possible. --help-full will list all potential arguments for an option (short and long both).
Its designed to make the creation of graphical shells trivial without the programmer having to think about it much as well as providing automatic good-looking usage output without the programmer needing to write usage() functions.
Download (0.012MB)
Added: 2006-11-02 License: Perl Artistic License Price:
1086 downloads
Enterprise Sign On Engine 0.3
Enterprise Sign On Engine is an advanced system which allows an enterprise to meet its individual goals... more>>
Enterprise Sign On Engine (ESOE) is an advanced system which allows an enterprise to meet its individual goals for integrated identity management, federation, single sign on, authorization and accountability for resource access in a very extensible manner.
The ESOE is built using the OASIS SAML 2.0 specification, and the ESOEs powerful authorization engine is built around a reduced version of the OASIS XACML 2.0 standard which we have called Lightweight eXtensible Authorization Control Markup Language or "LXACML".
The ESOE can integrate identity from unlimited repositories, automatically create sessions for users whom are logged into Active Directory (true single sign on), provide for centralized authorization policy management and natively federate with technologies such as Shibboleth and OpenID.
We hope youll find the ESOE a good choice for your needs amongst the wide variety of SSO solutions that are available, both from commercial providers and other open source projects. Of course if youre already using an SSO solution, there is a pretty good chance the ESOE can interact with it, allowing you to use the enhanced capabilities of the ESOE without needing to replace everything you already have.
Being heavily standards based, all your existing identity infrastructure such as LDAP compliant directories, databases and even flat files are only a plugin away. The ESOE is designed to fit around your environment, not have your environment change to fit it.
Were calling the current release an Alpha and some of the service providers, tools and documentation are still coming up to full completion. Nonetheless, we hope youll have a look around at what the ESOE can do for your enterprise and contribute back anything you can to help us build a strong community of users for the future.
Enhancements:
- Many bugfixes have gone into this release specifically relating to MySQL deployments.
- New features for this release are integrators for Confluence, Jira, and Blackboard.
<<lessThe ESOE is built using the OASIS SAML 2.0 specification, and the ESOEs powerful authorization engine is built around a reduced version of the OASIS XACML 2.0 standard which we have called Lightweight eXtensible Authorization Control Markup Language or "LXACML".
The ESOE can integrate identity from unlimited repositories, automatically create sessions for users whom are logged into Active Directory (true single sign on), provide for centralized authorization policy management and natively federate with technologies such as Shibboleth and OpenID.
We hope youll find the ESOE a good choice for your needs amongst the wide variety of SSO solutions that are available, both from commercial providers and other open source projects. Of course if youre already using an SSO solution, there is a pretty good chance the ESOE can interact with it, allowing you to use the enhanced capabilities of the ESOE without needing to replace everything you already have.
Being heavily standards based, all your existing identity infrastructure such as LDAP compliant directories, databases and even flat files are only a plugin away. The ESOE is designed to fit around your environment, not have your environment change to fit it.
Were calling the current release an Alpha and some of the service providers, tools and documentation are still coming up to full completion. Nonetheless, we hope youll have a look around at what the ESOE can do for your enterprise and contribute back anything you can to help us build a strong community of users for the future.
Enhancements:
- Many bugfixes have gone into this release specifically relating to MySQL deployments.
- New features for this release are integrators for Confluence, Jira, and Blackboard.
Download (MB)
Added: 2007-07-10 License: The Apache License 2.0 Price:
837 downloads
Save The Penguins 0.02
Save The Penguins is a crazy space shooter with penguins and flying saucers. more>>
Save The Penguins is a crazy space shooter with penguins and flying saucers.
This is inspired by "Save The Gweeks" for the Archimedes, in which you saved the gweeks from the snerds. I havent had access to the original, so how close it is I couldnt say.
You control this sphere/circle/whatever with the mouse. Left click to acellerate towards the cursor. Right click to fire lasers. Middle click to pause. Esc to Quit.
The idea is to kill the space ships before they either kill you or all the penguins.
The art for the penguins came from Pingus, the tileset was ripped from supertux.
If anyone would like to contribute levels/art/sound that would be cool.
Main features:
- Scrolling, moving and shooting.
- Tileset defined in simple configuration file
- Loading/Saving level to file with in-game level editor (press E).
- Objects (that is, non-static ones) get damaged when you hit them. The penguins explode in a pile of blood.
- Reasonable collision detection - you have to at least try to get it stuck.
- NEW!! Nice particle-based explosions. Saves me both needing a graphic for it, and it looks pretty cool
- NEW!! Powerups. Dont do much atm. One heals you, the other two hurt you by different amounts. Theres a hook to attach a sound to powerup/powerdown for when I get round to it.
<<lessThis is inspired by "Save The Gweeks" for the Archimedes, in which you saved the gweeks from the snerds. I havent had access to the original, so how close it is I couldnt say.
You control this sphere/circle/whatever with the mouse. Left click to acellerate towards the cursor. Right click to fire lasers. Middle click to pause. Esc to Quit.
The idea is to kill the space ships before they either kill you or all the penguins.
The art for the penguins came from Pingus, the tileset was ripped from supertux.
If anyone would like to contribute levels/art/sound that would be cool.
Main features:
- Scrolling, moving and shooting.
- Tileset defined in simple configuration file
- Loading/Saving level to file with in-game level editor (press E).
- Objects (that is, non-static ones) get damaged when you hit them. The penguins explode in a pile of blood.
- Reasonable collision detection - you have to at least try to get it stuck.
- NEW!! Nice particle-based explosions. Saves me both needing a graphic for it, and it looks pretty cool
- NEW!! Powerups. Dont do much atm. One heals you, the other two hurt you by different amounts. Theres a hook to attach a sound to powerup/powerdown for when I get round to it.
Download (0.46MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
827 downloads
e2fsimage 0.2.0
e2fsimage is a tool for creating and populating an ext2 filesystem image as an ordinary user. more>>
e2fsimage allows you to create ext2 filesystem images, mostly used on Linux systems, by copying an entire directory structure into an ext2 formatted image without needing root permissions.
Without this tool you need to loopback-mount an existing filesystem image and copy all files there as root.
This application is usually used by people creating rescue disks, initrds, bootable floppys or CDs or the more. Especially on build hosts where they do not have root permissions and the ptrace() bug is already fixed.
Enhancements:
- support for user ids in .UIDGID file and usernames resolved by passwd file
- free uiddb structure after use
- manpage updated
<<lessWithout this tool you need to loopback-mount an existing filesystem image and copy all files there as root.
This application is usually used by people creating rescue disks, initrds, bootable floppys or CDs or the more. Especially on build hosts where they do not have root permissions and the ptrace() bug is already fixed.
Enhancements:
- support for user ids in .UIDGID file and usernames resolved by passwd file
- free uiddb structure after use
- manpage updated
Download (0.015MB)
Added: 2005-04-08 License: BSD License Price:
1660 downloads
LinuxRogue 0.3.4
LinuxRogue is a cleaned up version of the Rogue port to Linux. more>>
LinuxRogue project is a cleaned up version of the Rogue port to Linux.
LinuxRogue is based on the original Rogue 5.3 Clone P12. It is a turn-based dungeon adventure game with a text-mode interface.
LinuxRogue is based on the original Rogue 5.3 Clone P12. The original work for this was by Tim Stoehr on UNIX. It was ported to Linux by Steve Wilson. Alan Cox maintained LinuxRogue for prehistoric Linux kernels. After that no one touched it for years. After getting hooked to Nethack some years back, I wanted to try its progenitor Rogue. Thats how I met LinuxRogue. I found the sources to be extremely old and needing many changes. And so started this project.
I can only work on LinuxRogue in my free time during weekends. The intention is not to add any new challenges or improve the difficulty or such. For those purposes there are already many other spinoffs of Rogue. I only intend to maintain this Rogue 5.3 clone on Linux clean, updated and bugfree.
Enhancements:
- Enabling LinuxRogue to run multi user:
- Instructions file at: /usr/local/share/games/rogue/rogue.instr
- Score file at: /var/games/RogueScores
- malloc compilation problem in machdep.c fixed.
<<lessLinuxRogue is based on the original Rogue 5.3 Clone P12. It is a turn-based dungeon adventure game with a text-mode interface.
LinuxRogue is based on the original Rogue 5.3 Clone P12. The original work for this was by Tim Stoehr on UNIX. It was ported to Linux by Steve Wilson. Alan Cox maintained LinuxRogue for prehistoric Linux kernels. After that no one touched it for years. After getting hooked to Nethack some years back, I wanted to try its progenitor Rogue. Thats how I met LinuxRogue. I found the sources to be extremely old and needing many changes. And so started this project.
I can only work on LinuxRogue in my free time during weekends. The intention is not to add any new challenges or improve the difficulty or such. For those purposes there are already many other spinoffs of Rogue. I only intend to maintain this Rogue 5.3 clone on Linux clean, updated and bugfree.
Enhancements:
- Enabling LinuxRogue to run multi user:
- Instructions file at: /usr/local/share/games/rogue/rogue.instr
- Score file at: /var/games/RogueScores
- malloc compilation problem in machdep.c fixed.
Download (0.056MB)
Added: 2007-01-04 License: Freely Distributable Price:
1025 downloads
OpenThought 0.71
OpenThought is a Web Application Environment which doesnt require page reloads. more>>
OpenThought is a Web Application Environment which doesnt require page reloads.
SYNOPSIS
use OpenThought();
my $o = OpenThought->new( $OP );
my $field_data;
$field_data->{myTextBox} = "Text Box Data";
$field_data->{myCheckbox} = "true";
$field_data->{myRadioBtn} = "RadioBtnValue";
$field_data->{mySelectList} = [
[ "text1", "value1" ],
[ "text2", "value2" ],
[ "text3", "value3" ],
];
my $html_data;
$html_data->{id_tagname} = "New HTML Code";
print $o->serialize({
fields => $field_data,
html => $html_data,
focus => "myTextBox",
javascript => $javascript_code
});
OpenThought is a powerful and flexible web application environment. OpenThought applications are different from other web applications in that all communication between the browser and the server is performed in the background. This gives a browser the ability to receive data from the server without ever reloading the currently loaded document. Data received can be displayed automatically on the existing page, can access JavaScript functions and variables, and can load new pages. Additionally, OpenThought completely manages all of your session data for you. These features give the look and feel of a full-blown application instead of just an ordinary Web page.
OpenThought is extended with OpenPlugin, also described briefly in this documentation.
OpenThought works by communicating with the server through the use of a hidden frame. Now some may say "Frames? Youre using frames??" No need to fret though, the frame is completely hidden. There is no visible way for your users to tell that they are using an application which makes use of frames.
This hidden frame performs all communication with the server for you, and allows your browser to talk to the server without reloading the content currently visible in your web browser. This is how OpenThought can update portions of the screen, and how the server can run JavaScript code in the browser, all without reloading the page.
Any time an OpenThought application is loaded, a unique session id is generated for that user. Each time communication takes place between the browser and server, OpenThought is careful to make sure that this session id is sent along with the request. There is nothing you need to do to make this work, it is done for you. When youre programming your application, you can always expect a session id to be sent to the server, and you can easily retrieve it along with the rest of the data sent by the browser.
In addition to being able to update portions of a screen, you can also load new pages within the content frame. If you choose to load new pages, your session continues to be maintained.
OpenThought gives you an easy way of tieing together multiple web pages, and allows you to build web applications which act like "real" applications. When an application is required, some people would decide to build it in Tk, Visual Basic, Gtk, or any number of other systems which offer a visual interface. But then, your application is either not available on the web, or you have to create a seperate web interface to interact with the backend.
Have you ever tried to create a web interface which minics the interface of a non-web based application? The web based application no longer looks or acts like your other interface, it acts like an ordinary webpage. It probably uses several screens to get the same amount of content that your application offered in one.
By not ever needing to reload the page, OpenThought offers this application look and feel thats been missing from the web. This allows you to create just one interface, for both LAN and web use.
<<lessSYNOPSIS
use OpenThought();
my $o = OpenThought->new( $OP );
my $field_data;
$field_data->{myTextBox} = "Text Box Data";
$field_data->{myCheckbox} = "true";
$field_data->{myRadioBtn} = "RadioBtnValue";
$field_data->{mySelectList} = [
[ "text1", "value1" ],
[ "text2", "value2" ],
[ "text3", "value3" ],
];
my $html_data;
$html_data->{id_tagname} = "New HTML Code";
print $o->serialize({
fields => $field_data,
html => $html_data,
focus => "myTextBox",
javascript => $javascript_code
});
OpenThought is a powerful and flexible web application environment. OpenThought applications are different from other web applications in that all communication between the browser and the server is performed in the background. This gives a browser the ability to receive data from the server without ever reloading the currently loaded document. Data received can be displayed automatically on the existing page, can access JavaScript functions and variables, and can load new pages. Additionally, OpenThought completely manages all of your session data for you. These features give the look and feel of a full-blown application instead of just an ordinary Web page.
OpenThought is extended with OpenPlugin, also described briefly in this documentation.
OpenThought works by communicating with the server through the use of a hidden frame. Now some may say "Frames? Youre using frames??" No need to fret though, the frame is completely hidden. There is no visible way for your users to tell that they are using an application which makes use of frames.
This hidden frame performs all communication with the server for you, and allows your browser to talk to the server without reloading the content currently visible in your web browser. This is how OpenThought can update portions of the screen, and how the server can run JavaScript code in the browser, all without reloading the page.
Any time an OpenThought application is loaded, a unique session id is generated for that user. Each time communication takes place between the browser and server, OpenThought is careful to make sure that this session id is sent along with the request. There is nothing you need to do to make this work, it is done for you. When youre programming your application, you can always expect a session id to be sent to the server, and you can easily retrieve it along with the rest of the data sent by the browser.
In addition to being able to update portions of a screen, you can also load new pages within the content frame. If you choose to load new pages, your session continues to be maintained.
OpenThought gives you an easy way of tieing together multiple web pages, and allows you to build web applications which act like "real" applications. When an application is required, some people would decide to build it in Tk, Visual Basic, Gtk, or any number of other systems which offer a visual interface. But then, your application is either not available on the web, or you have to create a seperate web interface to interact with the backend.
Have you ever tried to create a web interface which minics the interface of a non-web based application? The web based application no longer looks or acts like your other interface, it acts like an ordinary webpage. It probably uses several screens to get the same amount of content that your application offered in one.
By not ever needing to reload the page, OpenThought offers this application look and feel thats been missing from the web. This allows you to create just one interface, for both LAN and web use.
Download (0.076MB)
Added: 2006-07-18 License: Perl Artistic License Price:
1195 downloads
Fontconfig 2.3.91
Fontconfig is a library for font customization and configuration. more>>
Fontconfig is a library designed to provide system-wide font configuration, customization and application access.
The configuration module consists of the FcConfig datatype, libexpat and FcConfigParse which walks over an XML tree and ammends a configuration with data found within.
From an external perspective, configuration of the library consists of generating a valid XML tree and feeding that to FcConfigParse.
The only other mechanism provided to applications for changing the running configuration is to add fonts and directories to the list of application-provided font files.
The intent is to make font configurations relatively static, and shared by as many applications as possible. It is hoped that this will lead to more stable font selection when passing names from one application to another.
XML was chosen as a configuration file format because it provides a format which is easy for external agents to edit while retaining the correct structure and syntax.
Font configuration is separate from font matching; applications needing to do their own matching can access the available fonts from the library and perform private matching.
The intent is to permit applications to pick and choose appropriate functionality from the library instead of forcing them to choose between this library and a private configuration mechanism.
The hope is that this will ensure that configuration of fonts for all applications can be centralized in one place. Centralizing font configuration will simplify and regularize font installation and customization.
<<lessThe configuration module consists of the FcConfig datatype, libexpat and FcConfigParse which walks over an XML tree and ammends a configuration with data found within.
From an external perspective, configuration of the library consists of generating a valid XML tree and feeding that to FcConfigParse.
The only other mechanism provided to applications for changing the running configuration is to add fonts and directories to the list of application-provided font files.
The intent is to make font configurations relatively static, and shared by as many applications as possible. It is hoped that this will lead to more stable font selection when passing names from one application to another.
XML was chosen as a configuration file format because it provides a format which is easy for external agents to edit while retaining the correct structure and syntax.
Font configuration is separate from font matching; applications needing to do their own matching can access the available fonts from the library and perform private matching.
The intent is to permit applications to pick and choose appropriate functionality from the library instead of forcing them to choose between this library and a private configuration mechanism.
The hope is that this will ensure that configuration of fonts for all applications can be centralized in one place. Centralizing font configuration will simplify and regularize font installation and customization.
Download (0.97MB)
Added: 2005-10-18 License: GPL (GNU General Public License) Price:
1468 downloads
Zero Install 0.1.27
Zero Install is a system for running software without needing to install it. more>>
The Zero Install system makes software installation not merely easy, but unnecessary. Users run their applications directly from the Internet from the software authors pages.
Caching makes this as fast as running a normal application after the first time, and allows off-line use.
Main features:
- Software is only ever cached, not installed. Anyone can run any software, and nothing is run as root.
- Running a program is done in the same way whether its cached or not.
- Running cached software is as fast as running traditionally-installed software.
- Zero Install is both simpler and more secure than traditional packaging systems.
- Software can be removed from the cache to free space without affecting the behaviour of the system (it will be re-cached on demand).
- You can still run a program you cached last week, without using the net again.
<<lessCaching makes this as fast as running a normal application after the first time, and allows off-line use.
Main features:
- Software is only ever cached, not installed. Anyone can run any software, and nothing is run as root.
- Running a program is done in the same way whether its cached or not.
- Running cached software is as fast as running traditionally-installed software.
- Zero Install is both simpler and more secure than traditional packaging systems.
- Software can be removed from the cache to free space without affecting the behaviour of the system (it will be re-cached on demand).
- You can still run a program you cached last week, without using the net again.
Download (0.11MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1661 downloads
PeaZip For Linux 2.2
Free archiver utility, open 7Z, ACE, PAQ, TAR, RAR, ZIP, encrypt and split files more>> PeaZip is an open source file and archive manager for 32 and 64 bit Windows (9x, 2000, XP, Vista) and Linux.
For both platforms it is available as installable or portable package, not needing installation.
Full support: 7Z, 7Z-sfx, ARC/WRC, BZ2/TBZ2, GZ/TGZ, PAQ/LPAQ, PEA, QUAD/BALZ, split, TAR, UPX, ZIP.
Open, browse, extract, test: ACE, ARJ, CAB, CHM, COMPOUND (MSI, DOC, XLS, PPT), CPIO, ISO, Java (JAR, EAR, WAR), Linux (DEB, PET/PUP, RPM, SLP), LHA/LZH, LZMA, NSIS, OOo, PAK/PK3/PK4, RAR, SMZIP, U3P, WIM, XPI, Z/TZ (71 file extension supported).
Other features: powerful search and filter functions, robust file copy, split/join files, quick or secure file deletion, compare/checksum/hash files, system benchmark, generate random passwords and keyfiles, two factor authentication, strong encryption (AES256).
PeaZip allows to: create/extract multiple archives at once, save archives layout, save job definition as command line (to be inspected, or used in scripts), save job logs.
The user interface is skinnable for colors, transparence and icons.<<less
Download (3.24MB)
Added: 2009-04-22 License: Freeware Price: free
185 downloads
Other version of PeaZip For Linux
For both platforms it is available as installable or portable package, not needing installation. Full support: 7Z, 7Z-sfx, ARC/WRC, BZ2/TBZ2, GZ/TGZ, PAQ/LPAQ, PEA, QUAD, split, TAR, UPXLicense:Freeware
Alvis::Pipeline 0.11
Alvis::Pipeline is a Perl extension for passing XML documents along the Alvis pipeline. more>>
Alvis::Pipeline is a Perl extension for passing XML documents along the Alvis pipeline.
SYNOPSIS
use Alvis::Pipeline;
$in = new Alvis::Pipeline::Read(host => "harvester.alvis.info",
port => 16716,
spooldir => "/home/alvis/spool");
$out = new Alvis::Pipeline::Write(port => 29168);
while ($xml = $in->read(1)) {
$transformed = process($xml);
$out->write($transformed);
}
This module provides a simple means for components in the Alvis pipeline to pass documents between themselves without needing to know about the underlying transfer protocol. Pipe objects may be created either for reading or writing; components in the middle of the pipeline will create one of each. Pipes support exactly one method, which is either read() or write() depending on the type of the pipe. The granularity of reading and writing is the XML document; neither smaller fragments nor larger aggregates can be transferred.
The documents expected to pass through this pipeline are those representing documents acquired for, and being analysed by, Alvis. These documents are expressed as XML contructed according to the specifications described in the Metadata Format for Enriched Documents. However, while this is the motivating example pipeline that led to the creation of this module, there is no reason why other kinds of documents should not also be passed through pipeline using this software.
The pipeline protocol is described below, to facilitate the development of indepedent implementations in other languages.
<<lessSYNOPSIS
use Alvis::Pipeline;
$in = new Alvis::Pipeline::Read(host => "harvester.alvis.info",
port => 16716,
spooldir => "/home/alvis/spool");
$out = new Alvis::Pipeline::Write(port => 29168);
while ($xml = $in->read(1)) {
$transformed = process($xml);
$out->write($transformed);
}
This module provides a simple means for components in the Alvis pipeline to pass documents between themselves without needing to know about the underlying transfer protocol. Pipe objects may be created either for reading or writing; components in the middle of the pipeline will create one of each. Pipes support exactly one method, which is either read() or write() depending on the type of the pipe. The granularity of reading and writing is the XML document; neither smaller fragments nor larger aggregates can be transferred.
The documents expected to pass through this pipeline are those representing documents acquired for, and being analysed by, Alvis. These documents are expressed as XML contructed according to the specifications described in the Metadata Format for Enriched Documents. However, while this is the motivating example pipeline that led to the creation of this module, there is no reason why other kinds of documents should not also be passed through pipeline using this software.
The pipeline protocol is described below, to facilitate the development of indepedent implementations in other languages.
Download (0.015MB)
Added: 2006-09-16 License: Perl Artistic License Price:
1134 downloads
GoblinX 2.0
GoblinX is a Live-CD that is based on the excellent Slackware distribution. more>>
GoblinX is a Live-CD that is based on the excellent Slackware distribution.
GoblinX is directed towards those users who appreciate quality applications and a workspace that is both practical and beautiful.
GoblinX contains some of the most often used and praised applications for Linux. click on the ~Applications~ button to see which ones.
A Live-CD is a completely operational Linux system contained on one bootable CD that can de run from any CD-ROM drive, without requering the installation of anything on your hard drive.
When you want to return to your previous operating system, reboot and simply remove the GoblinX CD from your drive.
Using GoblinX is extremely easy. All you need is a bootable CD-ROM drive and GoblinX distro CD. GoblinX will run on your computer off of the CD using on-the-fly decompression. The first screen that appears after booting will allow you to choose the kernel image and add parameters to the system, a.k.a. "cheat codes", such as choosing to enable or disable certain "modules", choosing a non-default password, and/or selecting a screen resolution. However, you could just press "ENTER" at this prompt to initiate the default system settings, as GoblinX will still run perfectly well without needing any additional parameters.
The graphical boot uses a "boot splash", which not only warmly welcomes you, but displays thumbnails of each of the three available windows managers. If you wish to see the inner workings of the kernel while is booting just press F2, and the boot messages will be displayed instead.
At the end of the boot, the user will be logged and he can do all his works or simply enjoy himself.
<<lessGoblinX is directed towards those users who appreciate quality applications and a workspace that is both practical and beautiful.
GoblinX contains some of the most often used and praised applications for Linux. click on the ~Applications~ button to see which ones.
A Live-CD is a completely operational Linux system contained on one bootable CD that can de run from any CD-ROM drive, without requering the installation of anything on your hard drive.
When you want to return to your previous operating system, reboot and simply remove the GoblinX CD from your drive.
Using GoblinX is extremely easy. All you need is a bootable CD-ROM drive and GoblinX distro CD. GoblinX will run on your computer off of the CD using on-the-fly decompression. The first screen that appears after booting will allow you to choose the kernel image and add parameters to the system, a.k.a. "cheat codes", such as choosing to enable or disable certain "modules", choosing a non-default password, and/or selecting a screen resolution. However, you could just press "ENTER" at this prompt to initiate the default system settings, as GoblinX will still run perfectly well without needing any additional parameters.
The graphical boot uses a "boot splash", which not only warmly welcomes you, but displays thumbnails of each of the three available windows managers. If you wish to see the inner workings of the kernel while is booting just press F2, and the boot messages will be displayed instead.
At the end of the boot, the user will be logged and he can do all his works or simply enjoy himself.
Download (305MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
906 downloads
EncFS 1.3.2
EncFS is a FUSE-based encrypted virtual filesystem for Linux. more>>
EncFS provides an encrypted filesystem in user-space. EncFS runs without any special permissions and uses the FUSE library and Linux kernel module to provide the filesystem interface. You can find links to source and binary releases below.
As with most encrypted filesystems, Encfs is meant to provide security against off-line attacks; ie your notebook is stolen, your backups are stolen, etc. The way Encfs works is different from the �loopback� encrypted filesystem support built into the Linux kernel because it works on files at a time, not an entire block device.
You do not need to allocate storage ahead of time for EncFS.
Advantages of a pass-thru system vs an encrypted block device:
An empty EncFS filesystem consists of a couple dozen bytes. With a loopback encrypted filesystem, you allocate a filesystem ahead of time with the size you want.
An EncFS filesystem can be backed-up on a file-by-file basis. A backup program can detect which files have changed, even though it wont be able to decipher the files. This way backups can be made without needing to mount the encrypted filesystem.
An EncFS acts as a translator for filenames and file data and should theoretically be able to pass through to any underlying filesystem. You could have an EncFS filesystem on a DVD, or a DVD mounted remotely and served through a Samba server and mount it locally with EncFS in order to view the encrypted data (your mileage may vary).
<<lessAs with most encrypted filesystems, Encfs is meant to provide security against off-line attacks; ie your notebook is stolen, your backups are stolen, etc. The way Encfs works is different from the �loopback� encrypted filesystem support built into the Linux kernel because it works on files at a time, not an entire block device.
You do not need to allocate storage ahead of time for EncFS.
Advantages of a pass-thru system vs an encrypted block device:
An empty EncFS filesystem consists of a couple dozen bytes. With a loopback encrypted filesystem, you allocate a filesystem ahead of time with the size you want.
An EncFS filesystem can be backed-up on a file-by-file basis. A backup program can detect which files have changed, even though it wont be able to decipher the files. This way backups can be made without needing to mount the encrypted filesystem.
An EncFS acts as a translator for filenames and file data and should theoretically be able to pass through to any underlying filesystem. You could have an EncFS filesystem on a DVD, or a DVD mounted remotely and served through a Samba server and mount it locally with EncFS in order to view the encrypted data (your mileage may vary).
Download (0.60MB)
Added: 2007-02-15 License: GPL (GNU General Public License) Price:
988 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 needing 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