Main > Free Download Search >

Free 0.1 beta software for linux

0.1 beta

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3058
Accha 0.1 Beta

Accha 0.1 Beta


Accha is a program intended to help people learn the Hindi alphabet. more>>
Accha is a program intended to help people learn the Hindi alphabet (Devanagari). Accha is written in Java/Swing, and should run equally well on Windows, Mac OS X, and Linux computers.
Main features:
- Unicode display of Devanagari
- Audio of correct pronunciation
- Choose which letters to study
- Phonetic textual input (i.e. "sa" for ?)
- Display of previous right answer
Enhancements:
- This release updates Unicode functionality to work in the Windows operating system.
- Previously, it depended on Javas autodetection of the character set of the input file, which Linux and OS X did correctly, but Windows failed to do.
- It now specifically sets the character set to UTF-8 for Windows benefit.
<<less
Download (0.89MB)
Added: 2005-11-30 License: GPL (GNU General Public License) Price:
1423 downloads
Humax 0.1 Beta

Humax 0.1 Beta


Humax project is a framework for developing RIA Web 2.0 applications. more>>
Humax project is a framework for developing RIA Web 2.0 applications.
It provides a rich set of object-oriented client-side libraries which works seamlessly regardless of the server side technology used.
The web applications are today developed with rich interactive and quick responsible way. This was achieved by the usage of AJAX. Though, XmlHttpRequest is the only thing makes a web application as AJAX enabled, but there are numerous patterns used along with it.
In a straight forward manner, nothing but the usage of JavaScript. Previously, web applications used JavaScript only for client side validation and interactivity. In the AJAX world, JavaScript replaces high level languages in UI and UI Processing layers. Lot of frameworks available for providing interoperability between server side and client side in object oriented manner.
However, still the client side development more object orientation than what we currently use. This is not only the matter of object thinking. The client side development requires the features and facilities available in server side technology.
In addition to these, we require more for developing applications for Web 2.0 paradigm. Humax is one of the initiatives for providing the above specified requirements. Simply said, the scope for Humax framework is:
Complete object orientation and Interoperable Web 2.0 framework.
Framework with features as like in server side technology.
How To Use:
Step 1: Add Humax into your web project
Humax library is defined on "humax0.1.js" file. You can add this into your html pages header section by
< script type="text/javascript" src="humax.js" / >
Step 2: Define and Use Classes
You can either define the client side logic on separate JavaScript file or within the page itself. Humax recommend to use separate file. Some of the modern HTML/JavaScript editors supports code assistance which will improve your development productivity
Unofficially, Humax recommends to use Aptana IDE. It is a pure open source IDE for developing HTML/JavaScript. But the Code Assist Profiles one of the unique feature.
The following is a sample code declared on separate file
var HumaxSpace = {}
HumaxSpace.Point = function(x, y)
{
if(arguments.length == 0)
{
this._x = 0;
this._y = 0;
}else
{
this._x = x;
this._y = y;
}
}
HumaxSpace.Point.prototype =
{
_x : 0,
_y : 0,
getX : function(){return this._x;},
getY : function(){return this._y;},
setX : function(x) {this._x = x;},
setY : function(y){this._y = y;}
}
HumaxSpace.Point.equals = function(a, b)
{
if(a instanceof HumaxSpace.Point && b instanceof HumaxSpace.Point)
{
if(a.getX() == b.getX() &&
a.getY() == b.getY())
return true;
else
return false;
}
}
Humax.declareClass("HumaxSpace.Point", HumaxSpace.Point);
Step 3: Use the classes
You can use these classes to create instances on another JavaScript file or the html page as like
< script type="text/javascript" >
var point1 = new HumaxSpace.Point();
point1.setX(4);
point1.setY(3);
var point2 = new HumaxSpace.Point(6, 3);
if(HumaxSpace.Point.equals(point1, point2))
alert("Points are same");
< script >
Enhancements:
- This release enables you to design and develop complete object orientation client side script.
<<less
Download (MB)
Added: 2007-08-08 License: LGPL (GNU Lesser General Public License) Price:
815 downloads
gbrainy 0.1 Beta

gbrainy 0.1 Beta


gbrainy is a brain teaser game and trainer to have fun and to keep your brain trained. more>>
gbrainy is a brain teaser game and trainer to have fun and to keep your brain trained.

The application is written for GNOME using Mono, C# and Cairo.

gbrainy mission is to provide a platform for creating different kinds of brain-teasers and brain trainers games for GNOME.

Use cases:

Currently the following use cases are considered:

New user.A person that uses gbrainy to evaluate it and understand what can provide. Interested in see its different kinds of games in a short period of time.

Adult gamer.An adult that uses gbrainy just for fun.

Adult training.An adult that uses gbrainy to train her memory, arithmetical and logical capabilities.

Kid training.Her parents decided that she should use gbrainy to train her memory, arithmetical and logical capabilities.

The objective is to provide enough flexibility in terms of number of games and difficulty parametrization to make gbrainy use on these cases straight forward.

<<less
Download (0.26MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
794 downloads
KNewz 0.1 Beta 2

KNewz 0.1 Beta 2


KNewz project is a binary newsgroup client for KDE4. more>>
KNewz project is a binary newsgroup client for KDE4. I wrote it because there is no one client out there that does what I want it to. Planned features include automatic PAR2 checking (via kpart, whee), automatic unpacking of downloaded files, System tray support (trivial I know), DBUS support, automatic queue save and restore upon shutdown/startup. Feel free to request more.
Enhancements:
- Development has been on hold for the summer vacation :) KDE Beta 1 has just come out however, so I made the code compatible with it. I hadnt been developing it lately since the KDE API was constantly in flux, and I got sick of adding new features only to have my code not compiling with the next SVN revision because the API had been changed. However, the API has been frozen now so Ill be developing this actively now again.
- The good news is that I have been using this exclusively to download my binaries, and I have found and fixed lot of bugs. A few remain though, and will be fixed for the 0.1 release. Queue saving and editing features will be introduced in the 0.2 release, and the connection code will be rewritten.
<<less
Download (0.090MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
871 downloads
feedoocha 0.1 Beta

feedoocha 0.1 Beta


feedoocha is a RSS feed creator. more>>
feedoocha is a RSS feed creator.

In order to maintain my RSS Feed, Ive developed a new mono application named "feedoocha"; its just a RSS Feed generator written in C#, running in mono with the ability to import/export the XML Feed file from a remote FTP server. So far, Im using it to add new topic to my feed.

<<less
Download (0.028MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1160 downloads
Psycms 0.1 Beta 10

Psycms 0.1 Beta 10


Psycms is a truly objective content management system intended (but not only) for scientific audiences. more>> <<less
Download (1.0MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
974 downloads
BioCluster 0.1 Beta

BioCluster 0.1 Beta


BioCluster is a peer-to-peer clustering platform for Asterisk, the open source PBX. more>>
BioCluster is a peer-to-peer clustering platform for Asterisk, the open source PBX, which allows Asterisk to be used as a full carrier-grade telephony solution. This project is meant to be installed on several machines together with Asterisk, turning them into a VoIP cluster.

While the BioCluster peer-to-peer protocol was initially designed to cater to Asterisk-based clustering solutions, the BioCluster framework is capable of being extended to support various forms of normally unclustered devices or software packages.

<<less
Download (1.1MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
823 downloads
qphotosort 0.1 Beta

qphotosort 0.1 Beta


qphotosort is an application to help to organize photos. more>> <<less
Download (0.23MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
FileTrack 0.1 Beta 3

FileTrack 0.1 Beta 3


FileTrack is a Web-enabled communication log, keeping track of all your inbound and outbound documents. more>>
FileTrack is a Web-enabled communication log, keeping track of all your inbound and outbound documents. The project supports multiple logs, auto-archiving of older entries, and generates simple reports based on multiple criteria.

One or more log entries, contacts, or documents can be grouped together into an issue for easier monitoring.

<<less
Download (0.045MB)
Added: 2006-11-30 License: LGPL (GNU Lesser General Public License) Price:
1058 downloads
mysqlstress 0.1 beta

mysqlstress 0.1 beta


mysqlstress is a program to stress a MySQL server. more>>
mysqlstress is small but powerfull program, though. It allows administrator, with a lot of arguments, to stress an mysql server to see if performance is given.
Usage
Usage: mysqlstress [OPTIONS]
-h, --hostname Connect to host. (default: localhost)
-u, --username User to log in. (default: root)
-p, --password Password to log in. (default: none)
-d, --database Database You want to connect. (default: mysql)
-S, --socket Connet to unix socket (default: NULL)
-P, --port Port number to use for connection. (default: 3306)
-n, --number Number of SQL statements per connection (default: 5000)
-s, --statement SQL statement you want to exec during stress test. (default "SELECT * FROM user")
-t, --threads Number of threads You want (default: 5000)
-i, --info Show version of MySQL Server
-c, --close Close MySQL connections (default: no). See README!
-q, --quiet No output, just work (default: no)
-V, --version Output version information and exit.
-H, --help Output this message and exit.
all options are logical, the only one is the -c or --close.
If you really want to stress your mysql dont close mysql connections.
Enhancements:
- first major release
<<less
Download (0.067MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1656 downloads
PDFassassin 0.1 Beta

PDFassassin 0.1 Beta


PDFassassin is a PDF module for SpamAssassin. more>> <<less
Download (0.002MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
810 downloads
RivetTracker 0.1 Beta

RivetTracker 0.1 Beta


RivetTracker is a modified version of PHPBTTracker. more>>
RivetTracker is a modified version of PHPBTTracker. This program provides the same functionality as most other bittorrent trackers and uses MySQL as the database backend.

The project improves on PHPBTTracker by adding a more robust installer, a centralized administration page with authentication, and more detailed statistics on users connected to the tracker.

Note: this software is still in beta testing, please report any bugs or security holes immediately.

<<less
Download (0.043MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
869 downloads
AprendeClick 1.0.1 Beta

AprendeClick 1.0.1 Beta


AprendeClick is a Live CD that contains a collection of interactive and educational applications (most are games). more>>
AprendeClick is a Live CD that contains a collection of interactive and educational applications (most are games).
AprendeClick was created mainly for Spanish speakers.
Enhancements:
- This release improves application access and adds two documents to the desktop: the license and a FAQ list.
<<less
Download (285.5MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
823 downloads
Pinpin Content 0.1 Beta

Pinpin Content 0.1 Beta


Pinpin Content is a lightweight CMS. more>>
Pinpin Content is a lightweight CMS.
Pinpin Content providing Unix-like group/user managment, XHTML 1.1 strict rendering, wiki syntax, a node structure, CSS themes, templates, various element containers (text, forum, and news), multilgual elements (autodection and versioning), inclusion of elements inside elements (e.g. an introduction in 3 languages included in a English-only body, footer, etc), and image thumbnailing.
Main features:
- unix-like group/user managment
- XHTML 1.1 strict rendering
- wiki syntax
- node structure
- CSS themes
- templates
- various element containers (text, forum, news)
- multilgual elements (autodection and versioning)
- inclusion of elements inside elements (e.g an introduction in 3 languages included in a english-only body, footer, etc).
- image thumbnailing
<<less
Download (0.21MB)
Added: 2006-02-20 License: GPL (GNU General Public License) Price:
1343 downloads
Pantheios 1.0.1 Beta 31

Pantheios 1.0.1 Beta 31


Pantheios is an Open Source C/C++ Logging API library. more>>
Pantheios is an Open Source C/C++ Logging API library, offering an optimal combination of 100% type-safety, efficiency, genericity and extensibility. It is simple to use and extend, highly-portable (platform and compiler-independent) and, best of all, it upholds the C tradition of you only pay for what you use.
The project supports logging of message statements of arbitrary complexity, consisting of heterogenous types.
Pantheios supports filtering of log messages based on severity level including (but not limited to) the eight levels defined by the SysLog protocol.
Pantheios supports back-end output, individually and in combination, to stderr/stdout, SysLog (including a custom implementation of the SysLog protocol for Windows), Win32 debugger, Win32 event log, COM Error Object, or any custom back-end extension you care to write. Importantly, Pantheios is readily extended to use the existing transport mechanisms of feature-rich logging libraries such as ACE, log4cpp, log4cplus, log4cxx.
Pantheios does not contain any compiler-specific or platform-specific constructs. It supports UNIX (including Linux and Mac OS-X), and Windows, and should work with any operating system. It is known to be compatible with Borland (5.5.1+), Comeau (4.3.3+), Digital Mars (8.45+), GCC (3.2+), Intel (6+), Metrowerks (8+), Microsoft Visual C++ (5.0+), and should work with any reasonably modern C++ compiler.
Pantheios is completely free and includes source released under a BSD-style licence.
Pantheios was forked from a previous logging architecture, proprietary to Synesis Software, in 2005, and has been used in a number of commercial projects since that time. In one project it serves a middleware suite that handles 10s of millions of financial transactions per week, wherein it has an unmeasurably low impact on performance when logging (of a given severity level) is switched off. (Its also decidedly quick with logging switched on, of course ...).
Enhancements:
- A bug in the Pantheios Tracing API was fixed.
- An example for the Pantheios Tracing API was added.
- A variadic macro warning in GCC 3.x makefiles was suppressed.
<<less
Download (2.8MB)
Added: 2007-08-22 License: BSD License Price:
794 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5