Main > Free Download Search >

Free the three kingdoms software for linux

the three kingdoms

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1041
Defend the Kingdom 0.1

Defend the Kingdom 0.1


Defend the Kingdom project is a real-time strategy based game. more>>
Defend the Kingdom project is a real-time strategy based game.

Defend The Kingdom, or Defender for short, is a real time strategy game dedicated to the fantastic world of LARP.

Its goals include the ability to build and control a complete fantasy world (with towns, poeple, etc.), control armies of knights and creatures to fight against your strongest enemies, gain power and resources by trading with your friends, and many more.

<<less
Download (1.9MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1076 downloads
HuaRongDao 0.1

HuaRongDao 0.1


HuaRongDao project is an ancient Chinese puzzle game. more>>
HuaRongDao project is an ancient Chinese puzzle game.

The puzzle "HuaRongDao" has been the most popular puzzle in China for hundreds years. It came from part of the well-know story "The legend of three kingdoms".

At the end of Han Dynasty (about 200 AC.), China was divided into three kingdoms, Wei, Shu and Wu. "Caocao", the leader of Wei, wanted to unit China, however, was totally defeated at "ChiBi" by the allies of Shu and Wu. Only he and other 30 people escaped from HuaRongDao and came back to Wei.

After about 30 years, China was still united by Wei (named Jin at that time) into one country.

Its aim is to move pieces on the board in order to move the largest one to the center of the bottom. It is a very small game, and it is very challenging. This implementation is based on the curses library.

The game is controlled by keyboard only. Its features include undo, redo, and bookmarks. Custom starting patterns are also supported.

<<less
Download (0.083MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
619 downloads
QMetronome 0.1

QMetronome 0.1


QMetronome is a skinnable metronome for Qt licenced under the GPL. more>>
QMetronome is a skinnable metronome for Qt licenced under the GPL.
The qualitiy of the prepackaged skins are questionable but it is easy to make your own. I made this metronome when I was learning the rythms of Flamenco on the guitar.
Therefore, it has up to twelve beats per "bar" and clicks with accents.
Main features:
- Three click sounds: one, accent and ordinary. Configurable.
- Four to twelve beats per round.
- Timing precision only limited by your soundcard and drivers.
Version restrictions:
- All three click sounds must be in the same format (bits, hz, mono/stereo),
- otherwise strange things will happen. Will be fixed in the next version.
<<less
Download (0.14MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1197 downloads
The Dark Star 4.0

The Dark Star 4.0


The Dark Star is an operating system, optimized for user experience, providing many desktop and office programs. more>>
The Dark Star is an operating system, optimized for user experience, providing many desktop and office programs.
The Dark Star can fit on MiniDVDs and is distributed as a LiveDistro which can later be installed to harddisk, effectively being an option for those who want FreeBSD, however are scared by the installer and the tons of configuration.
The Dark Star also provides the easy to use DSI - making installing packages -
whether from an FreeBSD 6.1 install CD or downloaded, easy as two or three
clicks with a mouse!
What are you waiting for? Download The Dark Star 4.0 now!
Enhancements:
- More polished. See the forum.
<<less
Download (875.2MB)
Added: 2006-09-12 License: Other/Proprietary License Price:
1145 downloads
Postfix SMTP Monitoring Solution

Postfix SMTP Monitoring Solution


Postfix SMTP Monitoring Solution is a set of three Perl CGI scripts used to monitor the SMTP queue. more>>
Postfix SMTP Monitoring Solution is a set of three Perl CGI scripts used to monitor the SMTP queue, allowing the deletion of messages that for one reason or another become "stuck" in the queue.

I needed a web-based solution to monitor my Postfix SMTP relay, which enabled me to remove messages that become "stuck" in the queue. I wrote three simple Perl scripts, and used Sudo to give me the desired functionality.

I am uploading these scripts in case they are useful to others. Assuming you have Apache configured correctly on your Postfix server, it should be as easy as placing the three .cgi files into your webservers cgi-bin directory, and making the appropriate modifications to your /etc/sudoers file (see the README contained in the tarball).
<<less
Download (0.002MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
972 downloads
The Linux Memory Game 0.6c

The Linux Memory Game 0.6c


The Linux Memory Game project is a childrens (and adults) game based on the card game. more>>
The Linux Memory Game project is a childrens (and adults) game based on the card game.
The Linux Memory Game is an X11 game using GTK+ library for children ages 3 and up. It is a lot more than the card game "Memory".
It has five skill levels, the higher ones are challenging to adults as well. Additionally, one can choose from the menu to match 2 cards or 3 cards, or match different cards.
This last "different card" mode can be a very good teaching tool for teaching languages, concepts, or association.
Main features:
- Extensible - add new images yourself without having to make changes to the program.
- Five skill levels appropriate for the youngest and the ones with the best brains.
- Can play two card matching or three card matching (more challenging!)
- Can set to match different cards. This can be used with apropriately designed pictures to teach children (or adults) words, concepts, or another language.
Enhancements:
- Fixed overflow bug in pixmaps_jump.
<<less
Download (0.10MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1073 downloads
mod_random 2.0

mod_random 2.0


mod_random provides three services. more>>
Mod Random provides three services. The first service is redirection: you feed it URLs and it will redirect to random URLs that you have loaded.

The second is providing environment variables that can be used for implementing ad banner systems. The third is displaying entire pages of random HTML, using its own custom handlers in combination with with random ads and quotes that you feed into the system.

It can also supply text via an environment variable called RANDOM_QUOTE, RANDOM_AD, or by environment variables that you specify. This can be used to implement fortune cookies, message of the day, entire random pages, or banner ads.
<<less
Download (0.008MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1523 downloads
Text::Template::Inline 0.13

Text::Template::Inline 0.13


Text::Template::Inline allows easy formatting of hierarchical data. more>>
Text::Template::Inline allows easy formatting of hierarchical data.

SYNOPSIS

# you can import any name you want instead of "render"
use Text::Template::Inline render;

# yields "Replace things and stuff."
render {
foo => things,
bar => stuff,
}, q ;

# yields "Three Two One Zero"
render [qw/ Zero One Two Three /], {3} {2} {1} {0};

# for a blessed $obj that has id and name accessors:
render $obj, {id} {name};

# a "fat comma" can be used as syntactic sugar:
render $obj => {id} {name};

# its also possible to traverse heirarchies of data,
# even of different types.
# the following yields "one two three"
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => {a.d} {b.e} {c.f.3};

# theres also an automatic unindent feature that
# lines up to the least-indented line in the template:
render {
a => { d => one },
b => { e => two },
c => { f => [qw/ zero one two three /], },
} => q{
{a.d}
{b.e}
{c.f.3}
};
# the above results in this:
one
two
three


<<less
Download (0.006MB)
Added: 2007-08-22 License: Perl Artistic License Price:
793 downloads
Avoid The Roid 3D 0.6

Avoid The Roid 3D 0.6


Avoid The Roid 3D project is a 3D asteroids-like multiplayer game. more>>
Avoid The Roid 3D project is a 3D asteroids-like multiplayer game.

The player flies around in a three dimensional space, shooting asteroids and other ships while trying to avoid running into any of them or being shot.

The game is written in c++ and uses unix sockets for networking, pthreads for the thread library, OpenGL for the graphics library, glut for windows and input, and OpenAL for audio.

<<less
Download (0.24MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1074 downloads
Parallel Three-Dimensional Fast Fourier Transforms 2.1

Parallel Three-Dimensional Fast Fourier Transforms 2.1


Parallel Three-Dimensional Fast Fourier Transforms is a library for computational computing in a wide range of sciences. more>>
Parallel Three-Dimensional Fast Fourier Transforms, dubbed P3DFFT, is a library for computational computing in a wide range of sciences, such as physics, climatology, chemistry.
This project was developed at SDSC by Dmitry Pekurovsky as a product of a Strategic Applications Collaborations (SAC) project.
Main features:
- Parallel implementation with 2D data decomposition, overcoming an important limitation to scalability of other 3D FFT libraries implementing 1D, or slab, decomposition.
- Optimized for parallel communication and single-CPU performance.
- Built on top of well-optimized and flexible 1D FFT libraries.
Enhancements:
- Assorted minor bugfixes and code speedups.
<<less
Download (MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Danger from the Deep 0.3.0.1

Danger from the Deep 0.3.0.1


Danger from the Deep is a World War II german submarine simulation. more>>
Danger from the deep (aka dangerdeep) is a Free / Open Source World War II german submarine simulation.
It is currently available for Linux/i386 and Windows, but since it uses SDL/OpenGL it should be portable to other operating systems or platforms. (If anyone whishes to port it, please contact us.)
This game is planned as tactical simulation and will be as realistic as our time and knowledge of physics allows. Its current state is ALPHA, but it is playable.
If anyone wants to contribute in development, youre welcome, just email the dangerdeep-devel mailing list. Contributing binary packages for various Linux distributions would also be much appreciated.
To get help with the game you should visit our public forum.
The game has support for multiple languages but currently only English, Italian and German are implemented. It is written in C++ with the use of the STL.
Danger from the Deep is released under the GNU General Public License. The project is hosted on SourceForge, a great supporter of the Open Source community.
Main features:
- simple main menu
- user interface (some items missing)
- basic world simulation, night and day
- realistic water and cloud simulation
- one type of destroyer, one battleship, one aircraft carrier, three subs, eight civilian ship types
- steering, firing, diving, periscope use
- free look engine for testing, periscope, UZO (aiming binoculars), bridge view
- console for logging purposes
- basic physics (acceleration, steering, firing)
- basic destroyer AI (follow, throw depth charges)
- simple vehicle preview
- mission parsing via text files, you can create your own custom missions
- tonnage recording
- log book
<<less
Download (8.3MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
536 downloads
Regnum Online Beta

Regnum Online Beta


Regnum Online is a MMORPG game, that wants to invite you to join our world and play for free. more>>
Regnum Online is a MMORPG game, that wants to invite you to join our world and play for free. The only thing we require is that you fight for your realm.
Regnum Online is a massive multiplayer online role playing game (MMORPG MMORPG) for the PC where the player are immersed in a 3D virtual world. There they can live as Elves, Humans Dwarves, or Dark Elves having exciting adventures, exploring the wild lands or joining an army of players to take on the other kingdoms armies."
The game is in beta stage, but already offers many quests, items, and monsters, not to mention the large number of both english-, spanish-, and portuguese-speaking players youll meet in-game.
Main features:
- Regnum offers 3 realms to choose from.
- 9 fully customizable player characters.
- Hundreds of quests.
- The ability to capture forts and castles.
- Expansive lands to explore.
- Glorious graphical environments.
<<less
Download (1.8MB)
Added: 2006-12-26 License: Freeware Price:
1040 downloads
mod_auth_shadow 1.6

mod_auth_shadow 1.6


mod_auth_shadow is an Apache module for authentication using /etc/shadow. more>>
mod_auth_shadow is an Apache module for authentication using /etc/shadow.

When performing this task one encounters one fundamental difficulty: The /etc/shadow file is supposed to be read/writeable only by root. However, the webserver is supposed to run under a non-root user, such as "nobody".

mod_auth_shadow addresses this difficulty by opening a pipe to an suid root program, validate, which does the actual validation. When there is a failure, validate writes an error message to the system log, and waits three seconds before exiting.

<<less
Download (0.008MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
935 downloads
mod_auth_shadow2 2.2

mod_auth_shadow2 2.2


mod_auth_shadow is an Apache module for authentication using /etc/shadow. more>>
mod_auth_shadow is an Apache module for authentication using /etc/shadow.

When performing this task one encounters one fundamental difficulty: The /etc/shadow file is supposed to be read/writeable only by root. However, the webserver is supposed to run under a non-root user, such as "nobody".

mod_auth_shadow addresses this difficulty by opening a pipe to an suid root program, validate, which does the actual validation. When there is a failure, validate writes an error message to the system log, and waits three seconds before exiting.

<<less
Download (0.009MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
935 downloads
Heimdal 1.0.1

Heimdal 1.0.1


Heimdal is an implementation of Kerberos 5. more>>
Heimdal is an implementation of Kerberos 5, largely written in Sweden (which was important when we started writing it, less so now). Heimdal project is freely available under a three clause BSD style license.
Other free implementations include the one from MIT, and Shishi.
Enhancements:
- Several bugs in iprop were fixed.
- Platforms without dlopen are now supported.
- RFC3526 modp group14 is now included by default.
- [kdc] database = { } entries are now handled without realm = stanzas.
- krb5_get_renewed_creds and kaserver preauth were fixed along with other bugs.
<<less
Download (4.3MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
806 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5