Main > Free Download Search >

Free arkanoid space ball 1.1.7 software for linux

arkanoid space ball 1.1.7

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1244
OSSP shiela 1.1.7

OSSP shiela 1.1.7


Shiela is an access control and logging facility for use with the Concurrent Versions System (CVS). more>>
OSSP shiela is an access control and logging facility for use with the Concurrent Versions System (CVS). OSSP shiela is intended to be hooked into CVSs processing through the $CVSROOT/CVSROOT/xxxinfo callbacks.
This way OSSP shiela provides access control on a path and branch basis to particular repository users and user groups. Additionally, repository operations are monitored, accumulated and logged.
The lookout of logging messages can be configured individually on a module path and branch basis and messages can be both saved to files and/or delivered by Email.
Enhancements:
- This release fixes an "arbitrary shell command execution" security bug caused by missing shell command argument escaping for user supplied arguments (CVE-2006-3633).
- The build environment was upgraded to GNU shtool 2.0.6 and GNU autoconf 2.60.
<<less
Download (0.090MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1186 downloads
BALL 1.1.1

BALL 1.1.1


The Biochemical ALgorithms Library (BALL) is a framework for rapid application development. more>>
BALL is Rapid Software Prototyping can significantly reduce development times in the field of Computational Molecular Biology and Molecular Modeling. BALL (Biochemical Algorithms Library) is an application framework in C++ that has been specifically designed for this purpose.
BALL has been carefully designed to be robust, easy to use, and open to extensions. Especially its extensibility which results from an object-oriented and generic programming approach distinguishes it from other software packages.
BALL is well suited to serve as a public repository for reliable data structures and algorithms. Based on BALL we have developed a stand-alone tool for molecular visualization, BALLView . BALLView makes the broad functionality available through an integrated user-friendly GUI.
BALL is distributed under the Lesser GNU Public License (LGPL), parts of it are under the GNU Public License (GPL).
Enhancements:
- This version finally brings full support for Python, DLLs, and nmake Makefiles under Windows.
- A large number of prominent fixes were made, especialy for g++ 4.x.
- Some new functionality was added to BALLView.
<<less
Download (4.2MB)
Added: 2005-12-22 License: LGPL (GNU Lesser General Public License) Price:
793 downloads
Brawl Ball 0.1

Brawl Ball 0.1


Brawl Ball project is a game of football based on the Blood Bowl ruleset. more>>
Brawl Ball project is a game of football based on the Blood Bowl ruleset.
Brawl Ball is a game of football based on the rules of the fantasy football game, Blood Bowl. It supports the full "basic" Blood Bowl ruleset.
Main features:
- Five basic player skills: block, catch, dodge, pass, & sure hands
- Team rerolls & player rerolls
- Team customization and/or creation using an xml format file and custom images
- Preferences for a strict adherence to the rules, or a more loosely played game
- Supports multiple languages (see internationalization)
<<less
Download (1.9MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1067 downloads
Neverball 1.4.0

Neverball 1.4.0


Neverball is part puzzle game, part action game, and entirely a test of skill. more>>
Tilt the floor to roll a ball through an obstacle course before time runs out. Neverball is part puzzle game, part action game, and entirely a test of skill.

<<less
Download (10.5MB)
Added: 2005-08-08 License: GPL (GNU General Public License) Price:
1546 downloads
Space Plumber 1.1.0 RC1

Space Plumber 1.1.0 RC1


Space Plumber is a first-person 3d game, not much different to Doom and Quake. more>>
Space Plumber is a first-person 3d game, not much different to Doom and Quake. The main goal of Space Plumber is to reach the extraction pumps before the water level increases swamping everything.
Each of the 30 levels that conform the game have progressive difficulty by adding more pumps and consoles that you must deactivate first, and by making the map bigger. There are no enemies, you fight against time and misorientation, and you only have your skills to move inside the maze.
The 1.1.x series are a port to use the QDGDF library, making it easier to compile in a variety of systems. Its included in the package, so you dont have to download it separately.
Enhancements:
- Space Plumber has been ported to use the QDGDF library, so its compilable in a wider variety of platforms and has some new features.
- The most important new feature is sound support under Linux.
- The game itself is exactly the same.
<<less
Download (2.0MB)
Added: 2005-11-28 License: GPL (GNU General Public License) Price:
1425 downloads
mod_macro 1.1.7

mod_macro 1.1.7


mod_macro is a third-party module to the Apache Http Server, distributed with a BSD-style license like Apache. more>>
mod_macro is a third-party module to the Apache Http Server, distributed with a BSD-style license like Apache.

mod_macro allows the definition and use of macros within apache runtime configuration files. The syntax is a natural extension to apache html-like configuration style.

Examples

Here is a sample use of mod_macro within a configuration file:
## Define a VHost Macro.

< Macro VHost $host $port $dir >
Listen $port
< VirtualHost $host:$port >

DocumentRoot $dir

< Directory $dir >
# do something here...
< /Directory >

# limit access to intranet subdir.
< Directory $dir/intranet >
order deny,allow
deny from all
allow from 10.0.0.0/8
< /Directory >
< /VirtualHost >
< /Macro >

## Use of VHost with different arguments.

Use VHost www.apache.org 80 /projects/apache/web
Use VHost www.perl.com 8080 /projects/perl/web
Use VHost www.ensmp.fr 1234 /projects/mines/web

## Done.

<<less
Download (0.013MB)
Added: 2006-05-08 License: BSD License Price:
1264 downloads
base::ball 0.0.2

base::ball 0.0.2


base::ball - b all the namespaces under the given one(s). more>>
base::ball - "b" all the namespaces under the given one(s).

SYNOPSIS

use base::ball qw(Foo::Utils);

equivalent to:

use base qw(Foo::Utils);
use base qw(Foo::Utils::Data);
use base qw(Foo::Utils::UI);
use base qw(Foo::Utils::Sys);
use base qw(Foo::Utils::Sys::Unix);
use base qw(Foo::Utils::Sys::Win32);
use base qw(Foo::Utils::Run);

Recursively searches the directory that the given name spaces are in to also use base on their "child" name spaces based on any .pm files found and any directories that belong to that .pm

In other words, assuming that the Foo/ that Foo::Utils is in has:

Utils/Data.pm, Utils/UI.pm, Utils/Sys.pm, Utils/Sys/Unix.pm, Utils/Sys/Win32.pm, Utils/Run.pm

then the synopsis is correct.

Note it does not follow directories who do not firts have a .pm, in other words:
Foo/Utils/Whatever/Fiddle.pm will no get Foo:Utils::Whatever::Fiddle as base unless Foo/Utils/Whatever.pm exists (and therefore Foo::Utils::Whatever is a base)

This is by design for good reasons and given enough popular demand may lead to support for it.

<<less
Download (0.004MB)
Added: 2007-06-27 License: Perl Artistic License Price:
849 downloads
Space Racer 0.2.4

Space Racer 0.2.4


Space Racer project is a OpenGL Car Game in a galactic environment. more>>
Space Racer project is a OpenGL Car Game in a galactic environment.

It aims to be a clone of the well known Stunt Car Racer developed by Geff Crammond, author of Grand Prix I and II.

To play a 3dfx is recommanded. But TNT and Matrox Cards should now work.

If you have a 3dfx, you can take advantage of OpenGL 1.1 in adding this line in config.h:

#define SP_OPENGL_1_1

<<less
Download (0.96MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1079 downloads
Space Mines 0.1.0

Space Mines 0.1.0


Space Mines project is a game where one makes money by building mines. more>>
Space Mines project is a game where one makes money by building mines.
Space Mines is a game where one needs to make money by building mines and by keeping ones workers happy.
INSTALLATION
make all
make install
make clean
USAGE
Build mines (but not too many) and create profits by selling the ore!
You need to pay your workers wages to keep them happy. Mining on other worlds is a dangerous business, and workers are at risk from exploding mines, radiation leaks, etc.
Version restrictions:
- There is very little error checking for if someone enters the wrong data type (like letters where there should be numbers).
Enhancements:
- Decided to release it to the world
- Made it GPL
- Included some documentation
<<less
Download (0.009MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1018 downloads
GOPchop 1.1.7

GOPchop 1.1.7


GOPchop is an open source tool for losslessly cutting and merging hardware-encoded MPEG2 video files. more>>
GOPchop is an open source tool for losslessly cutting and merging hardware-encoded MPEG2 video files. It limits cuts to I-frames or group-of-picture (GOP) boundaries, thereby preventing artifacts and degradation of quality by not needing to re-encode.
GOP boundaries occur frequently enough (especially at scene boundaries), that GOPchops method is quite suitable for many applications. It tends to be most handy for people working with streams created by hardware encoders.
Main features:
- Trimming recordings to desired start/end times.
- Extracting short clips from longer recordings.
- Editing commercials out of recorded TV programs.
- Splitting .VOB files from dual-layer DVD rips so the content can be put on each side of a single-layer DVD-R.
Enhancements:
- GOPchop is nearing the 1.2.0 stable release.
- This version even includes some experimental MPEG1 support from Brent Baccala.
- Several small fixes were added since the 1.1.6 releases changes to preferences handling. Download it and give it a spin!
<<less
Download (0.14MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1572 downloads
Open Steelball 0.5

Open Steelball 0.5


Open Steelball is a futuristic soccer game. more>>
Open Steelball project is a futuristic soccer game.

Open Steelball is an SDL game, which is similar to "SpeedBall" on the Amiga. It is a futuristic soccer game for one or two where 5 players can be controlled per side.

The ball can be passed, shot, lobbed, and other players can be tackled.

Goalkeepers are controlled automatically.

This is the First Alpha Release.

<<less
Download (0.49MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1060 downloads
Sauver 1.1.7.1

Sauver 1.1.7.1


Sauver is a simple and easy to use Operating System for standard Intel or AMD powered computers. more>>
Sauver is a simple and easy to use Operating System for standard Intel or AMD powered computers. Sauver is an Operating System based on the Linux kernel.
Why Sauver?
Sauver is a "Live CD", so no installation is required. The whole Operating System runs right off any removable media (USB or CD) , putting whatever system files it needs into RAM only. You simply start up your PC with the Sauver CD. It recognizes most of your devices, without having to take the trouble to install the drivers. Once youre done with Sauver, simply restart your PC. The CD will eject automatically and all will be exactly as it was before.
Imagine your System crashes and you want your data back but your operating system doesnt boot. You cant wait for your computer engineer to come and fix the problem. So what to do. Just put this CD and you get an GUI interface like your crashed system. And your data can easily be recovered.
The primary goal of Sauver is to provide easy recovery of data while keeping the cds image small enough to be written to a 185 MB CD-R(W) medium (small 8 cm CD). Sauver boots directly from the CD or USB devices.
Speed
Other Live CDs contain all software in a single compressed file. If you run such a Live OS from CD-ROM, the CD drive has to seek back and forth really frequently, because different files are located on different locations of the CD medium. This makes the system notably slow.
With Sauver, all conformable parts of the filesystem are compressed to a standalone file, which doesnt contain anything else. For example, all files which belongs to Xwindow are packed in xwindow.mo, KOffice related stuff is in koffice.mo, etc. If you work with KOffice, you usually need only files from KOffice and nothing else; and hence all files from that part of the filesystem are separated from the rest of it, your CD drive has to seek only in a 10 MB area. This significantly improves the speed.
Main features:
- Linux kernel 2.6 offering excellent hardware support
- the newest ALSA sound drivers
- ndiswrapper for loading Windows drivers for WIFI cards
- madwifi drivers for native support for WIFI cards (Multiband Atheros)
- X11 (xorg) Xwindow system, supporting many gfx cards and wheel mice automatically
Sauver Standard CD contains Extra
- Specially made Wifi Manager for Sauver
- Recover Deleted files from NTFS (Win XP, NT) & FAT (Dos, Win 95, 98, Me, XP) Partitions
- Save & Restore your settings
- Partition Manager
<<less
Download (MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
942 downloads
Volleyball 0.8.5

Volleyball 0.8.5


Volleyball is a simple sports game, starring two penguins. more>>
Volleyball project is a simple sports game, starring two penguins. Is a two player game, and follows the basic rules of actual Volleyball.

Each player hits the ball, trying to reach the opponents field. If the ball touches the floor of the opponents field, the player scores one point.

<<less
Download (0.35MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1195 downloads
SpamAssassin logfile analyser 1.1.7

SpamAssassin logfile analyser 1.1.7


SpamAssassin logfile analyser is a SpamAssassin log file analyser to give spam statistics. more>>
SpamAssassin logfile analyser script, written in Perl, is a logfile analyser for SpamAssassins spamd daemon.
It can be run nicely as a daily cron job (using the -y arguement) and goes well with other logfile analysers such as eximstats.
Enhancements:
- Usernames are forced into lowercase because mixed case usernames found in the log file would cause duplicate and incorrect statistics.
- String format spacing has been increased due to a report that it was slightly too small.
<<less
Download (MB)
Added: 2006-03-30 License: zlib/libpng License Price:
1312 downloads
Yanoid 0.3.5

Yanoid 0.3.5


Yanoid is yet another arkaNOID/breakout clone. more>>
Yanoid project is yet another arkaNOID/breakout clone.

Yanoid is Yet Another arkaNOID/breakout clone, but it has been designed to be very flexible and extensible.

The main engine is written in C++, but maps, objects, etc are defined in Python, which allows you to design very interesting maps.

Yanoid is quite enjoyable.

<<less
Download (0.47MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1052 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5