worlds best
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1952
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
Labyrinth of Worlds 0.4
Labyrinth of Worlds project is an Ultima Underworld II rewrite. more>>
Labyrinth of Worlds project is an Ultima Underworld II rewrite.
LoW is a rewrite of the first-person role-playing game Ultima Underworld II: Labyrinth of Worlds that came out in the early 1990s. One of the most celebrated game of its genre, this rewrite attempts to recapture the minutiae and spirit of the original.
At the moment, the tech demo allows you to walk (and jump) around all the Underworld II levels and worlds, has all NPCs and most monsters. You also get to see and manipulate all the dynamic objects of the game, and peek inside containers. The paperdoll has been implemented, too, and lets you access your inventory as well as wear/wield armor and weapons.
It is now possible to converse with the various NPCs. While not all the conversations work correctly (or at all) most do for the most part and it is now possible to actually understand the storyline. :) NPCs are also able to give items, now.
Another worthy project you might want to go take a look at is Underworld Adventures which seeks to recreate the first installement of that series and is doing a darn good job of it.
If you are an Ultima VII fan, then Exult is going to tickle you pink! The freshly released version 1.0 will allow you to play Black Gate and Serpent Isle with the addons on modern architectures, with a few gameplay improvements to boot!
Enhancements:
- Fixed executables
- new gameplay features, including wearable items
- improved user interface
- performance improvements
- more complete conversation support (including being given items),
- working keys and locks
<<lessLoW is a rewrite of the first-person role-playing game Ultima Underworld II: Labyrinth of Worlds that came out in the early 1990s. One of the most celebrated game of its genre, this rewrite attempts to recapture the minutiae and spirit of the original.
At the moment, the tech demo allows you to walk (and jump) around all the Underworld II levels and worlds, has all NPCs and most monsters. You also get to see and manipulate all the dynamic objects of the game, and peek inside containers. The paperdoll has been implemented, too, and lets you access your inventory as well as wear/wield armor and weapons.
It is now possible to converse with the various NPCs. While not all the conversations work correctly (or at all) most do for the most part and it is now possible to actually understand the storyline. :) NPCs are also able to give items, now.
Another worthy project you might want to go take a look at is Underworld Adventures which seeks to recreate the first installement of that series and is doing a darn good job of it.
If you are an Ultima VII fan, then Exult is going to tickle you pink! The freshly released version 1.0 will allow you to play Black Gate and Serpent Isle with the addons on modern architectures, with a few gameplay improvements to boot!
Enhancements:
- Fixed executables
- new gameplay features, including wearable items
- improved user interface
- performance improvements
- more complete conversation support (including being given items),
- working keys and locks
Download (MB)
Added: 2007-01-03 License: Open Software License Price:
1027 downloads
World of Padman 1.1
World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base. more>>
World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base.
World of Padman was a popular total conversation mod for the quake 3 engine.
Since the release of the gpled sourcecode, their team-members are worked hard to brush up the maps, models and the whole bunch of other things that belongs to a superior mod. They Invented new weapons, gaming goals on so on.
Today it is the day to proudly anounce the availibility of WoP for Linux, MacOsX and Windows, also.
The standalone game is an funshooter at its best! Come and try it for free, you have nothing to invest but your download time.
The game comes absolutly free as in beer. For details for the copyrighted graphics read at the project site http://worldofpadman.com.
<<lessWorld of Padman was a popular total conversation mod for the quake 3 engine.
Since the release of the gpled sourcecode, their team-members are worked hard to brush up the maps, models and the whole bunch of other things that belongs to a superior mod. They Invented new weapons, gaming goals on so on.
Today it is the day to proudly anounce the availibility of WoP for Linux, MacOsX and Windows, also.
The standalone game is an funshooter at its best! Come and try it for free, you have nothing to invest but your download time.
The game comes absolutly free as in beer. For details for the copyrighted graphics read at the project site http://worldofpadman.com.
Download (550.2MB)
Added: 2007-04-02 License: Freeware Price:
943 downloads
Algorithm::Pair::Best 1.010
Algorithm::Pair::Best is a Perl module to select pairings (designed for Go tournaments, but can be used for anything, really). more>>
Algorithm::Pair::Best is a Perl module to select pairings (designed for Go tournaments, but can be used for anything, really).
SYNOPSIS
use Algorithm::Pair::Best;
my $pair = Algorithm::Pair::Best->new( ? options ? );
$pair->add( item, ? item, ... ? );
@pairList = $pair->pick( ? $window ? );
After creating an Algorithm::Pair::Best->new object, add a list of items (players) to be paired. add connects the new items into a linked list. The linked list must consist of an even number of items or youll get an error when you try to pick the pairs.
Pairings are determined partially by the original order items were added, but more importantly, items are paired based on scores which are determined by an info hash used to attach any random data to the item, and user supplied functions to provide a score for each item in relation to other items. It may be convenient to add access methods to the Algorithm::Pair::Best package from the main namespace (see the scoreSubs option to new below for an example).
Algorithm::Pair::Best->pick explores all combinations of items and returns the pairing with the best (highest) score. This can be an expensive proposition - the number of combinations goes up very fast with respect to the number of items:
items combinations
2 1 (1)
4 3 (1 * 3)
6 15 (1 * 3 * 5)
8 105 (1 * 3 * 5 * 7)
10 945 (1 * 3 * 5 * 7 * 9
12 10395 (1 * 3 * 5 * 7 * 9 * 11)
14 135135 (1 * 3 * 5 * 7 * 9 * 11 * 13)
It is clearly unreasonable to try to pair a significant number of items. On my system it takes about 2 seconds to pair 12 items (6 pairs), and 20 seconds to pair 14 items (with no negative scores only optimization). Trying to completely pair even 30 items would take too long.
Fortunately, there is a way to get pretty good results for large numbers, even if theyre not perfect. Instead of trying to pair the whole list at once, Algorithm::Pair::Best->pick pairs a series of smaller groups to get good local results. The new method accepts a window option to limit the number of pairs in each window. The window option can also be overridden by calling pick with an explicit window argument:
$pair->pick($window);
See the description of the window option below.
<<lessSYNOPSIS
use Algorithm::Pair::Best;
my $pair = Algorithm::Pair::Best->new( ? options ? );
$pair->add( item, ? item, ... ? );
@pairList = $pair->pick( ? $window ? );
After creating an Algorithm::Pair::Best->new object, add a list of items (players) to be paired. add connects the new items into a linked list. The linked list must consist of an even number of items or youll get an error when you try to pick the pairs.
Pairings are determined partially by the original order items were added, but more importantly, items are paired based on scores which are determined by an info hash used to attach any random data to the item, and user supplied functions to provide a score for each item in relation to other items. It may be convenient to add access methods to the Algorithm::Pair::Best package from the main namespace (see the scoreSubs option to new below for an example).
Algorithm::Pair::Best->pick explores all combinations of items and returns the pairing with the best (highest) score. This can be an expensive proposition - the number of combinations goes up very fast with respect to the number of items:
items combinations
2 1 (1)
4 3 (1 * 3)
6 15 (1 * 3 * 5)
8 105 (1 * 3 * 5 * 7)
10 945 (1 * 3 * 5 * 7 * 9
12 10395 (1 * 3 * 5 * 7 * 9 * 11)
14 135135 (1 * 3 * 5 * 7 * 9 * 11 * 13)
It is clearly unreasonable to try to pair a significant number of items. On my system it takes about 2 seconds to pair 12 items (6 pairs), and 20 seconds to pair 14 items (with no negative scores only optimization). Trying to completely pair even 30 items would take too long.
Fortunately, there is a way to get pretty good results for large numbers, even if theyre not perfect. Instead of trying to pair the whole list at once, Algorithm::Pair::Best->pick pairs a series of smaller groups to get good local results. The new method accepts a window option to limit the number of pairs in each window. The window option can also be overridden by calling pick with an explicit window argument:
$pair->pick($window);
See the description of the window option below.
Download (0.010MB)
Added: 2007-05-17 License: Perl Artistic License Price:
891 downloads
Work-At-Home 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-19 License: Freeware Price: Free
189 downloads
Security Officers Best Friend 25032007
Security Officers Best Friend (SOBF) is a Security Management and Analysis tool designed to be placed right ontop the SOMAP.org. more>>
Security Officers Best Friend (SOBF) is a Security Management and Analysis tool designed to be placed right ontop the SOMAP.org Repository. The SOBF Tool is currently in development and there is no public download at the moment.
Architecture:
The SOBF tool is written in Java. To run the SOBF Tool you need a Java VM version 1.5 or later. The data used within the tool is stored locally and can be protected accordingly.
It is a main goal to build the tool like an extendable toolset. While all the needed functionality is built into the SOBF tool, it is possible to extend that standard feature set with your own scripts and extentions.
Data Abstraction:
To abstract the database and to access the data more easily the SOBF tool makes use of the Cayenne Framework. The configuration informations are accessible and it is possible to enhance that configuration with your own data views. Such data views can then be used from within your own scripts to enhance the feature set of the SOBF tool.
Database / Storage:
The SOBF Tool currently uses the hsqldb Database engine to store the data. Updates to the Repository can be done without a hassle for the data records are identified by UUIDs as described on the Repositories information page.
The hsqldb stores the data in human readable form. If need be, the data can be extracted from the filesystem accessing the data files directly.
Since the SOBF tool uses the Cayenne Framework to abstract the database layer it is no problem to exchange the hsqldb with any other database system like Derby or PostgreSQL in future releases. This is an important feature for the SOBF tool should help a security officer with his work and not stand in his way. For this reason the SOBF tool should be as integratable into an environment as possible.
Reporting:
We use the Jasper Reports engine to render and print reports
Enhancements:
- This version contains the implementation of the complete Risk Assessment Workflow as described in the SOMAP.org Guide.
- The backup and restore mechanism was enhanced.
- Some changes and updates were made to the Dynamic Reports.
- The application experienced a general spring cleaning.
<<lessArchitecture:
The SOBF tool is written in Java. To run the SOBF Tool you need a Java VM version 1.5 or later. The data used within the tool is stored locally and can be protected accordingly.
It is a main goal to build the tool like an extendable toolset. While all the needed functionality is built into the SOBF tool, it is possible to extend that standard feature set with your own scripts and extentions.
Data Abstraction:
To abstract the database and to access the data more easily the SOBF tool makes use of the Cayenne Framework. The configuration informations are accessible and it is possible to enhance that configuration with your own data views. Such data views can then be used from within your own scripts to enhance the feature set of the SOBF tool.
Database / Storage:
The SOBF Tool currently uses the hsqldb Database engine to store the data. Updates to the Repository can be done without a hassle for the data records are identified by UUIDs as described on the Repositories information page.
The hsqldb stores the data in human readable form. If need be, the data can be extracted from the filesystem accessing the data files directly.
Since the SOBF tool uses the Cayenne Framework to abstract the database layer it is no problem to exchange the hsqldb with any other database system like Derby or PostgreSQL in future releases. This is an important feature for the SOBF tool should help a security officer with his work and not stand in his way. For this reason the SOBF tool should be as integratable into an environment as possible.
Reporting:
We use the Jasper Reports engine to render and print reports
Enhancements:
- This version contains the implementation of the complete Risk Assessment Workflow as described in the SOMAP.org Guide.
- The backup and restore mechanism was enhanced.
- Some changes and updates were made to the Dynamic Reports.
- The application experienced a general spring cleaning.
Download (14.6MB)
Added: 2007-03-25 License: GPL (GNU General Public License) Price:
943 downloads
Other version of Security Officers Best Friend
License:GPL (GNU General Public License)
Work-From-Home 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-18 License: Freeware Price: Free
190 downloads
openSUSE Linux 10.2 / 10.3 Beta 2
openSUSE is the new and improved SUSE Linux. more>>
The openSUSE project is a worldwide community program sponsored by Novell (http://www.novell.com) that promotes the use of Linux everywhere. openSUSE Linux provides anyone with free and easy access to the worlds most usable Linux distribution, SUSE Linux.
The goals of the openSUSE project are:
Make SUSE Linux the easiest Linux distribution for anyone to obtain, and the most widely used open source platform.
Provide an environment for open source collaboration tha makes SUSE Linux the worlds best Linux distribution for new and experienced Linux users.
Dramatically simplify and open the development and packaging processes to make SUSE Linux the platform of choice for Linux hackers and application developers.
Currently, SUSE Linux is an unsupported, open source only, preliminary edition of SUSE Linux that contains bleeding-edge packages and represents the latest development snapshot. If you intend to test for bugs or contribute patches, this version is for you...
Whats New in 10.2 Stable Release:
- After a lot of work, we proudly announce the availability of openSUSE 10.2, formerly known as SUSE Linux 10.x As usual, we ship all the latest open source packages available at the time. But we want to give a special mention to the redesigned GNOME and KDE desktop, Firefox 2.0, ext3 as the new default file system, support for internal SD card readers, new power management and, last but not least, our improved package management. Wed like to thank you all for testing heavily, reporting bugs, giving feedback on mailing lists. Have a lot of fun!
Whats New in 10.3 Beta 2 Development Release:
- Its my pleasure to announce the availability of openSUSE 10.3 Beta2. Many thanks to everyone who has contributed to this release of openSUSE! Important Changes Since Beta2: kernel 2.6.22.3; glibc 2.6.1; the YaST infrastructure was improved to allow writing complete YaST modules; bootloader improvements - openSUSE 10.3 will use chainloader if it detects additional installations in other partitions, otherwise configfile sections will be used; improved package lists of 1-CD GNOME and KDE; countless bug fixes in every component.
<<lessThe goals of the openSUSE project are:
Make SUSE Linux the easiest Linux distribution for anyone to obtain, and the most widely used open source platform.
Provide an environment for open source collaboration tha makes SUSE Linux the worlds best Linux distribution for new and experienced Linux users.
Dramatically simplify and open the development and packaging processes to make SUSE Linux the platform of choice for Linux hackers and application developers.
Currently, SUSE Linux is an unsupported, open source only, preliminary edition of SUSE Linux that contains bleeding-edge packages and represents the latest development snapshot. If you intend to test for bugs or contribute patches, this version is for you...
Whats New in 10.2 Stable Release:
- After a lot of work, we proudly announce the availability of openSUSE 10.2, formerly known as SUSE Linux 10.x As usual, we ship all the latest open source packages available at the time. But we want to give a special mention to the redesigned GNOME and KDE desktop, Firefox 2.0, ext3 as the new default file system, support for internal SD card readers, new power management and, last but not least, our improved package management. Wed like to thank you all for testing heavily, reporting bugs, giving feedback on mailing lists. Have a lot of fun!
Whats New in 10.3 Beta 2 Development Release:
- Its my pleasure to announce the availability of openSUSE 10.3 Beta2. Many thanks to everyone who has contributed to this release of openSUSE! Important Changes Since Beta2: kernel 2.6.22.3; glibc 2.6.1; the YaST infrastructure was improved to allow writing complete YaST modules; bootloader improvements - openSUSE 10.3 will use chainloader if it detects additional installations in other partitions, otherwise configfile sections will be used; improved package lists of 1-CD GNOME and KDE; countless bug fixes in every component.
Download (4191MB)
Added: 2007-08-23 License: GPL (GNU General Public License) Price:
536 downloads
rCalc 0.5.0
rCalc is a scientific calculator for the GNOME desktop environment. more>>
rCalc is a scientific calculator for the GNOME desktop environment. It aims to occupy the middle ground between simple `point-and-click calculators and full featured mathematical packages, and hopefully take some of the best of both worlds.
The goal of the project has been to create a system that combines convenience and simplicity with power and versatility: to create a program which is which has an intuitive user interface and a powerful core.
Adding up should be as simple as on a handheld calculator, yet the more complex features should be there as required.
<<lessThe goal of the project has been to create a system that combines convenience and simplicity with power and versatility: to create a program which is which has an intuitive user interface and a powerful core.
Adding up should be as simple as on a handheld calculator, yet the more complex features should be there as required.
Download (0.34MB)
Added: 2005-08-03 License: (FDL) GNU Free Documentation License Price:
1653 downloads
Internet-Million-Dollars 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-17 License: Freeware Price: Free
190 downloads
My Media System 1.0.8.4
My Media System is a media system with you in control. more>>
My Media System is a media system with you in control. It lets other applications such as MPlayer, VDR, or Xine take care of what they respectively do best, and integrates them into one system, that is easy to understand and operate.
By combining their individual strength, you get the best of all worlds, in one media application.
MMS is easy to install, configure and use. Its even translated to 9 languages so there a good chance its available in your native tongue.
<<lessBy combining their individual strength, you get the best of all worlds, in one media application.
MMS is easy to install, configure and use. Its even translated to 9 languages so there a good chance its available in your native tongue.
Download (2.4MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
872 downloads
Making-Money-Secret 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-07 License: Freeware Price: Free
199 downloads
Making-Money-System 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-04 License: Freeware Price: Free
207 downloads
Best-Online-Business 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-01 License: Freeware Price: Free
206 downloads
Money-Making-Systems 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-13 License: Freeware Price: Free
193 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 worlds best 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