dassault falcon 2000 sale
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 377
Falcons Eye 1.9.3
Falcons Eye is a mouse-driven interface for NetHack. more>>
Falcons Eye project is a mouse-driven interface for NetHack.
Falcons Eye is a mouse-driven interface for NetHack that enhances the visuals, audio, and accessibility of the game, yet retains all the original gameplay, and game features.
Main features:
- mouse-driven interface (keyboard play also supported)
- high-res, isometric graphics with real-time lighting
- ease of play: autopilot, tooltip descriptions of game objects, and more
- digitized sound effects
- MIDI soundtrack (listen to some samples)
- sound effects and keyboard commands are customizable
- retains all NetHack features
<<lessFalcons Eye is a mouse-driven interface for NetHack that enhances the visuals, audio, and accessibility of the game, yet retains all the original gameplay, and game features.
Main features:
- mouse-driven interface (keyboard play also supported)
- high-res, isometric graphics with real-time lighting
- ease of play: autopilot, tooltip descriptions of game objects, and more
- digitized sound effects
- MIDI soundtrack (listen to some samples)
- sound effects and keyboard commands are customizable
- retains all NetHack features
Download (MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1026 downloads
Data::CTable 1.03
Data::CTable is a Perl module that helps you read, write, manipulate tabular data. more>>
Data::CTable is a Perl module that helps you read, write, manipulate tabular data.
SYNOPSIS
## Read some data files in various tabular formats
use Data::CTable;
my $People = Data::CTable->new("people.merge.mac.txt");
my $Stats = Data::CTable->new("stats.tabs.unix.txt");
## Clean stray whitespace in fields
$People->clean_ws();
$Stats ->clean_ws();
## Retrieve columns
my $First = $People->col(FirstName);
my $Last = $People->col(LastName );
## Calculate a new column based on two others
my $Full = [map {"$First->[$_] $Last->[$_]"} @{$People->all()}];
## Add new column to the table
$People->col(FullName => $Full);
## Another way to calculate a new column
$People->col(Key);
$People->calc(sub {no strict vars; $Key = "$Last,$First";});
## "Left join" records matching Stats:PersonID to People:Key
$Stats->join($People, PersonID => Key);
## Find certain records
$Stats->select_all();
$Stats->select(Department => sub {/Sale/i }); ## Sales depts
$Stats->omit (Department => sub {/Resale/i}); ## not Resales
$Stats->select(UsageIndex => sub {$_ > 20.0}); ## high usage
## Sort the found records
$Stats->sortspec(DeptNum , {SortType => Integer});
$Stats->sortspec(UsageIndex, {SortType => Number });
$Stats->sort([qw(DeptNum UsageIndex Last First)]);
## Make copy of table with only found/sorted data, in order
my $Report = $Stats->snapshot();
## Write an output file
$Report->write(_FileName => "Rept.txt", _LineEnding => "mac");
## Print a final progress message.
$Stats->progress("Done!");
## Dozens more methods and parameters available...
OVERVIEW
Data::CTable is a comprehensive utility for reading, writing, manipulating, cleaning and otherwise transforming tabular data. The distribution includes several illustrative subclasses and utility scripts.
A Columnar Table represents a table as a hash of data columns, making it easy to do data cleanup, formatting, searching, calculations, joins, or other complex operations.
The objects hash keys are the field names and the hash values hold the data columns (as array references).
Tables also store a "selection" -- a list of selected / sorted record numbers, and a "field list" -- an ordered list of all or some fields to be operated on. Select() and sort() methods manipulate the selection list. Later, you can optionally rewrite the table in memory or on disk to reflect changes in the selection list or field list.
Data::CTable reads and writes any tabular text file format including Merge, CSV, Tab-delimited, and variants. It transparently detects, reads, and preserves Unix, Mac, and/or DOS line endings and tab or comma field delimiters -- regardless of the runtime platform.
In addition to reading data files, CTable is a good way to gather, store, and operate on tabular data in memory, and to export data to delimited text files to be read by other programs or interactive productivity applications.
To achieve extremely fast data loading, CTable caches data file contents using the Storable module. This can be helpful in CGI environments or when operating on very large data files. CTable can read an entire cached table of about 120 megabytes into memory in about 10 seconds on an average mid-range computer.
For simple data-driven applications needing to store and quickly retrieve simple tabular data sets, CTable provides a credible alternative to DBM files or SQL.
For data hygiene applications, CTable forms the foundation for writing utility scripts or compilers to transfer data from external sources, such as FileMaker, Excel, Access, personal organizers, etc. into compiled or validated formats -- or even as a gateway to loading data into SQL databases or other destinations. You can easily write short, repeatable scripts in Perl to do reporting, error checking, analysis, or validation that would be hard to duplicate in less-flexible application environments.
The data representation is simple and open so you can directly access the data in the object if you feel like it -- or you can use accessors to request "clean" structures containing only the data or copies of it. Or you can build your own columns in memory and then when youre ready, turn them into a table object using the very flexible new() method.
The highly factored interface and implementation allow fine-grained subclassing so you can easily create useful lightweight subclasses. Several subclasses are included with the distribution.
Most defaults and parameters can be customized by subclassing, overridden at the instance level (avoiding the need to subclass too often), and further overridden via optional named-parameter arguments to most major method calls.
<<lessSYNOPSIS
## Read some data files in various tabular formats
use Data::CTable;
my $People = Data::CTable->new("people.merge.mac.txt");
my $Stats = Data::CTable->new("stats.tabs.unix.txt");
## Clean stray whitespace in fields
$People->clean_ws();
$Stats ->clean_ws();
## Retrieve columns
my $First = $People->col(FirstName);
my $Last = $People->col(LastName );
## Calculate a new column based on two others
my $Full = [map {"$First->[$_] $Last->[$_]"} @{$People->all()}];
## Add new column to the table
$People->col(FullName => $Full);
## Another way to calculate a new column
$People->col(Key);
$People->calc(sub {no strict vars; $Key = "$Last,$First";});
## "Left join" records matching Stats:PersonID to People:Key
$Stats->join($People, PersonID => Key);
## Find certain records
$Stats->select_all();
$Stats->select(Department => sub {/Sale/i }); ## Sales depts
$Stats->omit (Department => sub {/Resale/i}); ## not Resales
$Stats->select(UsageIndex => sub {$_ > 20.0}); ## high usage
## Sort the found records
$Stats->sortspec(DeptNum , {SortType => Integer});
$Stats->sortspec(UsageIndex, {SortType => Number });
$Stats->sort([qw(DeptNum UsageIndex Last First)]);
## Make copy of table with only found/sorted data, in order
my $Report = $Stats->snapshot();
## Write an output file
$Report->write(_FileName => "Rept.txt", _LineEnding => "mac");
## Print a final progress message.
$Stats->progress("Done!");
## Dozens more methods and parameters available...
OVERVIEW
Data::CTable is a comprehensive utility for reading, writing, manipulating, cleaning and otherwise transforming tabular data. The distribution includes several illustrative subclasses and utility scripts.
A Columnar Table represents a table as a hash of data columns, making it easy to do data cleanup, formatting, searching, calculations, joins, or other complex operations.
The objects hash keys are the field names and the hash values hold the data columns (as array references).
Tables also store a "selection" -- a list of selected / sorted record numbers, and a "field list" -- an ordered list of all or some fields to be operated on. Select() and sort() methods manipulate the selection list. Later, you can optionally rewrite the table in memory or on disk to reflect changes in the selection list or field list.
Data::CTable reads and writes any tabular text file format including Merge, CSV, Tab-delimited, and variants. It transparently detects, reads, and preserves Unix, Mac, and/or DOS line endings and tab or comma field delimiters -- regardless of the runtime platform.
In addition to reading data files, CTable is a good way to gather, store, and operate on tabular data in memory, and to export data to delimited text files to be read by other programs or interactive productivity applications.
To achieve extremely fast data loading, CTable caches data file contents using the Storable module. This can be helpful in CGI environments or when operating on very large data files. CTable can read an entire cached table of about 120 megabytes into memory in about 10 seconds on an average mid-range computer.
For simple data-driven applications needing to store and quickly retrieve simple tabular data sets, CTable provides a credible alternative to DBM files or SQL.
For data hygiene applications, CTable forms the foundation for writing utility scripts or compilers to transfer data from external sources, such as FileMaker, Excel, Access, personal organizers, etc. into compiled or validated formats -- or even as a gateway to loading data into SQL databases or other destinations. You can easily write short, repeatable scripts in Perl to do reporting, error checking, analysis, or validation that would be hard to duplicate in less-flexible application environments.
The data representation is simple and open so you can directly access the data in the object if you feel like it -- or you can use accessors to request "clean" structures containing only the data or copies of it. Or you can build your own columns in memory and then when youre ready, turn them into a table object using the very flexible new() method.
The highly factored interface and implementation allow fine-grained subclassing so you can easily create useful lightweight subclasses. Several subclasses are included with the distribution.
Most defaults and parameters can be customized by subclassing, overridden at the instance level (avoiding the need to subclass too often), and further overridden via optional named-parameter arguments to most major method calls.
Download (0.15MB)
Added: 2007-07-13 License: Perl Artistic License Price:
833 downloads
Quasar Accounting 1.4.7
Quasar is a full function, stand-alone business accounting package more>>
Quasar Accounting software is a full function, stand-alone business accounting package. You may elect to use Quasar Accounting with the open source GNU General Public License (GPL) which is available free of charge.
Or, you may elect to purchase our commercial license for a nominal fee. To ensure timely access to support you will need to purchase one of our support packages.
With Quasar it is extremely easy to set up remote access to multiple servers from multiple workstations. You can run Quasar on both Windows and/or Linux on the same network. For example, you can maintain a Linux server and access the data from a Windows workstation.
Quasar Retail contains all of the features available in Quasar Accounting plus it contains the Quasar Point-of-Sale driver which allows Quasar Accounting to communicate with the Quasar Point-of-Sale application. Quasar Retail is only available with our commercial license.
In a mission critical environment such as retail you will need to purchase one of our support packages for timely access to support . Resellers and customers who wish a copy of the Quasar Retail source code can obtain it by purchasing annual source code access.
Main features:
international ready
- Quasars new international ready features include the ability to define your monetary symbol, monetary format, date format, time format, number format and percentage format. Any and all text can be translated or changed to suit your specific requirements. In addition Quasar has a standard Canadian format and a standard United States format.
graphical user interface
- Quasar is a new product designed with a graphical interface. It is not an older text based package with a graphical interface add-on. It was designed using Qt which is the same library used for the KDE user interface and other Linux projects. For more information on Qt 3.0 please see the Trolltech web page at http://www.trolltech.com.
fast/easy data entry
- The Quasar main window, icons, menus, lookups, and search functions have all been designed with you, the user, in mind. Screens were kept simple with instant access to advanced functions and superior access to supporting data.
quick error correction
- Existing transactions are easy to find and easy to edit. Quasar has a find transaction screen that allows you to find a transaction very quickly using a variety of selection criteria.
backup and restore
- Backup your company to a backup file and restore it as and when the need arises.
recurring transactions
- Define recurring transactions for recurring journal entries, recurring cheques, recurring customer invoices, recurring vendor invoices and recurring vendor payments.
on-line help
- On-line help is available for every screen. A table of contents provides the ability to move around and view several help screens in succession.
preferences
- Set your style, font and color preferences.
multiple companies
- Create and manage multiple companies within the same application.
import data
- Quasar makes maximum use of XML files for importing. Using XML files you can import data such as the chart of accounts, inventory, customer information, vendor information, opening balances, journal entries, purchase orders and packing slips. new data imports
drill down feature
- From most Quasar information screens you can drill down and view the detail of the actual transactions. This will be limited only by the user security access.
mailing labels
- Print mailing labels for customers, vendors, employees and personal acquaintances. Select labels from one of our supported forms.
work shift control
- Every transaction includes date, time, work station, employee and shift. After a each work shift, you can close the shift, complete cash reconciliations, do tender adjustments and report on the results.
<<lessOr, you may elect to purchase our commercial license for a nominal fee. To ensure timely access to support you will need to purchase one of our support packages.
With Quasar it is extremely easy to set up remote access to multiple servers from multiple workstations. You can run Quasar on both Windows and/or Linux on the same network. For example, you can maintain a Linux server and access the data from a Windows workstation.
Quasar Retail contains all of the features available in Quasar Accounting plus it contains the Quasar Point-of-Sale driver which allows Quasar Accounting to communicate with the Quasar Point-of-Sale application. Quasar Retail is only available with our commercial license.
In a mission critical environment such as retail you will need to purchase one of our support packages for timely access to support . Resellers and customers who wish a copy of the Quasar Retail source code can obtain it by purchasing annual source code access.
Main features:
international ready
- Quasars new international ready features include the ability to define your monetary symbol, monetary format, date format, time format, number format and percentage format. Any and all text can be translated or changed to suit your specific requirements. In addition Quasar has a standard Canadian format and a standard United States format.
graphical user interface
- Quasar is a new product designed with a graphical interface. It is not an older text based package with a graphical interface add-on. It was designed using Qt which is the same library used for the KDE user interface and other Linux projects. For more information on Qt 3.0 please see the Trolltech web page at http://www.trolltech.com.
fast/easy data entry
- The Quasar main window, icons, menus, lookups, and search functions have all been designed with you, the user, in mind. Screens were kept simple with instant access to advanced functions and superior access to supporting data.
quick error correction
- Existing transactions are easy to find and easy to edit. Quasar has a find transaction screen that allows you to find a transaction very quickly using a variety of selection criteria.
backup and restore
- Backup your company to a backup file and restore it as and when the need arises.
recurring transactions
- Define recurring transactions for recurring journal entries, recurring cheques, recurring customer invoices, recurring vendor invoices and recurring vendor payments.
on-line help
- On-line help is available for every screen. A table of contents provides the ability to move around and view several help screens in succession.
preferences
- Set your style, font and color preferences.
multiple companies
- Create and manage multiple companies within the same application.
import data
- Quasar makes maximum use of XML files for importing. Using XML files you can import data such as the chart of accounts, inventory, customer information, vendor information, opening balances, journal entries, purchase orders and packing slips. new data imports
drill down feature
- From most Quasar information screens you can drill down and view the detail of the actual transactions. This will be limited only by the user security access.
mailing labels
- Print mailing labels for customers, vendors, employees and personal acquaintances. Select labels from one of our supported forms.
work shift control
- Every transaction includes date, time, work station, employee and shift. After a each work shift, you can close the shift, complete cash reconciliations, do tender adjustments and report on the results.
Download (6.4MB)
Added: 2006-05-24 License: GPL (GNU General Public License) Price:
1253 downloads
Falcon Firewall Project 0.1.5
The Falcon project is an open firewall project with the intention of developing an independent firewall system. more>>
The Falcon project is an open firewall project with the intention of developing an independent firewall system. [COPYRIGHT-1]
Falcon consists of different modules:
Falcons own proxies (generic TCP-Proxy and application specific proxies)
Squid for web access and caching (modified package for Linux)
BIND-8 for nameservice (coming soon)
qmail for mail communication
OS hardening (coming later)
The concept behind Falcon is pretty simple. It consists of three main parts:
Self-written proxy applications and configure-/logging facilities. These are all
written in Perl.
Third party applications like BIND, Squid, Qmail.
Concepts/instructions/tools for hardening the OS you want to run Falcon on.
Some third party proxies maybe replaced by self-written ones in the future (its up to you
<<lessFalcon consists of different modules:
Falcons own proxies (generic TCP-Proxy and application specific proxies)
Squid for web access and caching (modified package for Linux)
BIND-8 for nameservice (coming soon)
qmail for mail communication
OS hardening (coming later)
The concept behind Falcon is pretty simple. It consists of three main parts:
Self-written proxy applications and configure-/logging facilities. These are all
written in Perl.
Third party applications like BIND, Squid, Qmail.
Concepts/instructions/tools for hardening the OS you want to run Falcon on.
Some third party proxies maybe replaced by self-written ones in the future (its up to you
Download (0.032MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1199 downloads
audit daemon 1.5.6
audit package contains the user-space utilities for creating audit rules. more>>
audit package contains the user-space utilities for creating audit rules. As well as for storing and searching the audit records generate by the audit subsystem in the Linux 2.6 kernel.
Usage:
Examples usage of utilities:
General:
Window 1:
./auditd
Window 2 (you dont have to have the daemon running to try this, but
enabled has to be 1):
./auditctl -s
./auditctl -a entry,always -S open
ls
./auditctl -d entry,always -S open
Identity tracking:
./auditctl -a exit,always -S all -F loginuid=2000
./auditctl -L 2000,"test uid"
Enhancements:
- Updates were made to system-config-audit. auditctl was updated to better handle watching of directories with older kernels.
- Memory leaks and an invalid free in auditd were fixed along with interpretations in auparse.
<<lessUsage:
Examples usage of utilities:
General:
Window 1:
./auditd
Window 2 (you dont have to have the daemon running to try this, but
enabled has to be 1):
./auditctl -s
./auditctl -a entry,always -S open
ls
./auditctl -d entry,always -S open
Identity tracking:
./auditctl -a exit,always -S all -F loginuid=2000
./auditctl -L 2000,"test uid"
Enhancements:
- Updates were made to system-config-audit. auditctl was updated to better handle watching of directories with older kernels.
- Memory leaks and an invalid free in auditd were fixed along with interpretations in auparse.
Download (0.29MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
824 downloads
Chuchunco City 2000 0.2.4
Chuchunco City 2000 project is a cross-platform 2D fighting game. more>>
Chuchunco City 2000 project is a cross-platform 2D fighting game.
It is inspired by popular fighting games, such as Street Fighter and King of Fighters, but has some unique features and concepts.
Chuchunco City aims at portability, speed, and better playability. The code compiles for MS-DOS (with DJGPP) and UNIX (using X11 libraries).
Enhancements:
- Added LAN from Superfighter , at request.
- Hes only one of many new players. See the file doc/PLAYERS for more
- information.
- Added and improved some default styles and specials.
- Improved some game parameters: recovering, max. hp and mana, no "infinites".
- Changed the player selection menu; now it shows faces instead of names.
- Demo mode now triggers after 20 seconds of inactivity from main menu.
- Backgrounds now have descriptions associated, and can be associated to players
<<lessIt is inspired by popular fighting games, such as Street Fighter and King of Fighters, but has some unique features and concepts.
Chuchunco City aims at portability, speed, and better playability. The code compiles for MS-DOS (with DJGPP) and UNIX (using X11 libraries).
Enhancements:
- Added LAN from Superfighter , at request.
- Hes only one of many new players. See the file doc/PLAYERS for more
- information.
- Added and improved some default styles and specials.
- Improved some game parameters: recovering, max. hp and mana, no "infinites".
- Changed the player selection menu; now it shows faces instead of names.
- Demo mode now triggers after 20 seconds of inactivity from main menu.
- Backgrounds now have descriptions associated, and can be associated to players
Download (0.61MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
630 downloads
Delphi Yacc & Lex 1.4
Delphi Yacc & Lex is a parser generator toolset for Delphi and Kylix, based on Turbo Pascal Lex and Yacc version 4.1. more>>
Delphi Yacc & Lex is a parser generator toolset for Delphi and Kylix, based on Turbo Pascal Lex and Yacc version 4.1.
The primary goal of Delphi Yacc & Lex is to clean up the code, and improve compatibility and maintainability.
The project started because the original Turbo Pascal Lex and Yacc did not compile well in Delphi 5+ or Kylix, the sourcecode was messy, and the last release or activity dates back to early 2000.
<<lessThe primary goal of Delphi Yacc & Lex is to clean up the code, and improve compatibility and maintainability.
The project started because the original Turbo Pascal Lex and Yacc did not compile well in Delphi 5+ or Kylix, the sourcecode was messy, and the last release or activity dates back to early 2000.
Download (0.21MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
837 downloads
Open Blue Lab 2.1.0 (Sales/CRM)
Open Blue Lab is a modular ERP, built on a plugin architecture. more>>
Open Blue Lab project is a modular ERP, built on a plugin architecture. Each business domain (such as Groupware, Financial, HCM, PLM, or SCM) is separated into subdomains which are implemented through plugins.
This form permits you to create all the information related to a contact you are in relation with, during, for example, a phone call. Once totally expanded, this form looks like the image on your right. A click on orange borders will open or close the corresponding section.
This form is directly generated from the UML model that describes CRM informations system. Layout like multicomuln is specified in a very easy way.
Enhancements:
- The CSS style was corrected by deleting the footer, changing skins, improving the search button, and adding PNG transparency.
- The action portlet was fixed up.
- Some messages have been translated.
- You can now drag and drop portlets.
- The search bar has been improved, so you can search by contact, city, company, or any other fields.
- You can now set prority on tasks.
<<lessThis form permits you to create all the information related to a contact you are in relation with, during, for example, a phone call. Once totally expanded, this form looks like the image on your right. A click on orange borders will open or close the corresponding section.
This form is directly generated from the UML model that describes CRM informations system. Layout like multicomuln is specified in a very easy way.
Enhancements:
- The CSS style was corrected by deleting the footer, changing skins, improving the search button, and adding PNG transparency.
- The action portlet was fixed up.
- Some messages have been translated.
- You can now drag and drop portlets.
- The search bar has been improved, so you can search by contact, city, company, or any other fields.
- You can now set prority on tasks.
Download (0.007MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
865 downloads
Simple Invoices 2007-05-23
Simple Invoices is a clean, simple, and basic Web-based invoicing system. more>>
Simple Invoices is a clean, simple, and basic Web-based invoicing system.
Simple Invoices is meant for personal invoices, home office invoicing, small organization invoicing, and basic POS (point of sale) systems for light usage.
Its goals are to be easy to use, simple and clean, and focused on its task. It is not meant for heavy-use POS applications, nor is it meant to be enterprise ready.
<<lessSimple Invoices is meant for personal invoices, home office invoicing, small organization invoicing, and basic POS (point of sale) systems for light usage.
Its goals are to be easy to use, simple and clean, and focused on its task. It is not meant for heavy-use POS applications, nor is it meant to be enterprise ready.
Download (5.9MB)
Added: 2007-05-23 License: GPL (GNU General Public License) Price:
900 downloads
DSI Sound Station 1.0
DSI Sound Station is broadcast software for everything related to audio and station management. more>>
DSI Sound Station is broadcast software for everything related to audio and station management.
DSI Sound Station is for broadcast radio and TV stations of all sizes. It provides hard-disk audio recording, an on-line newsroom, a disc/media cataloguer, and sales utilities (like contracts and invoices).
<<lessDSI Sound Station is for broadcast radio and TV stations of all sizes. It provides hard-disk audio recording, an on-line newsroom, a disc/media cataloguer, and sales utilities (like contracts and invoices).
Download (5.7MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1331 downloads
ARAnyM 0.9.5 Beta
ARAnyM comes from Atari Running on Any Machine and is virtual machine software for running the Atari ST/TT/Falcon OS. more>>
ARAnyM comes from Atari Running on Any Machine and is virtual machine software for running the Atari ST/TT/Falcon OS.
It is a virtual machine software for running the Atari ST/TT/Falcon operating systems (TOS, FreeMiNT, MagiC and others) and TOS/GEM applications on any kind of hardware - be it an IBM clone (read it as "PC", an Apple, an Unix server, a graphics workstation or even a portable computer.
We started this project to fill the demand of modern applications, games, demos and multimedia for higher CPU/graphics power. Quite frankly, you cant expect that 9-17 years old Atari hardware will replay fullscreen DivX movies, encode sound to Ogg Vorbis in real time or just compile a new FreeMiNT kernel or SDL game in a reasonable amount of time. Is that a reason to give up on Atari TOS/GEM altogether and switch to another platform/OS? No! ARAnyM is here to give you the much asked CPU speed, large amount of RAM, huge colourful graphics and anything else you need to keep running your favorite TOS/GEM applications.
We would like you to think about ARAnyM as about yet another TOS clone, similar to Medusa, Hades or Milan, but actually much cheaper and way more powerful. Our goal is to create a distribution installable from a floppy/CD that would turn any PC machine into full featured Atari power machine. If we were a hardware vendor we could even sell computers that would boot directly to TOS desktop! That could help all the remaining Atari users that wish to upgrade their aging machines.
Main features:
- MC68040 compatible CPU (including optional MMU!)
- MC68881 compatible FPU
- JIT Compiler for CPU and FPU (speeds up CPU+FPU up to 10x!)
- ST-RAM 14 MB
- Fast-RAM configurable 0-3824 MB
- Host accelerated fVDI graphics (large highcolor/truecolor resolutions)
- Access to Host OS filesystems using BetaDOS or MiNT native XFS driver
- Ethernet networking via host using MiNT-Net XIF driver
- TOS 4.x XBIOS compatible sound (16-bit 48 kHz stereo sound)
- Parallel port (bidirectional)
- MFP, IKBD, ACIA, VIDEL, BLITTER, FDC, IDE, DSP MC56001
Please note that most hardware emulation is there just to make TOS booting possible. It is not our goal to create an emulator of existing Atari machine. Dont expect that ill-designed applications will work as they would on original Atari machine. Still, our compatibility ratio is much much higher than any of the TOS clones achieved so far.
ARAnyM has been intended to run primarily on Linux/x86 but thanks to libSDL and effort of some ARAnyM team members it currently runs on the following platforms and operating systems:
- All 11 Debian GNU/Linux platforms
- MS Windows/x86 (Cygwin)
- NetBSD/x86
- OpenBSD/x86
- MacOS X/PPC
- Irix/SGI
- Solaris/Sun Sparc
- FreeMiNT/m68k (in progress)
- FreeBSD/x86 (in progress)
Please note that ARAnyM is tested and fully working on the Linux-ia32 only. Some of the other platforms/systems might not have all features enabled or might suffer from some bugs that are caused by limitations of the particular host operating system.
Enhancements:
- New release brings major speed up of the MMU version. FreeMiNT with MMU or Linux-m68k can be run on an average ARAnyM machine faster than on any real MC680x0 now. Mac OS X target has been improved and many smaller bugs have been fixed.
<<lessIt is a virtual machine software for running the Atari ST/TT/Falcon operating systems (TOS, FreeMiNT, MagiC and others) and TOS/GEM applications on any kind of hardware - be it an IBM clone (read it as "PC", an Apple, an Unix server, a graphics workstation or even a portable computer.
We started this project to fill the demand of modern applications, games, demos and multimedia for higher CPU/graphics power. Quite frankly, you cant expect that 9-17 years old Atari hardware will replay fullscreen DivX movies, encode sound to Ogg Vorbis in real time or just compile a new FreeMiNT kernel or SDL game in a reasonable amount of time. Is that a reason to give up on Atari TOS/GEM altogether and switch to another platform/OS? No! ARAnyM is here to give you the much asked CPU speed, large amount of RAM, huge colourful graphics and anything else you need to keep running your favorite TOS/GEM applications.
We would like you to think about ARAnyM as about yet another TOS clone, similar to Medusa, Hades or Milan, but actually much cheaper and way more powerful. Our goal is to create a distribution installable from a floppy/CD that would turn any PC machine into full featured Atari power machine. If we were a hardware vendor we could even sell computers that would boot directly to TOS desktop! That could help all the remaining Atari users that wish to upgrade their aging machines.
Main features:
- MC68040 compatible CPU (including optional MMU!)
- MC68881 compatible FPU
- JIT Compiler for CPU and FPU (speeds up CPU+FPU up to 10x!)
- ST-RAM 14 MB
- Fast-RAM configurable 0-3824 MB
- Host accelerated fVDI graphics (large highcolor/truecolor resolutions)
- Access to Host OS filesystems using BetaDOS or MiNT native XFS driver
- Ethernet networking via host using MiNT-Net XIF driver
- TOS 4.x XBIOS compatible sound (16-bit 48 kHz stereo sound)
- Parallel port (bidirectional)
- MFP, IKBD, ACIA, VIDEL, BLITTER, FDC, IDE, DSP MC56001
Please note that most hardware emulation is there just to make TOS booting possible. It is not our goal to create an emulator of existing Atari machine. Dont expect that ill-designed applications will work as they would on original Atari machine. Still, our compatibility ratio is much much higher than any of the TOS clones achieved so far.
ARAnyM has been intended to run primarily on Linux/x86 but thanks to libSDL and effort of some ARAnyM team members it currently runs on the following platforms and operating systems:
- All 11 Debian GNU/Linux platforms
- MS Windows/x86 (Cygwin)
- NetBSD/x86
- OpenBSD/x86
- MacOS X/PPC
- Irix/SGI
- Solaris/Sun Sparc
- FreeMiNT/m68k (in progress)
- FreeBSD/x86 (in progress)
Please note that ARAnyM is tested and fully working on the Linux-ia32 only. Some of the other platforms/systems might not have all features enabled or might suffer from some bugs that are caused by limitations of the particular host operating system.
Enhancements:
- New release brings major speed up of the MMU version. FreeMiNT with MMU or Linux-m68k can be run on an average ARAnyM machine faster than on any real MC680x0 now. Mac OS X target has been improved and many smaller bugs have been fixed.
Download (1.4MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
834 downloads
STX Linux 1.1 RC1
STX Linux is a lightweight Debian-based installation and live CD, using the Equinox Desktop Environment. more>>
STX Linux is a lightweight Debian-based installation and live CD, using the Equinox Desktop Environment. STX Linux is especially suited to be installed on older and low-specification computers.
Main features:
- Complete Linux Desktop
- Lightweight (about 1 GB installed, 390 MB LiveCD
- Slackware 10.2 based
- Works nicely on old Hardware (Oldest system tested so far: K6/333, 32 MB RAM, 64 MB Swap ... acceptable results)
- Harddisk Installer from Pocketlinux
- Very much like Windows(TM) 98/2000 - means easy switching.
<<lessMain features:
- Complete Linux Desktop
- Lightweight (about 1 GB installed, 390 MB LiveCD
- Slackware 10.2 based
- Works nicely on old Hardware (Oldest system tested so far: K6/333, 32 MB RAM, 64 MB Swap ... acceptable results)
- Harddisk Installer from Pocketlinux
- Very much like Windows(TM) 98/2000 - means easy switching.
Download (551MB)
Added: 2007-01-17 License: GPL (GNU General Public License) Price:
1053 downloads
trytond_sale 1.2.1
trytond_sale 1.2.1 is designed as a professional Python module that helps users to define sale order or add to product sale information more>> <<less
Added: 2009-07-08 License: GPL Price: FREE
11 downloads
Gateway 3.0 Beta 2
Gateway is a JavaEE application developed by the Vermont Department of Taxes. more>>
Gateway is a JavaEE application developed by the Vermont Department of Taxes. It provides a web services framework for accepting Streamlined Sales Tax registrations and returns.
The project also includes a web interface for manually submitting transmissions. The goal is to build an extensible framework upon which future tax services can be built.
<<lessThe project also includes a web interface for manually submitting transmissions. The goal is to build an extensible framework upon which future tax services can be built.
Download (7.8MB)
Added: 2007-07-17 License: MPL (Mozilla Public License) Price:
830 downloads
Paradise 2000 Netrek Client RC5
Paradise 2000 represents my bend of the Paradise Netrek client. more>>
Paradise 2000 represents my bend of the Paradise Netrek client. Paradise 2000 Netrek Client is not a fork, because that would imply parallel development, but no one else has done anything with the client since about five years ago.
Paradise 2000 is in fact one of the most, if not the most, actively developed Netrek clients available today. It is for Linux (and FreeBSD) only, and is not open source*. Dont let the Paradise name fool you, it works just fine on standard bronco servers. Nobody has even played a game of Paradise Netrek for years!
The biggest new feature of the client, not found in any other, is the sound system. While the old Paradise client, Ted Turner, COW, and COW ports (Netrek1999,2000) have a simple sound effect system, its crap. Especially the one used by COW. The Paradise/Ted Turner one is better, and is partially written by me, though you wouldnt know that*.
The Paradise 2000 sound system has psychoacoustic stereo effects that place sounds based on where they happen. If someone on the left blows up, you can tell they are on the left just from the sound. The newest version of Paradise-2000 has a sound system with speech output using IBMs ViaVoice TTS. If a teammate sends a carrying message, the client will actually say something like, "F one carrying five to org."
Main features:
- See weapons on galactic map
- Auto-rotate galaxy to put playing teams on left side
- Dashboard timer to show repair or refit time remaining
- See the army count for the planet your are orbiting
- Remap your keys via the help window. Just push the key you want over the name of the function you want to assign to it.
- Use the same key for both bombing armies and picking armies. The client can tell by context with one would make sense.
- You can set configuration options to different values for different server types.
- Double buffering support for graphics. When turned on, eliminates flicker. Very useful for LCD monitors.
- Extensive support for enhanced observer mode:
- See all players tractors and pressors while observing.
- You can lock onto a cloaked player and observe them.
- All your ship stats will reflect the player you are observing. Even torps out, kills, and army capacity.
- Your ship and player letter dont get drawn on top of the player you are observings ship and letter.
- Observers wont have stats shown in your player list, cluttering it up unnecessarily..
- Stereo sound effects!
- Highly configurable speech synthesis!
- Option to omit the team letter of ships on the galactic. Just show 0 instead of F0, since you can tell the team by the color of the letter.
- Game score on hockey servers calculated and put on the galactic for easy reference.
- Cool looking streaking background stars when transwarping on Bronco servers.
- Flags on the dashboard gauges indicating the fuel/shields/hull needed to refit or transwarp.
- Single key transwarp on Bronco servers. Push - to automatically lock onto your base and warp to it!
- 19FLAGS protocol enhancement. Reduces messed up flags from packetloss. Hockey players, this will eliminate stuck tractors and pressors.
- Works with WindowMaker. Window manager delete buttons work.
- Hockey bug fix, puck doesnt cloak at warp 15 or 31.
- Support for short packets 2. Reduces bandwidth and improves playability with packetloss.
- Supports SBHOURS feature, see how many base hours someone has.
- Shrink phasers, like BRMH.
- Support for wheel mice. The wheel will scroll the message windows, and can be bound to actions like other mouse buttons.
- Re-enter the game after dying by pushing the spacebar, instead of clicking on the right team window. Faster and prevents selecting the wrong team on accident in 4v4 hockey games.
- 32 position ship bitmaps. Your ship rotations will look smoother.
- Small red circle around ship shows det radius.
- Tic marks to show exact ship heading.
- Arrow on puck to indicate direction.
- ID of player you are tractoring displayed next to your ship.
- Configure what columns are in the player list, both the one-column and two-column list. You can also change the width of the each field, so show fewer digits for instance.
- UDP portswap option that lets the client work through NAT firewalls, like Linux IP_MASQ, without a special module.
<<lessParadise 2000 is in fact one of the most, if not the most, actively developed Netrek clients available today. It is for Linux (and FreeBSD) only, and is not open source*. Dont let the Paradise name fool you, it works just fine on standard bronco servers. Nobody has even played a game of Paradise Netrek for years!
The biggest new feature of the client, not found in any other, is the sound system. While the old Paradise client, Ted Turner, COW, and COW ports (Netrek1999,2000) have a simple sound effect system, its crap. Especially the one used by COW. The Paradise/Ted Turner one is better, and is partially written by me, though you wouldnt know that*.
The Paradise 2000 sound system has psychoacoustic stereo effects that place sounds based on where they happen. If someone on the left blows up, you can tell they are on the left just from the sound. The newest version of Paradise-2000 has a sound system with speech output using IBMs ViaVoice TTS. If a teammate sends a carrying message, the client will actually say something like, "F one carrying five to org."
Main features:
- See weapons on galactic map
- Auto-rotate galaxy to put playing teams on left side
- Dashboard timer to show repair or refit time remaining
- See the army count for the planet your are orbiting
- Remap your keys via the help window. Just push the key you want over the name of the function you want to assign to it.
- Use the same key for both bombing armies and picking armies. The client can tell by context with one would make sense.
- You can set configuration options to different values for different server types.
- Double buffering support for graphics. When turned on, eliminates flicker. Very useful for LCD monitors.
- Extensive support for enhanced observer mode:
- See all players tractors and pressors while observing.
- You can lock onto a cloaked player and observe them.
- All your ship stats will reflect the player you are observing. Even torps out, kills, and army capacity.
- Your ship and player letter dont get drawn on top of the player you are observings ship and letter.
- Observers wont have stats shown in your player list, cluttering it up unnecessarily..
- Stereo sound effects!
- Highly configurable speech synthesis!
- Option to omit the team letter of ships on the galactic. Just show 0 instead of F0, since you can tell the team by the color of the letter.
- Game score on hockey servers calculated and put on the galactic for easy reference.
- Cool looking streaking background stars when transwarping on Bronco servers.
- Flags on the dashboard gauges indicating the fuel/shields/hull needed to refit or transwarp.
- Single key transwarp on Bronco servers. Push - to automatically lock onto your base and warp to it!
- 19FLAGS protocol enhancement. Reduces messed up flags from packetloss. Hockey players, this will eliminate stuck tractors and pressors.
- Works with WindowMaker. Window manager delete buttons work.
- Hockey bug fix, puck doesnt cloak at warp 15 or 31.
- Support for short packets 2. Reduces bandwidth and improves playability with packetloss.
- Supports SBHOURS feature, see how many base hours someone has.
- Shrink phasers, like BRMH.
- Support for wheel mice. The wheel will scroll the message windows, and can be bound to actions like other mouse buttons.
- Re-enter the game after dying by pushing the spacebar, instead of clicking on the right team window. Faster and prevents selecting the wrong team on accident in 4v4 hockey games.
- 32 position ship bitmaps. Your ship rotations will look smoother.
- Small red circle around ship shows det radius.
- Tic marks to show exact ship heading.
- Arrow on puck to indicate direction.
- ID of player you are tractoring displayed next to your ship.
- Configure what columns are in the player list, both the one-column and two-column list. You can also change the width of the each field, so show fewer digits for instance.
- UDP portswap option that lets the client work through NAT firewalls, like Linux IP_MASQ, without a special module.
Download (0.97MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1207 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above dassault falcon 2000 sale 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