Main > Free Download Search >

Free rndciv 0.7.2 software for linux

rndciv 0.7.2

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 69
rndCiv 0.7.2

rndCiv 0.7.2


rndCiv (Random Civ) are randomized rulesets for Freeciv. more>>
rndCiv (Random Civ) are randomized rulesets for Freeciv.

If you play freeciv a lot, youll probably start to find that the games start to become the same, they blur into each other and after a while even though you love the game it starts to become boring and too easy.

Well i did, each game becomes a rush to The Republic, Gunpowder and Steam Engine. And one reason for that is that the techtree becomes totally sussed out. But techtrees are arbitrary anyway, and in another slightly different world they would be different. Sure you can download mod packs, but the problem reappears, after a while you learn their techtree, and youre back to square one.

rndCiv, is a solution to this problem. What rndCiv does is blend different genres together to produce unique (but still playable) techtrees. Its not random like Monarchy and Radio lead to Genetic Engineering, that would be silly. Its random like, Sailing could come from Boating, Map Making, Seafaring, Astronomy, or Craftsmanship. So pick two and get on with it.

Because the Techs, Units, Buildings and Governments are bundled into different generas, then you can get rndCiv to build a techtree (with related Units, Buildings & Governments) for whatever set of generas youd like to play with. Its a Meta-Modpack.

This code is beta, it works, it occasionally crashes the server (so save often), it also crashes the client (when you look up the help system for some units - weird), and its rules need to be fine-tuned.

Quick Start:

For a quick intro, try this command

./rndCiv.pl random4

then read the rulesets in the ./ouput dir

what i do, is symlink the output dir to freeciv/data/rnd and set rulesetdir to rnd

The ruleset.summary file gives a qick overview of the ruleset.

The techtree.dot file can be fed into the dot graph generator....

dot -Tps -o techtree.ps techtree.dot
gv techtree.ps

Then start civ..

./civ --tiles=rnd

and when in the civ server control mode, set the rule dir

/rulesetdir rnd

add other game options to suit, and start

<<less
Download (0.16MB)
Added: 2006-01-12 License: GPL (GNU General Public License) Price:
1380 downloads
Grig 0.7.2

Grig 0.7.2


Grig is a graphical user interface for the Ham Radio Control Libraries. more>>
Grig is a graphical user interface for the Ham Radio Control Libraries.

Grig project is intended to be simple and generic, presenting to the user the same interface regardless of which radio he or she uses.

Grig is in an early stage with only a little subset of the full Hamlib API implemented but more features will be added along the way.

You can get the latest version of Gnome RIG from the Groundstation project page in the file releases section. You can also grab the latest code from the CVS repository. Detailed instructions on how to get the sourcecode using anonymous cvs can be found here. You should use the use grig2 for the module name.

If you find any bugs or if you have any comments or questions, feel free to use the trackers or the mailing lists. You can also send direct email to the authors if you prefer privacy.

<<less
Download (0.44MB)
Added: 2006-12-17 License: GPL (GNU General Public License) Price:
1043 downloads
Delvj 0.7.2

Delvj 0.7.2


DelVJ is a software for realtime video 3d composition and algorithmic remixing. more>>
DelVJ is a software for realtime video 3d composition and algorithmic remixing.
Delvj uses gtk, python, glade and puredata.
It can be given indications for the objects, videos, and effects, and the computer can do the rest. It features a GTK+ interface that runs puredata in the background, controls xmms, and allows tweaking of all patch parameters, recording of videos, and streaming to an Icecast server.
It can be controlled through OSC, and has web and gtk interfaces. For Pixel fests of many kinds. Furthermore, it is licensed under GNUs GPL.
Enhancements:
- Many new options and a much better gtk interface.
- Debian packages and tar.gz have been updated.
- Ubuntu users beware as currend debian packages are too new for hoary, new packages for that distro have been created and are looking for hosting.
- Most important delvj is now multilanguage, with english, spanish and catalan supported.
- Many new translations will some day follow.
<<less
Download (5.1MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
791 downloads
uLan Driver 0.7.2

uLan Driver 0.7.2


uLan Driver is an RS-485 link and uLan protocol driver for Linux and Windows. more>>
uLan Driver provides 9-bit message oriented communication protocol, which is transferred over RS-485 link.
Characters are transferred same way as for RS-232 asynchronous transfer except parity bit, which is used to distinguish between data characters and protocol control information. A physical layer consists of one twisted pair of leads and RS-485 transceivers.
Use of 9-bit character simplifies transfer of binary data and for intelligent controllers can lower the CPU load, because of the CPU need not to care about data characters send to other node. Producers of most microcontrollers for embedded applications know that and have implemented 9-bit extension in UARTs of most of todays MCUs. There is the list below to mention some of them:
- all Intel 8051 and 8096 based MCUs with UART
- members of Motorola 683xx family ( 68332, 68376, ... )
- Hitachi H8 microcontrollers
The driver is implemented as relatively independent layers and subsystems. Messages are prepared and received in the driver dedicated memory. This memory is divided into blocks with uniform size with atomic allocation routines.
When message is being stored into blocks, head of message with couple of data bytes is stored in the first allocated memory block. If all data cannot be stored in the first block, next blocks are allocated and linked together.
The message heads are linked in bidirectional linked lists of messages prepared for sending, processed messages and messages prepared for client notification. These lists or queues are main mechanism for transferring of messages between subsystems.
Link protocol is programmed as finite state automata with state stack, which state routines are executed by interrupt handler. State routine can return positive integer information, negative error notification or zero, which leads to wait for next interrupt. Information or error is used as input parameter when state routine is called.
When the state routine wants initiate transfer to another state routine it changes pointer to the actual state routine. If previous state routine returns nonzero value new routine is called immediately, in other case next interrupt invokes new state routine.
There is stack of callers of actual state routines which enables to constructs automata subsystems, which can be used in more places in main automata loop. Main purpose of this automata is to send or process messages coming in list of messages prepared for sending and if specified, move these messages onto list of messages prepared for client notification.
Received messages are put onto this list too. Subsystem is supervised by timeout handler, which can revitalize communication in case of die of other node. The interrupt and timeout handlers are fully SMP reentrant.
The automata subsystem uses pointers to chip driver routines for hardware port manipulation. This is only part dependent on used chip, today 82510, 16450 and OX16C950PCI. These routines can send and receive 9 bit character, connect to RS-485 line by the arbitration sequence, wait for specified time for character and initialize and close port.
File operation subsystem makes interface between OS kernel VFS and client message queues. It enables to prepare single or multi-frame messages and stores notifications of received or processed messages in clients private state structures. This part is heavily operating system dependent.
Enhancements:
- This release enables you to build the driver within the WDF framework for Windows.
- Updates to support the latest Linux 2.6.x kernels are included (tested to 2.6.19).
- Changes to allow stand-alone system-less build for ARM targets (LPC21xx) are included.
- The OMK has been selected as the default build.
- The "switch2std" script allows you to switch to the old build system.
<<less
Download (0.25MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1022 downloads
SClient 0.7.2

SClient 0.7.2


SClient project is a mud Client for X windows. more>>
SClient project is a mud Client for X windows.
Its designed to be easy to use, so even an newbie can use it without problems but yet so powerful that the most experienced mud addict will find it usefull!
Main features:
- Connection Wizard with autologin option
- logger
- Triggers
- Macros
- Aliases
- Ansi support
- Command line history
- Font selection
<<less
Download (0.73MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1066 downloads
DFBPoint 0.7.2

DFBPoint 0.7.2


DFBPoint project is a presentation program using DirectFB. more>>
DFBPoint project is a presentation program using DirectFB.
It reads an XML file with simple slide descriptions and displays the slides.
Features include antialiased text, background images, images, and video playback.
The slides can be faded/slid in.
Main features:
- Rectangle filling
- Rectangle drawing
- Line drawing
- Blitting
- Stretched Blitting
- Blitting/Drawing
- Colorizing
Enhancements:
- fixed possible issues with filename encodings
- added a DTD provided by Jochen Hein
- misc minor fixes
<<less
Download (0.52MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1107 downloads
OneKript 0.7.2

OneKript 0.7.2


OneKript is a Front-End for the program of disk encryption on the flye TrueCrypt, released under license GPL. more>>
OneKript is a Front-End for the program of disk encryption "on the flye" TrueCrypt, released under license GPL.
It has been developed with the environment Kommander for KDE (to have the kommander-executor is necessary to start OneKript.). At the moment is available the version 0.5.1.
Main features:
- Creation of normal and hidden volumes.
- Selection of the file system type, size and algorithms of hash and encryption.
- Double introduction of password.
- It allows to use keyfiles and random sources
- Mount and unmount of volumes with capacity for read only and protection of hidden volumes.
Enhancements:
New:
- view volume properties
- keyfiles creations
- test internal algorithms
- overwrite option.
Changed:
- new gui design
- improvement of the detection of erroneous fields system
- elimination (almost) complete of the use of konsole
<<less
Download (0.027MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
w3cam 0.7.2

w3cam 0.7.2


w3cam is a simple CGI to retrieve images from a so called video4linux device. more>>
w3cam is a simple CGI to retrieve images from a so called video4linux device. In other words this program will only run on Linux machines which support a video4linux-device.
w3cam supports a text mode and a gui mode. In the gui mode a html with a form is supplied to change some parameters with the mouse ..
Supported output formats: [6]PNG, [7]JPEG and PPM
Screen dumps in GUI mode [8]double.jpg
Installation: run configure & make install and edit the installed w3cam.cgi.scf file for the runtime configuration.
Usage: Install the CGI and then call {url}/w3cam.cgi?help
Download source code: [9]w3cam-0.7.2.tar.gz
Needed Libraries: [10]libz, libpng, libjpeg
Checkout [11]ChangeLog for changes since the last release.
Tips:
Dont use refresh=0 if you are not the only one, who want to access the video, cause this will lock the v4l device.
Set refresh=-1 if the image is NOT embedded in a HTML-page (or set it at compile time as the default or at runtime in the configuration file).
Use w3cam.css to change the layout (dont forget to install and define the URL in the config file..)
Problems?: [13]Mini FAQ, and also consult the included documentation and HTML samples.
Enhancements:
- released 0.7.2
- w3cam.cgi: added default input in the gui mode
- added new option "bgr=1" to swap RGB24 to BGR24
- fixed v4l.c:v4l_set_input() for the ov511 driver
<<less
Download (0.14MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1200 downloads
gpkcs 0.7.2

gpkcs 0.7.2


gpkcs11 provides support functions to make the development of support for new tokens. more>>
gpkcs11 provides support functions to make the development of support for new tokens easier and contains a complete software token, as well as an automated testing environment.

gpkcs serves as a testing tool in the development of new applications that contain cryptographic support.

A core of the functions have been implemented, but still need a lot of testing. The following features are lacking at this time (03/00), but will be implemented ASAP:

- propper SO/token reset support
- thread save
- multi session/multi app support

If you have need for another feature not yet implemented, give me a holler. Even though I will probably ask for your cooperation, I might bump it up on my feature list. But I consider this library only of use to the hardened crypto developer, therefore will assume that you are able to help further the development.

This code is now usable with the Netscape Communicator! I found out that it is due to a collision between symbols in the libcrypto and symbols within the Communicator. Therefore this release now does some magic to the OpenSSL code before compiling and linking it to the ceay token.
<<less
Download (0.75MB)
Added: 2006-08-28 License: LGPL (GNU Lesser General Public License) Price:
1154 downloads
Gnomolicious 0.7.2

Gnomolicious 0.7.2


Gnomolicious is an GNOME applet that help you post links on the del.icio.us site simply by dragndropping them. more>>
Gnomolicious is an GNOME applet that help you post links on the del.icio.us site simply by dragndropping them.

Gnomolicious project is written in python using the pygtk bindings. The library used to connect on the del.icio.us API is the work of Frank Timmermann.

<<less
Download (0.035MB)
Added: 2006-04-08 License: GPL (GNU General Public License) Price:
1294 downloads
JSON-GLib 0.7.2

JSON-GLib 0.7.2


A JSON parser for GLib-based libraries and applications more>> <<less
Added: 2009-06-19 License: GPL Price: FREE
15 downloads
yhttpd 0.7.2

yhttpd 0.7.2


yhttpd provides an experimental, XML-configurable, light, multi-platform Web server. more>>
yhttpd provides an experimental, XML-configurable, light, multi-platform Web server.

yhttpd is an experimental, XML-configurable, light, very portable, multi-platform Web server written in C++ and a small subset of C.

It runs on all operating systems that are POSIX compatible and use the GNU GCC C++ compiler from 3.1 and up with pthreads enabled.

It is based on yChat socket and thread engines.

<<less
Download (0.069MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
Newega 0.7.2

Newega 0.7.2


Newega is a Usenet reader with a Web-based interface. more>>
Newega is a Usenet reader with a Web-based interface. Newega is a stand-alone program (no Web or database server needed), is cross-platform, and has support for themes using HTML templates.
Main features:
- Basic: Subscribing, Sorting and searching newsgroups, Threads
- Theme support using HTML templates
- Keyboard navigation (requires javascript)
- Support multiple architectures
- MultiTask
- Support for non english character encodings
Enhancements:
- New features include advanced filters and flagging rules, remote use with access restriction based on IP and/or password, support for downloading of large binary files, group folders, and more.
<<less
Download (1.9MB)
Added: 2006-03-08 License: Free for non-commercial use Price:
1325 downloads
Sockso 0.7.2

Sockso 0.7.2


ockso is a free, open-source, personal music server for everyone! more>>
ockso is a free, open-source, personal music server for everyone! Its designed to be as simple as possible so that anyone with a mouse and some mp3s can get their friends listening to their music across the internet in minutes!
Main features:
- Simple setup (up and running in seconds)
- Supports MP3s
- Easy web-interface for your friends, and a GUI for you!
- Statistics like most played, recently popular, etc...
- Drag and drop playlist creation
Enhancements:
- This release has a console mode so it can be installed, administrated, and run on servers without a GUI.
- Many bugs have been fixed after a lot of missing unit testing was implemented.
<<less
Download (1.5MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
KPowersave 0.7.2

KPowersave 0.7.2


KPowersave is a KDE frontend to powersave. more>>
KPowersave provides battery monitoring and suspend/ standby triggers for KDE.
It is based on the powersave package and therefore supports APM and ACPI.
Whats New in 0.6.2 Stable Release:
- This release depends on powersave >= 0.12.18.
- It fixes autosuspend and inactivity detection (workarounds for broken X libraries), fixes the DCOP function for autosuspend, fixes detection/handling if DBUS/HAL/powersaved are not running, fixes the config dialog to respect DPMS timeout rules, checks the applet menu before trigger autosuspend, fixes distribution detection in configure, and changes the default bug reporting links for dists.
- It adds missing DCOP functions, allows changing brightness with the mouse wheel over the applet icon, and updates the autosuspend blacklist and translations.
<<less
Download (1.9MB)
Added: 2007-02-18 License: GPL (GNU General Public License) Price:
982 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5