Main > Free Download Search >

Free available adoption situations software for linux

available adoption situations

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3652
Invasion 3D 1.0.2-Linux

Invasion 3D 1.0.2-Linux


Invasion 3D is a free multi-platform 3D arcade game, based on OpenGL and SDL and available for Windows and Linux. This fun and addictive game features... more>> <<less
Download (2332KB)
Added: 2009-04-17 License: Freeware Price: Free
197 downloads
mpiBLAST 1.4.0-pio

mpiBLAST 1.4.0-pio


mpiBLAST is an MPI based parallel implementation of NCBI BLAST. more>>
mpiBLAST is an MPI based parallel implementation of NCBI BLAST. The project consists of a pair of programs that replace formatdb and blastall with versions that execute BLAST jobs in parallel on a cluster of computers with MPI installed. There are two primary advantages to using mpiBLAST versus traditional BLAST.

First, mpiBLAST splits the database across each node in the cluster. Because each nodes segment of the database is smaller it can usually reside in the buffer-cache, yielding a significant speedup due to the elimination of disk I/O. Second, it allows BLAST users to take advantage of efficient, low-cost Beowulf clusters because interprocessor communication demands are low.

mpiBLAST achieves super-linear speedup in situations where the database is too large to fit into RAM, and near linear speedup in other situations. It does not require a dedicated cluster.

<<less
Download (0.33MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
848 downloads
debian-updates 1.7

debian-updates 1.7


debian-updates is a simple script that sends an email if any relevant Debian security updates become available. more>>
debian-updates is a simple script that sends an email or displays console messages if any relevant Debian security updates become available. debian-updates is ideal for running from cron.

<<less
Download (0.017MB)
Added: 2006-08-09 License: GPL (GNU General Public License) Price:
1174 downloads
Alternatives system 0.2.0

Alternatives system 0.2.0


Alternatives system is an implementation of a Debian alternatives system. more>>
Alternatives system is an implementation of a Debian alternatives system; a system that allows several programs with the same or similar functions to be installed on a single system at the same time.
This implementation solves some problems and limitations of original implementation.
Alternatives architecture
General engine:
- alternatives-auto - turn into auto mode some alternatives item
- alternatives-manual - turn into manual mode some alternatives item
- alternatives-update - update current state of alternatives symlinks
Special scripts for the packages:
- alternatives-install - register new alternatives config, for use in %post package script
- alternatives-uninstall - unregister some alternatives config, for use in %preun package script
ALT Linux specific:
- alternatives-helper - helper script to use in package scripts
- alternatives-upgrade - tool to upgrade from old config format (XML based) to new.
Directories:
- /usr/bin - all scripts live here
- /etc/alternatives/packages.d - all package configs
- /etc/alternatives/auto - symlinks to registered configs
- /etc/alternatives/manual - list of alternatives in manual mode
- /etc/alternatives/links - for internal use only, alternatives symlinks lives here
- /usr/share/alternatives - directory with some helper functions and scripts
Original Debian alternatives implementation has some limitations and problems, so we (ALT Linux Team) rewrite this subsystem. What changes we have made?
- You dont need to give special generic name for altenatives file. This name is autogenerated now.
- This version is written in shell, awk and sed , so we reduce a number of dependencies, therefore, number of the packages in basesystem.
- We use different update model. Original alternatives system maintains its own database, by creating/removing files in system. In our alternatives (rpm) packages contains its configs and places them into generic directory during package installation. After package removal its config is automatically removed. It works like Debian menu subsystem, and its more stable.
- Now we have not any limitations for master-slave hieracly depth.
- New alternatives system works with no groups, but with each item. You can turn into manual mode any available item. There are only one difference between master and slave: weight calculation algorithm. Slave alternative have same weight as a master alternative.
- alternatives-update script corrects invalid manual alternatives, by switching them into auto mode. In original alternatives was situations with broken symlinks. Also new system doesnt create symlinks if target file does not exist. As a result, we also reduce number of broken symlinks.
<<less
Download (0.022MB)
Added: 2005-06-10 License: GPL (GNU General Public License) Price:
1596 downloads
Array::Each::Tutorial 0.02

Array::Each::Tutorial 0.02


Array::Each::Tutorial - POD giving various examples how to use Array::Each. more>>
Array::Each::Tutorial - POD giving various examples how to use Array::Each.

SYNOPSIS

man Array::Each
man Array::Each::Tutorial

or

perldoc Array::Each
perldoc Array::Each::Tutorial

Overview

This tutorial contains only POD, so dont do this:

use Array::Each::Tutorial; # dont do this

Rather, simply read the POD (as you are doing). But first, please read the docs for Array::Each, because the whole scoop is there.

This tutorial is intended to augment those docs with examples showing situations where you might want to use Array::Each instead of other techniques.

EXAMPLES

Parallel Arrays vs. Using a Hash

First of all, use a hash. Its almost always the best solution if you want to associate a "key" with a "value". And there are modules available that will let you do wonderful things with hashes, like keeping the keys sorted or keeping them in the order they were added.

So given a hash, you might at some point want to do this:

my %h = ( a=>1, b=>2, c=>3, d=>4, e=>5 );
while( my( $k, $v ) = each %h ) {
# ... do something with $k and $v ...
}

On the other hand, if parallel arrays better implement your algorithm, then you may find you want to do something like this:

my @k = qw( a b c d e );
my @v = qw( 1 2 3 4 5 );
for my $i ( 0 .. $#k ) {
my( $k, $v ) = ( $k[$i], $v[$i] );
# ... do something with $k and $v (and maybe $i) ...
}

Using Array::Each, you could do the same thing this way:

use Array::Each;
my @k = qw( a b c d e );
my @v = qw( 1 2 3 4 5 );
my $obj = Array::Each->new( @k, @v );
while( my( $k, $v, $i ) = $obj->each ) {
# ... do something with $k and $v (and maybe $i) ...
}

If you dont need $i at all, you can leave it out, e.g.,

while( my( $k, $v ) = $obj->each ) {
# ... do something with $k and $v ...
}

If you have more than two parallel arrays, include them all in the call to new() and add as many "capture" variables as you need, e.g.,

my @k = qw( a b c d e );
my @v = qw( 1 2 3 4 5 );
my @p = qw( - + ~ = : );
my $obj = Array::Each->new( @k, @v, @p );
while( my( $k, $v, $p, $i ) = $obj->each ) {
# ... do something with $k, $v, and $p (and maybe $i) ...
}

<<less
Download (0.020MB)
Added: 2007-07-14 License: Perl Artistic License Price:
832 downloads
Hexagonal Minesweeper 0.2.1

Hexagonal Minesweeper 0.2.1


Hexagonal Minesweeper is a puzzle game, inspired by famous Minesweeper. more>>
Hexagonal Minesweeper is a puzzle game, inspired by famous Minesweeper. HexaMine is puzzle game is based on idea of famous Minesweeper.

Classic Minesweeper quickly becomes boring for experienced player as he remembers most of restricted set of possible game situations, and nothing can challenge him to thing more then 3 seconds any more.

Proprietary MegaMiner by Astatix Software, has introduced mines with variable power to solve this problem, but it created a new one: there were too much situations when player had to guess rather then prove.

HexaMine has taken te idea of MegaMiner a lot further. Here are features, which allow HexaMine to present even most experienced player nontrivial challenging yet solvable game situations:

1) Different mine powers. Exactly as in MegaMiner.
2) Hexagonal grid. This reduces the number is possible situations for any single cell. This also makes surrounding of a cell look nore like a circle, which is more intuitive.
3) Concept of close and far neighborhood. There is nothing new about first one, as it is just sum of mine powers of ajacent cells. Far neighborhood is entirely new concept. Think of real metal detector. It can pick up any mine within small radius, say of 1 meter. This is exactly the close neighborhood. But mentioned metal detector can also pick up larger objects within bigger radius, say 2 meters, although the signal is weaker. This is exactly the concept of far neighborhood. For each empty cell the close neighborhood threat is calculated as mentioned above, although for far neighborhood threat each mine is reduced by 1 category. Smallest mines are not taken into account, larger ones seem smaller. Both threats are specified for open empty cell.
4) In contrast to other known to me Minesweeper-like games, in HexaMine you never know neither number of mines of each power, nor exact total number of mines.
The bottom line, (1) and (4) creates mathematically finite but practically countless number of different game situations, while (2) and (3) give player enough information, although very complicate, to solve vast majority of them without need to guess.

The bottom line, (1) and (4) creates mathematically finite but practically countless number of different game situations, while (2) and (3) give player enough information, although very complicate, to solve vast majority of them without need to guess.

<<less
Download (0.13MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1221 downloads
Audio::TagLib::AudioProperties 1.42

Audio::TagLib::AudioProperties 1.42


Audio::TagLib::AudioProperties is a simple, abstract interface to common audio properties. more>>
Audio::TagLib::AudioProperties is a simple, abstract interface to common audio properties.

DESCRIPTION

The values here are common to most audio formats. For more specific, codec dependant values, please see see the subclasses APIs. This is meant to compliment the Audio::TagLib::File and Audio::TagLib::Tag APIs in providing a simple interface that is sufficient for most applications.

%_ReadStyle

Reading audio properties from a file can sometimes be very time consuming and for the most accurate results can often involve reading the entire file. Because in many situations speed is critical or the accuracy of the values is not particularly important this allows the level of desired accuracy to be set.

keys %Audio::TagLib::AudioProperties::_ReadStyle lists all available values used in Perl code.

see FLAC::Properties MPC::Properties MPEG::Properties Vorbis::Properties

DESTROY()

Destroys this AudioProperties instance.

length() [pure virtual]

Returns the lenght of the file in seconds.

bitrate() [pure virtual]

Returns the most appropriate bit rate for the file in kb/s. For constant bitrate formats this is simply the bitrate of the file. For variable bitrate formats this is either the average or nominal bitrate.

sampleRate() [pure virtual]

Returns the sample rate in Hz.

channels() [pure virtual]

Returns the number of audio channels.

<<less
Download (1.4MB)
Added: 2006-06-21 License: Perl Artistic License Price:
1221 downloads
OracleEditor.php 1.20

OracleEditor.php 1.20


OracleEditor.php is a standalone PHP script which allows you to browse your Oracle database tables. more>>
OracleEditor.php is a standalone PHP script which allows you to browse your Oracle database tables and insert, update, and delete rows in any table.
OracleEditor.php script requires no installation and no configuration.
I wrote it for situations where you quickly need to do some small data manipulation and dont have a better tool available. OracleEditor.php is free and Open Source (view the colored source code). Feel free to contact me at tim@strehle.de with questions/comments specific to this script. For general information on using PHP with Oracle, please refer to the Oracle Technology Network, the PHP manual, orafaq.com, webmonkey, or Thies C. Arntzens slides.
News: Version 1.18 makes your life easier: Move your mouse over buttons and input elements to display a short help text. A warning will be displayed if your PHP installation doest match the requirements.
Disclaimer: Use this software at your own risk. I wont guarantee that it works, and I wont be held liable for any damage caused by it! Please make sure to protect this script with a .htaccess password or the like - never ever allow public access to it. Anyone capable of guessing your database login will be able to cause severe damage to your database.
Enhancements:
- Support for Oracle Instant Client connection string syntax has been added.
- The script now works with the php.ini setting "short_open_tag = Off".
<<less
Download (0.013MB)
Added: 2006-05-15 License: Freely Distributable Price:
1258 downloads
vrbroadcast 1.0

vrbroadcast 1.0


vrbroadcast project is a video on demand server. more>>
vrbroadcast project is a video on demand server.

It supports hierarchical networks of servers that will automaticaly update information on the available media.

It has a GUI that is only available in German, but the server was written with multi-language support in mind.

<<less
Download (0.24MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1090 downloads
Swing XML Authoring Tool 0.5.5

Swing XML Authoring Tool 0.5.5


SwiXAT is a Swing-based authoring tool for the quick and easy development of GUI Java applications. more>>
Swing XML Authoring Tool is a Swing-based authoring tool for the quick and easy development of GUI Java applications.
It implements out-of-box a true MVC framework and uses XML to define the view (SwiXml is used as the XUL engine), BeanShell as a scripting language for the controller, and JXPath as the binding mechanism between the view and model.
Swing XML Authoring Tool provides a complete environment in which it is possible to almost write an entire Java Swing application without writing Java compiled code. The use of XPath makes it very simple to traverse the object tree of the applications business model.
It takes a lot of work to develop a Swing application, laying out and configuring GUI components, and then integrating them with the application functionality. SwiXAT addresses both of these issues by providing a framework based on a complete implementation of the MVC architectural pattern.
The benefits obtained by a such framework are the followings:
- Architectural Correctness: By adopting a true MVC (Model View Controller) based framework, it is very easy to correctly implement any UI application. Its not difficult to write a Java/Swing application, but whats very difficult is to build a good, well designed Swing application, where the adoption of the MVC paradigm permits to reduce the maintenance costs, thanks to the clean separation between the view and the application logic.
- Development Speed: The adoption of a framework reduces the development cost by providing out-of-box, well integrated and easy to use common features, like wizards, plugins, support for MDI interfaces, etc. Moreover, the use of XML to define the user interface, as well as the adoption of an interpreted scripting language, permits to implement the Code&Test development style, where the compilation time is reduced to zero.
- Code Reuse: The net separation between the view and the control logic permits to write reusable modules that can be combined in several manners. The developer is naturally induced to modularize the application and write reusable code, minimizing the effort of building new applications or adding new functionality to existing ones.
SwiXAT is all the above, and we hope youll appreciate our effort.
<<less
Download (3.7MB)
Added: 2006-10-03 License: The Apache License 2.0 Price:
1118 downloads
lithobiusforficatus 0.1

lithobiusforficatus 0.1


There are situations where you want to hide your IP-address from the cruel world. more>>
There are situations where you want to hide your IP-address from the cruel world. In that case, this program can help you unless you have a shell-account somewhere(!).

Start this program (preferrably in a SCREEN-session) and add a porforwarding-rule. Connect to the portnumber you defined and there you are: you can connect to some host through some other host so the destination-host will see the ip-address of the middle-host.

When youre done: delete the portforwarding-rule. For all of no root-privileges are required, you only need to use portnumbers above 1024.

<<less
Download (0.002MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Disc-O-Matic 0.3

Disc-O-Matic 0.3


Disc-O-Matic is a GTK+ CD/DVD-ROM archiving tool for mastering and burning multiple discs. more>>
Disc-O-Matic is a GTK+ CD/DVD-ROM archiving tool for mastering and burning multiple discs.

Disc-O-Matic can be used in situations where you have a lot of data that you wish to burn to discs (e.g. keeping an MP3 collection synchronized with a set of CD-RWs).

<<less
Download (0.097MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1191 downloads
Tile World 1.2.2

Tile World 1.2.2


Tile World is an emulator of Chips Challenge. more>>
Tile World is an emulation of the game "Chips Challenge". "Chips Challenge" was originally written for the Atari Lynx by Chuck Sommerville, and was later ported to MS Windows by Microsoft (among other ports).

Please note: Tile World is an emulation of the game engine(s) only. It does not come with the chips.dat file that contains the original level set. This file is copyrighted and cannot be freely distributed. The chips.dat file was originally part of the MS version of "Chips Challenge". If you have a copy of this version of the game, you can use that file to play the game in Tile World. If you do not have a copy of this file, however, you can still play Tile World with the many freely available level sets created by fans of the original game, including CCLP2.

"Chips Challenge" is a game made up of both intellectually engaging puzzles and situations demanding fast reflexes. As you might have guessed, it is a tile-based game. The object of each level is simply to get out -- i.e., to find and achieve the exit tile. This simple task, however, can sometimes be extremely challenging.

<<less
Download (1.0MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
778 downloads
WASTE 1.5 beta 3

WASTE 1.5 beta 3


WASTE provides a encrypted communication tool that allows for safe chat and transfer. more>>
WASTE provides a encrypted communication tool that allows for safe chat and transfer.
WASTE is a mesh-based workgroup tool that allows for encrypted, private communication between distant parties on the Internet, independent of local network organization. I
t is RSA secured, and has been heralded as the most secure P2P connection protocol currently in development. WASTE functions as a both a server and a client under *nix, Mac OS X, and Windows, as well as a server only mode under *nix and Windows.
WASTE is a software product and protocol that enables secure distributed communication for small (on the order of 10-50 nodes) trusted groups of users.
WASTE is designed to enable small companies and small teams within larger companies to easily communicate and collaborate in a secure and efficient fashion, independent of physical network topology.
Main features:
- WASTE is currently available for 32-bit Windows operating systems as a client and server, Mac OS X as a limited client and server, and as a limited functionality server for Linux, FreeBSD, Mac OS X, and Windows. Porting to other operating systems should be a breeze, as the source is provided (and the network code itself is pretty portable).
- WASTE is licensed under the GPL.
- WASTE currently provides the following services:
- Instant Messaging (with presence)
- Group Chat
- File browsing/searching
- File transfer (upload and download)
- Network architecture: WASTE uses a distributed architecture that allows for nodes to connect in a partial mesh type network. Nodes on the network can broadcast and route traffic. Nodes that are not publicly accessible or on slow links can choose not to route traffic. This network is built such that all services utilize the network, so firewall issues become moot. more information.
- Security: WASTE uses link-level encryption to secure links, and public keys for authentication. RSA is used for session key exchange and authentication, and the links are encrypted using Blowfish in PCBC mode. The automatic key distribution security model is very primitive at the moment, and may not lend itself well to some social situations. more information.
Enhancements:
- A preliminary port of WASTE to wxWidgets.
- Compiled for Linux, and based on WASTE v1.5 beta 3 for Windows.
- Now includes seperate source for the current wxWidgets port (also in development and will be unified in the next version).
<<less
Download (3.4MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
970 downloads
Blue ERP 0.6 RC2

Blue ERP 0.6 RC2


Blue ERP is a Web based ERP application. more>>
Blue ERP is a Web based ERP application. Its goal is to provide a flexible and user friendly interface that can work out of the box and be modified to suit specific needs easily.
Blue ERP goals are to provide a featureful ERP application, to be open in licence and in spirit, and to be user-friendly by providing adequate documentation and assistance to users.
Main features:
- provide a feature full ERP application
- be open in licence and in spirit - in blue ERP everything is open, especially the development
- be user friendly by providing adequate documentation and assistance to users to encourage widespread adoption
Why Blue ERP?
Most web-based ERP software are written in java. There are a few other ones (such as SQL-Ledger or CK-ERP), however the development process of these projects is too closed for the philosophy of a true open source project. Some other projects had code which was not clean enough to easily modify without a lot of work.
Blue ERP tries to addess all those issues and to propose a new, fresher and more open approach to the question of php, web based ERP.
Enhancements:
- This version of BlueErp is one step closer to being fully stable. Several bugs were fixed.
- In particular, it is possible now to have two windows editing entities.
- Copying SO to AR now works as it should, and links from accounts history work too.
- This release also has an improved template management for "official" (printable) invoices.
<<less
Download (8.4MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
807 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5