world wide
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1451
XO World 0.1
XO World is a board game that lets you play Tic-tac-toe versus computer on 10x10 board. more>>
XO World is a board game that lets you play Tic-tac-toe versus computer on 10x10 board.
You play against computer on 10x10 board. Both you and opponent place signs (yours is X, and computers is O) on the board - one at a time. The goal is to make a line of 5 signs before your opponent. Lines can be horizontal, vertical or diagonal.
<<lessYou play against computer on 10x10 board. Both you and opponent place signs (yours is X, and computers is O) on the board - one at a time. The goal is to make a line of 5 signs before your opponent. Lines can be horizontal, vertical or diagonal.
Download (0.13MB)
Added: 2007-02-19 License: Freeware Price:
978 downloads
Rail World 0.8
Rail World is a 2-D train simulation game. more>>
Rail World project is a 2-D train simulation game.
Rail World is a railroad train simulation game designed to bring the features of model railroading to the desktop using actual aerial or satellite photographs as the backdrop for maps.
You can control multiple trains, switches, load/unload cargo, and more.
Main features:
- Use actual aerial photographs or satellite images as the basis for maps.
- Manage multiple trains as a conductor.
- Drive trains using throttle and brake as an engineer.
- Grapple with realistic physics, including stopping distance and collisions.
- Set switches and specific train routing.
- Load and unload cargo.
<<lessRail World is a railroad train simulation game designed to bring the features of model railroading to the desktop using actual aerial or satellite photographs as the backdrop for maps.
You can control multiple trains, switches, load/unload cargo, and more.
Main features:
- Use actual aerial photographs or satellite images as the basis for maps.
- Manage multiple trains as a conductor.
- Drive trains using throttle and brake as an engineer.
- Grapple with realistic physics, including stopping distance and collisions.
- Set switches and specific train routing.
- Load and unload cargo.
Download (4.5MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
870 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
Car World 0.243
CarWorld is a small driving simulator/demo I use to test various things of interest. more>>
CarWorld is a small driving simulator/demo I use to test various things of interest. It was mostly developed when I was a student. Car World is released with the full source code under the GNU General Public License.
The rendering
The two top pictures represent an slightly older version (v0.072) but graphically similar of CarWorld as it was presented for my project. v0.072 includes an OpenGL based renderer allowing
file input and displaying of texture mapped models with interpolated surface normals, real time projected shadows (as seen in the dino lights example).
background object
on screen command line to modify visual and simulation parameters
The mechanics
based on classical mechanics
uses standard metrics (Newtons, meters, seconds...)
there are no constraints on the environment surface
variable length time increments and variable increment number means "CarWorld time" is not dependent on frame rate.
adjustable simulation specs include: metrics, mass, moment of inertia around rotation axis, suspension pre load, compression damping, rebound damping, engine torque output, air friction, surface friction.
<<lessThe rendering
The two top pictures represent an slightly older version (v0.072) but graphically similar of CarWorld as it was presented for my project. v0.072 includes an OpenGL based renderer allowing
file input and displaying of texture mapped models with interpolated surface normals, real time projected shadows (as seen in the dino lights example).
background object
on screen command line to modify visual and simulation parameters
The mechanics
based on classical mechanics
uses standard metrics (Newtons, meters, seconds...)
there are no constraints on the environment surface
variable length time increments and variable increment number means "CarWorld time" is not dependent on frame rate.
adjustable simulation specs include: metrics, mass, moment of inertia around rotation axis, suspension pre load, compression damping, rebound damping, engine torque output, air friction, surface friction.
Download (0.64MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1203 downloads
World Domination 0.3
World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine. more>>
World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine.
World Domination will emphasize strategy and not "see who can build the most units the fastest." Resources are not gathered like in other RTSs, rather they are distributed after a fixed interval of time based on how much land a player occupies.
Enhancements:
- Added support for AI.
- Fixed may bugs and desyncs so you should be able to finish a network game without it crashing.
- New Graphics.
- Some new Maps
<<lessWorld Domination will emphasize strategy and not "see who can build the most units the fastest." Resources are not gathered like in other RTSs, rather they are distributed after a fixed interval of time based on how much land a player occupies.
Enhancements:
- Added support for AI.
- Fixed may bugs and desyncs so you should be able to finish a network game without it crashing.
- New Graphics.
- Some new Maps
Download (3.3MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1348 downloads
Safe::World 0.14
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together. more>>
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together.
SYNOPSIS
See USE section for complexer example and the test.pl script.
use Safe::World ;
my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;
## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);
$world->close ; ## ensure that everything is finished and flushed.
die($stderr) if $stderr ;
print $stdout ;
$world = undef ; ## Destroy the world. Here the compartment is cleanned.
Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.
<<lessSYNOPSIS
See USE section for complexer example and the test.pl script.
use Safe::World ;
my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;
## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);
$world->close ; ## ensure that everything is finished and flushed.
die($stderr) if $stderr ;
print $stdout ;
$world = undef ; ## Destroy the world. Here the compartment is cleanned.
Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.
Download (0.034MB)
Added: 2007-08-15 License: Perl Artistic License Price:
802 downloads
Hell World 0.1.5
Hell World is a thrilling FPS adventure game which features excellent graphics. more>>
Hell World is a thrilling FPS adventure game which features excellent graphics, a dark atmosphere and an excellent scenario. Hell World game is designed to be a port of the Windows-only version of Hell World.
It is written using the openGL and SDL library and is developing for the last months by ironhell3.
The game starts from main.c There we call first two functions, sdl_init() and game_init() to initialise the sdl and game part of the game.After the succesfull initialisation of Hell World we loop in a while() function.Each frame we check the keyboard and mouse for events through keyhandler() and then render the game frames through loop().When we catch a done=true signal we quit the game.
Important:
1)We are in need of developers,musicians,artists etc to help develop this game
2)This game is released under the GPL license.Please READ the COPYING file for more info
Enhancements:
- Fixed movement
- Added fog
- Added crates
- Redesign of level 1 including texture changes
<<lessIt is written using the openGL and SDL library and is developing for the last months by ironhell3.
The game starts from main.c There we call first two functions, sdl_init() and game_init() to initialise the sdl and game part of the game.After the succesfull initialisation of Hell World we loop in a while() function.Each frame we check the keyboard and mouse for events through keyhandler() and then render the game frames through loop().When we catch a done=true signal we quit the game.
Important:
1)We are in need of developers,musicians,artists etc to help develop this game
2)This game is released under the GPL license.Please READ the COPYING file for more info
Enhancements:
- Fixed movement
- Added fog
- Added crates
- Redesign of level 1 including texture changes
Download (0.14MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1354 downloads
Tile World 1.2.2
Tile World is an emulator of Chips Challenge. more>>
Tile World is an emulation of the game "Chips Challenge". "Chips Challenge" was originally written for the Atari Lynx by Chuck Sommerville, and was later ported to MS Windows by Microsoft (among other ports).
Please note: Tile World is an emulation of the game engine(s) only. It does not come with the chips.dat file that contains the original level set. This file is copyrighted and cannot be freely distributed. The chips.dat file was originally part of the MS version of "Chips Challenge". If you have a copy of this version of the game, you can use that file to play the game in Tile World. If you do not have a copy of this file, however, you can still play Tile World with the many freely available level sets created by fans of the original game, including CCLP2.
"Chips Challenge" is a game made up of both intellectually engaging puzzles and situations demanding fast reflexes. As you might have guessed, it is a tile-based game. The object of each level is simply to get out -- i.e., to find and achieve the exit tile. This simple task, however, can sometimes be extremely challenging.
<<lessPlease note: Tile World is an emulation of the game engine(s) only. It does not come with the chips.dat file that contains the original level set. This file is copyrighted and cannot be freely distributed. The chips.dat file was originally part of the MS version of "Chips Challenge". If you have a copy of this version of the game, you can use that file to play the game in Tile World. If you do not have a copy of this file, however, you can still play Tile World with the many freely available level sets created by fans of the original game, including CCLP2.
"Chips Challenge" is a game made up of both intellectually engaging puzzles and situations demanding fast reflexes. As you might have guessed, it is a tile-based game. The object of each level is simply to get out -- i.e., to find and achieve the exit tile. This simple task, however, can sometimes be extremely challenging.
Download (1.0MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
778 downloads
Samoth World Editor 0.11
Samoth World Editor project consists of medieval/fantasy universe RPG. more>>
Samoth World Editor project consists of medieval/fantasy universe RPG.
Main features:
- Map loading/creation/saving (the last one almost done, physics still to do)
- Real-time scene viewing
- Scene tree edition
- Node, light, skybox, fog edition
- Physics creation (from mesh) : done, but useless, since they cannot be saved yet.
Enhancements:
- First draw : map editor available, even if not finished.
<<lessMain features:
- Map loading/creation/saving (the last one almost done, physics still to do)
- Real-time scene viewing
- Scene tree edition
- Node, light, skybox, fog edition
- Physics creation (from mesh) : done, but useless, since they cannot be saved yet.
Enhancements:
- First draw : map editor available, even if not finished.
Download (17.8MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1031 downloads
The Mana World 0.0.23
The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG. more>>
The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG. TMW uses 2D graphics and aims to create a large and diverse interactive world. The Mana World project is licensed under the GPL, making sure this game cant ever run away from you.
The project includes the development of both a client and a server, as well as the development of an online world. At the moment were making alpha releases of the client, while our server is in early development.
The eAthena free software Ragnarok Online server is used until our own server has matured enough to replace it. Once ready, well be making releases of our server too so anybody will be free to set up their own server and start building their own online world.
<<lessThe project includes the development of both a client and a server, as well as the development of an online world. At the moment were making alpha releases of the client, while our server is in early development.
The eAthena free software Ragnarok Online server is used until our own server has matured enough to replace it. Once ready, well be making releases of our server too so anybody will be free to set up their own server and start building their own online world.
Download (3.5MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
WWW-Form 1.17
WWW::Form is a module for handling the world-wide-web form process. more>>
WWW::Form is a module for handling the world-wide-web form process. The project enables generating forms, filling them from user input, verifying them, and re-displaying them in case something is wrong.
<<less Download (0.021MB)
Added: 2007-03-20 License: Perl Artistic License Price:
948 downloads
PodWiki 0.9.2
PodWiki is a collaborative Web-based authoring tool written in Perl. more>>
PodWiki is a collaborative Web-based authoring tool written in Perl which differs from other WikiWiki tools in that it uses Perl POD as its markup language.
PodWiki by Thomas Linden uses Internal Link PerlPod as its markup, which is an established language for documentation in the Perl community and well known world wide. PodWiki enhances POD a little to circumvent some lacking features (such as images or includes).
Beside POD, it also understands a shorthand markup which writes like natural text and is very easy to understand for new users. If they need more features they have to use POD; for simple pages Internal Link WikiShorthand is enough. Internal Link WikiShorthand is the default markup if nothing is defined otherwise.
PodWiki supports includes, graphics, version control (via RCS), diffs, merge-back, user/group authentication and authorization, page property inheritance, variables, attributes and a lot more. The user can use so called "formatters" to insert plain HTML or text content, which is very useful for a stylesheet or example C code. There is also a formatter for Perl code available which makes it possible to create interactive PodWiki pages (note: for security reasons this feature is turned off by default).
The big difference from other Perl WikiEngines is that PodWiki is 100% customizable, since the whole wiki site is driven by the include feature. PodWiki always loads one page ("AutoLoad"), which includes the other stuff, such as the Header, Stylesheet, Menu, the Content-Area, Edit-Bar, Footer and so forth. This allows the user to fully modify PodWikis look-and-feel.
If you are using Apache with mod_perl you can speed up PodWiki. Its fully mod_perl compliant.
PodWiki supports Internal Link authentication by users and groups. Nevertheless it is possible to work with PodWiki unauthenticated. In this case you will be logged as user anonymous. Pages can be protected for reading and/or writing for either one or more groups or for a single user. If you dont want to be logged as anonymous: Internal Link register.
Beside all those features it is still very easy to install, no need for lots of additional Perl modules or cryptic installation procedures. Just do:
./configure & make install
The configure script understands some parameters which allows tweaking the installation such as destination path or the like.
Enhancements:
- This release was relicensed under the BSD license.
- The TWiki formatter support has been abandoned, since the module contained GPL code which is no longer compatible with podwiki.
<<lessPodWiki by Thomas Linden uses Internal Link PerlPod as its markup, which is an established language for documentation in the Perl community and well known world wide. PodWiki enhances POD a little to circumvent some lacking features (such as images or includes).
Beside POD, it also understands a shorthand markup which writes like natural text and is very easy to understand for new users. If they need more features they have to use POD; for simple pages Internal Link WikiShorthand is enough. Internal Link WikiShorthand is the default markup if nothing is defined otherwise.
PodWiki supports includes, graphics, version control (via RCS), diffs, merge-back, user/group authentication and authorization, page property inheritance, variables, attributes and a lot more. The user can use so called "formatters" to insert plain HTML or text content, which is very useful for a stylesheet or example C code. There is also a formatter for Perl code available which makes it possible to create interactive PodWiki pages (note: for security reasons this feature is turned off by default).
The big difference from other Perl WikiEngines is that PodWiki is 100% customizable, since the whole wiki site is driven by the include feature. PodWiki always loads one page ("AutoLoad"), which includes the other stuff, such as the Header, Stylesheet, Menu, the Content-Area, Edit-Bar, Footer and so forth. This allows the user to fully modify PodWikis look-and-feel.
If you are using Apache with mod_perl you can speed up PodWiki. Its fully mod_perl compliant.
PodWiki supports Internal Link authentication by users and groups. Nevertheless it is possible to work with PodWiki unauthenticated. In this case you will be logged as user anonymous. Pages can be protected for reading and/or writing for either one or more groups or for a single user. If you dont want to be logged as anonymous: Internal Link register.
Beside all those features it is still very easy to install, no need for lots of additional Perl modules or cryptic installation procedures. Just do:
./configure & make install
The configure script understands some parameters which allows tweaking the installation such as destination path or the like.
Enhancements:
- This release was relicensed under the BSD license.
- The TWiki formatter support has been abandoned, since the module contained GPL code which is no longer compatible with podwiki.
Download (0.33MB)
Added: 2007-07-01 License: BSD License Price:
845 downloads
Comic World Cup Icons for Linux -
6 Comic freeware icons inspired in the FIFA World Cup 2006. more>> This is one of the Dirceu Veiga's products. It contains 6 comic freeware icons inspired in the FIFA World Cup 2006.
Its content consists of Fifa Trophy, Folder, Folder Ball, Folder Trophy, Folder World Cup, Soccer Ball, Trophy with Bal. You can have a look at it.<<less
Download (252KB)
Added: 2009-04-12 License: Freeware Price: Free
198 downloads
MyBook World Edition Packages 0.0
MyBook World Edition Packages project collection provides pre-compiled packages for hacking Western Digital MyBook World Edition more>>
MyBook World Edition Packages project collection provides pre-compiled packages for hacking Western Digital MyBook World Edition, to improve performance and add new features.
At least intermediate Linux experience is required for playing with MyBook. Please, if you do not meet this requirement, ask someone experienced to help you. Otherwise there is a risk that you will brick your MyBook!
<<lessAt least intermediate Linux experience is required for playing with MyBook. Please, if you do not meet this requirement, ask someone experienced to help you. Otherwise there is a risk that you will brick your MyBook!
Download (MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
865 downloads
PersonalDB 0.90
PersonalDB is background process that provides access for multiple users to individual SQL databases. more>>
PersonalDB is background process that provides access for multiple users to individual SQL databases. The SQL database provides a central internet accessible datastore for a variety of applications. In particular, the database can be used as a personal information manager (PIM).
However, SQL databases are simply a way of storing structured data. As such, a PersonalDB account can be used to store many different types of data. A PersonalDB account is an ideal way of storing information that should be accessible world-wide.
Personal data like addresses, todo items, and memos are certainly are good choice. A PersonalDB account can also be used to store application settings, so that they follow you from computer to computer.
<<lessHowever, SQL databases are simply a way of storing structured data. As such, a PersonalDB account can be used to store many different types of data. A PersonalDB account is an ideal way of storing information that should be accessible world-wide.
Personal data like addresses, todo items, and memos are certainly are good choice. A PersonalDB account can also be used to store application settings, so that they follow you from computer to computer.
Download (0.13MB)
Added: 2005-09-02 License: BSD License Price:
1512 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 world wide 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