Main > Free Download Search >

Free 7.2 mini software for linux

7.2 mini

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 220
Claros Mini 1.0

Claros Mini 1.0


Claros Mini is a multi-protocol (POP3/IMAP) Web mail client. more>>
Claros Mini is a multi-protocol (POP3/IMAP) Web mail client with a user interface that is specially designed for devices with small screens.

Claros Mini can parse HTML and extract text to reduce the size of messages. The installation process takes less than two minutes, and no database setup is needed.

Installation:

Claros Mini install instructions are very simple and straight-forward.

1. Drop mini.war into webapps directory at Tomcat
2. Start Tomcat
3. Edit the WEB-INF/config/config.xml file, follow the instructions.
4. Restart tomcat

Thats it. You can access the Claros Mini interface with your PDA/Mobile Phone
or any other Small Screen Device at :

http://your.domain.com:8080/mini/

If you want to test it before deploying to production, you can download
Opera Browser from http://www.opera.com and use the Shift + F11 shurtcut to
emulate the Small Screen Rendering functionallity.
<<less
Download (4.4MB)
Added: 2006-07-04 License: LGPL (GNU Lesser General Public License) Price:
1208 downloads
mini-lpd 0.4

mini-lpd 0.4


mini-lpd provides a small non-queueing LPD. more>>
mini-lpd provides a small non-queueing LPD.
mini-lpd is a non-queueing simple and small LPD implementation, which simply puts the incoming traffic to a local file. It has support for multiple queues, the maximum number can be changed.
Main features:
- has no queueing
- has not even a queue
- takes input on defined queues and writes it out into files
- ignores control files
- tries to follow RFC1179 as far as possible
- should be much smaller than lpr-ngs lpd
Enhancements:
- removed sigio, replaced with poll
<<less
Download (0.012MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
923 downloads
Mini-XML 2.3

Mini-XML 2.3


Mini-XML is a small XML parsing library that you can use to read XML and XML-like data files. more>>
Mini-XML is a small XML parsing library that you can use to read XML and XML-like data files in your application without requiring large non-standard libraries. The project only requires an ANSI C compatible compiler (GCC works, as do most vendors ANSI C compilers) and a make program.
Main features:
- Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and strings.
- Data is stored in a linked-list tree structure, preserving the XML data hierarchy.
- Supports arbitrary element names, attributes, and attribute values with no preset limits, just available memory.
- Supports integer, real, opaque ("cdata"), and text data types in "leaf" nodes.
- Functions for creating, indexing, and managing trees of data.
- "Find" and "walk" functions for easily locating and navigating trees of data.
Enhancements:
- This version adds a SAX API, more convenience functions, a user data pointer to the mxml_node_t structure, and improved HTML and new man page output from mxmldoc.
- This release also offers relaxed LGPL licensing that allows static linking.
<<less
Download (0.15MB)
Added: 2007-05-01 License: LGPL (GNU Lesser General Public License) Price:
908 downloads
Amazon Mini Shop 2.8

Amazon Mini Shop 2.8


Amazon Mini Shop allows you to search Amazon.com, .co.uk, .de, .fr, .ca or .co.jp from the sidebar. more>>
Amazon Mini Shop allows you to search Amazon.com, .co.uk, .de, .fr, .ca or .co.jp from the sidebar.
Main features:
- Search all Amazon sites from the sidebar
- Images with results (mouse over to enlarge)
- Add search as a RSS live bookmark
<<less
Download (0.009MB)
Added: 2007-04-28 License: MPL (Mozilla Public License) Price:
910 downloads
XML::Mini 1.2.8

XML::Mini 1.2.8


XML::Mini is a Perl implementation of the XML::Mini XML create/parse interface. more>>
XML::Mini is a Perl implementation of the XML::Mini XML create/parse interface.

SYNOPSIS

use XML::Mini::Document;

use Data::Dumper;


###### PARSING XML #######

# create a new object
my $xmlDoc = XML::Mini::Document->new();

# init the doc from an XML string
$xmlDoc->parse($XMLString);

# You may use the toHash() method to automatically
# convert the XML into a hash reference
my $xmlHash = $xmlDoc->toHash();

print Dumper($xmlHash);


# You can also manipulate the elements like directly, like this:

# Fetch the ROOT element for the document
# (an instance of XML::Mini::Element)
my $xmlRoot = $xmlDoc->getRoot();

# play with the element and its children
# ...
my $topLevelChildren = $xmlRoot->getAllChildren();

foreach my $childElement (@{$topLevelChildren})
{
# ...
}


###### CREATING XML #######

# Create a new document from scratch

my $newDoc = XML::Mini::Document->new();

# This can be done easily by using a hash:
my $h = {
spy => {
id => 007,
type => SuperSpy,
name => James Bond,
email => mi5@london.uk,
address => Wherever he is needed most,
},
};

$newDoc->fromHash($h);



# Or new XML can also be created by manipulating
#elements directly:

my $newDocRoot = $newDoc->getRoot();

# create the < ? xml ?> header
my $xmlHeader = $newDocRoot->header(xml);
# add the version
$xmlHeader->attribute(version, 1.0);

my $person = $newDocRoot->createChild(person);

my $name = $person->createChild(name);
$name->createChild(first)->text(John);
$name->createChild(last)->text(Doe);

my $eyes = $person->createChild(eyes);
$eyes->attribute(color, blue);
$eyes->attribute(number, 2);

# output the document
print $newDoc->toString();
This example would output :
< ?xml version="1.0"? >
< person>
< name>
< first>
John
< /first>
< last>
Doe
< /last>
< /name>
< eyes color="blue" number="2" />
< /person>

XML::Mini is a set of Perl classes that allow you to access XML data and create valid XML output with a tree-based hierarchy of elements. The MiniXML API has both Perl and PHP implementations.

It provides an easy, object-oriented interface for manipulating XML documents and their elements. It is currently being used to send requests and understand responses from remote servers in Perl or PHP applications. An XML::Mini based parser is now being tested within the RPC::XML framework.

XML::Mini does not require any external libraries or modules and is pure Perl. If available, XML::Mini will use the Text::Balanced module in order to escape limitations of the regex-only approach (eg "cross-nested" tag parsing).
The Mini.pm module includes a number of variables you may use to tweak XML::Minis behavior. These include:

$XML::Mini::AutoEscapeEntities - when greater than 0, the values set for nodes are automatically escaped, thus $element->text(4 is > 3) will set the contents of the appended node to 4 is > 3. Default setting is 1.

$XML::Mini::IgnoreWhitespaces - when greater than 0, extraneous whitespaces will be ignored (maily useful when parsing). Thus Hello There will be parsed as containing a text node with contents Hello There instead of Hello There . Default setting is 1.

$XML::Mini::CaseSensitive - when greater than 0, element names are treated as case sensitive. Thus, $element->getElement(subelement) and $element->getElement(SubElement) will be equivalent. Defaults to 0.

<<less
Download (0.034MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
Imieniny 1.2.1

Imieniny 1.2.1


Imieniny reads a list of names and the dates on which those saints are commemorated in Poland. more>>
Imieniny reads a list of names and the dates on which those saints are commemorated in Poland. The "name-day", i.e. the day on which a saint bearing a persons name is commemorated, is important in Poland, and is celebrated like a birthday.

The program, given a date, will display what people have their "name-days" on that day. Given a name, it will display when that name has its name-day(s). Since people in Poland like to send little "mini-poems", a selection of these is included.

<<less
Download (0.032MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1019 downloads
 
Other version of Imieniny
Imieniny 1.1.1 (Superkaramba)Since people in Poland like to send little "mini-poems", a selection of these is included
License:GPL (GNU General Public License)
Download (0.007MB)
1020 downloads
Added: 2007-01-09
X.Org 7.2

X.Org 7.2


The X.Org Foundation provides an open source implementation of the X Window System. more>>
The X.Org Foundation provides an open source implementation of the X Window System. The development work is being done as part of the freedesktop.org community.
<<less
Download (MB)
Added: 2007-02-06 License: MIT/X Consortium License Price:
998 downloads
Mini Tanques 0.9

Mini Tanques 0.9


Mini Tanques is a cction tank 2D game. more>>
Mini Tanques is a cction tank 2D game.
Action tank 2D game where you drive a little tank and you must kill all opponents in a single map level to pass to the next level. Versatile engine programmed in FPC (Free Pascal) using SDL.
Nice graphics, effects and sounds. Nice playability. You can edit your own level in a single text editor. Different tank models. Pick ups to power up weapons and enhance the play.
Two players in the same machine and future support for network play. Intelligent IA. Still under development but near to finish. With this 2D game engine I plan to make some more others (RPG, Adventure, etc).
Enhancements:
- Now a level editor is included (mteditor).
- New level design and purpose (all old levels already included anyway).
- No network system but all ready for that.
- Some menus changed for easy use.
- AI rewrited from scratch (more smart bot AI).
- Path search changed. Now the game search from /usr/games/minitanques and if not from the current directory.
- Now the configuration file is saved in $HOME directory (.minitanques.ini). You can play changing some rules in the configuration file.
- The map set the rules if it have that.
- New obstacle added (undestructible diamond). So the levels can have a invariable way.
- And some other little things updated...
<<less
Download (6.9MB)
Added: 2005-11-28 License: GPL (GNU General Public License) Price:
1425 downloads
mBox 0.7.2

mBox 0.7.2


mBox is an audio file manager. more>>
mBox is program intended to help you with organizing your music files.
Main features:
- ability to reencode mp3/ogg/wma to mp3/ogg
- contains utility convertor which converts whole directories to desired format. Bitrate, etc. is automatically adjusted depending on settings and source audio. See users-guide for further information
- supports reading/writing tags in MP3 ID3v1 and ID3v2, Ogg Vorbis
- supports reading WMA tags
- supports FreeDB, treates encoded files as if it was CD, so you can simply select your files and - if found in database - write tags to them. Nifty, isnt it? =)
- supports auto tagging - reads tag information from filename
- supports batch tags editing
- supports batch files renaming (can use tags)
- supports directory renaming (can use tags)
Enhancements:
- This version brings several small improvements in tag reading, file renaming and FreeDB searching.
<<less
Download (0.12MB)
Added: 2005-08-30 License: GPL (GNU General Public License) Price:
1521 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
Mini-Pentoo 2006.1

Mini-Pentoo 2006.1


Mini-Pentoo is a mini LiveCD distribution generated from Pentoo Linux. more>> <<less
Download (208MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1228 downloads
PgcEdit 7.2

PgcEdit 7.2


PgcEdit is a DVD IFO and Menu editor designed to allow the modification of the navigation commands and parameters of DVDs. more>>
PgcEdit is a DVD IFO and Menu editor designed to allow the modification of the navigation commands and parameters of an already authored DVD structure.
PgcEdit is also an excellent tool to learn how a DVD works, with his powerful Trace function.

Since v0.6.0, PgcEdit is also the first program able to burn a Double Layer DVD-Video on DL DVD+R or DL DVD-R, with an interactive interface (including a preview), to select the position of the layer break.

PgcEdit project is free and open source (GPL license).

<<less
Download (MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1227 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
x2vnc 1.7.2

x2vnc 1.7.2


x2vnc is a dual-screen hack for VNC. more>>
x2vnc will let you use two screens on two different computers as if they were connected to the same computer. Even if one of the computers runs Windows 95/98/NT and the other one runs X-windows. If they are both running Windows, you probably want to use Win2VNC instead.
Personally, I have two computers, both with linux installed, but I often have to run Windows 95 or Windows NT when working, and I just got tired of switching between the two keyboards. Therefore I wrote this program.
While running this program I can move the mouse pointer beyond the right edge of my X display, and then the pointer will appear on the screen on the other computer. If you have ever used x2x or a computer with two graphics cards, you know what I am talking about.
The program will open a small (one pixel wide) window on the edge of your screen. Moving the pointer into this window will trigger the program to take over your mouse and send mouse movements and keystrokes though the RFB protocol to a VNC server running on another machine. When the pointer is moved back towards the opposite edge on the other screen, the mouse is then released again.
The operation itself is almost identical to x2x, but most of the code was actually borrowed from the program vncviewer.
As the name x2vnc implies, x2vnc can only send events from an X-windows based display to any VNC server. VNC servers can run on Microsoft Windows 95/98/NT/2000/XP. x2vnc will not run without X-windows.
Please note that the normal VNC server for X windows does not control the mouse on the screen itself, but creates a virtual server in memory instead. If you wish to control an X11 display with x2vnc, you need to use x11vnc, but its probably easier to just use x2x instead.
Enhancements:
- A couple of major bugs in the DGA code were fixed.
<<less
Download (0.061MB)
Added: 2006-06-14 License: GPL (GNU General Public License) Price:
1228 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5