Main > Free Download Search >

Free simplified software for linux

simplified

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 557
Simplified Wrapper and Interface Generator 1.3.28

Simplified Wrapper and Interface Generator 1.3.28


Simplified Wrapper and Interface Generator is a software development tool that connects programs written in C and C++. more>> <<less
Download (3.5MB)
Added: 2006-02-13 License: BSD License Price:
768 downloads
simpleJ 1.1

simpleJ 1.1


simpleJ emulates a simplified computer on your PC. more>>
simpleJ emulates a simplified computer on your PC: a retro-style video game console that lets you understand how a computer works and write your own video game programs. The first microcomputers were quite simple.

They had a few kilobytes of memory and couldnt run large programs. Many didnt even have an operating system.

Yet they had something valuable: understanding everything about their hardware and software was easy. simpleJ aims to make this possible while running on modern PC hardware.

<<less
Download (7.0MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
553 downloads
Multiplication Puzzle 5.2

Multiplication Puzzle 5.2


Multiplication Puzzle is a simple math puzzle game written for GTK+ 2, inspired by Emacs multiplication game. more>>
Multiplication Puzzle project is a simple GTK+ 2 game that emulates the multiplication game found in Emacs.

Basically, a multiplication problem is shown with all digits replaced by letters. Your job is to guess which letter represents which number.

Translations are available for Afrikaans, Basque, Brazilian Portuguese, Chinese (simplified), French, German, Italian, Japanese, Kinyarwanda, Rhaeto-Romance, Romanian, Serbian, Turkish, and Vietnamese. If you are interested in helping to translate Multiplication Puzzle, please see the Translation Project, under the textual domain gmult.

<<less
Download (0.15MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1368 downloads
Samizdat 0.6.0

Samizdat 0.6.0


Samizdat is a generic RDF-based engine for building collaboration and open publishing Web sites. more>>
Samizdat is a generic RDF-based engine for building collaboration and open publishing Web sites.
It provides users with the means to cooperate and coordinate on all kinds of activities, including media activism, resource sharing, education and research, advocacy, and so on. The project intends to promote values of freedom, openness, equality, and cooperation.
Enhancements:
- This version incorporates two years worth of real-world deployment.
- Apart from ubiquitous message translations management and RSS syndication, many old tools were made more flexible and easier to use.
- The focus management interface is simplified, and the front page packs more information into a better layout and allows you to include static headers and footers.
- Even more changes are under the hood: multi-layer caching, gzip and ETag, audio and video uploads, BitTorrent links, HTML and CSS filtering, flexible access control, new moderation features, new languages and themes, simplified installation, and more.
<<less
Download (0.16MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
619 downloads
Simple dictionary application 1.04

Simple dictionary application 1.04


Simple dictionary application allows users to use any plain text dictionary. more>>
Simple dictionary application project allows users to use any plain text dictionary that is UTF-8 with one translation per line and words separated by tabulators.

Applications allow users to use free bilingual dictionaries offline. All dictionaries have to be UTF-8 files with one translation per line and words separated by tabulators. Hundreds of free bilingual dictionaries can be created and downloaded from the Universal dictionary system. Universal dictionary currently interconnects 33 languages (Afrikaans, Basque, Bulgarian, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Finnish, French, German, Greek, Hungarian, Icelandic, Indonesian, Italian, Japanese, Japanese Romaji, Latin, Lithuanian, Norwegian Bokmal, Polish, Portuguese, Romanian, Russian, Simplified Chinese, Slovak, Slovenian, Spanish, Swedish, Turkish)

<<less
Download (0.25MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1381 downloads
SELinux Policy Editor 2.1 Beta

SELinux Policy Editor 2.1 Beta


SELinux Policy Editor (seedit) is a tool to make SELinux policies easy to apply. more>>
SELinux Policy Editor (seedit) is a tool to make SELinux policies easy to apply. SELinux Policy Editor was originally developed by Hitachi Software.

SELinux Policy Editor is composed of Simplified Policy and tools. Simplified Policy is a policy described by Simplified Policy Description Language (SPDL) which hides the details of SELinux configurations by using name-based configration and reducing the number of permissions.

SELinux Policy Editor includes a GUI to generate SPDL so adminstrators do not have to remember syntax of the language. There are also command line tools in the package.

Following is example policy for Apache using SPDL.
domain httpd_t;
program /usr/sbin/httpd;
allow /var/www/** r,s;
allownet -protocol tcp -port 80 server;

As you see from the example type is not used. You can use file names and port numbers for configuration.

You can try SELinux Policy Editor on Fedora Core 5. It will not affect existing SELinux policies so it is possible to revert to the default SELinux easily.

<<less
Download (MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1020 downloads
DIME++ 0.2

DIME++ 0.2


DIME++ provides a small implementation of the DIME protocol for C++. more>>
DIME++ provides a small implementation of the DIME protocol for C++.

Direct Internet Message Encapsulation (DIME) is a lightweight, binary message format designed to encapsulate one or more application-defined payloads into a single message construct.

DIME is typically used for delivering binary SOAP packages, or multiplexing a streaming transport. DIME++ is a simple C++ implementation of a DIME generator and parser.

Direct Internet Message Encapsulation (DIME) is a Microsoft-proposed internet standard for the transfer of binary and other encapsulated data over SOAP.
According to the IETF web site, the standard has been withdrawn and never made RFC status. However, Microsoft currently does recommend DIME for transmitting files via Web services.

The first version was submitted to the IETF in November 2001; the last update was submitted in June 2002. By December 2003, DIME had lost out, in competition with Message Transmission Optimization Mechanism and SOAP with Attachments[1], and Microsoft now describes it as "superseded by the SOAP Message Transmission Optimization Mechanism (MTOM) specification"[2]

The standard was supposed to be a simplified version of MIME.

<<less
Download (0.11MB)
Added: 2007-04-13 License: Artistic License Price:
924 downloads
XML::Writer 0.601

XML::Writer 0.601


XML::Writer is a Perl extension for writing XML documents. more>>
XML::Writer is a Perl extension for writing XML documents.

SYNOPSIS

use XML::Writer;
use IO::File;

my $output = new IO::File(">output.xml");

my $writer = new XML::Writer(OUTPUT => $output);
$writer->startTag("greeting",
"class" => "simple");
$writer->characters("Hello, world!");
$writer->endTag("greeting");
$writer->end();
$output->close();

XML::Writer is a helper module for Perl programs that write an XML document. The module handles all escaping for attribute values and character data and constructs different types of markup, such as tags, comments, and processing instructions.

By default, the module performs several well-formedness checks to catch errors during output. This behaviour can be extremely useful during development and debugging, but it can be turned off for production-grade code.

The module can operate either in regular mode in or Namespace processing mode. In Namespace mode, the module will generate Namespace Declarations itself, and will perform additional checks on the output.

Additional support is available for a simplified data mode with no mixed content: newlines are automatically inserted around elements and elements can optionally be indented based as their nesting level.

<<less
Download (0.022MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1136 downloads
libdnet 1.11

libdnet 1.11


libdnet provides a simplified, portable interface to several low-level networking routines. more>>
libdnet provides a simplified, portable interface to several low-level networking routines.
Main features:
- network address manipulation
- kernel arp(4) cache and route(4) table lookup and manipulation
- network firewalling (IP filter, ipfw, ipchains, pf, PktFilter, ...)
- network interface lookup and manipulation
- IP tunnelling (BSD/Linux tun, Universal TUN/TAP device)
- raw IP packet and Ethernet frame transmission
Supported languages:
- C, C++
- Python
- Perl, Ruby (see below)
Supported platforms:
- BSD (OpenBSD, FreeBSD, NetBSD, BSD/OS)
- Linux (Redhat, Debian, Slackware, etc.)
- MacOS X
- Windows (NT/2000/XP)
- Solaris
- IRIX
- HP-UX
- Tru64
<<less
Download (0.43MB)
Added: 2006-03-03 License: GPL (GNU General Public License) Price:
1339 downloads
libStreamedXML 1.2.1

libStreamedXML 1.2.1


libStreamedXML is a parser for Streamed XML, a simplified subset of XML initially developed for networked embedded applications. more>>
libStreamedXML is a parser for Streamed XML, a simplified subset of XML initially developed for networked embedded applications.
Streamed XML was designed to be simpler and more robust than XML while still keeping the overall structure of such a document.
libStreamedXML library is a C++ parser providing an event-based interface (much like sax).
Enhancements:
- libCStreamedXML and a test program were added.
- libCStreamedXML is a smaller and simpler implementation of a Streamed XML parser written in C.
<<less
Download (0.031MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1155 downloads
Mozilla Firefox 3.0 Alpha 7

Mozilla Firefox 3.0 Alpha 7


Mozilla Firefox project is a redesign of Mozillas browser component. more>>
Mozilla Firefox project is a redesign of Mozillas browser component, written using the XUL user interface language and designed to be cross-platform.
Firefox browser is a fast, small and very easy to use browser that offers many advantages over other web browsers, such as the ability to block pop-up windows and the tabbed browsing.
Main features:
- comprehensive popup controls to keep unwanted advertising off your desktop;
- a tab browsing mode that lets you open several pages in a single window, allowing you to load links in the background without leaving the page youre on;
- integrated search (powered by Google);
- industry leading accessibility with Find As You Type - find links and page text by simply typing;
- simplified privacy controls that let you cover your tracks more effectively;
- a streamlined browser window that lets you see more of the page than any other browser while at the same time being more configurable;
- a large variety of free downloadable extensions and themes that add specific functionality and visual changes to the browser.
<<less
Download (8.6MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
5107 downloads
LiveSaver 0.3

LiveSaver 0.3


LiveSaver is a save-as-you-write mechanism for your browser written in Javascript. more>>
Ever lost an hour worth of writing an email due to a crashing browser? LiveSaver is a save-as-you-write mechanism for your browser written in Javascript.
It saves form input over browser and operation system crashes, power failures, and session timeouts. It is easy to add to any existing Web site. LiveSaver is particularly useful for blog software, Web mail systems, or any Web site that deals with user input.
Enhancements:
- A MediaWiki Extension was added that allows you to integrate LiveSaver in every MediaWiki installation very easily.
- Self-configuration was added to decrease installation issues.
- The API was simplified.
- Operability was tested with a suite of the latest browsers on Mac OS X and Windows.
<<less
Download (0.017MB)
Added: 2006-09-04 License: BSD License Price:
1146 downloads
KPlayer 0.6.3

KPlayer 0.6.3


KPlayer is a KDE media player based on MPlayer. more>>
KPlayer project is a KDE media player based on MPlayer. With KPlayer you can easily play a wide variety of video and audio files and streams using a rich and friendly interface that follows KDE standards.
KPlayer is available in Catalonian, Czech, Danish, English, Finnish, French, German, Hungarian, Italian, Polish, Portugese, Russian, Simplified Chinese, Spanish and Swedish languages.
Main features:
- video, audio and subtitle playback from file, URL, DVD, VCD, audio CD, TV, DVB, etc., as well as KDE I/O Slaves;
- volume, contrast, brightness, hue and saturation controls;
- zooming, full screen and fixed aspect options;
- status and progress display and seeking;
- playlist;
- message log;
- configuration dialog;
- file properties for setting file specific options.
<<less
Download (4.2MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
518 downloads
Kconfigure 2.1

Kconfigure 2.1


Kconfigure simplifies compiling and installing software by providing a graphical interface. more>>
Kconfigure simplifies compiling and installing software by providing a graphical interface.

Easy to use, click in konqueror the configure file and configure, make and install the sources in the gui with kconfigure.

<<less
Download (0.071MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1558 downloads
iriverter 0.16

iriverter 0.16


iriverter facilitate the conversion of almost any video format to one that is playable on various multimedia players. more>>
iriverter is a cross-platform frontend to mencoder designed to facilitate the conversion of almost any video format to one that is playable on various multimedia players. It can convert almost any video format to one that is playable on various multimedia players, like the iRiver H320, H340, PMP120, PMP140, U10, iAudio X5 and iPod Video.
Enhancements:
- Update clix / U10 profile
- Better defaults for X5
- Added Zen Vision:M profile (thanks Mat Sheehan)
- Added logging to diagnose problems easier (Help->Log Viewer)
- Simplified conversion code
- Fixed black and white wmv conversions
- Installer now optionally installs codecs like Real and Windows Media
- Support for iPod Video (not enabled yet)
<<less
Download (0.30MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
871 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5