Main > Free Download Search >

Free to achieve software for linux

to achieve

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 357
A-foto 1.6 RC7

A-foto 1.6 RC7


A-foto is a theme (applet) for Superkaramba. more>>
A-foto is a theme (applet) for Superkaramba. A-foto show pictures on your desktop with different frame decorations and has the ability to change picture at present intervals.

Known Issues in this version:
- There is NO "add to line" mode. The organization of presented images is now accomplished through management of contents of the chosen folder. One suggested way of organizing custom slide shows is to create an empty folder and drag LINKS to preferred photos into that folder. Drop that folder onto a-foto. Presently, this appears to be the easiest way to achieve manageability of slide show content. Your alternative suggestions are welcome.
- Starting a second instance of A-foto from SuperKaramba interface may fail. Double-click on afoto.skz file to start additional applets.
- A-foto settings have "historical priority." Settings for 1st afoto applet ever will always be the 1st in line to be used when you open afoto. To get to the settings of the 3rd afoto instance, you need to open 3 afoto applets. We are working on a solution. Any comments and suggestions are welcome

<<less
Download (0.23MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
941 downloads
cx_Oracle 4.3.2

cx_Oracle 4.3.2


cx_Oracle is a Python extension module that allows access to Oracle. more>>
cx_Oracle is a Python extension module that allows access to Oracle, and conforms to the Python database API specifications. cx_Oracle module is currently built against Oracle 8.1.7, Oracle 9.2, and Oracle 10.2.
This API has been defined to encourage similarity between the Python modules that are used to access databases. By doing this, we hope to achieve a consistency leading to more easily understood modules, code that is generally more portable across databases, and a broader reach of database connectivity from Python.
The interface specification consists of several sections:
- Module Interface
- Connection Objects
- Cursor Objects
- DBI Helper Objects
- Type Objects and Constructors
- Implementation Hints
- Major Changes from 1.0 to 2.0
Enhancements:
- This release adds methods to LOB objects in order to improve performance of reading/writing LOB values.
- It also fixes support for native doubles and floats in Oracle 10g.
- Support was added for autocommit mode and reading/writing the size of the statement cache.
- A hook for returning objects other than tuples from cursors was also added.
<<less
Download (0.069MB)
Added: 2007-08-04 License: BSD License Price:
817 downloads
pt-helper 0.1.1

pt-helper 0.1.1


pt-helper is a program designed to help people perform physical therapy exercises. more>>

pt-helper 0.1.1 with its excellent features will surely help you in daily life. It is actually a program designed to help you perform physical therapy exercises. It reads in exercise information from a file, and then it uses this information to generate a random physical therapy routine. The program can either:

  • Read the names of the exercises to you as you perform them
  • Generate the routine as text (which you can copy into a file and print out)

When combined with a wireless mouse or other input device, pt-helper becomes a powerful tool for conducting a physical therapy routine.

Installation Instructions:

  • pt-helper is written in Python, so you'll need a Python interpreter to get anything working. It also depends on several Python modules;
  • If you do have all the dependencies, you should be able to run the program just by running the pt-helper script with a Python interpreter. From a shell, the following command should do the trick: $ python pt-helper.py
  • Users of graphical file managers can probably double-click the pt-helper script to achieve the same effect.

Requirements:

  • Python
  • PyGame
  • Festival Speech Synthesis System
<<less
Added: 2007-05-01 License: GPL Price: FREE
1 downloads
Sectoo Linux Pre-Alpha

Sectoo Linux Pre-Alpha


Sectoo Linux attempts to provide an up-to-date and easy-to-use set of security tools. more>>
Sectoo Linux attempts to provide an up-to-date and easy-to-use set of security tools.
Main features:
- Vulnerability Scanning : Sectoo Linux provides you base services such as port scanning using Nmap. You can then gather banner informations, looking for versions of services installed, and discover some exploits using Nessus. You can also use this to test what your IDS can pick up and what it cant.
- Network Analysis : Using a standard sniffer like TCPDump or Ethereal/Wireshark, you can see whats going through a network in terms of protocols and content. And by using tools like p0f, you can achieve passive OS fingerprinting like never !
- Security Research : Want to learn how to achieve this or that type of attack ? How to conduct other types of spoofing attacks ? Using Sectoo and reading the manpages for the tools (youll certainly have to search what tool & what manpage !), youll learn how. But be warned : Use of these tools in production environments is highly discouraged and could get you fired, or arrested in some countries.
- Secure Connectivity : Sectoo Linux is including OpenSSH, for securely administrating remote systems...
<<less
Download (391.8MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1176 downloads
MonoDevelop 0.15

MonoDevelop 0.15


MonoDevelop is a full-featured IDE for Mono and Gtk#. more>>
MonoDevelop is a project to port SharpDevelop to Gtk#. There are numerous goals that MonoDevelop hopes to achieve.
Main features:
- To create a best of breed development environment for Unix systems for C# and Mono.
- Since its written in Gtk#, and we like Gtk# and we get good support from Gtk#, most likely it will add functionality to improve the Gtk# experience.
- Today the IDE is a simple IDE and on Unix does not do GUI design, but we plan on adding a GUI designer.
- We want to integrate the tools we have been building so far, so things like MonoDoc, NUnit-Gtk and the debugger should target MonoDevelop.
<<less
Download (3.1MB)
Added: 2007-08-12 License: GPL (GNU General Public License) Price:
810 downloads
mod_daytime 0.01

mod_daytime 0.01


mod_daytime Apache module is a RFC-867-compliant Daytime service. more>>
mod_daytime Apache module is a RFC-867-compliant Daytime service.

Multi Protocol Support is one of the most important new features in Apache 2: The server is able to handle other TCP network services than just HTTP. As an example, the default distribution of Apache 2 HTTPD contains the mod_echo module that implements the Echo protocol. This standard TCP service answers any request by returning its complete contents. As a result, it can be helpful in testing network connections.

Based on the source code of mod_echo, I have written the mod_daytime module. It implements the Daytime Service according to RFC 867. This service answers any request by sending the current date and time. The RFC doesnt specify a format; this implementation is using ctime(3).

It is usually recommended to create a virtual host that works as a Daytime server exclusively. You might configure it for TCP port 13 on which the Daytime Service listens by default. The configuration to achieve that looks like this:

# Listen on Port 13
Listen 13

< VirtualHost *:13 >
ProtocolDaytime On
< /VirtualHost >

The first thing you need to do, however, is compile the source code provided here. On a UNIX system where Apache 2 has been installed with DSO support, you can simply type the following command (as root):

# [/path/of/apache/bin/]apxs -cia mod_daytime.c

This will create the DSO file mod_daytime.so, copy it into the Apache installations /modules directory, and add the following directive for loading the module to httpd.conf:

LoadModule daytime_module modules/mod_daytime.c
<<less
Download (0.003MB)
Added: 2006-05-19 License: The Apache License 2.0 Price:
1254 downloads
ALT Linux 4.0.1 (Server)

ALT Linux 4.0.1 (Server)


ALT Linux is a Linux distribution based on Sisyphus. more>>
ALT Linux project is a set of Linux distributions that are based on Sisyphus, an APT-enabled RPM package repository that aims to achieve feature completeness, usability, and security in a sensible and manageable mixture.
Enhancements:
- This release starts the Server branch of ALT Linux.
- It integrates the OpenVZ kernel, tools, and Web-based management interface allowing you to create and manage VPS templates and instances.
- The distribution shares security enhancements with the Owl GNU/*/Linux project, and is supported with regular updates for three years.
- It is available as i586/x86_64 ISOs, with several thousand more packages in the online repository.
<<less
Download (605.3MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
851 downloads
XOscript 1.0 beta

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.
<<less
Download (3.8MB)
Added: 2005-07-01 License: LGPL (GNU Lesser General Public License) Price:
1577 downloads
Tachyon Multiprocessor Ray Tracer 0.97

Tachyon Multiprocessor Ray Tracer 0.97


Tachyon is a multiprocessor ray tracing system which can be used as a standalone program, or as a library within other programs more>>
Tachyon is a multiprocessor ray tracing system which can be used as a standalone program, or as a library within other programs. The project is written in C, uses POSIX Threads and/or MPI for using multiple processors, and can also run on uniprocessor machines.
It supports almost any Unix-like system, Windows, and BeOS, as well as several embedded systems and high end supercomputers. Tachyon is easy to port to new machines, and is very fast, using a number of ray tracing acceleration schemes to achieve good performance on very complex scenes. (It easily handles scenes containing more than 100,000 objects, and does so without taking a long time to render)
Enhancements:
- Memory usage for highly complex scenes has been reduced.
- User-defined clipping planes and improved texture management have been added. Compilation targets have been updated.
- There are minor code cleanups.
<<less
Download (2.4MB)
Added: 2006-10-27 License: Freeware Price:
1097 downloads
Sotacs 0.92

Sotacs 0.92


Sotacs is a collection of components for the Tapestry Web Framework. more>>
Sotacs is a collection of components for the Tapestry Web Framework. Sotacs provides NavigationBar, a JavaScript-powered hierarchical navigation bar with collapsable folders, mouse-over highlighting, and selection highlighting.
DynamicImage, which produces JPEG or PNG images on the server with an AWT-like painting listener method and sophisticated caching options, AjaxTextField, an AJAX powered text field that supports auto-complete hints in a pop-up box, and TransparentPNG, which makes alpha-transparent .png images display correctly on all browsers incuding Internet Explorer 5.
Enhancements:
- AjaxTextField works with Tapestry 4.1.x now : Bug 1704968 fixed
- Tapestry 4.1.x NavigationBar : ServiceLinks are no longer supported in order to achieve compatibility with both Tap 4.0 and 4.1.
<<less
Download (5.1MB)
Added: 2007-04-22 License: The Apache License 2.0 Price:
917 downloads
ADempiere 3.3 Beta

ADempiere 3.3 Beta


Adempiere is a community driven project which develops and supports an open source business solution. more>>
Adempiere is a community driven project which develops and supports an open source business solution of the same name, that delivers Enterprise Resource Planning, Customer Relationship Management and Supply Chain Management functionality.
The Adempiere project was created in September 2006 after a long running disagreement between ComPiere Inc., and the community that formed around that project. The community believed ComPiere Inc. placed too much emphasis on the open source commercial/lock-in nature of the project, rather than the community sharing/enriching nature of the project, and after an impassioned discussion decided to split from Compiere giving birth to the Adempiere project.
The project name comes from the Italian word meaning to fulfill but with additional context of "to complete, reach, practice, perform the duties of, or free (discharge), it also means to honor and respect", which is absolutely what the community wished to achieve.
Enhancements:
- GUI enhancements/stabilization and a graphical redesign of the Web client.
- Average costing and landed cost fixes.
- A security hole when accessing the Web UI has been resolved.
- RMA and an accounting model validator have been added.
- PostgreSQL, 2pack, and Jasper integration stabilization.
- A lot of code refactoring.
<<less
Download (58.3MB)
Added: 2007-07-27 License: MPL (Mozilla Public License) Price:
834 downloads
phpBugTracker 1.0.1

phpBugTracker 1.0.1


phpBugTracker is a bug tracker written in PHP. more>>
phpBugTracker is meant to be a replacement for Bugzilla (one day). Its not quite there yet, but were working on it.
This project grew out of the frustrations I experienced in installing and using bugzilla.
Main features:
- Simplicity in use and installation
- Use templates to achieve presentation independence
- Use a database abstraction layer to achieve database independence
- Track bugs by multiple users on multiple projects
- Bug history showing changes made to a bug over its lifetime
- Restrict projects to certain groups of users
- The option to store passwords encrypted in the database
- Use of CSS to easily change the color scheme
- HTML templates allow you to completely change the look of the interface
- Flexible bug search capabilities
- Localization -- Have status messages in your native language (help needed)
- File attachments for bugs
- Anonymous browsing of bugs
- Web-based installation
- Links to a cvs web interface from bug comments
- Bug dependencies
- And a few more... :)
<<less
Download (0.28MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1503 downloads
Kernel-Machine Library 0.1

Kernel-Machine Library 0.1


Kernel-Machine Library is a C++ library to implement kernel machines. more>>
The Kernel-Machine Library is a freely available (released under the GPL) C++ library to promote the use and progress of kernel machines. It is both for academic use and for developing real world applications.
The Kernel-Machine Library draws heavily from features of modern C++ such as template meta-programming to achieve high performance while at the same time offering a comfortable interface.
It enables compile-time selection of specialised algorithms on the basis of data types: for example, the specific case of a SVM in combination with a linear kernel can be computed by a specialised efficient algorithm.
The Kernel-Machine Library has implementations for the following kernel machines and their cited algorithms:
- Support Vector Machine [1, 2, 3]
- Relevance Vector Machine [4]
- Kernel Recursive Least Squares [5]
- Adaptive Sparseness using Jeffreys Prior [6]
- Smooth Relevance Vector Machine [7]
Up till now, the focus has been on regression. The handling of classification and ranking problems is being added.
<<less
Download (0.050MB)
Added: 2005-10-08 License: GPL (GNU General Public License) Price:
1478 downloads
Radiance 3.8

Radiance 3.8


Radiance is a set of tools which provide an advanced lighting simulation software package. more>>
Radiance project is a set of tools which provide an advanced lighting simulation software package.
It allows very detailed definition of materials and light sources properties through the use of advanced techniques like brdf and ies files, as well as a powerful mathematical scripting language, resulting in accurate renderings of scenes which are usually imported from CAD and 3D modelers.
It uses the hybrid approach of Monte Carlo and deterministic ray tracing to achieve a reasonably accurate result in a reasonable time.
Enhancements:
- New scripts for higher productivity have been added.
- Code was cleaned to improve performance on new machines and in parallel environments.
- Handling of the recent mesh primitive was improved.
- Lots of clean-ups were done.
- This release has been tested a lot and is meant to be especially stable.
<<less
Download (1.7MB)
Added: 2006-10-27 License: Artistic License Price:
643 downloads
Maven 2 2.0.4

Maven 2 2.0.4


Maven 2.0 is a rewrite of the popular Maven application to achieve a number of goals. more>>
Maven project is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a projects build, reporting and documentation from a central piece of information.
Maven 2.0 is a rewrite of the popular Maven application to achieve a number of goals, and to provide a stable basis to take it into the future. It is currently available for beta testing.
Main features:
- Simple project setup that follows best practices - get a new project or module started in seconds
- Consistent usage across all projects means no ramp up time for new developers coming onto a project
- Superior dependency management including automatic updating, dependency closures (also known as transitive dependencies)
- Able to easily work with multiple projects at a time
- A large and growing repository of libraries and metadata to use out of the box, and arrangements in place with the largest Open Source projects for real-time availability of their latest releases
- Extensible, with the ability to easily write plugins in Java or other scripting languages
- Instant access to new features with little or no extra configuration
- Ant tasks for dependency management and deployment outside of Maven
<<less
Download (1.1MB)
Added: 2006-04-11 License: The Apache License 2.0 Price:
746 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5