1.0 beta 12
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4004
ASFS filesystem driver 1.0 Beta 12
ASFS filesystem driver is an Amiga Smart FileSystem driver for Linux. more>>
ASFS is a filesystem driver for the Linux kernel that adds support for the Amiga SmartFileSystem. ASFS filesystem driver supports both read and write, however, write support is in an early beta stage.
ASFS - Amiga Smart File System - Linux implementation
Version 1.0beta8 in "read-only mode" should be considered as the lasted stable version of ASFS driver.
It is available for Linux kernel version 2.6.x.
From version 1.0 there is also full write support. Use it with care. It is in EXPERIMETAL stage and COULD be DANGEROUS.
Remember! YOU USE THIS DRIVER AT YOUR OWN RISK. Read included docs for
more details.
Enhancements:
- The code was updated to match changes in the VFS of Linux kernel 2.6.19.
<<lessASFS - Amiga Smart File System - Linux implementation
Version 1.0beta8 in "read-only mode" should be considered as the lasted stable version of ASFS driver.
It is available for Linux kernel version 2.6.x.
From version 1.0 there is also full write support. Use it with care. It is in EXPERIMETAL stage and COULD be DANGEROUS.
Remember! YOU USE THIS DRIVER AT YOUR OWN RISK. Read included docs for
more details.
Enhancements:
- The code was updated to match changes in the VFS of Linux kernel 2.6.19.
Download (0.006MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1056 downloads
mplay 1.0 Beta 1
mplay is a console based frontend for MPlayer written in Perl. more>>
mplay is a console based frontend for MPlayer written in Perl. MPlayer video player plays most audio and video formats. Why use mplay?
Work on mplay was motivated by experience of other console based audio players. Although mplay is a front-end to MPlayer, it extends its functions in several significant ways.
Main features:
- keeps a browsable , sortable and searchable playlist
- provides an internal filebrowser to add files
- provides essential status information
- includes a progress bar
- remembers the position within the track last played before quitting
- shows ID3-info / tag and it is possible to edit ID3-tag
- gives user-friendly output through a colour scheme
- runs as single-instance (provides basic controlling from outside)
- provides basic mixer functions
- provides an own interactive shoutcast streambrowser
- provides interactive help (German/English) for control keys
<<lessWork on mplay was motivated by experience of other console based audio players. Although mplay is a front-end to MPlayer, it extends its functions in several significant ways.
Main features:
- keeps a browsable , sortable and searchable playlist
- provides an internal filebrowser to add files
- provides essential status information
- includes a progress bar
- remembers the position within the track last played before quitting
- shows ID3-info / tag and it is possible to edit ID3-tag
- gives user-friendly output through a colour scheme
- runs as single-instance (provides basic controlling from outside)
- provides basic mixer functions
- provides an own interactive shoutcast streambrowser
- provides interactive help (German/English) for control keys
Download (0.80MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1234 downloads
JaC64 1.0 Beta 1
JaC64 project is completely written in Java and can be run from a modern web browser like Firefox, InternetExplorer or Netscape. more>>
JaC64 project is completely written in Java and can be run from a modern web browser like Firefox, InternetExplorer or Netscape Navigator. jac64.com contains information about the emulator and JSIDPlay (a 100% Java sid player) as well as games and demos playable directly in your browser.
On jac64.com you can try it out with classical C64 games such as Arkanoid, Commando, and California games. Soon there will also be more documentation on JaC64 and how to use it on your own site!
One goal with JaC64 is to make it possible for Commodore C64 game and demo developers to show their old (and new) C64 games/demos on-line on the web. There will be some demos and games as a showcase of what JaC64 can do.
<<lessOn jac64.com you can try it out with classical C64 games such as Arkanoid, Commando, and California games. Soon there will also be more documentation on JaC64 and how to use it on your own site!
One goal with JaC64 is to make it possible for Commodore C64 game and demo developers to show their old (and new) C64 games/demos on-line on the web. There will be some demos and games as a showcase of what JaC64 can do.
Download (0.27MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1079 downloads
Mirro 1.0 Beta
Mirro is an application used to find the closest mirror to your connection. more>>
Mirro is an application used to find the closest mirror to your connection.
Mirro will find the closest mirror to your connection, given a file containing addresses. It pings every site extremely quickly, and sorts the reponses based on the number of hops and the round-trip time.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
<<lessMirro will find the closest mirror to your connection, given a file containing addresses. It pings every site extremely quickly, and sorts the reponses based on the number of hops and the round-trip time.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
Download (0.020MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
913 downloads
pTest 1.0 Beta
pTest framework is an Object Oriented PHP 5 testing framework. more>>
pTest framework is an Object Oriented PHP 5 testing framework. The project differs from other testing frameworks in that it doesnt suffer from a dogmatic following of JUnit.
A good feature of this framework is that it can be as easily used from the commandline as embedded and extended by your application. Tests are easy to write and dont require naming conventions or other weirdness.
A simple test
< ?php
class SimpleTest extends BaseTest {
public function setup() {
}
public function aIsB() {
$this->false( ( 1 == 2 ), "one is not equal to two" );
$this->false( ( a == b ), "a is not equal to b" );
}
public function knownFacts() {
$this->true( ( 1 + 1 == 2 ), one and one is two );
}
public function fatal() {
$this->true( new thisfatalerror(), division by zero );
}
public function tearDown() {
}
}
? >
The console output
SimpleTest:
aIsB
false( one is not equal to two ) = passed
false( a is not equal to b ) = passed
knownFacts
true( one and one is two ) = passed
fatal
errored
Output
====================================================
Fatal error: Class thisfatalerror not found in /usr/local/pTest/examples/SimpleTest.php on line 18
====================================================
4 total tests
3 passed
0 failed
0 skipped
1 errored
75.00% success
<<lessA good feature of this framework is that it can be as easily used from the commandline as embedded and extended by your application. Tests are easy to write and dont require naming conventions or other weirdness.
A simple test
< ?php
class SimpleTest extends BaseTest {
public function setup() {
}
public function aIsB() {
$this->false( ( 1 == 2 ), "one is not equal to two" );
$this->false( ( a == b ), "a is not equal to b" );
}
public function knownFacts() {
$this->true( ( 1 + 1 == 2 ), one and one is two );
}
public function fatal() {
$this->true( new thisfatalerror(), division by zero );
}
public function tearDown() {
}
}
? >
The console output
SimpleTest:
aIsB
false( one is not equal to two ) = passed
false( a is not equal to b ) = passed
knownFacts
true( one and one is two ) = passed
fatal
errored
Output
====================================================
Fatal error: Class thisfatalerror not found in /usr/local/pTest/examples/SimpleTest.php on line 18
====================================================
4 total tests
3 passed
0 failed
0 skipped
1 errored
75.00% success
Download (0.042MB)
Added: 2007-06-19 License: MPL (Mozilla Public License) Price:
857 downloads
Ishtar 1.0 Beta
Ishtar provides a network toolbox for C++ programs. more>>
Ishtar provides a network toolbox for C++ programs.
Ishtar is a set of three C++ libraries that provide useful classes for networked applications. It features basic serialization, a protocol for remote procedure call (RPC), network accessible variables, and hierarchical config files.
A client is also provided.
Ishtar is a set of three C++ libraries providing usefull classes for use with network:
- libishtarnet: The underlying structure, provides network classes and basic serialisation.
- libishtarservices: Built upon libishtarnet, implements a protocol for remote procedure call (RPC).
- libishtarsettings: Built upon libishtarservices, provides network accessible variables and hierarchical config files.
In addition to those libraries, Ishtar contains two programs:
- ishtarclients: Clients that use the RPC to access remote services and variables.
- ishtarproxy: Gateway that redirect queries to multiple servers. Usefull in the context of robotics.
Usage in robotics
In addition to its obvious use as a RPC mechanism and config file accessor, Ishtar can be used within a robot as a software bus to connect its sensors and actuators to its control program or external monitor.
<<lessIshtar is a set of three C++ libraries that provide useful classes for networked applications. It features basic serialization, a protocol for remote procedure call (RPC), network accessible variables, and hierarchical config files.
A client is also provided.
Ishtar is a set of three C++ libraries providing usefull classes for use with network:
- libishtarnet: The underlying structure, provides network classes and basic serialisation.
- libishtarservices: Built upon libishtarnet, implements a protocol for remote procedure call (RPC).
- libishtarsettings: Built upon libishtarservices, provides network accessible variables and hierarchical config files.
In addition to those libraries, Ishtar contains two programs:
- ishtarclients: Clients that use the RPC to access remote services and variables.
- ishtarproxy: Gateway that redirect queries to multiple servers. Usefull in the context of robotics.
Usage in robotics
In addition to its obvious use as a RPC mechanism and config file accessor, Ishtar can be used within a robot as a software bus to connect its sensors and actuators to its control program or external monitor.
Download (MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
919 downloads
Media-S 1.0 Beta 2
Media-S is an open-source development project that aims to create an open Digital Rights interface. more>>
Media-S project is an open-source development project that aims to create an open Digital Rights interface for the creation, playback, and management of multimedia files.
Because of its open nature, Ogg Vorbis will be the first format to be protected by this initiative.
<<lessBecause of its open nature, Ogg Vorbis will be the first format to be protected by this initiative.
Download (0.10MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1160 downloads
Garidio 1.0 Beta
Garidio is an application that allows users on a network to share the contents of their desktop clipboards with each other. more>>
Garidio is an application that allows users on a network to share the contents of their desktop clipboards with each other.
It has been successfully tested on Mac OS X (Tiger), Windows XP (SP2), and Linux (Slackware, SuSE, and Ubuntu), but it should work fine on any system with a working JVM for Java 1.5.
<<lessIt has been successfully tested on Mac OS X (Tiger), Windows XP (SP2), and Linux (Slackware, SuSE, and Ubuntu), but it should work fine on any system with a working JVM for Java 1.5.
Download (0.030MB)
Added: 2006-04-07 License: BSD License Price:
1296 downloads
PHP-STL 1.0 Beta
php-stl is a templating implementation similar to javas JSTL. more>>
php-stl project is a templating implementation similar to javas JSTL.
This is a tag-based template engine with configurable classes to handle various tags. The templates are written in XML, which differs from the JSTL, but provides clean output.
Note that php-stl does not provide its own template handling, but instead piggybacks on either PHPSavant or Smarty as a compiler. Note also that php-stl is designed for PHP 5, though a PHP 4 implementation wouldnt be difficult.
Support for smarty was a bolt-on after the fact, so the code isnt quite as clean as it should be, but thats why its a beta. Were happy to hear feedback to move this to a 1.0 stable release at php-stl ~at! redtreesystems.
<<lessThis is a tag-based template engine with configurable classes to handle various tags. The templates are written in XML, which differs from the JSTL, but provides clean output.
Note that php-stl does not provide its own template handling, but instead piggybacks on either PHPSavant or Smarty as a compiler. Note also that php-stl is designed for PHP 5, though a PHP 4 implementation wouldnt be difficult.
Support for smarty was a bolt-on after the fact, so the code isnt quite as clean as it should be, but thats why its a beta. Were happy to hear feedback to move this to a 1.0 stable release at php-stl ~at! redtreesystems.
Download (0.20MB)
Added: 2007-06-08 License: MPL (Mozilla Public License) Price:
870 downloads
Neitris 1.0 Beta
Neitris is a competitive, network multiplayer version of Tetris. more>>
Neitris is a competitive, network multiplayer version of Tetris. The game features lots of bonuses and powerups used by players against their "victims".
Only the best, fastest, and smartest player will stay alive in the end.
Game Instructions
So, we are ready to go on with the game. At this point, a new window with the title Neitris should have appeared, which reads "Press Start to Start Game". Well....where is this damn Start button, anyway?
The Keys...
The keys used by the game are the following:
- Start: the Start Key ... starts the game and is actually the key "1" on your keyboard (NOT the number 1 key in the numeric keypad, the other one...)
- Left-Right: everybody knows what these two little ones do. Its the left and right arrows in the Numeric Keypad...
- Down: Its the down arrow in the numeric keypad and can be used to make a piece go down faster
- Rotate left: Rotates the piece to the left...the 5 key in the numeric keypad
- Rotate right: Rotates the piece to the right...the return key
- Drop: The drop key is used to instantly put the falling piece down. Its the 0 (Insert key, usually) in the numeric keypad
- Victim: Changes the victim (well talk about it in a sec). The 5 key (not the one in the numeric keypad, the ...other one)
- Use Antidote Key: Uses the antidote to get rid of applied powerups/bonuses(we said, WE ARE GOING TO TALK ABOUT IT IN A WHILE). The 2 key (again, not the one in the numeric keypad, the ...other one)
- The Reset-Wins key: Reset the wins counter. The 0 key (NOT THE ONE IN THE NUMERIC KEYPAD, I THOUGHT IVE MADE THIS POINT CLEAR SO FAR!!!!!)
WAIT! Before starting to calling me names, I should tell you that you can change the keys if you dont like them (and I bet you dont if youre using a notebook - no numeric keypad there, eh?). To do that, you should use your favorite text editor and edit the file neitris_cfg.py. The naming of the keys in the form K_ is due to the pygame library which simply calls them like this. For normal letters, use K_a, k_b etc (note the lower case in the letter). For the normal arrow keys use K_LEFT, K_RIGHT, K_UP, K_DOWN. For keypad keys, use K_KP0 to K_KP9 and K_KP_ENTER for keypad enter. Function keys are K_F1 etc. Space bar is K_SPACE. Anyway, to see all the available keys do the following:
- type python at a command prompt to invoke the Python Interpreter;
- Then, from inside the interpreter, type import(pygame) and press enter. Then type dir(pygame) and press enter. All the strings beginning with K_ are the ones you can use, thank you very much.
Enhancements:
- This the initial public release of the game.
- Earlier versions (actually svn revisions) can be found at the svn repository at the projects SourceForge page.
<<lessOnly the best, fastest, and smartest player will stay alive in the end.
Game Instructions
So, we are ready to go on with the game. At this point, a new window with the title Neitris should have appeared, which reads "Press Start to Start Game". Well....where is this damn Start button, anyway?
The Keys...
The keys used by the game are the following:
- Start: the Start Key ... starts the game and is actually the key "1" on your keyboard (NOT the number 1 key in the numeric keypad, the other one...)
- Left-Right: everybody knows what these two little ones do. Its the left and right arrows in the Numeric Keypad...
- Down: Its the down arrow in the numeric keypad and can be used to make a piece go down faster
- Rotate left: Rotates the piece to the left...the 5 key in the numeric keypad
- Rotate right: Rotates the piece to the right...the return key
- Drop: The drop key is used to instantly put the falling piece down. Its the 0 (Insert key, usually) in the numeric keypad
- Victim: Changes the victim (well talk about it in a sec). The 5 key (not the one in the numeric keypad, the ...other one)
- Use Antidote Key: Uses the antidote to get rid of applied powerups/bonuses(we said, WE ARE GOING TO TALK ABOUT IT IN A WHILE). The 2 key (again, not the one in the numeric keypad, the ...other one)
- The Reset-Wins key: Reset the wins counter. The 0 key (NOT THE ONE IN THE NUMERIC KEYPAD, I THOUGHT IVE MADE THIS POINT CLEAR SO FAR!!!!!)
WAIT! Before starting to calling me names, I should tell you that you can change the keys if you dont like them (and I bet you dont if youre using a notebook - no numeric keypad there, eh?). To do that, you should use your favorite text editor and edit the file neitris_cfg.py. The naming of the keys in the form K_ is due to the pygame library which simply calls them like this. For normal letters, use K_a, k_b etc (note the lower case in the letter). For the normal arrow keys use K_LEFT, K_RIGHT, K_UP, K_DOWN. For keypad keys, use K_KP0 to K_KP9 and K_KP_ENTER for keypad enter. Function keys are K_F1 etc. Space bar is K_SPACE. Anyway, to see all the available keys do the following:
- type python at a command prompt to invoke the Python Interpreter;
- Then, from inside the interpreter, type import(pygame) and press enter. Then type dir(pygame) and press enter. All the strings beginning with K_ are the ones you can use, thank you very much.
Enhancements:
- This the initial public release of the game.
- Earlier versions (actually svn revisions) can be found at the svn repository at the projects SourceForge page.
Download (0.017MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
GFreqlet 1.0 Beta 2
GFreqlet is a GNOME applet for Linux that not only monitors CPU frequency scaling. more>>
GFreqlet is a GNOME applet for Linux that not only monitors CPU frequency scaling, but also allows the end user to change the frequency or governor with just a click.
It automatically detects which frequencies and governors your processor supports, so there is no configuration required. The applet itself is not run as root, nor required to modify to run with root ownership, but password prompts with gksudo if a super user action is required. GFreqlet is very straight forward and minimal.
This project is open source software, licensed under the GNU GPL (General Public License).
<<lessIt automatically detects which frequencies and governors your processor supports, so there is no configuration required. The applet itself is not run as root, nor required to modify to run with root ownership, but password prompts with gksudo if a super user action is required. GFreqlet is very straight forward and minimal.
This project is open source software, licensed under the GNU GPL (General Public License).
Download (0.009MB)
Added: 2007-03-11 License: GPL (GNU General Public License) Price:
963 downloads
mod_xslt2 1.0 Beta
mod_xslt2 is is an Apache 1.3.xx Module written in C. more>>
mod_xslt is is an Apache 1.3.xx Module written in C. It accomplishes Apache embedded XML with XSL tranformation using Sablotron.
<<less Download (0.040MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1297 downloads
gTwitter 1.0 Beta
gTwitter project is a Linux client for reading and posting to twitter.com web service. more>>
gTwitter project is a Linux client for reading and posting to twitter.com web service.
Its a simple GTK+ based application for Linux, designed to interact with twitter.com web service.
Its written using Mono/C# and some of GNOME dependant libraries. GUI is inspired by Mac client Twitterrific.
<<lessIts a simple GTK+ based application for Linux, designed to interact with twitter.com web service.
Its written using Mono/C# and some of GNOME dependant libraries. GUI is inspired by Mac client Twitterrific.
Download (0.040MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
871 downloads
ANUGA 1.0 Beta 4669
ANUGA is a software implementation of a hydrodynamic model that is specifically designed to model wetting and drying processes. more>>
ANUGA is a software implementation of a hydrodynamic model that is specifically designed to model wetting and drying processes.
<<less Download (3.5MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
803 downloads
XOscript 1.0 beta
XOscript is a transparent communication bridge between objects running in a Web application server and a Web browser. more>>
XOscript is a transparent communication bridge between objects running in an application server and the browser. JavaScript programmers have access to the methods supported by server side objects. No additional coding techniques are required to call the method of a server side object. Java programmers are free to build an application using any coding style they choose.
The xoscript framework fully supports Java security. During the invocation of any method the Java programmer may have access to the session metadata as well as cookies, params and attributes passed at method call time. No additional argument signatures are required. The framework supports any method return type including object, primitive or client supported Map and Collection interfaces and may pass an array of the aforementioned.
The JavaScript programmer can take advantage of client side support for all of the Map and Collection interfaces used by Java programmers. Supports for 33 of the most useful classes found in the java.util package have been written in JavaScript.
The goal of this project is to let you code the way you want. Providing a simple framework that stays out of the way yet opens the communication gap between the browser and server. Allowing applications to be written without regard to what the framework can or can not handle. A great deal of thought has gone into the most natural way to achieve this end. Using the default implementation of the framework allows for 90 percent of the code just the way it is written today. Under the covers xoscript is divided into 3 services, invocation, persistence and logging. Each of these services can be implemented through a factory class that understands how to create and use your implementation of the service.
Future goals include bringing a server to client event model into the framework enabling the browser and server to interact as if they were one program and building in support for client side custom tags that can be driven by server side logic. Hope you enjoy XOscript.
<<lessThe xoscript framework fully supports Java security. During the invocation of any method the Java programmer may have access to the session metadata as well as cookies, params and attributes passed at method call time. No additional argument signatures are required. The framework supports any method return type including object, primitive or client supported Map and Collection interfaces and may pass an array of the aforementioned.
The JavaScript programmer can take advantage of client side support for all of the Map and Collection interfaces used by Java programmers. Supports for 33 of the most useful classes found in the java.util package have been written in JavaScript.
The goal of this project is to let you code the way you want. Providing a simple framework that stays out of the way yet opens the communication gap between the browser and server. Allowing applications to be written without regard to what the framework can or can not handle. A great deal of thought has gone into the most natural way to achieve this end. Using the default implementation of the framework allows for 90 percent of the code just the way it is written today. Under the covers xoscript is divided into 3 services, invocation, persistence and logging. Each of these services can be implemented through a factory class that understands how to create and use your implementation of the service.
Future goals include bringing a server to client event model into the framework enabling the browser and server to interact as if they were one program and building in support for client side custom tags that can be driven by server side logic. Hope you enjoy XOscript.
Download (3.8MB)
Added: 2005-07-01 License: LGPL (GNU Lesser General Public License) Price:
1577 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 1.0 beta 12 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed