zatacka 0.1.7
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 33
Zatacka 0.1.7
Zatacka is an arcade multiplayer game for 2-6 players on one keyboard, clone of Achtung die Kurve classical dos game. more>>
Zatacka is an arcade multiplayer game for 2-6 players on one keyboard, clone of Achtung die Kurve classical dos game.
You handle yor line and you must sidetrack lines of other players and of course walls. When some player dies, survival gives one point.
When leaves only one player alive, the round is finished. Each game has eleven rounds.
<<lessYou handle yor line and you must sidetrack lines of other players and of course walls. When some player dies, survival gives one point.
When leaves only one player alive, the round is finished. Each game has eleven rounds.
Download (0.13MB)
Added: 2007-03-17 License: GPL (GNU General Public License) Price:
4760 downloads
RTL-check 0.1.7
RTL-check is a framework for static analysis of programs from a safety and security perspective. more>>
RTL-check is a framework for static analysis of programs from a safety and security perspective.
RTL-check project performs analysis on RTL, which is the low-level intermediate representation generated by GCC.
Enhancements:
- The performance of the analysis was improved, and a minor bug was fixed.
<<lessRTL-check project performs analysis on RTL, which is the low-level intermediate representation generated by GCC.
Enhancements:
- The performance of the analysis was improved, and a minor bug was fixed.
Download (0.33MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1139 downloads
PCE 0.1.7
PCE is an IBM PC 5150 hardware emulator. more>>
PCE is an IBM PC 5150 hardware emulator. PCE emulates most of the hardware of an IBM PC 5150.
The emulation is complete enough to boot DOS and run most DOS applications.
Emulated parts:
CPU A complete 8086/80186 emulator. Switching between 8086 and 80186 can be done at runtime. Switching between x86 and x88 can be done at compile time.
BIOS The included BIOS is a partially disassembled, slightly hacked IBM BIOS dated 1982-10-27.
8237 DMAC Supported
8250 UART Supported
8253 PIT Only counting modes 0, 2 and 3 are supported at this time
8255 PPI Supported
8259 PIC Supported
MDA Supported
CGA Supported
HGC Supported
EGA Supported. No user defined fonts. Requires a custom bios (included).
EMS Supported, with custom DOS driver
XMS Supported, with custom DOS driver
Disks Only supported through INT 13h at the moment.
Mouse A Microsoft serial mouse is emulated.
Parallel Port Partially supported. Output is written to a file.
Serial Port Partially supported. Output is written to a file.
Enhancements:
- A lot of small bugfixes and minor feature enhancements were integrated.
<<lessThe emulation is complete enough to boot DOS and run most DOS applications.
Emulated parts:
CPU A complete 8086/80186 emulator. Switching between 8086 and 80186 can be done at runtime. Switching between x86 and x88 can be done at compile time.
BIOS The included BIOS is a partially disassembled, slightly hacked IBM BIOS dated 1982-10-27.
8237 DMAC Supported
8250 UART Supported
8253 PIT Only counting modes 0, 2 and 3 are supported at this time
8255 PPI Supported
8259 PIC Supported
MDA Supported
CGA Supported
HGC Supported
EGA Supported. No user defined fonts. Requires a custom bios (included).
EMS Supported, with custom DOS driver
XMS Supported, with custom DOS driver
Disks Only supported through INT 13h at the moment.
Mouse A Microsoft serial mouse is emulated.
Parallel Port Partially supported. Output is written to a file.
Serial Port Partially supported. Output is written to a file.
Enhancements:
- A lot of small bugfixes and minor feature enhancements were integrated.
Download (0.66MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1193 downloads
tel 0.1.7
tel is a little console-based phone book program. more>>
tel is a little console-based phone book program. It allows adding, modifying, editing and searching of phone book entries right on your terminal. Pretty printing capabilities are also provided.
Entries are stored in simple csv file. This eases import and export with common spread sheet applications like Microsoft Excel or OpenOffice.org Calc.
The project is written in Python and distributed under the MIT license and therefore free software. You can download it free of charge, share it with your friends, modify and even sell it.
Originally tel was a little bash script developed by Pot and sabsirro in the german Ubuntu forum ubuntuusers.de. With development continuing at quick pace, bash quickly proved to be insufficient for writing such large projects as tel had now become.
First Pot and sabsirro planned to rewrite tel in Perl. But before development in perl had begun, lunar came up with a Python version of tel. This version was met with great interest. After a little while Pot and lunar agreed to continue this version as a separate project on BerliOS. When sabsirro joined the project after a little while, the tel developer team was complete.
<<lessEntries are stored in simple csv file. This eases import and export with common spread sheet applications like Microsoft Excel or OpenOffice.org Calc.
The project is written in Python and distributed under the MIT license and therefore free software. You can download it free of charge, share it with your friends, modify and even sell it.
Originally tel was a little bash script developed by Pot and sabsirro in the german Ubuntu forum ubuntuusers.de. With development continuing at quick pace, bash quickly proved to be insufficient for writing such large projects as tel had now become.
First Pot and sabsirro planned to rewrite tel in Perl. But before development in perl had begun, lunar came up with a Python version of tel. This version was met with great interest. After a little while Pot and lunar agreed to continue this version as a separate project on BerliOS. When sabsirro joined the project after a little while, the tel developer team was complete.
Download (0.023MB)
Added: 2007-03-30 License: MIT/X Consortium License Price:
938 downloads
GSAMBAD 0.1.7
GSAMBAD is a frontend for the Samba file and print server. more>>
GSAMBAD is a frontend for the Samba file and print server. GSAMBAD project features multiple local and remote user and group imports, on the fly share creation, and user handling, including randomization of usernames and passwords.
<<less Download (0.35MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
816 downloads
Streams 0.1.7
Streams is an I/O library designed to eventually replace the current I/O facilities based on using Handles. more>>
Streams is an I/O library designed to eventually replace the current I/O facilities based on using Handles. The main advantage is its strong modular design using typeclasses. It consists of small independent modules, each implementing one type of stream (file, memory buffer, pipe, etc.) or one part of common stream functionality (buffering, char encoding, locking, etc.).
3rd-party librarie can easily add new stream types and new common functionality. Other benefits of the new library include support for streams functioning in any monad, Hugs and GHC compatibility, high speed, and an easy migration path from the existing I/O library. It is heavily based on the HVIO module written by John Goerzen.
Simple Streams
The key concept of the lib is the Stream class, whose interface mimics familiar interface for Handles, just with "h" replaced with "v" in function names:
class (Monad m) => Stream m h where
vPutStrLn :: h -> String -> m ()
vGetContents :: h -> m String
vIsEOF :: h -> m Bool
vClose :: h -> m ()
....................
This means that you already know how to use any stream! The Stream interface currently has 8 implementations: a Handle itself, raw files, pipes, memory buffers and string buffers. Future plans include support for memory-mapped files, sockets, circular memory buffers for interprocess communication and UArray-based streams.
By themselves, these Stream implementations are rather simple.
Basically, to implement new Stream type, its enough to provide vPutBuf/vGetBuf operations, or even vGetChar/vPutChar. The latter way, although inefficient, allows us to implement streams that can work in any monad. StringReader and StringBuffer streams use this to provide string-based Stream class implementations both for IO and ST monads. Yes, you can use the full power of Stream operations inside the ST monad!
<<less3rd-party librarie can easily add new stream types and new common functionality. Other benefits of the new library include support for streams functioning in any monad, Hugs and GHC compatibility, high speed, and an easy migration path from the existing I/O library. It is heavily based on the HVIO module written by John Goerzen.
Simple Streams
The key concept of the lib is the Stream class, whose interface mimics familiar interface for Handles, just with "h" replaced with "v" in function names:
class (Monad m) => Stream m h where
vPutStrLn :: h -> String -> m ()
vGetContents :: h -> m String
vIsEOF :: h -> m Bool
vClose :: h -> m ()
....................
This means that you already know how to use any stream! The Stream interface currently has 8 implementations: a Handle itself, raw files, pipes, memory buffers and string buffers. Future plans include support for memory-mapped files, sockets, circular memory buffers for interprocess communication and UArray-based streams.
By themselves, these Stream implementations are rather simple.
Basically, to implement new Stream type, its enough to provide vPutBuf/vGetBuf operations, or even vGetChar/vPutChar. The latter way, although inefficient, allows us to implement streams that can work in any monad. StringReader and StringBuffer streams use this to provide string-based Stream class implementations both for IO and ST monads. Yes, you can use the full power of Stream operations inside the ST monad!
Download (0.23MB)
Added: 2006-11-28 License: BSD License Price:
1093 downloads
wapircgw 0.1.7
wapircgw helps you easily connect to irc networks using your wap browser on your mobile phone. more>>
wapircgw helps you easily connect to irc networks using your wap browser on your mobile phone. You just need a Linux box with internet connection to act as a gateway between your mobile phone and the irc network. You can join to multiple channels and talk to others privately like when you use a real irc client.
wapircgw consists of 2 cooperative pieces: wapircphp and wapircd.
wapircd is the daemon which handles connections to irc networks and requests from your mobile phone. wapircphp generates wml webpages that you can view with your mobile phone. So youll need a web-server application with PHP and MySQL support (ex. Apache). MySQL support is needed because of the user administration and settings storage.
Example: when a user logs in with his/her mobile phone, wapircphp communicates with wapircd, requesting a new irc connection to be made. So wapircd connects to the given irc server and joins the channels which the user gave in his/her settings. When the user logs out (or does nothing for a few minutes), wapircd closes the connection with the irc server.
Installation:
Dont forget to edit wapircd password in wapircd/src/config.h!
Then run ./configure and then make. PLEASE REMEMBER: you dont have to be root to run wapircd. Its more secure to run it as a single user. Youll find the wapircd binary in the src dir after running make, but if youre lazy you can run make install as root and itll place the binary in /usr/local/bin. Run wapircd -h for further options. You dont have to have write access in the directory you start wapircd, because everything is stored in memory.
After starting wapircd, copy the contents of the wapircphp directory to your website. Add the following table to your MySQL database:
CREATE TABLE `wapirc` (
`user` varchar(20) default NULL,
`pass` varchar(20) default NULL,
`ircserver` varchar(50) default NULL,
`ircport` varchar(5) default 6667,
`ircuser` varchar(50) NOT NULL default wapirc,
`ircnick` varchar(50) default NULL,
`ircpass` varchar(20) default NULL,
`autojoin` varchar(255) default NULL,
`loglines` tinyint(3) unsigned NOT NULL default 20,
`loglineslong` tinyint(3) unsigned NOT NULL default 100,
`allowrawirccmds` tinyint(1) NOT NULL default 0
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Enhancements:
- Host resolving did not work under Solaris; this has been fixed.
<<lesswapircgw consists of 2 cooperative pieces: wapircphp and wapircd.
wapircd is the daemon which handles connections to irc networks and requests from your mobile phone. wapircphp generates wml webpages that you can view with your mobile phone. So youll need a web-server application with PHP and MySQL support (ex. Apache). MySQL support is needed because of the user administration and settings storage.
Example: when a user logs in with his/her mobile phone, wapircphp communicates with wapircd, requesting a new irc connection to be made. So wapircd connects to the given irc server and joins the channels which the user gave in his/her settings. When the user logs out (or does nothing for a few minutes), wapircd closes the connection with the irc server.
Installation:
Dont forget to edit wapircd password in wapircd/src/config.h!
Then run ./configure and then make. PLEASE REMEMBER: you dont have to be root to run wapircd. Its more secure to run it as a single user. Youll find the wapircd binary in the src dir after running make, but if youre lazy you can run make install as root and itll place the binary in /usr/local/bin. Run wapircd -h for further options. You dont have to have write access in the directory you start wapircd, because everything is stored in memory.
After starting wapircd, copy the contents of the wapircphp directory to your website. Add the following table to your MySQL database:
CREATE TABLE `wapirc` (
`user` varchar(20) default NULL,
`pass` varchar(20) default NULL,
`ircserver` varchar(50) default NULL,
`ircport` varchar(5) default 6667,
`ircuser` varchar(50) NOT NULL default wapirc,
`ircnick` varchar(50) default NULL,
`ircpass` varchar(20) default NULL,
`autojoin` varchar(255) default NULL,
`loglines` tinyint(3) unsigned NOT NULL default 20,
`loglineslong` tinyint(3) unsigned NOT NULL default 100,
`allowrawirccmds` tinyint(1) NOT NULL default 0
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Enhancements:
- Host resolving did not work under Solaris; this has been fixed.
Download (0.086MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1277 downloads
AmarokPidgin 0.1.7
AmarokPidgin is a plugin for Amarok that updates your Pidgin status message with what you are currently listening too. more>>
AmarokPidgin is a plugin for Amarok that updates your Pidgin status message with what you are currently listening too.
If you want to update your Gaim status message, look from the AmarokGaim package.
<<lessIf you want to update your Gaim status message, look from the AmarokGaim package.
Download (0.010MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
811 downloads
khtpasswd 0.1.7
kpasswd is a small gui for edit .htpasswd files. more>>
kpasswd is a small gui for edit .htpasswd files.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes a while. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Type `make install to install the programs and any data files and documentation.
4. You can remove the program binaries and object files from the source code directory by typing `make clean.
Enhancements:
- Bugfix: Expect - SSH with authorized_key Files
- Update Slovak Translation by Jozef Riha
<<lessInstallation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes a while. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Type `make install to install the programs and any data files and documentation.
4. You can remove the program binaries and object files from the source code directory by typing `make clean.
Enhancements:
- Bugfix: Expect - SSH with authorized_key Files
- Update Slovak Translation by Jozef Riha
Download (0.46MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1010 downloads
Simsam 0.1.7
Simsam is a simple MIDI sample playback program. more>>
Simsam is a simple MIDI sample playback program. You can use it to play drum samples and loops from a MIDI keyboard or sequencer.
Simsam is currently available for GNU/Linux systems only, mainly because its MIDI subsystem is relying on ALSA.
Any comments, bug reports, feature requests or other ideas for improving simsam are most welcome. Even more welcome are offers to help with simsams development.
<<lessSimsam is currently available for GNU/Linux systems only, mainly because its MIDI subsystem is relying on ALSA.
Any comments, bug reports, feature requests or other ideas for improving simsam are most welcome. Even more welcome are offers to help with simsams development.
Download (0.098MB)
Added: 2006-02-17 License: GPL (GNU General Public License) Price:
1347 downloads
SQuaLe 0.1.7
SQuaLe provides an easy and very fast way to send SQL queries to a database backend. more>>
SQuaLe provides an easy and very fast way to send SQL queries to a database backend. SQuaLe project supports load balancing over multiple connections which can be on different servers.
Its very stable and provides statistics, control, and reporting through specific orders (like starting up a connection pool, shutting it down, getting statistics from that specific pool or for the whole SQuaLe instance).
Enhancements:
- This release adds a python DBI wrapper and a better reconnection mechanism.
- SQuaLe will now try to reconnect to the database even if it fails at startup.
<<lessIts very stable and provides statistics, control, and reporting through specific orders (like starting up a connection pool, shutting it down, getting statistics from that specific pool or for the whole SQuaLe instance).
Enhancements:
- This release adds a python DBI wrapper and a better reconnection mechanism.
- SQuaLe will now try to reconnect to the database even if it fails at startup.
Download (0.43MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1159 downloads
MP3val 0.1.7
MP3val is a tool for MPEG audio files validation and (optionally) fixing problems. more>>
MP3val is a tool for MPEG audio files validation and (optionally) fixing problems.
It was primarily designed for MPEG 1 Layer III (MP3) files, but supports also other MPEG versions and layers.
MP3val can be useful for finding corrupted files (e.g. incompletely downloaded).
MP3val supports:
- MPEG-1, 2, 2.5; Layers I, II, III
- ID3v1 tags (must be at the very end of the file)
- ID3v2 tags (must be at the very beginning of the file)
- APEv2 tags
Enhancements:
- More precise report about CRC.
- A new option added to keep file timestamps.
- Added more accurate handling of write errors (Debian #413946).
- Attributes are now correctly preserved.
<<lessIt was primarily designed for MPEG 1 Layer III (MP3) files, but supports also other MPEG versions and layers.
MP3val can be useful for finding corrupted files (e.g. incompletely downloaded).
MP3val supports:
- MPEG-1, 2, 2.5; Layers I, II, III
- ID3v1 tags (must be at the very end of the file)
- ID3v2 tags (must be at the very beginning of the file)
- APEv2 tags
Enhancements:
- More precise report about CRC.
- A new option added to keep file timestamps.
- Added more accurate handling of write errors (Debian #413946).
- Attributes are now correctly preserved.
Download (0.018MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
912 downloads
Getcontrol 0.1.7
Getcontrol project is a GNOME 2 multimedia frontend. more>>
Getcontrol project is a GNOME 2 multimedia frontend.
Getcontrol is a GNOME 2 multimedia frontend.
It aims to play DivX, DVD, MP3, Ogg, and Shoutcast streams,and also provide digital photo viewing, video conferencing, etc., all connected with your remote control and running on your TV out.
It relies on Gstreamer for multimedia playback.
Indeed even with a smart lirc configuration it was a real maze to launch any DVD player application, or even a simple XMMS.
My wife just turned crazy and was not able to use it. I realized that compared to a hardware player my remotelly controlled linux box was not so friendly to use.
Then i took my Anjuta IDE, some docs from gnome.org websites and started to develop my own coherent GUI for this multimedia box.
Enhancements:
- Releasing : getcontrol 0.1.7
- Divx : Divx playback from CDROM (mounting/unmounting/ejecting)
- Audio : MP3 streams supported with xml configuration file (bookmark)
- Control : Play/Pause/Stop/Mute/VolUp/VolDown supported
- Tasking : Pressing menu while watching movie suspend movie and go back to main menu. Movie can be restored from menu.
- Busy activities : Implemented a busy animation showing clearly to the user what is busy. (Inspired from Mac OS X(R))
<<lessGetcontrol is a GNOME 2 multimedia frontend.
It aims to play DivX, DVD, MP3, Ogg, and Shoutcast streams,and also provide digital photo viewing, video conferencing, etc., all connected with your remote control and running on your TV out.
It relies on Gstreamer for multimedia playback.
Indeed even with a smart lirc configuration it was a real maze to launch any DVD player application, or even a simple XMMS.
My wife just turned crazy and was not able to use it. I realized that compared to a hardware player my remotelly controlled linux box was not so friendly to use.
Then i took my Anjuta IDE, some docs from gnome.org websites and started to develop my own coherent GUI for this multimedia box.
Enhancements:
- Releasing : getcontrol 0.1.7
- Divx : Divx playback from CDROM (mounting/unmounting/ejecting)
- Audio : MP3 streams supported with xml configuration file (bookmark)
- Control : Play/Pause/Stop/Mute/VolUp/VolDown supported
- Tasking : Pressing menu while watching movie suspend movie and go back to main menu. Movie can be restored from menu.
- Busy activities : Implemented a busy animation showing clearly to the user what is busy. (Inspired from Mac OS X(R))
Download (0.67MB)
Added: 2006-12-06 License: GPL (GNU General Public License) Price:
1052 downloads
GEO 0.1.7
GEO project is a C++ geometric template class library. more>>
GEO project is a C++ geometric template class library.
Use this library for your graphical, image processing, or scientific applications.
GEO has rich set of operations with vectors and matrices, 2D and 3D objects (such as finding convex hull, bounding box), triangulation, tesselation, etc.
<<lessUse this library for your graphical, image processing, or scientific applications.
GEO has rich set of operations with vectors and matrices, 2D and 3D objects (such as finding convex hull, bounding box), triangulation, tesselation, etc.
Download (0.029MB)
Added: 2006-09-28 License: MIT/X Consortium License Price:
1122 downloads
Noname Network 0.1.7
Noname Network provides a powerful file-sharing network. more>>
Noname Network provides a powerful file-sharing network.
The Noname network is a gnutella-based network that features a different and more flexible protocol. The client and network currently support filesharing, but the protocol can be extended to support more features.
<<lessThe Noname network is a gnutella-based network that features a different and more flexible protocol. The client and network currently support filesharing, but the protocol can be extended to support more features.
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 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 zatacka 0.1.7 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