Main > Free Download Search >

Free mainly minis software for linux

mainly minis

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 589
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
Mailvisa 1.0.0

Mailvisa 1.0.0


Mailvisa is a spam filter along the lines of Paul Grahams A Plan for Spam. more>>
mailvisa is a bayesian spam filter, inspired by Paul Grahams A Plan For Spam. It is mainly intended for my own expirimentation, but provided here for those who are interested.
It is competitive with other bayesian filters in terms of accuracy and speed. The system is written in Ruby.
You can use, modify, and distribute mailvisa under the terms of the MIT License.
Enhancements:
- A man page has been added.
<<less
Download (0.009MB)
Added: 2005-10-24 License: MIT/X Consortium License Price:
1460 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
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
OpenClinic 0.7

OpenClinic 0.7


OpenClinic project is a easy to use, open source, medical records system. more>>
OpenClinic project is a easy to use, open source, medical records system.
It has been mainly developed for private clinics, surgeries, and private doctors.
It is platform independent and has a multi-language architecture.
Main features:
- Environment: Web Environment
- Intended Audience: Education, Healthcare industry
- License: GNU General Public License (GPL)
- Natural Language: English, Spanish, Bulgarian
- Operating System: OS Independent
- Programming Language: PHP
- Topic: Dynamic Content
<<less
Download (0.30MB)
Added: 2006-10-07 License: GPL (GNU General Public License) Price:
1121 downloads
ivykis 0.7

ivykis 0.7


ivykis is a library for asynchronous I/O readiness notification. more>>
ivykis is a library for asynchronous I/O readiness notification.
ivykis library is a thin, portable wrapper around OS-provided mechanisms such as /dev/epoll, /dev/poll, kqueue(2), poll(2), POSIX realtime signals, select(2), and epoll_create(2).
ivykis was mainly designed for building high-performance network servers, but can be used as building block for any kind of event-driven application that uses poll(2)able file descriptors as its inputs.
Enhancements:
- use $(MAKE) in Makefile. (gorny at netric dot org)
- include sys/types.h before sys/{select,socket}.h. (gorny at netric dot org)
- support sys_epoll on non-x86 linux platforms.
<<less
Download (0.030MB)
Added: 2006-03-30 License: LGPL (GNU Lesser General Public License) Price:
1303 downloads
Raine 0.43.4

Raine 0.43.4


Raine is a M68000 and M68020 arcade game emulator. more>>
Raine is a M68000 and M68020 arcade game emulator.

Raine is an emulator, it emulates some M68000 and M68020 arcade games and is mainly focused on Taito and Jaleco games hardware.

It started as an experiment with the Rainbow Islands romset, dumped by Aracorn/Romlist. Raine can emulate many nice games now, and new games (previously unemulated) are appearing weekly.

Sound is also getting better, mainly thanks to the work of Hiromitsu Shioya

<<less
Download (1.7MB)
Added: 2006-09-10 License: Freeware Price:
1172 downloads
XML::Mini::Element 1.2.8

XML::Mini::Element 1.2.8


XML::Mini::Element is a Perl implementation of the XML::Mini Element API. more>>
XML::Mini::Element is a Perl implementation of the XML::Mini Element API.

SYNOPSIS

use XML::Mini::Document;

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

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

# Create an tag
my $xmlHeader = $xmlElement->header(xml);

# add the version to get<<less
Download (0.034MB)
Added: 2007-03-08 License: Perl Artistic License Price:
961 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
yourminis.com HUD 1.0.1.2

yourminis.com HUD 1.0.1.2


yourminis.com is a personalized dashboard of minis that let you perform specific tasks. more>>
yourminis.com is a Firefox extension that offers a personalized dashboard of minis (mini applications, also known as widgets) that let you perform specific tasks, and get information and features from all over the web in one place.

Privacy Policy: http://blog.yourminis.com/privacy_policy/index.html. Terms of Service: http://blog.yourminis.com/terms_of_service/index.html

<<less
Download (0.024MB)
Added: 2007-05-08 License: Perl Artistic License Price:
955 downloads
Monkey Boards 0.3.8

Monkey Boards 0.3.8


Monkey Boards is a small, fast, and efficient message board systems to enable smaller Web sites to build online communities. more>>
Monkey Boards is a small, fast, and efficient message board systems to enable smaller Web sites to build virtual online communities where users post and reply to messages.

Compared with other projects, this defining purpose Monkey Boards much more clearer and to-the-point.

The project is different from other similar solutions mainly because it uses an SQLite database, whereas the majority currently require a MySQL server to be running somewhere. It will output clean and valid XHTML pages with external CSS stylesheets.

<<less
Download (0.065MB)
Added: 2006-12-03 License: GPL (GNU General Public License) Price:
1056 downloads
KateBuild 0.4

KateBuild 0.4


KateBuild is mainly a modification of the make plugin in kdeaddons. more>>
KateBuild is mainly a modification of the make plugin in kdeaddons. The main features of this plugin:
-Set the working directory for make
-Specify the make command
-Chose an extra target
-Specify a Quick compile command for the current file.
-Run the make/make target/quick compile.
-The parsing of the make output is more complete then the make plugin.
When run, the output of make and the compiler (tested with gcc) is parsed an a list of errors/warnings is generated. When a list item is chosen, the file containing the error is opened and the cursor is set to the line of the error/warning.
Enhancements:
- fix crash when trying to run two builds at once.
- add a break command to cancel a running build.
<<less
Download (0.56MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
856 downloads
Physics-Live CD Mini 0.1.2

Physics-Live CD Mini 0.1.2


Physics-Live CD is a livecd mainly for physical simulations. more>>
Physics-Live CD is a livecd mainly for physical simulations. The livecd is based on Slax livecd . It contains many physical simulations created by using c, gtk and glade. The physical simulations are taken from my research and from the internet.
I hope this livecd will be useful for learning and teaching physics and research in physics.
Enhancements:
- I am glad to announce the availability of a new minimum version of physics-livecd (physics-livecd-mini-0.1.2.iso). This livecd contains only physical simulation programs and some essential programs such as firefox and gimp. I have changed the window manager from xfce to icewm.
- I have also created a general simulation program called emwave2d.
<<less
Download (116.7MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1020 downloads
GNOME Mastermind 0.3

GNOME Mastermind 0.3


GNOME Mastermind is a Mastermind clone for GNOME Desktop. more>>
GNOME Mastermind is a Mastermind clone for GNOME Desktop.

GNOME Mastermind is a simple mastermind-like game that ive written mainly for fun and with learning purposes in spare time. Now it became quite stable and i decided to distribute it. Try it and give me some feedback.

<<less
Download (0.54MB)
Added: 2007-05-31 License: GPL (GNU General Public License) Price:
877 downloads
ArahPaint4 4.0k

ArahPaint4 4.0k


ArahPaint4 is a textile-oriented paint program, mainly for jacquard. more>>
ArahPaint4 is a textile-oriented paint program, mainly for jacquard. It is a simple paint program for raster palette images.
It has good tools for drawing images in repetition, support for handling palette images (color reduction, substitution, protected, transparent colors), contour tools, layer support, unlimited undo/redo, support for drawing in aspect ratio (pixels need not be square), a two level grid, and a coordinates display.
The project is simple, stable, fast, and works well on large images (>8000x8000).
Main features:
- it has good tools for working with reduced color images (palette)
- for color reduction
- for drawing in repeat
- for drawing in aspect ratio different than 1:1, as this is necessary for weaving
- works well with large images (8000x8000 and more)
- incorporates a nice image browser
- has unlimited undo/redo
- has keyboard shortcuts equal to Photoshop whenever possible
- has a couple of functions you will not find in any other program
- lacks thousands of functions some other programs have
<<less
Download (0.59MB)
Added: 2007-05-04 License: LGPL (GNU Lesser General Public License) Price:
544 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5