in a few seconds
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2528
second hand icons
second hand icons is inspired by the superb litho icons by anthony piraino. more>>
second hand icons is inspired by the superb litho icons by anthony piraino.
-- THIS SET IS ABANDONED --
Everyone is welcomed to pick it up and continue the work. im sorry, i just cant do it now. please, read the readme file.
<<less-- THIS SET IS ABANDONED --
Everyone is welcomed to pick it up and continue the work. im sorry, i just cant do it now. please, read the readme file.
Download (0.70MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1217 downloads
Light Speed! 1
Light Speed! project is an interactive relativistic simulator. more>>
Light Speed! project is an interactive relativistic simulator.
Light Speed! is an OpenGL-based program which illustrates the effects of special relativity on the appearance of moving objects.
When an object accelerates past a few million meters per second, these effects begin to grow noticeable, becoming more and more pronounced as the speed of light is approached.
These relativistic effects are viewpoint-dependent, and include shifts in length, object hue, brightness and shape.
Main features:
- Real-time interactive viewing
- 3D object importer
- Snapshot exporter
- Special Relativity Scene (SRS) exporter
- Reference geometry
- Independent toggles for the four relativistic effects
- Numerical camera location + target readout and input
- Switchable background color
<<lessLight Speed! is an OpenGL-based program which illustrates the effects of special relativity on the appearance of moving objects.
When an object accelerates past a few million meters per second, these effects begin to grow noticeable, becoming more and more pronounced as the speed of light is approached.
These relativistic effects are viewpoint-dependent, and include shifts in length, object hue, brightness and shape.
Main features:
- Real-time interactive viewing
- 3D object importer
- Snapshot exporter
- Special Relativity Scene (SRS) exporter
- Reference geometry
- Independent toggles for the four relativistic effects
- Numerical camera location + target readout and input
- Switchable background color
Download (0.008MB)
Added: 2006-10-16 License: LGPL (GNU Lesser General Public License) Price:
1112 downloads
IP Tables network magic SysRq 0.5
IP Tables network magic SysRq is a new iptables target that allows you to do the same as the magic sysrq key on a keyboard does. more>>
IP Tables network magic SysRq is a new iptables target that allows you to do the same as the magic sysrq key on a keyboard does, but over the network.
Why to use the remote sysrq?
Sometimes a remote server hangs and only responds to icmp echo request (ping). Every administrator of such machine is very unhappy because (s)he must go there and press the reset button. It takes a long time and its inconvenient. So here is a solution. Use the Network Magic SysRq and you will be able to do more than just pressing a reset button. You can remotely sync disks, remount them read-only, then do a reboot. And everything comfortably and only in a few seconds.
Is it secure?
That depends. Let me explain: You can restrict who can do this by setting the iptables firewall. But unfortunately, for simplicity, the Network Magic SysRq is based on a single packet request. This packet is encrypted and password protected, but if somebody can sniff it (s)he will be able to repeat (but not to change) the query (so-called replay attack). The query is also protected by a timestamp. When the packet is generated, it is stamped by current date and time. Then on the server side that stamp is compared with the current time of the server and if it is within the tolerance the request is accepted. Together with some other information, the timestamp is protected by SHA1 hash. This means that the potential attacker has a limited time to repeat the sniffed packet. If anybody requires a better security than this, some secure encrypted tunnel can be used. (not depending on userspace, of course!
How to install it?
Just type make.
When everything is compiled type make install as root and after that run depmod -a. Now you can load the kernel module by the command modprobe ipt_SYSRQ.
You would also like to configure the server password and the tolerance. This can be set when installing the module into a kernel, by specifying the module parameters passwd for password and tolerance for tolerance in seconds. The default values are passwd="" and tolerance=43200.
Example:
modprobe ipt_SYSRQ passwd="my_very_secret_password" tolerance=3600
Module options can also be specified in file /etc/modules.conf.
Example:
options ipt_SYSRQ passwd="my_very_secret_password" tolerance=3600
What to do on a server?
After the module is loaded you are able to deploy it using the iptables command.
Some examples of usage:
iptables -I INPUT -p udp --dport 9 -j SYSRQ
or
iptables -I INPUT -i eth1 -s 192.168.1.2 -p udp --dport 9 -j SYSRQ
Note that UDP port 9 is used. This is the default port for send_sysrq program, which shouldnt do any harm, as it defaults to discard service.
What to do on the remote machine?
Copy the executable binary send_sysrq to the remote (client) machine. Alternatively, you can compile ipt_sysrq there yourselves. After uncompressing the source package, you just need to do a make send_sysrq.
Now you can use the client program send_sysrq to send the sysrq request.
<<lessWhy to use the remote sysrq?
Sometimes a remote server hangs and only responds to icmp echo request (ping). Every administrator of such machine is very unhappy because (s)he must go there and press the reset button. It takes a long time and its inconvenient. So here is a solution. Use the Network Magic SysRq and you will be able to do more than just pressing a reset button. You can remotely sync disks, remount them read-only, then do a reboot. And everything comfortably and only in a few seconds.
Is it secure?
That depends. Let me explain: You can restrict who can do this by setting the iptables firewall. But unfortunately, for simplicity, the Network Magic SysRq is based on a single packet request. This packet is encrypted and password protected, but if somebody can sniff it (s)he will be able to repeat (but not to change) the query (so-called replay attack). The query is also protected by a timestamp. When the packet is generated, it is stamped by current date and time. Then on the server side that stamp is compared with the current time of the server and if it is within the tolerance the request is accepted. Together with some other information, the timestamp is protected by SHA1 hash. This means that the potential attacker has a limited time to repeat the sniffed packet. If anybody requires a better security than this, some secure encrypted tunnel can be used. (not depending on userspace, of course!
How to install it?
Just type make.
When everything is compiled type make install as root and after that run depmod -a. Now you can load the kernel module by the command modprobe ipt_SYSRQ.
You would also like to configure the server password and the tolerance. This can be set when installing the module into a kernel, by specifying the module parameters passwd for password and tolerance for tolerance in seconds. The default values are passwd="" and tolerance=43200.
Example:
modprobe ipt_SYSRQ passwd="my_very_secret_password" tolerance=3600
Module options can also be specified in file /etc/modules.conf.
Example:
options ipt_SYSRQ passwd="my_very_secret_password" tolerance=3600
What to do on a server?
After the module is loaded you are able to deploy it using the iptables command.
Some examples of usage:
iptables -I INPUT -p udp --dport 9 -j SYSRQ
or
iptables -I INPUT -i eth1 -s 192.168.1.2 -p udp --dport 9 -j SYSRQ
Note that UDP port 9 is used. This is the default port for send_sysrq program, which shouldnt do any harm, as it defaults to discard service.
What to do on the remote machine?
Copy the executable binary send_sysrq to the remote (client) machine. Alternatively, you can compile ipt_sysrq there yourselves. After uncompressing the source package, you just need to do a make send_sysrq.
Now you can use the client program send_sysrq to send the sysrq request.
Download (0.025MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1082 downloads
ASCEND 0.9.5.113
ASCEND is a flexible modelling environment for solving hard engineering and science problems. more>>
ASCEND is a flexible modelling environment for solving hard engineering and science problems. It offers:
- an object-oriented model description language for describing your system,
- an interactive user interface that allows you to solve your model and explore the effect of changing the model parameters, and
- a scripting environment that allows you to automate your more complex simulation problems.
The project was originally written at Carnegie Mellon University in the 1980s and includes powerful and reliable solver routines that analyse the structure of your model and can solve thousands of simultaneous nonlinear equations in a few seconds on everyday computer hardware. It is under active development and is licensed under the GNU General Public License ensuring that it is free software and will remain free.
<<less- an object-oriented model description language for describing your system,
- an interactive user interface that allows you to solve your model and explore the effect of changing the model parameters, and
- a scripting environment that allows you to automate your more complex simulation problems.
The project was originally written at Carnegie Mellon University in the 1980s and includes powerful and reliable solver routines that analyse the structure of your model and can solve thousands of simultaneous nonlinear equations in a few seconds on everyday computer hardware. It is under active development and is licensed under the GNU General Public License ensuring that it is free software and will remain free.
Download (2.9MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
806 downloads
Frameworks 0.3.6
Frameworks is stop-motion animation frame capture software primarily for Linux. more>>
Frameworks is stop-motion animation frame capture software primarily for Linux. It captures images from a camera and strings them together into an animation.
These still images may then be combined into a single video file using other software. Only video4linux webcams are currently supported; work is being done to add other types of digital cameras including IEEE 1394 camcorders, and USB still cameras. Frameworks is designed to be easily used alongside the GIMP Animation Package (GAP).
Frameworks began as an extension of gqcam, though it no longer shares any code with gqcam. Frameworks is free software (and therefore open source) licensed under the GNU GPL. Without gqcam being free software, Frameworks would not exist.
Main features:
- Frame averaging: The averaging together of multiple frames to reduce random noise in the captured image.
- Frame overlay or onion skinning: Overlaying previous frames ontop of the live display to assist with positioning of objects during animation.
- Continuous preview: Preview the previous few seconds of animation, ending with the live feed from the webcam to assist with object positioning.
<<lessThese still images may then be combined into a single video file using other software. Only video4linux webcams are currently supported; work is being done to add other types of digital cameras including IEEE 1394 camcorders, and USB still cameras. Frameworks is designed to be easily used alongside the GIMP Animation Package (GAP).
Frameworks began as an extension of gqcam, though it no longer shares any code with gqcam. Frameworks is free software (and therefore open source) licensed under the GNU GPL. Without gqcam being free software, Frameworks would not exist.
Main features:
- Frame averaging: The averaging together of multiple frames to reduce random noise in the captured image.
- Frame overlay or onion skinning: Overlaying previous frames ontop of the live display to assist with positioning of objects during animation.
- Continuous preview: Preview the previous few seconds of animation, ending with the live feed from the webcam to assist with object positioning.
Download (0.12MB)
Added: 2006-01-27 License: GPL (GNU General Public License) Price:
1369 downloads
Kickoff Qt Fedora 7 1.0
Kickoff QT desktop panel for KDE is the best effort effort to maximize the users experience. more>>
Kickoff QT desktop panel for KDE is the best effort effort to maximize the users experience.
Kicker QT requires less clicking to launch programs because it uses the mouse over effect which is lacking in other menu launchers. it also loads plugins and uses qtcurve which is lacking in other menu launchers for that eye candy we like. The history feature keeps track of recent programs and files/documents in an organized display which is lacking in other menu launchers. Favorites is as nearly as quick as quick launcher which is lacking in other menu launchers in that it required one click.
Note: Other menu launchers includes Vista.
You can also adjust the size of the menu unlike older menu launchers which become cluttered over time and explode all over your desktop. ;^D
WARNING this is a Force install at the time and will mutilate KDEbase, not for the faint of heart! I am working on the entire KDE 3.5.7 KDE QT which will be debugged for personal use with development on mng animation.
Use this at your own risk!!!
Reboot after installing launch button respones slowly the first few seconds.
Enhancements:
- replaced suse button with FedoraBubbles kbfx button
<<lessKicker QT requires less clicking to launch programs because it uses the mouse over effect which is lacking in other menu launchers. it also loads plugins and uses qtcurve which is lacking in other menu launchers for that eye candy we like. The history feature keeps track of recent programs and files/documents in an organized display which is lacking in other menu launchers. Favorites is as nearly as quick as quick launcher which is lacking in other menu launchers in that it required one click.
Note: Other menu launchers includes Vista.
You can also adjust the size of the menu unlike older menu launchers which become cluttered over time and explode all over your desktop. ;^D
WARNING this is a Force install at the time and will mutilate KDEbase, not for the faint of heart! I am working on the entire KDE 3.5.7 KDE QT which will be debugged for personal use with development on mng animation.
Use this at your own risk!!!
Reboot after installing launch button respones slowly the first few seconds.
Enhancements:
- replaced suse button with FedoraBubbles kbfx button
Download (MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
526 downloads
TinyWM 1.3
TinyWM is a ridiculously tiny window manager implemented in nearly as few lines of C as possible. more>>
TinyWM is a ridiculously tiny window manager implemented in nearly as few lines of C as possible, without being obfuscated or entirely useless.
TinyWM allows you to move, resize, focus (sloppy), and raise windows. A Python version is also included.
<<lessTinyWM allows you to move, resize, focus (sloppy), and raise windows. A Python version is also included.
Download (0.005MB)
Added: 2006-09-07 License: Public Domain Price:
1142 downloads
Time::Convert 0.5
Time::Convert is a Perl interface to converting unix seconds to years, days, hours and minutes. more>>
Time::Convert is a Perl interface to converting unix seconds to years, days, hours and minutes.
SYNOPSIS
use Time::Convert;
my $convert = new Time::Convert;
EXAMPLE
use Time::Convert;
my $convert = new Time::Convert;
$REPLY = $convert->ConvertSecs(time);
print($REPLY);
<<lessSYNOPSIS
use Time::Convert;
my $convert = new Time::Convert;
EXAMPLE
use Time::Convert;
my $convert = new Time::Convert;
$REPLY = $convert->ConvertSecs(time);
print($REPLY);
Download (0.002MB)
Added: 2006-08-10 License: Perl Artistic License Price:
1172 downloads
Second Life Live CD 5.0.1
Second Life Live CD is a Live CD based on Knoppix, for nvidia graphics cards only. more>>
Second Life Live CD is a Live CD based on Knoppix, for nvidia graphics cards only.
Instructions for use on the CD /index.html
<<lessInstructions for use on the CD /index.html
Download (593MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1169 downloads
KSniffer 0.3
KSniffer is a sniffing application for KDE. more>>
KSniffer is a sniffing application for KDE. KSniffer is in the starting release... Not yet released as stable, not for crashed, but for few feature.
Enhancements:
- add/remove KSniffer in the system tray bar
- added KSniffer option dialog:
- sniffer settings:
- display packets after you stopped capture available
- capture settings:
- stop manually
- stop after X packets
- stop after X bytes/kilobytes/megabyes/gigabytes
- stop after X seconds/minutes/hours/days
- added data for TCP detail display
- added pause/continue capture
- reading ports name from system (file /etc/services)
- quick search added (dependancy from kdelibs >= 3.3)
- better management for loading file
- better management for temporary file
- root privileges dont need anymore for the GUI
- removed sorting feature cause of bad performing for lots of packets
- getting information on IP: can be detected some networking information
- on source or destination selected IP:
- whois
- traceroute
- ping
- dig
- host
- nslookup
- compiling on FreeBSD and some other Linux platform
- fixed boring bugs
Enhancements:
- new icon and splashscreen thanks to Carmine De Rosa
- fixed crash when you click on a captured packet after you tryed to open a file, but you didnt open it
- give the port name to UDP and TCP connections getting them from /etc/services file
- show raw bytes of a selected packet from the list of the captured one
- changed "sniff" application name to "ksniff" to avoid name conflicts with other sniffing applications
- fixed bug that avoid saving sniffed data quitting from the application
- get the list of the network interfaces that have different MAC addresses
- check ksniff permissions to avoid users think KSniffer doesnt work: Debian/*ubuntu/OpenSuSE remove
- the suid bit: a warning dialog will appear in case ksniff ha not found or has not the SUID bit
<<lessEnhancements:
- add/remove KSniffer in the system tray bar
- added KSniffer option dialog:
- sniffer settings:
- display packets after you stopped capture available
- capture settings:
- stop manually
- stop after X packets
- stop after X bytes/kilobytes/megabyes/gigabytes
- stop after X seconds/minutes/hours/days
- added data for TCP detail display
- added pause/continue capture
- reading ports name from system (file /etc/services)
- quick search added (dependancy from kdelibs >= 3.3)
- better management for loading file
- better management for temporary file
- root privileges dont need anymore for the GUI
- removed sorting feature cause of bad performing for lots of packets
- getting information on IP: can be detected some networking information
- on source or destination selected IP:
- whois
- traceroute
- ping
- dig
- host
- nslookup
- compiling on FreeBSD and some other Linux platform
- fixed boring bugs
Enhancements:
- new icon and splashscreen thanks to Carmine De Rosa
- fixed crash when you click on a captured packet after you tryed to open a file, but you didnt open it
- give the port name to UDP and TCP connections getting them from /etc/services file
- show raw bytes of a selected packet from the list of the captured one
- changed "sniff" application name to "ksniff" to avoid name conflicts with other sniffing applications
- fixed bug that avoid saving sniffed data quitting from the application
- get the list of the network interfaces that have different MAC addresses
- check ksniff permissions to avoid users think KSniffer doesnt work: Debian/*ubuntu/OpenSuSE remove
- the suid bit: a warning dialog will appear in case ksniff ha not found or has not the SUID bit
Download (0.65MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
826 downloads
gnome-python-desktop 2.18.0
gnome-python-desktop package contains a few python modules that used to live in gnome-python-extras. more>>
gnome-python-desktop package contains a few python modules that used to live in gnome-python-extras:
- gnomeapplet
- gnomeprint, gnomeprint.ui
- gtksourceview
- wnck
- totem.plparser
- gtop
- nautilusburn
- mediaprofiles
- metacity
<<less- gnomeapplet
- gnomeprint, gnomeprint.ui
- gtksourceview
- wnck
- totem.plparser
- gtop
- nautilusburn
- mediaprofiles
- metacity
Download (0.63MB)
Added: 2007-03-13 License: LGPL (GNU Lesser General Public License) Price:
567 downloads
snmpmondb 1.0
snmpmondb tracks network traffic usage for local and remote hosts via SNMP. more>>
snmpmondb project can track network traffic usage for local and remote hosts via SNMP. A few simple Web pages are included to show the resultant data in various graphs.
<<less Download (0.024MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1346 downloads
Mp3Wrap for Linux 0.5
It wraps quickly two or more mp3 files in one single large playable mp3. more>> Mp3Wrap is a free independent alternative to AlbumWrap. Its a command-line utility that wraps quickly two or more mp3 files in one single large playable mp3, without losing filenames and ID3 informations (and without need of decoding/encoding). Also with the possibility of including other non mp3 files, such as PlayLists, info files, cover images, inside the mp3. This means that you obtain a large mp3 that you can split in any moment just using mp3splt and in few seconds you have all original files again! Its useful because files created with Mp3Wrap are easy to download. Infact who downloads has not to know each single song name and easy to play and even if you dont have mp3splt to split file, you can listen to it anyway.<<less
Download (110KB)
Added: 2009-04-09 License: Freeware Price: Free
197 downloads
Red-Piranha 0.3
Red-Piranha is a search and knowledge management system. more>>
Red-Piranha is an open source search system that can actually learn what you are looking for. It lets you go everywhere , find anything , understand everything.
Because it is open source , it can integrate with any system. Because you can use it as a web page , command line or XML- WebService , it will work with most languages , including Java , Perl , C#/.Net and PHP. As a Java based program , it will run on any platform including Windows , Linux / Unix and Mac.
Main features:
- Personal Search Engine for your Desktop (Windows , Linux and Mac).
- Intranet Search Engine - Search your Company or College Intranet.
- Part of your Development Project - Have search abilities up and running in a few minutes.
- To provide Search facilities on your website.
- As a P2P search engine.
- In conjunction with a wiki, as a knowledge / document management solution.
- Scan a set of websites for the data you want (e.g. Search Job sites on a hourly basis).
- Explore the Semantic web using RDF.
- Search RSS feeds for the information you want.
- Search your Companies systems (including SAP , Oracle or any other Database / Data source).
- Provide a back end for searching in your App (Web , Swing , SWT , Flash, Mozilla-XUL, PHP , Perl or even c#/.Net) .
- Document Management for PDF, Word and other Docs.
- As a Webservice to provide search information
- As a command line tool , to give searching power to your scripts.
- Provide a Search facility for your project documentation.
Using
To use Red-Piranha - open your favourite web browser and point it at http://localhost:8080/RP . Within a few seconds , you should see the Red-Piranha start screen. This will have three items of interest
- A Text box , where we enter the information to add or search
- An add information button - to tell Red-Piranha about new information
- A Search button - to carry out a search.
Before we can search , we must tell Red-Piranha we information we are interested in. This is as easy as putting the piece of information we want to add (e.g. the folder c:temp) in the search box and pressing the Add information button. A message will be displayed saying that your information is being added and will be available to search shortly. For more information , look in the logs at TOMCAT_HOMEWebappsRPlogsrp.log
Examples of things we can add to Red-Piranha are
- A folder (e.g. C:Temp). All files in both this folder and *all* its subfolders will be added.
- An individual file. This file can be text , a web page , a word document , or pdf document. For binary files (like word , which are not plain text) , Red-Piranha will scan the file for recognizable text and add that.
- A Web page. Red-Piranha will add this web page , *and* web pages it links to.
- A Google Search (e.g. http://www.google.com/search?q=some+thing?m=100). Red-Piranha will get the results of the google search , and add information on the pages it links to.
- An XML file (including RSS feeds) , either on disk or over the web.
- Favourites / Bookmarks folders - Red-Piranha will index the web pages that these favourites point to.
Adding information can take anything from a few milliseconds , depending on the amount of information being added. Once added, Red-Piranha will check on a regular basis to see if the information added has changed and re-index if required. Your information is now available to be searched.
To do a search , put the item you want to search for into the textbox and press search. Red-Piranha will show the search results on the screen. Clicking on the link beside the search results will show you the original information (as long as you have access to it).
From version 0.3 onwards , Red-Piranha can learn what search results you are interested in an improve your future searches. To give Red-Piranha feedback and help it learn what you are interested in , click on any of the links on the search results page. Red-Piranha makes a note of your choice , which is used to adjust the search results later.
<<lessBecause it is open source , it can integrate with any system. Because you can use it as a web page , command line or XML- WebService , it will work with most languages , including Java , Perl , C#/.Net and PHP. As a Java based program , it will run on any platform including Windows , Linux / Unix and Mac.
Main features:
- Personal Search Engine for your Desktop (Windows , Linux and Mac).
- Intranet Search Engine - Search your Company or College Intranet.
- Part of your Development Project - Have search abilities up and running in a few minutes.
- To provide Search facilities on your website.
- As a P2P search engine.
- In conjunction with a wiki, as a knowledge / document management solution.
- Scan a set of websites for the data you want (e.g. Search Job sites on a hourly basis).
- Explore the Semantic web using RDF.
- Search RSS feeds for the information you want.
- Search your Companies systems (including SAP , Oracle or any other Database / Data source).
- Provide a back end for searching in your App (Web , Swing , SWT , Flash, Mozilla-XUL, PHP , Perl or even c#/.Net) .
- Document Management for PDF, Word and other Docs.
- As a Webservice to provide search information
- As a command line tool , to give searching power to your scripts.
- Provide a Search facility for your project documentation.
Using
To use Red-Piranha - open your favourite web browser and point it at http://localhost:8080/RP . Within a few seconds , you should see the Red-Piranha start screen. This will have three items of interest
- A Text box , where we enter the information to add or search
- An add information button - to tell Red-Piranha about new information
- A Search button - to carry out a search.
Before we can search , we must tell Red-Piranha we information we are interested in. This is as easy as putting the piece of information we want to add (e.g. the folder c:temp) in the search box and pressing the Add information button. A message will be displayed saying that your information is being added and will be available to search shortly. For more information , look in the logs at TOMCAT_HOMEWebappsRPlogsrp.log
Examples of things we can add to Red-Piranha are
- A folder (e.g. C:Temp). All files in both this folder and *all* its subfolders will be added.
- An individual file. This file can be text , a web page , a word document , or pdf document. For binary files (like word , which are not plain text) , Red-Piranha will scan the file for recognizable text and add that.
- A Web page. Red-Piranha will add this web page , *and* web pages it links to.
- A Google Search (e.g. http://www.google.com/search?q=some+thing?m=100). Red-Piranha will get the results of the google search , and add information on the pages it links to.
- An XML file (including RSS feeds) , either on disk or over the web.
- Favourites / Bookmarks folders - Red-Piranha will index the web pages that these favourites point to.
Adding information can take anything from a few milliseconds , depending on the amount of information being added. Once added, Red-Piranha will check on a regular basis to see if the information added has changed and re-index if required. Your information is now available to be searched.
To do a search , put the item you want to search for into the textbox and press search. Red-Piranha will show the search results on the screen. Clicking on the link beside the search results will show you the original information (as long as you have access to it).
From version 0.3 onwards , Red-Piranha can learn what search results you are interested in an improve your future searches. To give Red-Piranha feedback and help it learn what you are interested in , click on any of the links on the search results page. Red-Piranha makes a note of your choice , which is used to adjust the search results later.
Download (22.4MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1642 downloads
Poissonrun 0.03
Poissonrun runs a given command statistically once every T seconds. more>>
Poissonrun runs a given command statistically once every T seconds. The program can be run at any given time, but on average, it is every T seconds.
The random process is based on the poisson distribution.
Installation:
./configure
make
make install
Enhancements:
- This release adds new methods for specifying probabilities and time intervals, improves documentation, and adds a feature for having multiple commands in a running state simultaneously.
<<lessThe random process is based on the poisson distribution.
Installation:
./configure
make
make install
Enhancements:
- This release adds new methods for specifying probabilities and time intervals, improves documentation, and adds a feature for having multiple commands in a running state simultaneously.
Download (0.003MB)
Added: 2007-02-16 License: Public Domain Price:
983 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 in a few seconds 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