Main > Free Download Search >

Free evian baby commercial software for linux

evian baby commercial

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 472
InstallJammer 1.1

InstallJammer 1.1


InstallJammer is a multiplatform GUI installer. more>>
InstallJammer is a multiplatform GUI installer designed to be completely cross-platform and function on Windows and most all versions of UNIX.
InstallJammer is a re-design of my previous installer, InstallBase. The initial release has not been done yet, but it should be released very soon.
Main features:
- A full-featured install builder.
- Installs are packaged in single binary executables for each platform making web distribution easy.
- Support for multiple install themes.
- Default install themes that resemble popular, commercial installers.
- A high level of configurability.
- Built-in support for Windows and Linux conventions.
- Automatic creation of an uninstaller.
- Easily extended to new platforms.
<<less
Download (13.6MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
993 downloads
Open Source Computer Vision Library 1.0.0

Open Source Computer Vision Library 1.0.0


Open Computer Vision Library is a collection of algorithms and sample code for various computer vision problems. more>>
Open Computer Vision Library is a collection of algorithms and sample code for various computer vision problems. The library is compatible with IPL (Intel Image Processing Library) and utilizes Intel Integrated Performance Primitives for better performance.

Philosophy

Aid commercial uses of computer vision in human-computer interface, robotics, monitoring, biometrics and security by providing a free and open infrastructure where the distributed efforts of the vision community can be consolidated and performance optimized.
<<less
Download (10.6MB)
Added: 2006-11-08 License: BSD License Price:
1108 downloads
Apache Tomcat 6.0.14

Apache Tomcat 6.0.14


Apache Tomcat is a Java Servlet and JSP Container. more>>
Jakarta Projects goal is to provide commercial-quality server solutions based on the Java Platform that are developed in an open and cooperative fashion.

Tomcat 3.x is an implementation of the Java Servlet 2.2 and JavaServer Pages 1.1 Specifications.

Tomcat 4.x is an implementation of the Java Servlet 2.3 and JavaServer Pages 1.2 Specifications, and is a re-implementation of the Tomcat servlet engine from the ground up.
<<less
Download (3.1MB)
Added: 2007-08-10 License: The Apache License Price:
5951 downloads
Sequoia Open Source ERP 0.8.1

Sequoia Open Source ERP 0.8.1


Sequoia ERP is a true enterprise-class open source ERP solution. more>>
Sequoia ERP is a true enterprise-class open source ERP solution. It combines the advanced features and scalability required for enterprise software with the flexibility and low cost of ownership that only open source can deliver.
Main features:
- Full Suite of integrated applications that deliver a 360-degree view of your business.
- Compatible all major open source and commercial relational databases, including MySQL, PostgreSQL, Oracle, Sybase, and Microsoft SQL Server.
- Runs on Linux, Unix, and Windows operating platforms.
- Service-Oriented Architecture for easy interoperability with external or legacy applications.
- Remote and local synchronization for scalability and high availability.
- Workflow for adapting to unique business processes.
- Available under the business-friendly MIT Public License.
<<less
Download (60MB)
Added: 2005-10-25 License: MIT/X Consortium License Price:
2105 downloads
Sweet System Icons for Linux -

Sweet System Icons for Linux -


12 freeware icons inspired by the sweet look and feel of baby rooms artwork. more>> Description:
12 freeware icons inspired by the sweet look and feel of baby rooms artwork.
Content:
CD, Computer, Documents, Favorits, Folders, Home
<<less
Download (287KB)
Added: 2009-03-31 License: Freeware Price:
206 downloads
Geo::Distance 0.11

Geo::Distance 0.11


Geo::Distance is a Perl module that can calculate distances and closest locations. more>>
Geo::Distance is a Perl module that can calculate distances and closest locations.

SYNOPSIS

use Geo::Distance;
my $geo = new Geo::Distance;
$geo->formula(hsin);
$geo->reg_unit( toad_hop, 200120 );
$geo->reg_unit( frog_hop => 6 => toad_hop );
my $distance = $geo->distance( unit_type, $lon1,$lat1 => $lon2,$lat2 );
my $locations = $geo->closest(
dbh => $dbh,
table => $table,
lon => $lon,
lat => $lat,
unit => $unit_type,
distance => $dist_in_unit
);

This perl library aims to provide as many tools to make it as simple as possible to calculate distances between geographic points, and anything that can be derived from that. Currently there is support for finding the closest locations within a specified distance, to find the closest number of points to a specified point, and to do basic point-to-point distance calculations.

METHODS

new

my $geo = new Geo::Distance;
my $geo = new Geo::Distance( no_units=>1 );

Returns a blessed Geo::Distance object. The new constructor accepts one optional argument.

no_units - Whether or not to load the default units. Defaults to 0 (false).
kilometer, kilometre, meter, metre, centimeter, centimetre, millimeter,
millimetre, yard, foot, inch, light second, mile, nautical mile,
poppy seed, barleycorn, rod, pole, perch, chain, furlong, league,
fathom

formula

if($geo->formula eq hsin){ ... }
$geo->formula(cos);

Allows you to retrieve and set the formula that is currently being used to calculate distances. The availabel formulas are hsin, polar, cos, and mt. hsin is the default and mt/cos are depreciated in favor of hsin. polar should be used when calculating coordinates near the poles.

reg_unit
$geo->reg_unit( $radius, $key );
$geo->reg_unit( $key1 => $key2 );
$geo->reg_unit( $count1, $key1 => $key2 );
$geo->reg_unit( $key1 => $count2, $key2 );
$geo->reg_unit( $count1, $key1 => $count2, $key2 );

This method is used to create custom unit types. There are several ways of calling it, depending on if you are defining the unit from scratch, or if you are basing it off of an existing unit (such as saying 12 inches = 1 foot ). When defining a unit from scratch you pass the name and rho (radius of the earth in that unit) value.

So, if you wanted to do your calculations in human adult steps you would have to have an average human adult walk from the crust of the earth to the core (ignore the fact that this is impossible). So, assuming we did this and we came up with 43,200 steps, youd do something like the following.

# Define adult step unit.
$geo->reg_unit( 43200, adult step );
# This can be read as "It takes 43,200 adult_steps to walk the radius of the earth".

Now, if you also wanted to do distances in baby steps you might think "well, now I gotta get a baby to walk to the center of the earth". But, you dont have to! If you do some research youll find (no research was actually conducted) that there are, on average, 4.7 baby steps in each adult step.

# Define baby step unit.
$geo->reg_unit( 4.7, baby step => adult step );
# This can be read as "4.7 baby steps is the same as one adult step".

And if we were doing this in reverse and already had the baby step unit but not the adult step, you would still use the exact same syntax as above.
distance

my $distance = $geo->distance( unit_type, $lon1,$lat1 => $lon2,$lat2 );

Calculates the distance between two lon/lat points.
closest

my $locations = $geo->closest(
dbh => $dbh,
table => $table,
lon => $lon,
lat => $lat,
unit => $unit_type,
distance => $dist_in_unit
);

This method finds the closest locations within a certain distance and returns an array reference with a hash for each location matched.

The closest method requires the following arguments:

dbh - a DBI database handle
table - a table within dbh that contains the locations to search
lon - the longitude of the center point
lat - the latitude of the center point
unit - the unit of measurement to use, such as "meter"
distance - the distance, in units, from the center point to find locations

The following arguments are optional:

lon_field - the name of the field in the table that contains the longitude, defaults to "lon"
lat_field - the name of the field in the table that contains the latitude, defaults to "lat"
fields - an array reference of extra field names that you would like returned with each location
where - additional rules for the where clause of the sql
bind - an array reference of bind variables to go with the placeholders in where
sort - whether to sort the locations by their distance, making the closest location the first returned
count - return at most these number of locations (implies sort => 1)

This method uses some very simplistic calculations to SQL select out of the dbh. This means that the SQL should work fine on almost any database (only tested on MySQL and SQLite so far) and this also means that it is fast. Once this sub set of locations has been retrieved then more precise calculations are made to narrow down the result set. Remember, though, that the farther out your distance is, and the more locations in the table, the slower your searches will be.

<<less
Download (0.010MB)
Added: 2007-07-24 License: Perl Artistic License Price:
824 downloads
X-Evian LiveCD 2.0-prebeta

X-Evian LiveCD 2.0-prebeta


X-Evian is a complete Debian GNU/Linux operating system compilation that comes with 300Mb of copyleft material. more>>
X-evian is a Live-CD, a complete operating system which installs automatically from the CD-Rom in RAM memory by means of a process of automatic hardware detection.

This makes it possible to "parasite" a PC without leaving any trace?without touching the hard disk and without interfering with the operating system or the files already installed on the PC. X-evian also includes a utility for installing the contents of the CD automatically onto the hard disk (without having to erase Windows).

Debian GNU/Linux is much more than an operating system: it is an entire system of program distribution, installation and management built around the Linux kernel (the core of the operating system). Debian GNU/Linux consists of about 10,000 different programs, nearly all of which are free software, bundled and classified for integrated operation.

X-evian is a selection and compilation which has been carefully chosen and configured for activist users, for liberated cultural, technological and social production. But Debian is much more than "a complete operating system and an infinite number of programs".

Debian is the largest independent free software community on the Net and one of the most firmly established and stable techno-political projects in cyberspace. X-evian is an easy preconfigured way of introducing the user to the best of the resources of this Debian.

The power of digital recombination, reproduction and transmission has enabled the cognitariat (the workers of the immaterial production networks) to organise its own production transversally. But this transverse self-organisation would not have been possible without a format that would protect the collective work.

This is copyleft. "Copyleft uses copyright law, but flips it over to serve the opposite of its usual purpose: instead of a means of privatizing software, it becomes a means of keeping software free. The central idea of copyleft is that we give everyone permission to run the program, copy the program, modify the program, and distribute modified versions?but not permission to add restrictions of their own.? Stallman, R. (http://www.gnu.org/gnu/thegnuproject.html).

Copyleft hacks into the legal system of copyright to champion the freedom of knowledges and techniques. X-evian is the product of the recombination, copying and transformation of these knowledges. X-evian can therefore be freely copied, distributed, modified, recombined and used (provided any modification is also free).

But its not only the software that can be copylefted: the design, images, texts, technical documents, music and videos included in X-evian are also free. X-evian therefore forms part of the cycles of immaterial production, liberated from the info-capitalist restriction on the circulation of knowledges and techniques, and its devices of production and consumption (factories, companies, shopping centres, etc.).

Liberated immaterial production does not operate along the lines of the development-production-sale-consumption sequence, but rather follows interactive cycles of development-use-development, looped in backfed hypercycles of projects, groups and individuals (X-evian, metabolik, hacklabs, sindominio, Debian, Linux, etc...).

X-evian is therefore also a community of development and experimentation from free software towards a different technological, cultural and social model, in which production and use merge in cooperative horizontal communities working outside market interfaces, innovation restricted by patents and commercial interests and the consumerist use of technology.

This edition of X-evian seeks to explicitly support copyleft philosophy, motivations and practices, and therefore includes an organised selection of copyleft materials (chats, texts, manuals, etc.).
<<less
Download (497.4MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
986 downloads
Acme::Time::Baby 2.106

Acme::Time::Baby 2.106


Acme::Time::Baby - tell time little children can understand. more>>
Acme::Time::Baby - tell time little children can understand.

SYNOPSIS

use Acme::Time::Baby;
print babytime; # Prints current time.

use Acme::Time::Baby language => du;
print babytime "10:15"; # Prints a quarter past ten in a way
# little Dutch children can understand.

Using this module gives you the function babytime, which will return the time in the form The big hand is on the ten and the little hand is on the three. If no argument to babytime is given, the current time is used, otherwise a time of the form hh:mm can be passed. Both 12 and 24 hour clocks are supported.

When using the module, various options can be given. The following options can be passed:

language LANG

The language the time should be told in. The following languages are currently supported:

en English (this is the default)
br Brazilian Portuguese.
ceb Cebuano (Filipine dialect)
de German.
de_ch Swiss German.
du Dutch.
es Spanish.
fr French.
it Italian.
no Norwegian.
se Swedish.
swedish chef Swedish Chef (from the Muppets).
warez l44+.

If no language argument is given, English is used.
Note that some languages use accented letters. The returned sentences are correct for an ISO 8859-1 platform.

format STRING

This is the format used to represent the time. It will be passed to sprintf, and it should have two %s formatting codes. The other two arguments to sprintf are the position of the minute hand (the big hand) and the hour hand (the little hand). If you have perl 5.8 or above, you could use %2$s and %1$s to reverse the order.

number ARRAYREF

An array with the names of the numbers one to twelve, to be used in the formatted time.

noimport EXPR

By default, the sub babytime will be exported to the calling package. If for some reason the calling package does not want to import the sub, there are two ways to prevent this. Either use use Acme::Time::Baby (), which will prevent Acme::Time::Baby::import to be called, or pass noimport followed by a true value as arguments to the use statement.

<<less
Download (0.008MB)
Added: 2007-02-14 License: Perl Artistic License Price:
982 downloads
Aries Icons for Linux -

Aries Icons for Linux -


A funny icon collection designed to beautify your computer screen. more>> License:Free for personal non-commercial use, Includes a link back to author site
Comment:Includes: applications icons, system icons and bonus icons
<<less
Download (1.60MB)
Added: 2009-04-17 License: Freeware Price: Free
189 downloads
Lock-keyboard-for-Baby 20080706

Lock-keyboard-for-Baby 20080706


Lock-keyboard-for-Baby or lk4b in short, is a small program which locks your keyboard but leaves your mouse free. more>> <<less
Added: 2008-07-07 License: GPL Price: FREE
11 downloads
Q Light Controller 2.6.0

Q Light Controller 2.6.0


Q Light Controller 2 (QLC) aims to be a free alternative to commercial lighting software and hardware. more>>
Q Light Controller 2 (QLC) aims to be a free alternative to commercial lighting software and hardware. The main emphasis is to build a software that can be used to control any kinds of lighting equipment.
QLC uses the dmx4linux driver suite to access various hardware interfaces. Currently DMX512, Analog 0-10V and MIDI control systems are being supported by dmx4linux. Refer to dmx4linux interfaces for more information on supported interfaces.
Q Light Controller is free software licensed under the GNU General Public License.
Main features:
- Easy to use device-oriented interface
- Control up to 512 DMX/Analog channels thru DMX4Linux
- Use one of the ready-made fixture definitions, or
- Define your own fixtures with the device class editor
- Create fast changing or smoothly fading scenes, chasers and sequences
- Easy programming of moving lights thru a pattern generator
- Conjure your favourite lighting desk layout with the virtual console
<<less
Download (1.4MB)
Added: 2006-11-26 License: GPL (GNU General Public License) Price:
1081 downloads
WebLOAD Open Source 8.0.5.018 / 8.1.0.118 Alpha

WebLOAD Open Source 8.0.5.018 / 8.1.0.118 Alpha


WebLOAD Open Source is a commercial-grade load and stress testing tool that is sponsored by RadView. more>>
WebLOAD Open Source is a commercial-grade load and stress testing tool that is sponsored by RadView. The project can load-test any Internet application, including applications that use Web 2.0 and AJAX.
Whats New in 8.1.0.118 Alpha Development Release:
- This build is considered a release candidate because it contains numerous bug fixes, making it much more stable than the previous build.
<<less
Download (7.5MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
524 downloads
FlexiRecord 1.0.6

FlexiRecord 1.0.6


FlexiRecord is a ruby library for object oriented access to databases. more>>
FlexiRecord is a ruby library for object oriented access to databases. Each table is represented by a class, each row of that table is represented by an object of that class.
This library is especially aimed to properly support database transactions. By now only PostgreSQL (version 8.2 or higher) is supported as a backend.
Please note that this is an alpha release. This means the library is incomplete and mostly untested yet. Use it at your own risk.
FlexiRecord is free for private and commercial use, no warranty, subject to the license agreement in the software.
Enhancements:
- Database connections in the connection pool are now re-established if they are broken.
<<less
Download (0.022MB)
Added: 2007-04-18 License: MIT/X Consortium License Price:
924 downloads
BitNami Subversion Stack for Linux 1.4.6

BitNami Subversion Stack for Linux 1.4.6


rapidly replacing open source and commercial solutions around the world. more>> BitNami Subversion Stack is an easy to use installer for Subversion, which has rapidly become the version control standard and it is rapidly replacing open source and commercial solutions around the world. Subversion enables globally distributed software development teams to efficiently version and share source code. The open source Subversion project was started in early 2000 by CollabNet, the primary corporate sponsor of Subversion.
Key Capabilities:
-Versioned directories
-Atomic commits
-Efficient handling of binary files
-Quick branching and tagging
-Directory and file meta data
-Natively client-server
-Minimal server and network requirements
-Low admin overhead
-Good security
Subversion has rapidly become the version control standard and it is rapidly replacing open source and commercial solutions around the world. Subversion enables globally distributed software development teams to efficiently version and share source code. The open source Subversion project was started in early 2000 by CollabNet, the primary corporate sponsor of Subversion.
The BitNami Subversion is an installer that greatly simplifies the installation of a Subversion server and its runtime dependencies. Subversion is distributed Apache/BSD-style open source license. Please see the appendix for the specific licenses of all open source components included.
<<less
Download (11.51MB)
Added: 2009-04-03 License: Freeware Price: Free
204 downloads
Particle Reality 1.0

Particle Reality 1.0


Particle Reality is an extremely versatile Java particle engine. more>>
Particle Reality is an extremely versatile Java particle engine, based on the ideas of the excellent commercial particle animation software Particle Illusion by wondertouch.

Particle Reality allows you to define all aspects of particle and particle emitter behavior over their entire lifetime in XML, allowing for a very flexible particle system.

<<less
Download (MB)
Added: 2006-01-20 License: BSD License Price:
1394 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5