Main > Free Download Search >

Free productions software for linux

productions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 342
Foundation 0.2.0

Foundation 0.2.0


Foundation project is a real-time multi-player space conquest game. more>>
Foundation project is a real-time multi-player space conquest game.
OpenGL hardware support is recommended. Goals include researching new technology, colonizing distant planets, and fighting intense 3D fleet battles for survival.
Main features:
- colonization
- production of new units, facilities and ships
- research new technology to give you an edge
- space battles
Enhancements:
- more high-level network code (can now transfer fleet info)
- can now build ships
- wont crash if youre not connected to a server but try send a msg
- texture caching system
- fixed check for if a planet is building a certain structure
- slight changes to planetview and fleetview layout
- added more components to fleetview
- moved id to platform class, fleets and planets now both have IDs
- fleet movement mostly complete, still have to deal with deleting fleets
- fixed production bug, need resources now
<<less
Download (MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1066 downloads
PCLinuxOS Clean Cal

PCLinuxOS Clean Cal


PCLinuxOS Clean Cal is a calendar SuperKaramba theme. more>>
PCLinuxOS Clean Cal is a calendar SuperKaramba theme. I changed the Kontact icon to the PCLinuxOS icon

Here is the link to the original Karamba theme.

http://www.kde-look.org/content/show.php?content=20570

As with the Crystal Clock, Ive only made a cosmetic change. The original developer deserves credit for the code.

<<less
Download (0.007MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1213 downloads
PRECC eXtended 2.58

PRECC eXtended 2.58


PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. more>>
PRECC eXtended is an infinite-lookahead compiler-compiler for languages with context-dependent grammars. The generated code is ANSI C and ANSI C++; the code will compile and run native under either C or C++.
Specification scripts are extended BNF with inherited and synthetic attributes. Scripts can be compiled in separate modules and linked later. Metalevel production rules are allowed in the scripts. The technology is essentially LL(oo) with optimizations.
Enhancements:
- A "debian" subdirectory has been added in order to allow the building of deb packages from the source archive.
<<less
Download (0.33MB)
Added: 2007-06-27 License: LGPL (GNU Lesser General Public License) Price:
849 downloads
ActionCube 0.92 Beta

ActionCube 0.92 Beta


ActionCube is a total conversion of Wouter van Oortmerssen ́s FPS called Cube. more>> <<less
Download (19.5MB)
Added: 2007-01-17 License: GPL (GNU General Public License) Price:
1015 downloads
Blockish 0.0.2

Blockish 0.0.2


Blockish is a server for the NBD protocol implemented in Java. more>>
Blockish is a server for the NBD protocol implemented in Java. This allows you to serve up storage as a virtual block device to Linux systems from any system that can run Java. Blockish project is designed to support multiple pluggable backends.

Available backends:

Memory (useful for providing network swap)
File
S3 (Use Amazons S3 service as a block device!)

Blockish is in an early stage of development and should not be used for production work.
<<less
Download (0.026MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1306 downloads
USAGI Project 20060508

USAGI Project 20060508


USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec protocol. more>>
USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec(for both IPv4 and IPv6) protocol stack for the Linux system, tightly collaborating with WIDE Project, KAME Project and TAHI Project.
USAGI Project is run by volunteers from various organizations. At this moment, the volunteers are from Japan, however, we are glad to work with volunteers in any country in the world.
We want to contribute to the Linux community and to the IPv6 community via the delivery of IPv6 protocol stack.
Enhancements:
- Unused code was removed.
- Minor bugfixes were made.
- Some of the additional utilities were reorganized.
<<less
Download (3.7MB)
Added: 2006-05-10 License: Open Software License Price:
1273 downloads
mysqlrowcopy 1.0

mysqlrowcopy 1.0


mysqlrowcopy is a tool that generates insert statements from result sets. more>>
mysqlrowcopy is a tool that generates insert statements from result sets. It produces output similar to what might result from running mysqldump on a single SELECT query.

This project helps eliminate some of the tedium of moving data between QA and production MySQL databases.

Build:

To build mysqlrowcopy, you should run:

./configure
make

A mysqlrowcopy and mysqlrowcopy.debug file are created. They have identical functionality, the .debug version simply has debugging symbols built in (for gdb).

Since mysqlrowcopy is probably going to be I/O bound with modest CPU and RAM usage, the only reason to even build a 64-bit version is to work around potential issues in dynamic linking 32-bit binaries against 64-bit libraries.

RECIPES

1. Migrating a MySQL user account reaper from QA server to a production server.

e.g. MySQL database server qa3.example.com to prod1.example.com:

$ mysqlrowcopy -h qa3.example.com
SELECT * FROM db WHERE User = "reaper" mysql db > reaper.sql
$ mysql -h prod1.example.com mysql < reaper.sql

You could of course simply pipe the output of mysqlrowcopy into mysql and skip the intermediate file.

(Dont forget to RELOAD PRIVILEGES afterwards)

2. Keep your test environment up to date. Populate it with production data every 24 hours. You could run this sequence from cron once a day:

$ mysqlrowcopy -h finance-db.example.com
SELECT * FROM stocks WHERE modified > DATE_SUB(NOW(),INTERVAL 24 HOUR)
finance stocks > day-stocks.sql

$ cat day-stocks.sql | mysql -h finance-test.example.com finance

3. Copy data between tables on different servers that have some similar fields.

Youve got common data in table Zip on a production database:

mysql> desc Zip;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | PRI | | |
| ZIPCodeType | char(1) | YES | | NULL | |
| City | varchar(32) | YES | | NULL | |
| CityType | char(1) | YES | | NULL | |
| State | varchar(32) | YES | | NULL | |
| StateCode | char(3) | YES | | NULL | |
| AreaCode | char(3) | YES | | NULL | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
9 rows in set (0.00 sec)

And youve got table ZipPosition in a research database:

mysql> desc ZipPosition;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | | | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
3 rows in set (0.00 sec)

You want to load data from production Zip into research ZipPosition.

$ mysqlrowcopy -h production SELECT ZIPCode,Latitude,Longitude common ZipPosition > pos.sql
$ cat pos.sql | mysql -h qa research

Note how we specify ZipPosition on the first line to tell mysqlrowcopy what the destination table is going to be.
<<less
Download (0.021MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
967 downloads
Primate Plunge 1.1

Primate Plunge 1.1


Primate Plunge is a platform game where you help Monkey navigate his way down through treacherous jungles. more>>
Primate Plunge is a platform game where you help Monkey navigate his way down through treacherous jungles, canyons, towering waterfalls, into the heart of a volcano, and through the driving rain of a cold industrial city.
Monkey will find help along the way in the form of powerups, including parachutes and jet packs.
Primate Plunge originally competed in uDevGame2003, the annual Mac game competition hosted by iDevGames.com. Primate Plunge game is therefore being distributed for free.
Main features:
- Multiple scrolling layers of beautiful hand-drawn backgrounds.
- 5 worlds of intense monkey action, each uniquely challenging.
- Special powerups such as the parachute, and the jumping bean!
- Top score for each world - how deep can you go?
- Star rating for each world - can you get 5 stars in all of them?
- And lots more!
<<less
Download (5.0MB)
Added: 2006-01-05 License: Freeware Price:
1388 downloads
TitanGS Java 0.2.5

TitanGS Java 0.2.5


TitanGS Java project is a multi-player role playing game set in the Star Trek universe. more>>
TitanGS Java project is a multi-player role playing game set in the Star Trek universe.

TitanGS Java is a project to create a game base on the Star Trek universe, that would have no unnecessary rules. The only limits of the game are Star Trek physics (not very limiting).

What the achillies lacks in warp speed it more than makes up for in attack strength. It has some of the strongest phasers in StarFleet. Its array of micro torpedos makes it dangerous to attack from any angle.

The substantial crew complement required to operate, and the prohibitive cost of this ship keeps production fairly low.

Even though there arent many of them, theyre used quite extensively; due mostly to their high success rate.

<<less
Download (MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1025 downloads
MP3 Report Generator 1.0.2

MP3 Report Generator 1.0.2


MP3 Report Generator is a customizable program to scan a list of (sub)directories, creating a report from an HTML template. more>>
MP3 Report Generator is a customizable program to scan a list of (sub)directories, creating a report from an HTML template.

Also calculates various statistics and each songs playing time. Supports ID3 and ID3v2 tags.

All options can be configured through the command line, see mp3report.pl --help for more info. You may also want to modify the hard coded defaults at the top of the program file.

Usage: mp3report.pl [options] [directory...]
--help shows this help screen
--printmode uses a smaller font for printing
--title=TITLE sets the title used in the report
--outfile=OUTFILE file to write report to, - for STDOUT
--template=FILE file to use as report template
--stdgenres use standard genres instead of winamp genres
--id3v2 enable id3v2 support (experimental)
directory... dirs to scan (subdirs included)

Installation:

You should be able to run mp3report.pl directly after decompressing it:

tar xfzv mp3report-1.0.0.tar.gz
cd mp3report-1.0.0
./mp3report.pl --help

If your perl interpreter isnt in /usr/bin/perl, youll need to change the first line of mp3report.pl
<<less
Download (0.036MB)
Added: 2006-02-24 License: GPL (GNU General Public License) Price:
1340 downloads
jPodder 1.1

jPodder 1.1


jPodder is the most complete podcasting program on the planet. more>>
jPodder is the most complete podcasting program on the planet. Yes we can claim this as, jPodder was one of the first programs to be created for podcasting and has been innovating ever since.
If you own a portable media player like the iPod or you want to listen to fresh content every day on your PC, then read on cause podcasting is what you are looking for.
With jPodder you can subscribe to websites containing audio. jPodder will download the files to your system and transfer these to your favourite media player.
Main features:
Currently supported languages:
- English
- Dutch
General/GUI
- Multi Platform program (Java based).
- Easy installer. (Creates shortcuts on Windows PCs).
- System tray (Minimize jPodder to download in background).
- GUI Menu and popup menus.
- Build-in User manual.
- Multi-Language (0.9 New!)
RSS Feed management
- Add, Remove & Edit feeds.
- Sort feeds by name.(0.9 New!)
- Move feeds up/down
- View detailed Feed information.
- Feeds stored in easy XML format.
- Extensive status bar.
- Drag & Drop Podcasts link (0.9 New!)
Enclosure previewing
- Preview enclosures incl. name, date, size..
- Show enclosure status (Downloaded, In player..)
- Show previous downloads from this feed.
- Highlights partial downloads.
- Highlights previous downloads.
Downloading
- Scheduled downloads
- Multiple simultaneous downloads
- Single enclosure download
- Smart-Download, Downloads latest only.
- Maximum downloads, Limiter to the number of downloads
- Resume partial downloads
- Manual download retry
- Feed Authentication (0.9 New!)
- Proxy Server support (Including authentication)
- build-in BitTorrent. (Including seeding).
Media Player Interface
- Natively supports transfer to iTunes and WMP.
- Player plugin facility. (0.9 New!)
- MIME-Type association to players (0.9 New!)
Podcast Production (0.9 New!)
- Manage production steps
- Auto-create RSS feed
- MP3 Tag editing
- Add enclosures to RSS feed
- Launch recorder
- FTP Transfer production.
- Auto-test RSS feed.
Logging
- Color coded logging.
- BitTorrent logging.
<<less
Download (11MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1024 downloads
Puzzle Blocks 0.5.3

Puzzle Blocks 0.5.3


Puzzle Blocks is a multi-platform puzzle game, designed for both Linux and Windows. more>>
Turts Puzzle Blocks multi-platform puzzle game, designed for both Linux and Windows. Turts Puzzle Blocks is also the current project of Turt99 Productions. The goal of the project is to gain experience C++ and Object Oriented Design, as well as to help in the learn process of Linux as a development platform.

Turts Puzzle Blocks has actually gone through many stages; it started its life as "Turts Breakdown". At this point the graphics where being designed so the "blocks" didnt exists. Once the "blocks" where created there was a need for the name to be changed, and a lot of new modes (or mini games) seemed to fall into the design. As of the Beta release you are basically seeing what "Turts Breakdown" was to be, however there are many more plans for Turts Puzzle Blocks.

Turts Puzzle Blocks is created using KDevelop 2.1 under Linux Redhat 9.0, and uses the SDL libraries. SDL was chosen because it is a multi-platform library that would allow the seamless development for 2 operating systems. SDL main library supplies the support for the windows and the display, but Turts Puzzle Blocks also uses two additional SDL libraries SDL_image and SDL_Mixer. SDL_image supports the use for PNG and TGA files, which allows for Alpha blending and results in clean lines and smooth graphics. SDL_mixer is used for playing sounds and the background music.
<<less
Download (1.0MB)
Added: 2005-09-05 License: GPL (GNU General Public License) Price:
1515 downloads
Rats! 1.12.0

Rats! 1.12.0


Rats! is an easily extensible parser generator for C-like languages. more>>
Rats! is an easily extensible parser generator for C-like languages; though currently it only generates parsers in Java. Rats! project has been explicitly designed so that grammars are concise and easily modifiable. To this end, Rats!
- organizes grammars into modules,
- builds on parsing expression grammars instead of context-free grammars and vintegrates lexing with parsing, i.e., is scannerless,
- supports the automatic generation of abstract syntax trees,
- and provides a well-defined interface for extending parsers to recognize context-sensitive languages and formats.
Parsers generated by Rats! memoize intermediate results, which ensures linear time performance in the presence of unlimited lookahead and backtracking. As a result, they are essentially functional (even though they are implemented in an imperative language) and also called "packrat parsers."
Main features:
- Rats! relies on a module system to structure grammars and their extensions. In particular, it relies on modules to group related productions into separate units. Next, module modifications concisely express extensions to other modules and can add, change, or remove individual alternatives in productions. Finally, module parameters are used to compose modules and their extensions with each other.
- Rats! grammars build on parsing expression grammars (PEGs). While PEGs share many constructs with the familiar EBNF notation, a key difference is that they utilize ordered choices instead of the unordered choices used by context-free grammars (CFGs) and other parser generators, such as Yacc or ANTLR. As a result, Rats! grammars avoid ambiguities and support localized changes. Additional flexibility is offered through syntactic predicates, which match expressions but do not consume the input, thus providing unlimited lookahead, and through the integration of lexing with parsing, which greatly simplifies the addition of new tokens to a grammar. PEGs have the additional benefit that they are not only closed under composition (unlike the LR or LL grammars used by Yacc and ANTLR), but also intersection and complement (unlike CFGs in general).
- To eliminate the need for explicit semantic actions, Rats! can automatically generate abstract syntax trees. In particular, it supports productions that return no semantic values (such as those recognizing spaces or comments), string values (such as those recognizing literals or identifiers), and generic tree nodes (potentially all other productions).
- Since some computer-readable formats are inherently context-sensitive and cannot be expressed as PEGs (or CFGs), Rats! supports two techniques for managing parser context or state, thus providing a well-defined interface for extending parsers. First, Rats! provides parser actions to recognize expressions that depend on local context, i.e., expressions that depend on immediately preceding expressions within the same production. An example for such local context is an explicit length preceding as many instances of some expression. Second, Rats! supports a global state object to recognize expressions that depend on possibly global context. State modifications are performed within lightweight transactions, which preserve the basically functional nature of Rats!-generated parsers. An example for a global context is the symbol table used for disambiguating variable and typedef names when parsing C.
Enhancements:
- Release highlights are support for formatting-preserving source refactorings through parse trees, support for parsing and pretty printing Java 5, (an improved abstract syntax tree for Java, and improved support for type checking C and Java ASTs.
<<less
Download (0.83MB)
Added: 2007-07-19 License: LGPL (GNU Lesser General Public License) Price:
830 downloads
jCIFS 1.2.10

jCIFS 1.2.10


jCIFS is the Java CIFS Client Library. more>>
jCIFS is the Java CIFS Client Library.
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java. CIFS is the standard file sharing protocol on the Microsoft Windows platform (e.g. Map Network Drive ...). This client is used extensively in production on large Intranets.
Enhancements:
- This release adds long Unicode share name enumeration and MSRPC support, and includes numerous fixes for bugs reported over the past year.
<<less
Download (0.30MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1078 downloads
Hpodder 1.0.0

Hpodder 1.0.0


Hpodder is a tool to scan and download podcasts. more>>
Hpodder is a tool to scan and download podcasts. Such tools are often called podcatchers.
Hpodder is a command-line tool for Linux. The project has quite a few features. A few highlights are that it is easy to learn and use, has automatic discovery of feed metadata, and can import iPodder settings.
Enhancements:
- This is the first production release.
- Feeds or episodes that repeatedly return errors are now automatically pruned.
- Cleaning of download areas was improved.
- Bugs were fixed.
<<less
Download (0.19MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
501 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5