Main > Free Download Search >

Free matter software for linux

matter

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 223
Grey Matter 1.7.3

Grey Matter 1.7.3


Grey Matter is a CGI-based logging application suitable for a variety of purposes, mainly blogging. more>>
Grey Matter is a CGI-based logging application suitable for a variety of purposes, mainly blogging. The project doesnt require a backend database and features a very flexible template system, as well as a karma and comment system.
Enhancements:
- Continuing code refactoring, with small admin UI enhancements such as paging on very long screens.
- Contains security enhancements and bugfixes as well.
<<less
Download (0.26MB)
Added: 2007-07-06 License: Free for non-commercial use Price:
840 downloads
Marauder-ah 4

Marauder-ah 4


Marauder-ah is a 2d space fighting game. more>>
Marauder-ah project is a 2d space fighting game.
Marauder-ah is a set of improvements over "marauder", originally written by Shawn Hargreaves in 1994.
You control a spaceship with a basic weapon, and your purpose is to kill as many people as you can.
Earning money (using piracy or trade) enables you to upgrade your ship and buy deadly weapons.
Game Rules:
Many years from now, in a distant corner of the galaxy, blah blah.
Ok. The rules are simple. Earn as much money as you can, and dont get shot.
When you start the game, you will see a little spaceship in the middle of the screen. That is you. Use the left and right arrow keys to turn, and the up arrow to fire your thrusters. Once you start moving it is not easy to stop. You will eventually coast to a halt, but if you are in a hurry you will have to turn round and fire your thrusters in the opposite direction.
If you fly around a bit, you will probably come across a planet or another hip (HINT: you can see all the planets and ships on the radar display at the top right of the screen).
There are two things to remember about planets. One is that if you fly into
them you get hurt. The other is that if you fly up close to one and then
press ENTER, you go to the shipyard.
Enhancements:
- Corrected code to compile with allegro 4.1.15 and gcc 3
- Added rest(0) to game loops to drop CPU
- Added some information to the top left of the screen
- Can repair if less than 10% damage
- Removed most of joystick support-related calls
- Removed play midi calls (BUGFIX !)
- Changed keybindings, defined in keybinds.h
- Increased bullet life (48 > 75)
- Increased treasure life (100->5000)
- Speed variation
- Laser, proton and matter can be used together
- Config file for keybindings using Zlog code
- Removed VC++-related stuff in the makefile, added mingw32
- Added commandline options parsing using Zlog code
- Added quiet option, hardconfig option, gfxmode and askgfx options
- Added mouse support (more comfortable for askgfx)
- Removed midi files from marauder.dat as theyre not used anymore
- Changed proton and matter cannon sprites so that theyre visible when used together
- Added configure script from Zlog (detects, downloads builds and installs allegro 4.1.15)
- Enemies now upgrade their weapons when possible
- Player can sell his stuff (weapons and so)
- Ships are drawn randomly at each different execution of the program (just added a rand() call)
- Changed weapon price
<<less
Download (0.24MB)
Added: 2006-12-10 License: MIT/X Consortium License Price:
1049 downloads
mod_filter 1.4.1

mod_filter 1.4.1


mod_filter allows you to filter output from other modules inside of Apache. more>>
mod_filter allows you to filter output from other modules inside of Apache. This allows you to implement filters (think Swedish Chef, jive, etc.).

You can also use it to retailer output for your locale. This works with HTML documents, mod_perl, PHP, JServ, CGIs, and for that matter just about any sort of custom handler you might have.
<<less
Download (0.010MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1523 downloads
rshaper 2.01

rshaper 2.01


rshaper is a Linux kernel module that limits the incoming bandwidth for packets aimed at different hosts. more>>
rshaper is a Linux kernel module that limits the incoming bandwidth for packets aimed at different hosts.

While the former issue can be addressed with the conventional shaper driver, the latter cant be easily addressed by the standard shaper. As a matter of facts, I have not been able to use the shaper to address the former situation, either; this because effective filtering can only be achieved through source-routing, but when I had to deal with this problem, the shaper only existed for Linux-2.1 while my production setup was constrained to be 2.0. Moreover, with netfilter and rshaper the outgoing traffic can be shaped

While running rshaper with 2.0 and 2.2 requires patching the network driver, the 2.4 "netfilter" feature helps rshaper by avoiding the need to patch the netword driver.
<<less
Download (0.023MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1214 downloads
XML::XMLWriter 0.1

XML::XMLWriter 0.1


XML::XMLWriter is a Perl module for creating a XML document object oriented with on the fly validating towards the given DTD. more>>
XML::XMLWriter is a Perl module for creating a XML document object oriented with on the fly validating towards the given DTD.

Example Code

#!/usr/bin/perl

use XML::XMLWriter;

my @data=([Name, Adress, Email, Sex],
[Herbert, BeerAvenue 45, herbert@names.org, Male],
[Anelise, SchmidtStreet 21, foo@bar.com, Female],
[XYZ, ZYX, ZY, XZ],
[etc...]);

my $doc = new XML::XMLWriter(system => http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd,
public => -//W3C//DTD XHTML 1.0 Transitional//EN);

my $html = $doc->createRoot;
$html->head->title->_pcdata(A Table);
my $body = $html->body;
$body->h1->_pcdata(Here is a table!);
my $table = $body->table({align => center, cellspacing => 1, cellpadding => 2, border => 1});
for(my $i=0; $itr;
foreach $_ (@{$data[$i]}) {
$i==0 ? $tr->th->_pcdata($_) : $tr->td->_pcdata($_);
}
}
$body->b->_pcdata("thats it!");
$doc->print();

XMLWriter is a Perl 5 object class, its purpose is to make writing XML documents easier, cleaner, safer and standard conform. Its easier because of the object oriented way XML documents are written with XMLWriter. Its cleaner because of the simple but logical API and its safe and standard conform because of the automatically done checking against the the DTD.

But still: it might be a matter of taste whether one finds XMLWriter usefull or not and it probably has some bugs (i would appreciate a lot if you report them to me), many usefull features are missing, not implemented or not even thought of and perhaps the API with all its simpleness might be confusing though. So please tell me your opinion and tell me the way how you would make XMLWriter better. Its not so easy to develop a good API for this matter.

XMLWriter contains 3 packages: XMLWriter.pm which gives you the document object, Element.pm which provides the element/tag objects and PCData.pm which represents the parsed character data the document contains. Therell probably come more objects in feature releases. The most interesting class is Element.pm. It provides some methods you can call on every document element, but besides those methods it uses the AUTOLOAD feature of perl to expect every not known method name to be the name of a tag that should be added to the list of child tags of the element the method is called on. So calling $html->head will simply add a new element (the head element) to the list of child tags of the html element. The head object is returned. Have a look at the examples for better understanding. You should also read the POD of Element.pm and PCdata.pm.

<<less
Download (0.007MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1131 downloads
Flate library 1.4.3

Flate library 1.4.3


Flate library is a template library used to deal with html code in CGI applications. more>>
Flate library is a template library used to deal with html code in CGI applications. The library includes C and Perl support. All html code is put in an external file (the template) and printed using the library functions: variables, zones (parts to be displayed or not) and tables (parts to be displayed 0 to n times).
Using this method you dont need to modify/recompile your application when modifying html code, printing order doesnt matter in your CGI code, and your CGI code is much cleaner.
Enhancements:
- can now include external files with #INCLUDEFILE /path/to/file.html
<<less
Download (0.044MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1110 downloads
CMS RSS Grabber 1.1

CMS RSS Grabber 1.1


CMS RSS Grabber is a system that grabs RSS feeds and fills the content of a CMS system. more>>
CMS RSS Grabber is a system that grabs RSS feeds and fills the content of a CMS system. In other words, CMS content syndication through RSS
It is built in such a flexible way that it doesnt matter which CMS system it connects to. Settings inside the script let you define how you access the database.
Enhancements:
- An option to strip the http:// from the URL that is being exported to CMS.
- Usage is [$url=nohttp$].
- A CMS authors query is added to CMS Settings.
- Selection of author that adds content can be inserted with the [$authorid$] variable.
- Misc. variables for dates and time are added.
- An installation script is added for easy install.
- Settings for WordPress CMS are added.
- The ImportCMS() function didnt include the prefix to the feeddata table, imports to Joomla gave double texts in articles and the URLs had double http:// in them, and CMS update error messages were shown before logging into the system.
- These issues have been fixed.
<<less
Download (0.10MB)
Added: 2006-09-06 License: GPL (GNU General Public License) Price:
664 downloads
wxDialer 0.2.1

wxDialer 0.2.1


wxDialer allows you to make and recieve phone calls on your modem. more>>
wxDialer is a simple and easy to use dialer program which allowes to make and receive calls on your modem. This program is based on win9x dialer.exe application.
A microphone is required, and it is suggested that you also have
headphones instead of using your speakers to prevent any nasty feedback. A
telephone headset, naturally, is best for this.
This is program is not designed for voice-over-IP (VoIP) or to dial to ISDN
modems. It dials out using your every day dialup modem, and makes your
computer one big handset.
To run wxDialer, its simply a case of using the appropiate command
(ie: python /home/aaron/python/wxDialer/wxDialer.py) without any arguments. It
doesnt matter if you specify arguments, they are ignored (for now ;)
wxDialer stores configuration information in the dir $HOME/.wxDialer - if it
doesnt exist, it is created along with the config file containing default
values.
Enhancements:
- Fixed a bug where the modem may fail to initialize properly, causing it not to dial out.
<<less
Download (0.008MB)
Added: 2006-09-14 License: GPL (GNU General Public License) Price:
1139 downloads
KeyCluster 3.51

KeyCluster 3.51


KeyCluster is a high availability (HA) system for mission critical applications running on Solaris (Sparc and x86), Linux, AIX. more>>
KeyCluster is a high availability (HA) system for mission critical applications running on Solaris (Sparc and x86), Linux, and AIX.
The project guarantees service availability and data access, switching services between machines in case of software or hardware failures in a matter of seconds.
Enhancements:
- The name to was changed KeyCluster and almost all of it was rewritten.
- Built-in support for DRBD and a KeySharing kit based on a shared USB SecureKey to store services status were added.
<<less
Download (MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
571 downloads
Math::GMPz 0.21

Math::GMPz 0.21


Math::GMPz is a Perl interface to the GMP librarys integer (mpz) functions. more>>
Math::GMPz is a Perl interface to the GMP librarys integer (mpz) functions.

A bignum module utilising the Gnu MP (GMP) library. Basically this module simply wraps nearly all of the integer functions provided by that library. The documentation below extensively plagiarises the documentation at http://swox.com/gmp/manual.

See the Math::GMPz test suite for examples of usage.

SYNOPSIS

use Math::GMPz qw(:mpz :primes :supp);

my $string = fa9eeeeeeeeeeeeea1234dcbaef1;
my $base = 16;

# Create the Math::GMPz object
my $bn1 = Rmpz_init_set_str($string, $base);

# Create another Math::GMPz object that holds
# an initial value of zero, but has enough
# memory allocated to store a 131-bit number.
# If 131 bits turns out to be insufficient, it
# doesnt matter - additional memory is allocated
# automatically to Math::GMPz objects as needed
# by the GMP library.
my $bn2 = Rmpz_init2(131);

# Create another Math::GMPz object initialised to 0.
my $bn3 = Rmpz_init();

# or use the new() function:
my $bn4 = Math::GMPz->new(12345);

# Perform some operations ... see FUNCTIONS below.

.
.

# print out the value held by $bn1 (in octal):
print Rmpz_get_str($bn1, 8), "n";

# print out the value held by $bn1 (in decimal):
print Rmpz_get_str($bn1, 10);

# print out the value held by $bn1 (in base 29)
# using the (alternative) Rmpz_out_str()
# function. (This function doesnt print a newline.)
Rmpz_out_str($bn1, 29);

<<less
Download (0.048MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
JumpBox vTiger CRM 1.0

JumpBox vTiger CRM 1.0


JumpBox vTiger CRM is a JumpBox virtual appliance with a pre-configured installation of the vTiger CRM system. more>>
JumpBox vTiger CRM project is a JumpBox virtual appliance with a pre-configured installation of the vTiger CRM system.

Once upon a time, in the raw and exciting days when automobile technology was in its infancy, taking a road trip meant bringing a mechanic along to fix the car every time it broke down. At JumpBox we look at the current state of IT systems and see great similarity with the early automobile.

Today, if you want to deploy and run a server based application you need a mechanic to come along to keep it running. With the automobile, as time passed, the technology improved, cars became vastly more reliable and many more people were able to take to the road.

With JumpBox we’re looking to do the same for server based software. We simplify what has traditionally been complex and deliver server based Open Source applications to an audience that otherwise would be put off by the technical burdens of the old way of doing things.

An integrated software stack in a virtual appliance

A JumpBox bundles the operating system, application and all application dependancies into a single installable module that’s easily deployed using virtualization software from VMWare, Parallels or Xen

Easy to Install

A JumpBox allows you to install a complex server based application without having to know anything about Linux, databases or the command line. You just download, extract the archive and open the application with your virtualization software. Further setup and configuration is handled through a simple web interface.

Simple to manage

The JumpBox platform is pre-configured, tuned and secured to minimize the management needs of the application.

Runs anywhere

Mac OS X, Linux, Windows it doesn’t matter. Thanks to the use of virtualization, JumpBox applications run easily on all the most popular operating systems.

Painless to upgrade

With a JumpBox and the JumpBox Assurance program (launching Q2 2007), management of the system is simple and efficient. Updates to the entire software stack are handled automatically by the platform with minimal user interaction.

Quick to move

With a JumpBox all the application code, data and the runtime are bundled together into a single directory that can easily be moved between systems or even across platforms. This allows you to start using an application by just running it on your desktop. Then when you’re ready you can open it up to the rest of the network and either continue running it on your desktop or easily move it to the server at any time. It doesn’t even matter if the server is running a different operating system, with a JumpBox everything is self contained.

<<less
Download (138.9MB)
Added: 2007-07-25 License: Free To Use But Restricted Price:
875 downloads
HTML::TableExtract 2.07

HTML::TableExtract 2.07


HTML::TableExtract is a Perl module that simplifies the extraction of information from tables within HTML documents. more>>
HTML::TableExtract is a Perl module that simplifies the extraction of information from tables within HTML documents.
Tables, no matter how nested or clustered, can be targeted symbolically with column headers or by more specific depth and count information.
Each table is labeled in the first row with coordinates in terms of depth and count, which both start at 0. Some of the tables have headers in the second row; although in this example these header cells are in fact < th > tags, header cells can be either < th > or < td >. The remaining cells in the table indicate row and column information from that cell, along with the table coordinates: depth,count:row,column. Rows and columns begin at 0 as well, so the table label and headers, if present, will affect these cell coordinates.
In the illustrations of what is extracted from these tables, content in italics is notational in nature; it was not actually extracted from the tables. In particular, whenever headers are used for extraction, the order in which the headers were provided is noted by listing the headers, but the header row is not actually extracted from the target table.
Enhancements:
- A subtable slicing bug and an hrow() attachment bug were fixed.
- Tests were added.
<<less
Download (0.023MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
1334 downloads
SpanishTrans 1.1

SpanishTrans 1.1


SpanishTrans provides a a very simple, complete, fast and clean dictionary, which allows you to translate English to Spanish. more>>
SpanishTrans provides a a very simple, complete, fast and clean dictionary, which allows you to translate English to Spanish.

This is a very simple, complete, fast and clean dictionary, which allows you to highlight an English word in the page that youre reading and get immediately the Spanish translation.

No matter if the selected word is a plural, conjugated verb, etc., the translator realizes about the right word showing you its meaning.

<<less
Download (0.003MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
939 downloads
gwavmerger 3.1.0

gwavmerger 3.1.0


gwavmerger project is an interactive memory training tool. more>>
gwavmerger project is an interactive memory training tool.
It is designed to assist with learning foreign languages. It helps you to memorize long passages of text.
When you are studying a foreign language, you are often assigned to learn various topics (or text passages) by heart.
Memorizing 40 or more sentences in a foreign language is not an easy task to do no matter what your level of expertise is. gwavmerger will assist you in doing just that - learning by heart.
Enhancements:
- Add playback support for ogg/mp3 files (bug #978995)!
- Save/restore main window position on the desktop.
- Major rework of MergeDialog: all-in-one coherent progress bars (bug #978997).
- Visual cursor jumps to the next cell after the soundbite has been played. The color is configurable via cursor_color configuration variable.
- Add sound playback progress bar (nice!)
- Split on-line help into a separate gwavmerger-manual package.
- Fix the detachable control toolbar (used to shrink to a button).
- Add keyboard navigation (bugs #979002,979003).
- Make application icon transparent (bug #979005).
- Obsolete FileOpen dialog.
- Add history of the last path visited for File dialogs.
- Fix core dump on exit.
- Fix list scrolling.
- Port to Gtkmm-2.4.
<<less
Download (0.37MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1088 downloads
DTI-Query 1.1 Beta

DTI-Query 1.1 Beta


DTI-Query allows neuroscientists to place and interactively manipulate box-shaped regions... more>>
DTI stands for Diffusion Tensor Imaging and is a magnetic resonance imaging method that can be used to measure local information about the structure of white matter pathways within the human brain. Combining DTI data with the computational methods of MR tractography, neuroscientists can estimate the locations and sizes of nerve bundles (white matter pathways) that course through the human brain. DTI-Query allows neuroscientists to place and interactively manipulate box-shaped regions (or volumes of interest) to selectively display pathways that pass through specc anatomical areas.
Enhancements:
- Improved support for tensor data formats. (Now supports 5D tensor files, and arbitrary ordering of tensor indices.) Has been tested with tensor image files output by the AFNI tools: http://afni.nimh.nih.gov/sscc/dglen/DTIQuery
- Support for Mac OS X (Carbon)
- Binaries released for Windows, Linux (32- and 64-bit), and MacOS X (PPC and Intel)
- Added choice of integration method (Eulers method, Runge Kutta 2nd order, Runge Kutta 4th order) for STT tracking.
- Improved support for reading NIFTI background images (correctly handles q-form/s-form matrices).
- Can now save visible pathways (as a binary format, or as a NIFTI mask image).
- Many minor GUI enhancements and bug-fixes.
<<less
Download (MB)
Added: 2007-06-26 License: Freely Distributable Price:
850 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5