randomly generated
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2709
randoMp3 2.1
randoMp3 is a small Perl script that generates playlists for XMMS. more>>
randoMp3 is a small Perl script that generates playlists for XMMS. randoMp3 script is given the number of entries that should be in the playlist, and then it searches the filesystem for MP3s and randomly selects MP3s to include.
You also can enter a time limit, which causes the script to stop selecting MP3s when the total playing time of all selected MP3 is approximately equal to the given time limit (+/- 4min).
to run the script you have to install the module MP3::Info. You can do this by typing:
$perl -MCPAN -e install MP3::Info
Options:
randomp3.pl -f playlistname -d directory [-t time] [-n number] [-h help]
-f choosen playlistname
-d root directory for mp3s. e.g. /mp3s/
-t the time you want to listen. input in minutes. e.g. 15
-n number of files you want in youre playlist. e.g. 30
-h print help dialog.
you must start the program with -n OR -t
you cannot use both parameters together.
<<lessYou also can enter a time limit, which causes the script to stop selecting MP3s when the total playing time of all selected MP3 is approximately equal to the given time limit (+/- 4min).
to run the script you have to install the module MP3::Info. You can do this by typing:
$perl -MCPAN -e install MP3::Info
Options:
randomp3.pl -f playlistname -d directory [-t time] [-n number] [-h help]
-f choosen playlistname
-d root directory for mp3s. e.g. /mp3s/
-t the time you want to listen. input in minutes. e.g. 15
-n number of files you want in youre playlist. e.g. 30
-h print help dialog.
you must start the program with -n OR -t
you cannot use both parameters together.
Download (0.003MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1283 downloads
The Worlds Best Band Name Generator 1.03
The Worlds Best Band Name Generator produces randomly generated band names. more>>
The Worlds Best Band Name Generator produces randomly generated band names.
The Worlds Best Band Name Generator can generate band names like "Ungratefully Swallowed" and "The Bridgeheads" and "Throwaway Deceptiveness".
The visitor can refresh the names dynamically without refreshing the page by using a small AJAX script.
The generator uses combinations of nouns, adjectives, and adverbs that lend themselves well to band name creation, so most of the names actually sound realistic.
The script is easy to install and modify.
You can download the Worlds Best Band Name Generator for FREE to add to your own web site.
If you really like the Words Best Band Name Generator, please link to this page so other people can find it.
<<lessThe Worlds Best Band Name Generator can generate band names like "Ungratefully Swallowed" and "The Bridgeheads" and "Throwaway Deceptiveness".
The visitor can refresh the names dynamically without refreshing the page by using a small AJAX script.
The generator uses combinations of nouns, adjectives, and adverbs that lend themselves well to band name creation, so most of the names actually sound realistic.
The script is easy to install and modify.
You can download the Worlds Best Band Name Generator for FREE to add to your own web site.
If you really like the Words Best Band Name Generator, please link to this page so other people can find it.
Download (0.45MB)
Added: 2005-12-02 License: Freeware Price:
1425 downloads
Mr. Random 1.3
Mr. Random project is a utility useful for filling a portable MP3 audio player with music randomly selected. more>>
Mr. Random project is a utility useful for filling a portable MP3 audio player with music randomly selected from a larger collection situated on a computer hard drive.
This is a good idea if you cant make up your mind what you want to hear, you prefer to be surprised by a selection of music you may not have heard in a while, or want to hear familiar music juxtaposed in novel combinations.
<<lessThis is a good idea if you cant make up your mind what you want to hear, you prefer to be surprised by a selection of music you may not have heard in a while, or want to hear familiar music juxtaposed in novel combinations.
Download (2.0MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1061 downloads
RaboGRAP 0.6
RaboGRAP is a tool for Dutch Rabobank users. more>>
RaboGRAP is a tool for Dutch Rabobank users. RaboGRAP project generates reports containing overviews, statistics, summaries and graphs from your banking transactions, which can be downloaded from the Rabobank Internet banking site.
Reports are generated for various time frames (per year and per month) as well as for all of the transactions. The reports provide a valuable insight into your income and expenses.
<<lessReports are generated for various time frames (per year and per month) as well as for all of the transactions. The reports provide a valuable insight into your income and expenses.
Download (0.032MB)
Added: 2006-03-14 License: GPL (GNU General Public License) Price:
1320 downloads
Parse::RandGen::Regexp 0.202
Parse::RandGen::Regexp is a Perl module for regular expression Condition element. more>>
Parse::RandGen::Regexp is a Perl module for regular expression Condition element.
Regexp is a Condition element that matches the given compiled regular expression. For picking random data, the regular expression is parsed into its component Subrules, Literals, CharClasses, etc.... Therefore, the pick functionality for a regular expression is ultimately the same as the pick functionality of a Rule (including the limitations w/r to greediness - see Rule).
Regexp is also useful as a standalone class. It supports captures (named and indexed), which can be referenced in a call to the pick() function to force the captures to match the specified data, while leaving the rest of the data to be generated randomly.
METHODS
new
Creates a new Regexp. The first argument (required) is the regular expression element (e.g. qr/foo(bar|baz)+d{1,10}/). All other arguments are named pairs.
element
Returns the Regexp element (i.e. the compiled regular expression itself).
numCaptures
Returns the number of captures (e.g. $1, $2, ...$n) in the regular expression.
nameCapture
Give names to capture numbers for the regular expression. The arguments to this function are capture# => "name" pairs (e.g. nameCapture(1=>"directory", 2=>"file", 3=>"extension")).
capture
Returns the Rule object that represents the specified capture. The capture can be specified by number or by name (the name is set by the nameCapture() function).
pick
Randomly generate data (text) that matches (or does not) this regular expression.
Takes a "match" boolean argument that specifies whether to match the regular expression or deliberately not match it.
Also takes a "captures" hash argument that has pairs of capture numbers (or names) and their desired value. This allows the generated data to have user-specified constraints while allowing the rest of the regular expression to choose random data. If "match" is false, the user-specified "captures" values are still used (which may cause the data to match even though it was not supposed to).
Example:
$re->pick(match=>1,
captures=>{ 1=>"http", 2=>"www", 3=>"yahoo", 4=>"com" });
<<lessRegexp is a Condition element that matches the given compiled regular expression. For picking random data, the regular expression is parsed into its component Subrules, Literals, CharClasses, etc.... Therefore, the pick functionality for a regular expression is ultimately the same as the pick functionality of a Rule (including the limitations w/r to greediness - see Rule).
Regexp is also useful as a standalone class. It supports captures (named and indexed), which can be referenced in a call to the pick() function to force the captures to match the specified data, while leaving the rest of the data to be generated randomly.
METHODS
new
Creates a new Regexp. The first argument (required) is the regular expression element (e.g. qr/foo(bar|baz)+d{1,10}/). All other arguments are named pairs.
element
Returns the Regexp element (i.e. the compiled regular expression itself).
numCaptures
Returns the number of captures (e.g. $1, $2, ...$n) in the regular expression.
nameCapture
Give names to capture numbers for the regular expression. The arguments to this function are capture# => "name" pairs (e.g. nameCapture(1=>"directory", 2=>"file", 3=>"extension")).
capture
Returns the Rule object that represents the specified capture. The capture can be specified by number or by name (the name is set by the nameCapture() function).
pick
Randomly generate data (text) that matches (or does not) this regular expression.
Takes a "match" boolean argument that specifies whether to match the regular expression or deliberately not match it.
Also takes a "captures" hash argument that has pairs of capture numbers (or names) and their desired value. This allows the generated data to have user-specified constraints while allowing the rest of the regular expression to choose random data. If "match" is false, the user-specified "captures" values are still used (which may cause the data to match even though it was not supposed to).
Example:
$re->pick(match=>1,
captures=>{ 1=>"http", 2=>"www", 3=>"yahoo", 4=>"com" });
Download (0.025MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
Generate Numly Copyright 1.3
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. more>>
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. Numly Numbers are unique identifiers of electronic media and recognized worldwide by electronic publishing companies and electronic content providers. Numly Numbers are simple and quick to generate and serve as branded identifier for individuals or companies authoring or distributing electronic content and media.
<<less Download (0.006MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
878 downloads
RailsTidy 0.1
RailsTidy is a plugin for Ruby On Rails. more>>
RailsTidy project is a plugin for Ruby On Rails.
Main features:
- validate your rhtml templates,
- validate the html output of your functional tests,
- clean the html generated by rails.
<<lessMain features:
- validate your rhtml templates,
- validate the html output of your functional tests,
- clean the html generated by rails.
Download (0.011MB)
Added: 2006-02-16 License: MIT/X Consortium License Price:
1345 downloads
Intelligent Wardialer 0.07
Intelligent Wardialer is a war dialer used for auditing your PSTN (phone) network. more>>
Intelligent Wardialer is a "war dialer" used for auditing your PSTN (phone) network. Its features include random/sequential dialing, Voice over IP using the IAX2 (Intra-Asterisk eXchange) protocol, ASCII flat file and MySQL logging, a curses-based front end, key stroke marking, multiple modem support, several methods of "tone detection", save/load state, banner detections (to determine remote system types) and blacklist support.
Main features:
- Full and Normal logging: Full logging records all possible events during dialing (busy signals, no answers, carriers, etc). By default it only records things that we might find interesting (carriers, possible telco equipment).
- ASCII flat file and MySQL logging: You can log to a traditional ASCII flat file, and record information into a MySQL database.
- Dials randomly or sequentially.
- Remote system identification: When finding a remote modem and connecting, iWar will remain connected and attempt to identify the remote system type.
- Key stroke marking: When actively "listening" to iWar work, if you hear something interesting, you can manually "mark" it by hitting a key. You can also enter a "note" about something you find interesting.
- Multiple modem support, because... well, hey - this is "Unix". iWar will support as many modems you can hook up
- Nice "curses" based display. This means that if youre using iWar from a Linux console or a VT100 based terminal, it should work fine. Its not a escape sequence kludge, but true "curses".
- Full control over the modem: Unlike other kludges, iWar doesnt just open the modem as a typical "file". It controls the baud rate, parity, and CTS/RTS (Hardware flow control) DTR (Data terminal ready). This is important for controlling the modem and making it preform the way you want it to during scanning. For example, DTR hang ups.
- Blacklisted phone number support: For numbers the system should never dial.
- Save state: If within the middle of a "wardialing" session you want to quit, you can save the current state to a file. This allows you to come back later and restart iWar where you left off. (via the -l option)
- Load pre-generated numbers: You can load a file (via the -L option) of numbers that you want to dial. This is useful if you want to load numbers generated by another routine (perl/shell script/etc).
- Tone location, if your modem supports it. iWar uses two different methods. The traditional "ATDT5551212w;" (Toneloc) and "silence" detection.
- Records remote system banners on connection for later review
- iWar can be used to attack PBXs and Voice mail systems
- Terminal window so you can watch modem interactions and carrier results in real time
- Support the IAX2 (Intra-Asterisk eXchange) "Voice over IP" (VoIP) protocol. This allows you to scan without the need of additional hardware! To my knowledge, iWar is the first war dialer with VoIP functionality
- In IAX2 mode, iWar acts as a "full blown" VoIP client. In this mode, key 0-9, * and # play there DTMF equivalents. In this mode, you can also directly "talk" (using a microphone) with the remote target if so desired.
- In IAX2 mode, if your VoIP provider supports it, you can "set" your caller ID number (caller ID spoofing).
- Comes with complete source code and is released under the GNU General Public License.
Enhancements:
- Major bugfixes were made for BSD type systems.
- Some other minor bugs were also fixed. VoIP IAX2 (Intra-Asterisk eXchange) support was added.
- With this, you can scan with no additional hardware (such as an analog modem).
- Instead, calls are placed over the Internet.
- DTMF support for when under IAX2 mode was added.
<<lessMain features:
- Full and Normal logging: Full logging records all possible events during dialing (busy signals, no answers, carriers, etc). By default it only records things that we might find interesting (carriers, possible telco equipment).
- ASCII flat file and MySQL logging: You can log to a traditional ASCII flat file, and record information into a MySQL database.
- Dials randomly or sequentially.
- Remote system identification: When finding a remote modem and connecting, iWar will remain connected and attempt to identify the remote system type.
- Key stroke marking: When actively "listening" to iWar work, if you hear something interesting, you can manually "mark" it by hitting a key. You can also enter a "note" about something you find interesting.
- Multiple modem support, because... well, hey - this is "Unix". iWar will support as many modems you can hook up
- Nice "curses" based display. This means that if youre using iWar from a Linux console or a VT100 based terminal, it should work fine. Its not a escape sequence kludge, but true "curses".
- Full control over the modem: Unlike other kludges, iWar doesnt just open the modem as a typical "file". It controls the baud rate, parity, and CTS/RTS (Hardware flow control) DTR (Data terminal ready). This is important for controlling the modem and making it preform the way you want it to during scanning. For example, DTR hang ups.
- Blacklisted phone number support: For numbers the system should never dial.
- Save state: If within the middle of a "wardialing" session you want to quit, you can save the current state to a file. This allows you to come back later and restart iWar where you left off. (via the -l option)
- Load pre-generated numbers: You can load a file (via the -L option) of numbers that you want to dial. This is useful if you want to load numbers generated by another routine (perl/shell script/etc).
- Tone location, if your modem supports it. iWar uses two different methods. The traditional "ATDT5551212w;" (Toneloc) and "silence" detection.
- Records remote system banners on connection for later review
- iWar can be used to attack PBXs and Voice mail systems
- Terminal window so you can watch modem interactions and carrier results in real time
- Support the IAX2 (Intra-Asterisk eXchange) "Voice over IP" (VoIP) protocol. This allows you to scan without the need of additional hardware! To my knowledge, iWar is the first war dialer with VoIP functionality
- In IAX2 mode, iWar acts as a "full blown" VoIP client. In this mode, key 0-9, * and # play there DTMF equivalents. In this mode, you can also directly "talk" (using a microphone) with the remote target if so desired.
- In IAX2 mode, if your VoIP provider supports it, you can "set" your caller ID number (caller ID spoofing).
- Comes with complete source code and is released under the GNU General Public License.
Enhancements:
- Major bugfixes were made for BSD type systems.
- Some other minor bugs were also fixed. VoIP IAX2 (Intra-Asterisk eXchange) support was added.
- With this, you can scan with no additional hardware (such as an analog modem).
- Instead, calls are placed over the Internet.
- DTMF support for when under IAX2 mode was added.
Download (1.6MB)
Added: 2006-01-16 License: GPL (GNU General Public License) Price:
1399 downloads
minidentd 0.14
minidentd provides a tiny IDENT server. more>>
minidentd provides a tiny IDENT server.
minidentd is a tiny IDENT server that implements RFC 1413. It includes no networking code, leaving it to a super-server. It can be used in embedded systems, and features user-controlled and randomly generated answers.
minidentd reads a series of IDENT requests on stdin and answers them on stdout. It logs what its doing on stderr. The environment variables xLOCALIP and xREMOTEIP, where x is the value of the PROTO environment variable, must contain the IDENT server address and the IDENT client address, respectively.
minidentd does not contact the network directly. Its meant to run under a super-server like tcpserver.
Options
-v : verbose mode. Log queries and replies..
-n : send ERROR : HIDDEN-USER replies if the user has a .ident file in his home directory.
-i : user-defined answers. The first 14 chars of the users .ident file, up to EOF or newline, are used instead of the user name. If the file exists and is empty, send ERROR : HIDDEN-USER. If it doesnt exist, send a normal reply.
-r : send random replies.
-y file : valid with -n or -i. Use file instead of .ident.
-t timeout : close connection after timeout seconds without a client request.
<<lessminidentd is a tiny IDENT server that implements RFC 1413. It includes no networking code, leaving it to a super-server. It can be used in embedded systems, and features user-controlled and randomly generated answers.
minidentd reads a series of IDENT requests on stdin and answers them on stdout. It logs what its doing on stderr. The environment variables xLOCALIP and xREMOTEIP, where x is the value of the PROTO environment variable, must contain the IDENT server address and the IDENT client address, respectively.
minidentd does not contact the network directly. Its meant to run under a super-server like tcpserver.
Options
-v : verbose mode. Log queries and replies..
-n : send ERROR : HIDDEN-USER replies if the user has a .ident file in his home directory.
-i : user-defined answers. The first 14 chars of the users .ident file, up to EOF or newline, are used instead of the user name. If the file exists and is empty, send ERROR : HIDDEN-USER. If it doesnt exist, send a normal reply.
-r : send random replies.
-y file : valid with -n or -i. Use file instead of .ident.
-t timeout : close connection after timeout seconds without a client request.
Download (0.012MB)
Added: 2007-04-11 License: BSD License Price:
926 downloads
Triplex Invaders 1.08
Triplex Invaders is a classic Alien Invaders style game with 3d graphics. more>>
Triplex Invaders is a classic Alien Invaders style game with 3d graphics.
In Triplex Invaders, the player pilots a spaceship against never ending hoards of enemy ships. It has psychedelic 3d graphics (but 2d gameplay).
It is written in Python so it should run on Linux, Windows, and OSX. pyOpenGL is used for hardware-accelerated OpenGL graphics. PyGame is used for getting input and stuff. Because Python is a little slow (and my code is unoptimized), you might get low framerates on older computers. Nonetheless, my 1.8Ghz Pentium M laptop is more than fast enough. It doesnt tax the GPU much (but you do need hardware graphics acceleration). If you have psyco installed, Invaders will take advantage of it and run a little faster.
Features include: Motion blur, Particle effects, Randomly generated weapons/enemies.
Triplex Invaders was originally written by three freshmen for the CS102 class at Johns Hopkins University. I (Arthur Danskin) am still working on it.
Please feel free to contribute anything cool. Models are in wavefront .obj format. The code is very object oriented and modular, so it should be very easy to add a new weapon or enemy type (if you know python).
<<lessIn Triplex Invaders, the player pilots a spaceship against never ending hoards of enemy ships. It has psychedelic 3d graphics (but 2d gameplay).
It is written in Python so it should run on Linux, Windows, and OSX. pyOpenGL is used for hardware-accelerated OpenGL graphics. PyGame is used for getting input and stuff. Because Python is a little slow (and my code is unoptimized), you might get low framerates on older computers. Nonetheless, my 1.8Ghz Pentium M laptop is more than fast enough. It doesnt tax the GPU much (but you do need hardware graphics acceleration). If you have psyco installed, Invaders will take advantage of it and run a little faster.
Features include: Motion blur, Particle effects, Randomly generated weapons/enemies.
Triplex Invaders was originally written by three freshmen for the CS102 class at Johns Hopkins University. I (Arthur Danskin) am still working on it.
Please feel free to contribute anything cool. Models are in wavefront .obj format. The code is very object oriented and modular, so it should be very easy to add a new weapon or enemy type (if you know python).
Download (0.60MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
Ruby Iptables Network Displayer 0.6
Ruby Iptables NEtwork Displayer project draws an SVG from a Linux IP table generated by iptables-save. more>>
Ruby Iptables NEtwork Displayer project draws an SVG from a Linux IP table generated by "iptables-save".
<<less Download (0.015MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
978 downloads
kannasaver 1.1.1
kannasaver is a screensaver for people who want to learn japanese. more>>
kannasaver is a screensaver for people who want to learn japanese. The idea is that by randomly shoving hiragana or katakana at you, together with the romaji transcript, they start to stick to your memory after a while.
Inspired by a windows screensaver that does exactly the same, which sits an www.thejapanesepage.com for free.
Dependencies: Other than KDE 3.3, you need to have soft-scalable (truetype) fonts that contain the japanese characters. Google for the mikachan font set if anything else fails.
Enhancements:
- a few composite katakana were wrong; corrected.
<<lessInspired by a windows screensaver that does exactly the same, which sits an www.thejapanesepage.com for free.
Dependencies: Other than KDE 3.3, you need to have soft-scalable (truetype) fonts that contain the japanese characters. Google for the mikachan font set if anything else fails.
Enhancements:
- a few composite katakana were wrong; corrected.
Download (0.84MB)
Added: 2005-10-10 License: GPL (GNU General Public License) Price:
1478 downloads
GFingerPoken 0.25
GFingerPoken project is a BlackBox-type GTK-based game. more>>
GFingerPoken project is a BlackBox-type GTK-based game written in C with graphics in POV-Ray
It uses GTK+ 1.2 or higher and is based on an old MS Windows shareware game called Marble. It features an easy drag-and-drop interface and randomly-generated levels with adjustable difficulty.
It now features network play with two different game types. It is currently fully playable, but is still a little rough around the edges.
<<lessIt uses GTK+ 1.2 or higher and is based on an old MS Windows shareware game called Marble. It features an easy drag-and-drop interface and randomly-generated levels with adjustable difficulty.
It now features network play with two different game types. It is currently fully playable, but is still a little rough around the edges.
Download (0.16MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1067 downloads
Destiney Scripts Topsites 1.4.0
Destiney Scripts Topsites project provides a pre-built, dynamically generated, traffic gathering topsite. more>>
Destiney Scripts Topsites project provides a pre-built, dynamically generated, traffic gathering topsite.
Destiney Scripts Topsites is a script for creating a dynamically-generated, traffic gathering "topsite", a competition traffic site on which members compete for placement on the list based on the traffic referrals they send.
It features http-referrer- and cookie-based anti-cheat devices, an admin interface, gateway-less entry, and random site selection.
<<lessDestiney Scripts Topsites is a script for creating a dynamically-generated, traffic gathering "topsite", a competition traffic site on which members compete for placement on the list based on the traffic referrals they send.
It features http-referrer- and cookie-based anti-cheat devices, an admin interface, gateway-less entry, and random site selection.
Download (0.051MB)
Added: 2007-02-06 License: BSD License Price:
991 downloads
Snort Report 1.3.1
Snort Report is an add-on module for the Snort Intrusion Detection System. more>>
Snort Report is an add-on module for the Snort Intrusion Detection System. Snort Report add-on provides realtime reporting from the MySQL database generated by Snort.
It has been tested on Redhat 6.2, 7.0, 7.1, and OpenBSD 2.9.
<<lessIt has been tested on Redhat 6.2, 7.0, 7.1, and OpenBSD 2.9.
Download (0.042MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1408 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 randomly generated 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