crossover
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 11
QCADesigner 2.0.3
QCADesigner is a CAD-like tool for the design and simulation of circuits based on Quantum Cellular Automata. more>>
QCADesigner is the product of an ongoing research effort at the University of Calgary ATIPS Laboratory to create a design and simulation tool for Quantum Dot Cellular Automata (QCA). This tool is still under development and is provided free of cost to the research community "as is".
QCA is an emerging nanotechnology concept for the realization of a computer built with arrays of nano-scale QCA cells. These QCA cells are capable of performing all complex computational functions required for general-purpose computation.
QCA has been listed as one of the six emerging nanotechnologies with applications in future computers by the International Technology Roadmap For Semiconductors (ITRS). QCADesigner facilitates rapid design, layout and simulation of QCA circuits by providing powerful CAD features available in more complex circuit design tools.
Main features:
- Intuitive CAD-like user interface
- Easy drag-and-drop circuit design
- Encapsulated PostScript (EPS) printing
- Support for multiple layers (for signal crossover)
- Multilingual support (de hu ro fr - so far)
Enhancements:
- This is a minor bugfix release featuring an improved layer mapping dialog.
- However, the most important change is on the Windows front: The Windows version of QCADesigner now uses the Gaim version of the GTK+ Runtime Environment.
- The new version allows you to upgrade from the dropline.net version of GTK+.
<<lessQCA is an emerging nanotechnology concept for the realization of a computer built with arrays of nano-scale QCA cells. These QCA cells are capable of performing all complex computational functions required for general-purpose computation.
QCA has been listed as one of the six emerging nanotechnologies with applications in future computers by the International Technology Roadmap For Semiconductors (ITRS). QCADesigner facilitates rapid design, layout and simulation of QCA circuits by providing powerful CAD features available in more complex circuit design tools.
Main features:
- Intuitive CAD-like user interface
- Easy drag-and-drop circuit design
- Encapsulated PostScript (EPS) printing
- Support for multiple layers (for signal crossover)
- Multilingual support (de hu ro fr - so far)
Enhancements:
- This is a minor bugfix release featuring an improved layer mapping dialog.
- However, the most important change is on the Windows front: The Windows version of QCADesigner now uses the Gaim version of the GTK+ Runtime Environment.
- The new version allows you to upgrade from the dropline.net version of GTK+.
Download (2.5MB)
Added: 2005-08-04 License: GPL (GNU General Public License) Price:
1547 downloads
Evocosm 3.2.0
Evocosm is a C++ Framework for Evolutionary Computing library. more>>
Evocosm is a C++ Framework for Evolutionary Computing library.
Evocosm is a set of classes that abstract the fundamental components of an evolutionary algorithm. Ill list the components here with a bit of introduction; you can review the details of the classes by downloading the code archives or by reviewing the online documentation (see the menu at the articles beginning for code and documentation links.)
All class documentation was generated from source code comments using doxygen. These docs have not been thoroughly proofread, so they may contain a few typos and minor errors. Self-publishing has taught me the value of a good proofreader.
Evolutionary algorithms come in a variety of shapes and flavors, but at their core, they all share certain characteristics: populations that reproduce and mutate through a series of generations, producing future generations based on some measure of fitness. An amazing variety of algorithms can be built on that general framework, which leads me to construct a set of core classes as the basis for future applications.
The classes include:
Random Numbers
Evocosm relies on the code in The Twisted Road to to Randomness for random number generation. The Mersenne Twister algorithm is particularly well-suited to evolutionary algorithms, based on its long period, granularity, "randomness", and speed. As of the 2.1.0 release of libevocosm, the mtprng class resides in libcoyote, and not libevocosm as it did earlier. This means that any program using libevocosm must also link against libcoyote.
Validation
To validate function arguments, Evocosm uses the code I describe in Beyond Assert; this code is part of libcoyote. Any program using libevocosm must also link against libcoyote.
Floating- Point Chromosomes
Evcosom supports the crossover and mutation of IEEE-754 floating-point numbers, using an algorithm I invented in the mid-1990s. This topic is covered in detail here.
Roulette Wheels
The roulette_wheel class implements the concept of a "software roulette wheel" for Evocosm. This is a tool for natural selection, wherein the fitness of an organism determines the width of its "slot" on an imaginary roulette wheel.
Organisms
Think of an "organism" as an answer to a problem posed by a fitness landscape; "genes" define its behavior and an associated fitness value is assigned by an evocosm during testing. Evocosm provides the freedom to define organisms as almost anything: bit strings, floating-point numbers, finite state machines, LISP programs, or external robots controlled via radio waves. In A Complexity of Options, I used an Evocosm-derived GA to determine the gcc options that produce the faster code.
Fitness Landscapes
A "fitness landscape" defines the environment where organisms "live" or a problem that they are tested against. The landscape is intimately tied to the nature of the organism; think of an organism as a potential solution to a problem implemented by the landscape. A floating-point organism, for example, could be tested by a fitness landscape that represents a function to be maximized. Or, an organism describing the shape of wing could be tested by a landscape that simulates a wind tunnel.
Evocosms
The evocosm class binds a population of organisms to a set of objects that define the rules of survival and reproduction. An evocosm will have one or more populations, which will evolve against population-unique and shared (common) fitness landscapes; breeding is controlled by a set of class objects from the following classes.
Fitness Scaling
As a population converges on an "answer", the difference between fitness values often becomes very small; this prevents the best solutions from having a significant advantage in reproduction. Fitness scaling solves this problem by adjusting the fitness values to the advantage of the most-fit chromosomes. Evocosm includes a variety of fitness scaling algorithms.
Migration
A migrator removes individuals (via "emigration") from a population of organisms, transferring them to another population (via "immigration"). The only concrete implementation of this interface is random_pool_migrator, which defines a specific number of organisms that may migrate from each population to another. When creating a random_pool_migrator, specify the number of organisms that can migrate from each population. Migration is, of course, meaningless in any application that has only one population.
Selecting Survivors
A selector decides which organisms survive from one generation to the next. Some evolutionary algorithms will not use a selector; other will. In general, it is effective to keep the "best" organisms from one generation to the next, so that good genes do not become lost at random. This is, of course, an improvement on nature, where being "the best" doesnt guarantee survival.
Reproduction
In most cases, a reproducer generates new organisms using parents selected (by fitness) from an existing population. In some singular (and probably rare) cases, a reproducer might generate new, random organisms in order to keep diversity high. Reproduction techniques can include crossover and asexual, sexual and (my favorite) try-sexual models.
Mutation Operators
A mutator applies mutations (random, usually small changes) to a set of organisms. Mutation is highly dependent on the type of organism. In traditional genetic algorithms, a mutation flips one or more bits in an integer (i.e., chromosome). Evolving a path for the Traveling Salesman Problem involves complex mutations that maintain valid permutations of destination points; in the case of floating-point numbers, Ive provided utilities for mutating and crossing IEC-60559 (IEEE- 754) float and double types.
Enhancements:
- Minor bugfixes, code cleanups, and changes to pseudo-random number generators.
- Now includes Visual Studio 2005 projects along with GNU build files.
<<lessEvocosm is a set of classes that abstract the fundamental components of an evolutionary algorithm. Ill list the components here with a bit of introduction; you can review the details of the classes by downloading the code archives or by reviewing the online documentation (see the menu at the articles beginning for code and documentation links.)
All class documentation was generated from source code comments using doxygen. These docs have not been thoroughly proofread, so they may contain a few typos and minor errors. Self-publishing has taught me the value of a good proofreader.
Evolutionary algorithms come in a variety of shapes and flavors, but at their core, they all share certain characteristics: populations that reproduce and mutate through a series of generations, producing future generations based on some measure of fitness. An amazing variety of algorithms can be built on that general framework, which leads me to construct a set of core classes as the basis for future applications.
The classes include:
Random Numbers
Evocosm relies on the code in The Twisted Road to to Randomness for random number generation. The Mersenne Twister algorithm is particularly well-suited to evolutionary algorithms, based on its long period, granularity, "randomness", and speed. As of the 2.1.0 release of libevocosm, the mtprng class resides in libcoyote, and not libevocosm as it did earlier. This means that any program using libevocosm must also link against libcoyote.
Validation
To validate function arguments, Evocosm uses the code I describe in Beyond Assert; this code is part of libcoyote. Any program using libevocosm must also link against libcoyote.
Floating- Point Chromosomes
Evcosom supports the crossover and mutation of IEEE-754 floating-point numbers, using an algorithm I invented in the mid-1990s. This topic is covered in detail here.
Roulette Wheels
The roulette_wheel class implements the concept of a "software roulette wheel" for Evocosm. This is a tool for natural selection, wherein the fitness of an organism determines the width of its "slot" on an imaginary roulette wheel.
Organisms
Think of an "organism" as an answer to a problem posed by a fitness landscape; "genes" define its behavior and an associated fitness value is assigned by an evocosm during testing. Evocosm provides the freedom to define organisms as almost anything: bit strings, floating-point numbers, finite state machines, LISP programs, or external robots controlled via radio waves. In A Complexity of Options, I used an Evocosm-derived GA to determine the gcc options that produce the faster code.
Fitness Landscapes
A "fitness landscape" defines the environment where organisms "live" or a problem that they are tested against. The landscape is intimately tied to the nature of the organism; think of an organism as a potential solution to a problem implemented by the landscape. A floating-point organism, for example, could be tested by a fitness landscape that represents a function to be maximized. Or, an organism describing the shape of wing could be tested by a landscape that simulates a wind tunnel.
Evocosms
The evocosm class binds a population of organisms to a set of objects that define the rules of survival and reproduction. An evocosm will have one or more populations, which will evolve against population-unique and shared (common) fitness landscapes; breeding is controlled by a set of class objects from the following classes.
Fitness Scaling
As a population converges on an "answer", the difference between fitness values often becomes very small; this prevents the best solutions from having a significant advantage in reproduction. Fitness scaling solves this problem by adjusting the fitness values to the advantage of the most-fit chromosomes. Evocosm includes a variety of fitness scaling algorithms.
Migration
A migrator removes individuals (via "emigration") from a population of organisms, transferring them to another population (via "immigration"). The only concrete implementation of this interface is random_pool_migrator, which defines a specific number of organisms that may migrate from each population to another. When creating a random_pool_migrator, specify the number of organisms that can migrate from each population. Migration is, of course, meaningless in any application that has only one population.
Selecting Survivors
A selector decides which organisms survive from one generation to the next. Some evolutionary algorithms will not use a selector; other will. In general, it is effective to keep the "best" organisms from one generation to the next, so that good genes do not become lost at random. This is, of course, an improvement on nature, where being "the best" doesnt guarantee survival.
Reproduction
In most cases, a reproducer generates new organisms using parents selected (by fitness) from an existing population. In some singular (and probably rare) cases, a reproducer might generate new, random organisms in order to keep diversity high. Reproduction techniques can include crossover and asexual, sexual and (my favorite) try-sexual models.
Mutation Operators
A mutator applies mutations (random, usually small changes) to a set of organisms. Mutation is highly dependent on the type of organism. In traditional genetic algorithms, a mutation flips one or more bits in an integer (i.e., chromosome). Evolving a path for the Traveling Salesman Problem involves complex mutations that maintain valid permutations of destination points; in the case of floating-point numbers, Ive provided utilities for mutating and crossing IEC-60559 (IEEE- 754) float and double types.
Enhancements:
- Minor bugfixes, code cleanups, and changes to pseudo-random number generators.
- Now includes Visual Studio 2005 projects along with GNU build files.
Download (0.34MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1138 downloads
BruteFIR 1.0f
BruteFIR is a software convolution engine. more>>
BruteFIR is a software convolution engine, a program for applying long FIR filters to multi-channel digital audio, either offline or in realtime. BruteFIRs basic operation is specified through a configuration file, and filters, attenuation and delay can be changed in runtime through a simple command line interface.
The FIR filter algorithm used is an optimised frequency domain algorithm, partly implemented in hand-coded assembler, thus throughput is extremely high. In realtime, a standard computer can typically run more than 10 channels with more than 60000 filter taps each.
Through its highly modular design, things like adaptive filtering, signal generators and sample I/O are easily added, extended and modified, without the need to alter the program itself.
Main features:
- Designed for realtime filtering of HiFi quality digital audio
- Up to 256 inputs and 256 outputs
- Input/output provided by external modules for maximum flexibility
- Default I/O modules provide support for sound cards and files
- Access multiple I/O modules (= several sound cards / files) at the same time
- 8 - 24 bit audio at any rate supported by sound cards
- Easy-to-use C language API to create your own I/O modules, for example to support more file formats, other sound card APIs, or generate test signals
- Mix/copy channels before and/or after filtering
- Cascade filters or build complex filter networks
- Simple C language API to create logic modules, to add new functionality
- Create your own logic module, for example to do adaptive filtering
- Provided is a logic module which implements a CLI accessible through telnet to manage runtime settings, and a dynamic equalier.
- Toggle/change filter in runtime
- Alter attenuation for each individual input and output in runtime
- Alter delay for each individual input and output in runtime
- Filter length limited only by processor power and memory
- Typical filter lengths are in the range 2048 - 262144 taps
- Reasonable low I/O-delay (typically 200 ms)
- Fixed I/O-delay, thus possible to sample-align with other processors
- Cross-fade for seamless filter coefficient changes.
- Redithering of outputs (HP TPDF)
- Overflow protection and monitoring
- 32 or 64 bit floating point internal resolution.
- Supports multiple processors
A few examples of applications where BruteFIR could be a central component:
- Digital crossover filters
- Room equalisation
- Cross-talk cancellation
- Wavefield synthesis
- Auralisation
- Ambiophonics
- Ambisonics
Among these, room equalisation and auralisation needs the longest FIR filters in the common case. Many applications can do with quite short filters actually, but the thing is that you will probably not need to compromise on the filter lengths when you use BruteFIR, even when sample rates go up.
However, BruteFIR is pretty useless by itself, since it is only a FIR filter engine. It does not provide any filter coefficients, thus it is not a filter design program. Also, due to its relatively high I/O-delay, BruteFIR is most suited for applications when the input signal is not live.
<<lessThe FIR filter algorithm used is an optimised frequency domain algorithm, partly implemented in hand-coded assembler, thus throughput is extremely high. In realtime, a standard computer can typically run more than 10 channels with more than 60000 filter taps each.
Through its highly modular design, things like adaptive filtering, signal generators and sample I/O are easily added, extended and modified, without the need to alter the program itself.
Main features:
- Designed for realtime filtering of HiFi quality digital audio
- Up to 256 inputs and 256 outputs
- Input/output provided by external modules for maximum flexibility
- Default I/O modules provide support for sound cards and files
- Access multiple I/O modules (= several sound cards / files) at the same time
- 8 - 24 bit audio at any rate supported by sound cards
- Easy-to-use C language API to create your own I/O modules, for example to support more file formats, other sound card APIs, or generate test signals
- Mix/copy channels before and/or after filtering
- Cascade filters or build complex filter networks
- Simple C language API to create logic modules, to add new functionality
- Create your own logic module, for example to do adaptive filtering
- Provided is a logic module which implements a CLI accessible through telnet to manage runtime settings, and a dynamic equalier.
- Toggle/change filter in runtime
- Alter attenuation for each individual input and output in runtime
- Alter delay for each individual input and output in runtime
- Filter length limited only by processor power and memory
- Typical filter lengths are in the range 2048 - 262144 taps
- Reasonable low I/O-delay (typically 200 ms)
- Fixed I/O-delay, thus possible to sample-align with other processors
- Cross-fade for seamless filter coefficient changes.
- Redithering of outputs (HP TPDF)
- Overflow protection and monitoring
- 32 or 64 bit floating point internal resolution.
- Supports multiple processors
A few examples of applications where BruteFIR could be a central component:
- Digital crossover filters
- Room equalisation
- Cross-talk cancellation
- Wavefield synthesis
- Auralisation
- Ambiophonics
- Ambisonics
Among these, room equalisation and auralisation needs the longest FIR filters in the common case. Many applications can do with quite short filters actually, but the thing is that you will probably not need to compromise on the filter lengths when you use BruteFIR, even when sample rates go up.
However, BruteFIR is pretty useless by itself, since it is only a FIR filter engine. It does not provide any filter coefficients, thus it is not a filter design program. Also, due to its relatively high I/O-delay, BruteFIR is most suited for applications when the input signal is not live.
Download (0.23MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1363 downloads
VETH 1.0
VETH is a daemon that creates a virtual ethernet card in Linux. more>>
VETH is a daemon that creates a virtual ethernet card in Linux. This is done via the Universal TUN/ TAP Driver. It is useful to request more than one IP address via DHCP with a virtual ethernet card attached to an existing NIC.
Linux has an implementation that does the work, but partially. Sometimes, this emulation doesnt work as expected. Because of this, I wrote VETH, to be helpful in this situations.
For example, if you want to have more than one IP address obtained via DHCP probably you know thats impossible. With VETH you can attach a virtual ethernet into an existent NIC card, and the run dhclient in it to obtain a new IP.
Perhaps you are saying "hey, man, dont mess with me, I can do that with aliasing. With an ifconfig eth0:1 I have a new ethernet". OK, perhaps, perhaps...
It isnt 100% true. Look at this scenario:
You have a DSL modem working as a bridge. You have a firewall with exactly 2 NICs, no more. One of these NICs is crossover-connected to your modem, and another is in your internal subnet.
<<lessLinux has an implementation that does the work, but partially. Sometimes, this emulation doesnt work as expected. Because of this, I wrote VETH, to be helpful in this situations.
For example, if you want to have more than one IP address obtained via DHCP probably you know thats impossible. With VETH you can attach a virtual ethernet into an existent NIC card, and the run dhclient in it to obtain a new IP.
Perhaps you are saying "hey, man, dont mess with me, I can do that with aliasing. With an ifconfig eth0:1 I have a new ethernet". OK, perhaps, perhaps...
It isnt 100% true. Look at this scenario:
You have a DSL modem working as a bridge. You have a firewall with exactly 2 NICs, no more. One of these NICs is crossover-connected to your modem, and another is in your internal subnet.
Download (0.014MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1213 downloads
Pioneer Linux 2.1
Pioneer Linux is a desktop-oriented, Kubuntu-based distribution targeted at new as well as experienced Linux users. more>>
Pioneer Linux is a desktop-oriented, Kubuntu-based distribution targeted at new as well as experienced Linux users. The product comes in two flavours: as a freely downloadable live and installation CD, and as a commercial boxed edition with CrossOver Office and technical support.
Test and try before you install Thats right, you can test Pioneer Linux running off the CD before you decide to perform an installation. This means that you can actually run your operating system and learn it before you install or make that critical decision to leave your previous operating system installation. ASPEN for older computers is not a live CD.
Burn CDs Yes take a look at our screenshots and youll see weve included a utility named K3b so you can burn your CDs or DVDs! K3b is a simple yet powerful tool thats simple to use
Browse the Internet safely Yes its safe! You can browse the Internet safely when you use Pioneer Linux. Its not the same anymore with people dropping viruses or keystroke loggers because of that old unsafe browser youve been using for years! Go wild and have fun!
Listen to music You can listen to your favorite music while working using the CD Player included or make cuts and create your own CD from your music! You decide, the tools are included!
Word processing and more! Yes thats right! Your Pioneer Linux operating system comes with OpenOffice.org that allows you to exchange documents with Word users. You even have the opportunity to run spreadsheets and create professional presentations. More? yes a database application is new with OpenOffice.org 2.0
Play some games Weve packed Pioneer with loads of games to help you kill some time. Want more than those included? Check the knowledge base for more games that can be run like Savage or Civilization.
Utilities Weve included some of the best utilities to manage your operating system today. These utilities come with even our basic ASPEN application so you can manage your system day-to-day!
Enhancements:
- Technalign, Inc. has released Pioneer Basic 2.1 of its base Linux operating system. Pioneer Basic 2.1 is being released on DVD. Technalign will continue to ship Pioneer Basic 2.0 for those users who do not wish to purchase a DVD drive for their systems. Pioneer Basic 2.1 is similar to Basic 2.0 with several exceptions. The biggest exception is that Pioneer 2.1 is based on Feisty and not Edgy while it continues to be based on Kubuntu. Adept is no longer incorporated as the update manager, but is now replaced with Synaptic per the business and consumer communities. Also notable are the Guarddog Firewall as well as the KlamAV anti-virus utilities that have been added and OpenOffice.org 2.2.
<<lessTest and try before you install Thats right, you can test Pioneer Linux running off the CD before you decide to perform an installation. This means that you can actually run your operating system and learn it before you install or make that critical decision to leave your previous operating system installation. ASPEN for older computers is not a live CD.
Burn CDs Yes take a look at our screenshots and youll see weve included a utility named K3b so you can burn your CDs or DVDs! K3b is a simple yet powerful tool thats simple to use
Browse the Internet safely Yes its safe! You can browse the Internet safely when you use Pioneer Linux. Its not the same anymore with people dropping viruses or keystroke loggers because of that old unsafe browser youve been using for years! Go wild and have fun!
Listen to music You can listen to your favorite music while working using the CD Player included or make cuts and create your own CD from your music! You decide, the tools are included!
Word processing and more! Yes thats right! Your Pioneer Linux operating system comes with OpenOffice.org that allows you to exchange documents with Word users. You even have the opportunity to run spreadsheets and create professional presentations. More? yes a database application is new with OpenOffice.org 2.0
Play some games Weve packed Pioneer with loads of games to help you kill some time. Want more than those included? Check the knowledge base for more games that can be run like Savage or Civilization.
Utilities Weve included some of the best utilities to manage your operating system today. These utilities come with even our basic ASPEN application so you can manage your system day-to-day!
Enhancements:
- Technalign, Inc. has released Pioneer Basic 2.1 of its base Linux operating system. Pioneer Basic 2.1 is being released on DVD. Technalign will continue to ship Pioneer Basic 2.0 for those users who do not wish to purchase a DVD drive for their systems. Pioneer Basic 2.1 is similar to Basic 2.0 with several exceptions. The biggest exception is that Pioneer 2.1 is based on Feisty and not Edgy while it continues to be based on Kubuntu. Adept is no longer incorporated as the update manager, but is now replaced with Synaptic per the business and consumer communities. Also notable are the Guarddog Firewall as well as the KlamAV anti-virus utilities that have been added and OpenOffice.org 2.2.
Download (848MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
890 downloads
Santa Fe Linux CTR3
Santa Fe Desktop Linux is an easy to use desktop operating system. more>>
Santa Fe Desktop Linux is an easy to use desktop operating system. It puts some of the worlds best open source applications within the reach of non-technical users. It even runs right off the CD so you can try it without installing.
Santa Fe Desktop Linux was built following these design goals:
Make it familiar. Present the user a familiar interface where they dont have to guess which buttons do what.
Keep it small. The distribution should install and run from a single CD.
Make it useful to normal users. The distribution should be useful to a large non-technical audience.
Keep it fun. Make sure audio and video work to the best of their abilities so the users can play games and enjoy multimedia without hassle.
Leave the user alone. Hardware should always be automatically detected and configured without the users help. Software configuration should automatically have sane defaults.
Unlike other operating systems, Santa Fe is designed to automatically configure itself everytime it runs. It will auto-detect the right drivers for your hardware and configure it all to the best of its abilities. No more troublesome driver installs. Santa Fe works best in Plug and Play and DHCP environments.
Main features:
- A viable alternative to your current operating system (OS).
- Imagine if your OS came preinstalled with a fully featured photo editing and image creation program.
- Imagine if every OS included an animation and 3D graphics creation program.
- What if your OS came standard with finance management and desktop publishing applications?.
- Now imagine if all those things were available for $39.95.
- Santa Fe Linux offers the open source solution to the seemingly impossible dream described above. Santa Fe comes with a program called the GIMP, a fully featured digital photo editing and image/graphics creation program. Blender, another standard program, is a 3D graphics, animation, rendering, and post production program. Managing finances is easy with GNU Cash, an open source program that gets your finances organized quickly. Desktop publishing is simple with Scribus, a program that allows you to create everything from newsletters to a fully produced magazine.
- Also, Santa Fe features a full office suite that is compatible with Microsoft? Word, Excel, Powerpoint, and Outlook.
- Additional programs that come with Santa Fe Linux:
- Gnome Meeting: Video teleconferencing application.
- Audacity: Records, renders, and applies digital effects to audio.
- Kino: Digital video editor.
- XMMS: Audio player that supports a wide variety of audio file formats.
- Anjuta: Developers program which allows users to create their own applications/programs.
- Also, at a price of 82.99, Santa Fe is now available with Codeweavers Crossover Office. This program allows users to install the Microsoft? Office Suite including Word, Excel, Powerpoint, Outlook, and Access.
<<lessSanta Fe Desktop Linux was built following these design goals:
Make it familiar. Present the user a familiar interface where they dont have to guess which buttons do what.
Keep it small. The distribution should install and run from a single CD.
Make it useful to normal users. The distribution should be useful to a large non-technical audience.
Keep it fun. Make sure audio and video work to the best of their abilities so the users can play games and enjoy multimedia without hassle.
Leave the user alone. Hardware should always be automatically detected and configured without the users help. Software configuration should automatically have sane defaults.
Unlike other operating systems, Santa Fe is designed to automatically configure itself everytime it runs. It will auto-detect the right drivers for your hardware and configure it all to the best of its abilities. No more troublesome driver installs. Santa Fe works best in Plug and Play and DHCP environments.
Main features:
- A viable alternative to your current operating system (OS).
- Imagine if your OS came preinstalled with a fully featured photo editing and image creation program.
- Imagine if every OS included an animation and 3D graphics creation program.
- What if your OS came standard with finance management and desktop publishing applications?.
- Now imagine if all those things were available for $39.95.
- Santa Fe Linux offers the open source solution to the seemingly impossible dream described above. Santa Fe comes with a program called the GIMP, a fully featured digital photo editing and image/graphics creation program. Blender, another standard program, is a 3D graphics, animation, rendering, and post production program. Managing finances is easy with GNU Cash, an open source program that gets your finances organized quickly. Desktop publishing is simple with Scribus, a program that allows you to create everything from newsletters to a fully produced magazine.
- Also, Santa Fe features a full office suite that is compatible with Microsoft? Word, Excel, Powerpoint, and Outlook.
- Additional programs that come with Santa Fe Linux:
- Gnome Meeting: Video teleconferencing application.
- Audacity: Records, renders, and applies digital effects to audio.
- Kino: Digital video editor.
- XMMS: Audio player that supports a wide variety of audio file formats.
- Anjuta: Developers program which allows users to create their own applications/programs.
- Also, at a price of 82.99, Santa Fe is now available with Codeweavers Crossover Office. This program allows users to install the Microsoft? Office Suite including Word, Excel, Powerpoint, Outlook, and Access.
Download (600MB)
Added: 2005-04-05 License: GPL (GNU General Public License) Price:
1676 downloads
Pioneer Rifleman Alpha 3
Pioneer Linux, a product of Technalign, Inc, is a desktop-oriented, Kubuntu-based distribution targeted at new/advanced users. more>>
Pioneer Linux, a product of Technalign, Inc, is a desktop-oriented, Kubuntu-based distribution targeted at new as well as experienced Linux users.
Pioneer Linux comes in two flavours: as a freely downloadable live and installation CD, and as a commercial boxed edition with CrossOver Office and technical support.
Enhancements:
- Technalign, Inc. has announced that they have released Pioneer Rifleman Alpha 3 for testing. Rifleman requires a DVD for installation and is only recommended for P4 systems, or equivalent, and NVIDIA or ATI for graphics support. The new build includes additional drivers not included in Alpha 2 as well as the Guarddog firewall and KlamAV anti-virus. Dianne Ursini, CEO of Technalign, Inc. stated, We have been excluding KlamAV as well as Guarddog in the past for obvious reasons but are including it now due to the demand of our Partner network. Technalign is requesting that the community as well as its partners report bugs and desired drivers.
<<lessPioneer Linux comes in two flavours: as a freely downloadable live and installation CD, and as a commercial boxed edition with CrossOver Office and technical support.
Enhancements:
- Technalign, Inc. has announced that they have released Pioneer Rifleman Alpha 3 for testing. Rifleman requires a DVD for installation and is only recommended for P4 systems, or equivalent, and NVIDIA or ATI for graphics support. The new build includes additional drivers not included in Alpha 2 as well as the Guarddog firewall and KlamAV anti-virus. Dianne Ursini, CEO of Technalign, Inc. stated, We have been excluding KlamAV as well as Guarddog in the past for obvious reasons but are including it now due to the demand of our Partner network. Technalign is requesting that the community as well as its partners report bugs and desired drivers.
Download (754MB)
Added: 2007-04-21 License: GPL (GNU General Public License) Price:
917 downloads
Fast Genetic Algorithm 1.3.4
Fast Genetic Algorithm is a simple yet powerful implementation of a general genetic algorithm. more>>
Fast Genetic Algorithm is a simple yet powerful implementation of a general genetic algorithm, and provides many types of crossover and selection procedures.
It is suitable to solve mathematical problems such as combinatorical optimization ones, as well as to build artificial life simulations.
Written in C++, the library is released under the terms of the GNU Lesser General Public License, and its easy to incorporate in other applications.
Further improvements include parallelization of the algorithm in multi-processor environments and general performance optimizations.
You can download the current development snapshot, which is a working but not fully tested version of the library.
Enhancements:
- Dynamic arrays were fixed to compile even on non-C99 compilers (like MSVC).
- A switch to choose whether to preserve the fittest individual across generations was added.
- The pthreads-win32 library was included in the package, as well as Visual C++ and Dev-C++ projects to easily build the source code on Windows.
- A function that computes the standard deviation of fitness values was added (thanks to Jonas Neubert for the contribution).
<<lessIt is suitable to solve mathematical problems such as combinatorical optimization ones, as well as to build artificial life simulations.
Written in C++, the library is released under the terms of the GNU Lesser General Public License, and its easy to incorporate in other applications.
Further improvements include parallelization of the algorithm in multi-processor environments and general performance optimizations.
You can download the current development snapshot, which is a working but not fully tested version of the library.
Enhancements:
- Dynamic arrays were fixed to compile even on non-C99 compilers (like MSVC).
- A switch to choose whether to preserve the fittest individual across generations was added.
- The pthreads-win32 library was included in the package, as well as Visual C++ and Dev-C++ projects to easily build the source code on Windows.
- A function that computes the standard deviation of fitness values was added (thanks to Jonas Neubert for the contribution).
Download (0.22MB)
Added: 2007-07-16 License: LGPL (GNU Lesser General Public License) Price:
835 downloads
Pioneer Linux Christian Edition Beta 1
Pioneer Linux is a desktop-oriented, Kubuntu-based distribution targeted at new as well as experienced Linux users. more>>
Pioneer Linux is a desktop-oriented, Kubuntu-based distribution targeted at new as well as experienced Linux users. The product comes in two flavours: as a freely downloadable live and installation CD, and as a commercial boxed edition with CrossOver Office and technical support.
Test and try before you install Thats right, you can test Pioneer Linux running off the CD before you decide to perform an installation. This means that you can actually run your operating system and learn it before you install or make that critical decision to leave your previous operating system installation. ASPEN for older computers is not a live CD.
Burn CDs Yes take a look at our screenshots and youll see weve included a utility named K3b so you can burn your CDs or DVDs! K3b is a simple yet powerful tool thats simple to use
Browse the Internet safely Yes its safe! You can browse the Internet safely when you use Pioneer Linux. Its not the same anymore with people dropping viruses or keystroke loggers because of that old unsafe browser youve been using for years! Go wild and have fun!
Listen to music You can listen to your favorite music while working using the CD Player included or make cuts and create your own CD from your music! You decide, the tools are included!
Word processing and more! Yes thats right! Your Pioneer Linux operating system comes with OpenOffice.org that allows you to exchange documents with Word users. You even have the opportunity to run spreadsheets and create professional presentations. More? yes a database application is new with OpenOffice.org 2.0
Play some games Weve packed Pioneer with loads of games to help you kill some time. Want more than those included? Check the knowledge base for more games that can be run like Savage or Civilization.
Utilities Weve included some of the best utilities to manage your operating system today. These utilities come with even our basic ASPEN application so you can manage your system day-to-day!
Enhancements:
- Technalign, Inc. has announced it has released its Beta 1 Pioneer Linux Christian Edition operating system to the community. The beta includes many of the features that come standard with Pioneer Linux. The application includes the King James Bible and many study applications. The Pioneer Christian Edition replaces the Frontier Christian Edition previously retailed by Technaligns partners. There will be a non-installable edition available for Windows users who only want to use the Christian Edition for study. Technalign requests that users report back any applications they would like added as well as applications that they wish removed along with bug reports.
<<lessTest and try before you install Thats right, you can test Pioneer Linux running off the CD before you decide to perform an installation. This means that you can actually run your operating system and learn it before you install or make that critical decision to leave your previous operating system installation. ASPEN for older computers is not a live CD.
Burn CDs Yes take a look at our screenshots and youll see weve included a utility named K3b so you can burn your CDs or DVDs! K3b is a simple yet powerful tool thats simple to use
Browse the Internet safely Yes its safe! You can browse the Internet safely when you use Pioneer Linux. Its not the same anymore with people dropping viruses or keystroke loggers because of that old unsafe browser youve been using for years! Go wild and have fun!
Listen to music You can listen to your favorite music while working using the CD Player included or make cuts and create your own CD from your music! You decide, the tools are included!
Word processing and more! Yes thats right! Your Pioneer Linux operating system comes with OpenOffice.org that allows you to exchange documents with Word users. You even have the opportunity to run spreadsheets and create professional presentations. More? yes a database application is new with OpenOffice.org 2.0
Play some games Weve packed Pioneer with loads of games to help you kill some time. Want more than those included? Check the knowledge base for more games that can be run like Savage or Civilization.
Utilities Weve included some of the best utilities to manage your operating system today. These utilities come with even our basic ASPEN application so you can manage your system day-to-day!
Enhancements:
- Technalign, Inc. has announced it has released its Beta 1 Pioneer Linux Christian Edition operating system to the community. The beta includes many of the features that come standard with Pioneer Linux. The application includes the King James Bible and many study applications. The Pioneer Christian Edition replaces the Frontier Christian Edition previously retailed by Technaligns partners. There will be a non-installable edition available for Windows users who only want to use the Christian Edition for study. Technalign requests that users report back any applications they would like added as well as applications that they wish removed along with bug reports.
Download (676MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
602 downloads
PyGEP 0.2.1
PyGEP is a simple library suitable for academic study of GEP. more>>
PyGEP project is a simple library suitable for academic study of GEP (Gene Expression Programming) in Python 2.5, aiming for ease of use and rapid implementation.
It provides standard multigenic chromosomes; a population class using elitism and fitness scaling for selection; mutation, crossover and transposition operators; and some standard GEP functions and linkers.
PyGEP is intended for research, not commercial application. Those interested in a full GEP system are advised to visit Gepsoft, makers of GeneXproTools.
Enhancements:
- This release incorporates extensive stability testing, code cleanup per cheesecake and pylint, and documentation updates.
- Also, as a minor performance enhancement, gene evaluation lists only expand attributes inside their coding regions.
<<lessIt provides standard multigenic chromosomes; a population class using elitism and fitness scaling for selection; mutation, crossover and transposition operators; and some standard GEP functions and linkers.
PyGEP is intended for research, not commercial application. Those interested in a full GEP system are advised to visit Gepsoft, makers of GeneXproTools.
Enhancements:
- This release incorporates extensive stability testing, code cleanup per cheesecake and pylint, and documentation updates.
- Also, as a minor performance enhancement, gene evaluation lists only expand attributes inside their coding regions.
Download (0.020MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
885 downloads
Escape 200508080
Escape is a tile-based puzzle game in the style of Adventures of Lolo or Chips Challenge. more>>
Escape is a tile-based puzzle game in the style of "Adventures of Lolo" or "Chips Challenge." Unlike either of those games, Escape doesnt rely at all on reflexes--its all about your brain.
Although it comes with hundreds of levels, the game places an emphasis on the composition of new puzzles. Thus it has a built-in level editor and facilities for automatically sharing puzzles with other players.
Enhancements:
- This release featured improved usability of the level browser, the ability to delete uploaded levels, sleeping bots, transponders and crossover wires, and many improvements to editor (including a pattern tool and a prefab system).
- Many bugs were fixed, including tile behavior problems, animation corner cases, and crashes.
<<lessAlthough it comes with hundreds of levels, the game places an emphasis on the composition of new puzzles. Thus it has a built-in level editor and facilities for automatically sharing puzzles with other players.
Enhancements:
- This release featured improved usability of the level browser, the ability to delete uploaded levels, sleeping bots, transponders and crossover wires, and many improvements to editor (including a pattern tool and a prefab system).
- Many bugs were fixed, including tile behavior problems, animation corner cases, and crashes.
Download (1.2MB)
Added: 2005-08-10 License: GPL (GNU General Public License) Price:
1536 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above crossover 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