Main > Free Download Search >

Free nature software for linux

nature

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 120
Nature

Nature


Nature provides a Nature icon pack for Gnome. more>>
Nature provides a Nature icon pack for Gnome.

<<less
Download (0.20MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1004 downloads
AutoZen 2.1

AutoZen 2.1


AutoZen is a software brain machine for Linux. more>>
AutoZen is a software brain machine for Linux. It generates sounds that are meant to cause the brain to temporarily shift to a different dominant frequency and cause the user to experience an altered state of consciousness. It is similar to the devices seen in the Sharper Image catalog and in magazine ads, but the price is a lot more attractive!

To our knowledge, the medical community has done very little research into these devices, and they may very well do nothing at all. The author has used AutoZen with good results, perhaps because he meditates regularly, employs wishful thinking, or is just strange. We give no warranty of any kind.

All the same, if you are under treatment for any psychiatric or neurological disorder, you might want to approach this with caution. We have never heard of any problems caused by any software or device of this nature other than some epileptics having problems with the ones that include flashing lights (but then, Pokemon causes the same problem).

<<less
Download (0.11MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1196 downloads
Email::Store 0.24

Email::Store 0.24


Email::Store is a framework for database-backed email storage. more>>
Email::Store is a framework for database-backed email storage.

SYNOPSIS

use Email::Store dbi:mysql:mailstore;
Email::Store->setup; # Do this once

Email::Store::Mail->store( $rfc822 );
Email::Store::Mail->retrieve( $msgid );

...

Email::Store is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.

Email::Store itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about Class::DBI, youre going to need to in order to get much out of this.

Despite its minimalist nature, Email::Store is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, Email::Store is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.

For instance, the core Email::Store::Entity plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) Email::Store::Thread interfaces Email::Store to Mail::Thread allowing you to navigate mails by their position in a mail thread; the planned non-core Email::Store::Plucene module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.

<<less
Download (0.027MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1215 downloads
SaltShaker 1.4

SaltShaker 1.4


SaltShaker is a Python script for shaking things in the open source Blender 3d system. more>>
SaltShaker is a Python script for shaking things in the open source Blender 3d system. A lot of information/comments are included for budding Blender Python script writers.
In fact if you have programmed in a few languages before, the key thing to remember with Python is that instead of using curly brackets { } to encapsulate statement blocks it uses the whitespace indenting the code.
Confusing at first (and when you mix tabs with spaces) this soon becomes second nature ie.
def randomiseit(perc):
pr = (Blender.Noise.random()*perc)
# 50% of the time make it negative
if (Blender.Noise.random()<<less
Download (MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1026 downloads
Email::Store::DBI 0.254

Email::Store::DBI 0.254


Email::Store::DBI is a Perl module for database backend to Email::Store. more>>
Email::Store::DBI is a Perl module for database backend to Email::Store.

SYNOPSIS

use Email::Store dbi:...;

This class is a subclass of Class::DBI and contains means for Email::Store-based programs to register what DSN they wish to use. It also provides for building database tables from schemas embedded in the DATA section of plug-in modules, using Class::DBI::DATA::Schema.

"Email::Store" is the ideal basis for any application which needs to deal with databases of email: archiving, searching, or even storing mail for implementing IMAP or POP3 servers.

"Email::Store" itself is a very lightweight framework, meaning it does not provide very much functionality itself; in effect, it is merely a Class::DBI interface to a database schema which is designed for storing email. Incidentally, if you dont know much about "Class::DBI", youre going to need to in order to get much out of this.

Despite its minimalist nature, "Email::Store" is incredibly powerful. Its power comes from its extensibility, through plugin modules and hooks which allow you to add new database tables and concepts to the system, and so access the mail store from a "different direction". In a sense, "Email::Store" is a blank canvas, onto which you can pick and choose (or even write!) the plugins which you want for your application.

For instance, the core "Email::Store::Entity" plugin module addresses the idea of "people" in the email universe, allowing you to search for mails to or from particular people; (despite their changing names or email addresses) "Email::Store::Thread" interfaces "Email::Store" to "Mail::Thread" allowing you to navigate mails by their position in a mail thread; the planned non-core "Email::Store::Plucene" module plugs into the indexing process and stores information about emails in a Plucene search index for quick retrieval later, and so on.

<<less
Download (0.028MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1117 downloads
udpeq 0.1

udpeq 0.1


udpeq is a program that balances UDP traffic over parallel routes. more>>
udpeq is a program that balances UDP traffic over parallel routes. This is useful if you want to connect two endpoints through several slow or unreliable channels. For example, if you have 3 modem lines and a one-way satellite link, you might want to bond all of these together to form a faster, more reliable "virtual" connection.

udpeq by itself just shuttles UDP packets between two endpoints. You will almost certainly want to use a higher-level tunnel on top of udpeq to provide a "real" IP connection. CIPE or OPENVPN are perfect for this job.

Existing solutions of this nature (for example, multi-link ppp) tend to make simplistic assumptions about the bandwidth and availability of the channels. udpeq attempts to dynamically adjust to changing conditions, being as robust as possible while still being able to maximize throughput.
<<less
Download (0.048MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
Mknew 1-2

Mknew 1-2


Mknew project is an investigation of how to build simple Unix shell scripts to manage common development and administrative task more>>
Mknew project is an investigation of how to build simple Unix shell scripts to manage common development and administrative tasks.
The emphasis is on using languages and tools that already exist and are in common use rather than inventing something new. A related emphasis is on exploring the functional programming nature of the bash shell.
This is accomplished by (1) using the bash function capability, and (2) using the bash "$(" ")"syntax to delay function execution in bash scripts. This allows building scripts that have a Lisp like function syntax.
Capturing and factoring the syntax of procedures into bash funtions permits shell scripts to be written as a series of function calls with minimal syntax. A common syntactical pattern in mknew scripts is
verb noun noun noun ...
or, somewhat more precisely,
function argument1 argument2 ...
The goal of mknew is to provide a way to specify make procedures of heterogeneous components in a bash script. These components can include
- diverse source code languages,
- documentation texts,
- test procedures and
- data.
mknew supports the integration of software build procedures with other software development administration procedures, such as unit, integration, and systems testing; distribution; and installation.
In addition to the mknew function library, these "make" procedures rely only on tools provided by the bash shell, and common Unix command line utilities.
Enhancements:
- This release provides new capabilities and further explorations of bash functions.
- This version of mknew supports the deployment of files to arbitrary destinations, and is useful for managing many different types of files, such as configuration files, using a consistent activity pattern.
- Once mknew is installed, an "mkd" file is created in the source file directory, specifying the primary source file types.
- To deploy files, simply type "mk all" at the shell prompt.
<<less
Download (0.020MB)
Added: 2006-10-13 License: MIT/X Consortium License Price:
1106 downloads
Unit Circle 1.0.1

Unit Circle 1.0.1


Unit Circle project shows the relationship between trigonometric and angles functions like sine and cosine. more>>
Unit Circle project shows the relationship between trigonometric and angles functions like sine and cosine. To do this, the program implements an interactive "unit circle" (radius = 1) diagram, where the user can click or drag to set angles and see how the values of trigonometric functions change accordingly.

The unit circle (where the radius equals 1) provides a very clear demonstration of how various trigonometric functions relate to angles and one another. Draw an angle line from the origin to a point on the circumphrence of the circle; the (x,y) coordinates of that point will will be the cosine and sine of the angle.

In Unit Circle, use the mouse to set the angle line by either clicking or dragging the pointer inside the diagram. Or, change the trigonmetric values in the fields, and the angle will automatically adjust.

The inspiration for this program was provided by my home-schooled daughters, who had difficulty understanding the nature of trigonometry. As an educational tool, Unit Circle has been a success, and it may evolve into a larger application for exploring other aspects of trigonometry and geometry.
<<less
Download (0.10MB)
Added: 2006-01-09 License: GPL (GNU General Public License) Price:
1386 downloads
Ultimate++ 2007.1

Ultimate++ 2007.1


Ultimate++ is a cross-platform C++ rapid application development suite. more>>
Ultimate++ is a cross-platform C++ rapid application development suite.

C++ has the potential to be the most productive language in computing history. Its multiparadigm nature allows the effective development of almost any kind of software, from low level driver code to very high level business logic abstractions.

Unfortunately this potential has been left untapped, due to the lack of truly effective libraries, causing C++ evolution to be stuck somewhere between STL-iterator adaptors and smart-pointers. Ultimate++ finally uncovers this potential....

Ultimate++ includes a set of libraries (GUI, SQL, etc..), and an integrated development environment.

Rapid development is achieved by the smart and aggressive use of C++ rather than through fancy code generators. In this respect, U++ competes with popular scripting languages while preserving C/C++ runtime characteristics.

The U++ integrated development environment, TheIDE, introduces modular concepts to C++ programming. It features BLITZ-build technology to speedup C++ rebuilds up to 4 times, Visual designers for U++ libraries, Topic++ system for documenting code and creating rich text resources for applications (like help and code documentation) and Assist++ - a powerful C++ code analyzer that provides features like code completion, navigation and transformation.

TheIDE can work with GCC, MinGW and Visual C++ 7.1 or 8.0 compilers (including free Visual C++ Toolkit 2003 and Visual C++ 2005 Express Edition) and contains a full featured debugger. TheIDE can also be used to develop non-U++ applications.

U++ distributions combine U++ with 3rd party tools like MinGW compiler or SDL library to provide an instant development platform.

What you can get with the Ultimate++ download in plain English

- Very effective C++ library for cross-platform development in source form.
- A good integrated development environment, designed for developing large C++ applications.

You can use both, or you can use whatever you need.
<<less
Download (MB)
Added: 2007-04-12 License: BSD License Price:
926 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
MARGO 0.7a

MARGO 0.7a


MARGO project is an Argumentation Framework for decision making. more>>
MARGO project is an Argumentation Framework for decision making. A logic language is used as a concrete data structure for holding the statements like knowledge, goals, and actions. Different priorities are attached to these items corresponding to the reliability of the knowledge, the users preferences, and the credibility of alternatives.
These concrete data structures consist of information providing the backbone of arguments. Due to the abductive nature of decision making, we built arguments by reasoning backwards. Moreover, arguments are defined as tree-like structures.
In this way, MARGO can be used as a Decision Support System, suggesting some solutions, as other classical approaches, but also providing an interactive and intelligible explanation of this choice.
Enhancements:
- In order to evaluate the previous statements, all relevant pieces of information should be taken into account, such as the likelihood of beliefs, the preferences between goals, or the expected utilities of the alternatives.
- In the previous version, these priorities were qualitatives, i.e order relations classifying the elements from the "best" to the "worst".
- However, such qualitative information is not enough in many practical applications.
- Alternatively, this version allows quantitative priorities which are expressed by a valuation function over rules, called confidence.
<<less
Download (1.0MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
955 downloads
PDL::Impatient 2.4.3

PDL::Impatient 2.4.3


PDL::Impatient is a PDL for the impatient. more>>
PDL::Impatient is a PDL for the impatient.

SYNOPSIS

A brief summary of the main PDL features and how to use them.

Perl is an extremely good and versatile scripting language, well suited to beginners and allows rapid prototyping. However until recently it did not support data structures which allowed it to do fast number crunching.

However with the development of Perl v5, Perl acquired Objects. To put it simply users can define their own special data types, and write custom routines to manipulate them either in low level languages (C and Fortran) or in Perl itself.

This has been fully exploited by the PerlDL developers. The PDL module is a complete Object-Oriented extension to Perl (although you dont have to know what an object is to use it) which allows large N-dimensional data sets, such as large images, spectra, time series, etc to be stored efficiently and manipulated en masse. For example with the PDL module we can write the perl code $a=$b+$c, where $b and $c are large datasets (e.g. 2048x2048 images), and get the result in only a fraction of a second.

PDL variables (or piddles as they have come to be known) support a wide range of fundamental data types - arrays can be bytes, short integers (signed or unsigned), long integers, floats or double precision floats. And because of the Object-Oriented nature of PDL new customised datatypes can be derived from them.

As well as the PDL modules, that can be used by normal perl programs, PerlDL comes with a command line perl shell, called perldl, which supports command line editing. In combination with the various PDL graphics modules this allows data to be easily played with and visualised.

<<less
Download (2.1MB)
Added: 2007-06-29 License: Perl Artistic License Price:
847 downloads
Old Tech 0.2

Old Tech 0.2


System Monitor Theme that started out as a High-Tech one, then devolved into this low-tech broken typewriter version. more>>
System Monitor Theme that started out as a High-Tech one, then devolved into this low-tech broken typewriter version.

I love the chaotic nature of it.

This is my 1st theme, please critique!

<<less
Download (0.12MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
sortdemo 0.2

sortdemo 0.2


sortdemo project is a tool for sorting algorithm demonstrations. more>>
sortdemo project is a tool for sorting algorithm demonstrations.

Sortdemo generates sequences of image files (GIF or PNG) to visualize the steps of sorting algorithms.

It supports insertion, selection, bubble (4 variations), and quick sorts. The nature and the size of the initial list can be changed at will.

The generated sequences of images can be converted to nice animations.

It can be useful for generating educational documents such as Web pages, or simply used as a teaching tool.

<<less
Download (0.026MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1088 downloads
nettop 0.2.3

nettop 0.2.3


nettop is a program top like which shows the different packet types. more>>
nettop is a program top like which shows the different packet types. Possibly useful to determine the nature of packets on a given network and how much bandwidth they are using. I started this my freshman year in college for a networking class final project. Feed back and ideas would be greatly appreciated. A Redhat RPM of 0.2.3 has been made available thanks to Andrew Pam.
You need to have libpcap and slang installed to run this program. You can obtain these packages at the following urls:
ftp://space.mit.edu/pub/davis/slang/
http://www.tcpdump.org/release/
Right now it isnt very portible at all, and doesnt use autoconf. There are also a lot more features that could be added, but i dont have the time or insperation right now. If you find this at all useful and have comments, patches, or just want to let me know that you use it and would apprisiate more features and stuff, id be glad to hear from you.
Enhancements:
- nettop now reads from the /etc/services and /etc/protocols files
- udp ports are now shown
- installation scripts improvements
- indented code
<<less
Download (0.014MB)
Added: 2006-06-28 License: BSD License Price:
1221 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5