windows 2000
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 299
VMware Server 1.0.3 Build 44356
VMware Server is a robust yet easy to use product for users new to server virtualization technology. more>>
VMware Server product is a robust yet easy to use software for users new to server virtualization technology.
VMware Server enables companies to partition a physical server into multiple virtual machines, and to start experiencing the benefits of virtualization.
Benefits of VMware Server
Provision a new server in minutes without investing in new hardware.
Run Windows and Linux operating systems and applications on the same physical server.
Increase the utilization of a physical server.
Move virtual machines from one physical host to another without re-configuration.
With VMware Server you can:
Streamline software development and testing by allowing developers to create multiple environments with different operating systems on the same server.
Evaluate software in ready-to-run virtual machines without installation and configuration.
Re-host legacy operating systems such as Windows NT Server 4.0 and Windows 2000 Server in a virtual machine running on new hardware and operating system.
Simplify server provisioning by building a virtual machine once and deploying it multiple times.
Leverage pre-built, ready-to-run virtual appliances that include virtual hardware, operating system and application environments. Virtual appliances for Web, email, proxy and other infratructure services are available for download from the VMTN Virtual Machine Center.
VMware Server is the first step to VMware Virtual Infrastructure
While VMware Server is a compelling product for new virtualization users, VMware Virtual Infrastructure products-ESX Server with Virtual SMP and VirtualCenter with VMotion-enable companies to implement large-scale production server consolidation, business continuity, and enterprise desktop solutions with enterprise-class performance, high availability, manageability and security. View a comparison between VMware Server and VMware Virtual Infrastructure.
Enhancements:
- This release fixes four security vulnerabilities, as reported in CVE-2007-1337, CVE-2007-1877, CVE-2007-1069, and CVE-2007-1876.
- These vulnerabilities permitted denial of service, crashes of Windows guests, or corrupted stack pointers.
- A problem with VMware Tools that caused the guest to run out of memory was fixed.
- A crash in the VIX API was resolved.
- Building of the kernel and the HGFS modules was improved.
- Several occasional crashes were fixed.
<<lessVMware Server enables companies to partition a physical server into multiple virtual machines, and to start experiencing the benefits of virtualization.
Benefits of VMware Server
Provision a new server in minutes without investing in new hardware.
Run Windows and Linux operating systems and applications on the same physical server.
Increase the utilization of a physical server.
Move virtual machines from one physical host to another without re-configuration.
With VMware Server you can:
Streamline software development and testing by allowing developers to create multiple environments with different operating systems on the same server.
Evaluate software in ready-to-run virtual machines without installation and configuration.
Re-host legacy operating systems such as Windows NT Server 4.0 and Windows 2000 Server in a virtual machine running on new hardware and operating system.
Simplify server provisioning by building a virtual machine once and deploying it multiple times.
Leverage pre-built, ready-to-run virtual appliances that include virtual hardware, operating system and application environments. Virtual appliances for Web, email, proxy and other infratructure services are available for download from the VMTN Virtual Machine Center.
VMware Server is the first step to VMware Virtual Infrastructure
While VMware Server is a compelling product for new virtualization users, VMware Virtual Infrastructure products-ESX Server with Virtual SMP and VirtualCenter with VMotion-enable companies to implement large-scale production server consolidation, business continuity, and enterprise desktop solutions with enterprise-class performance, high availability, manageability and security. View a comparison between VMware Server and VMware Virtual Infrastructure.
Enhancements:
- This release fixes four security vulnerabilities, as reported in CVE-2007-1337, CVE-2007-1877, CVE-2007-1069, and CVE-2007-1876.
- These vulnerabilities permitted denial of service, crashes of Windows guests, or corrupted stack pointers.
- A problem with VMware Tools that caused the guest to run out of memory was fixed.
- A crash in the VIX API was resolved.
- Building of the kernel and the HGFS modules was improved.
- Several occasional crashes were fixed.
Download (101.7MB)
Added: 2007-05-02 License: Freeware Price:
1821 downloads
Java Binary Enhancement Tool 3 R1
Java Binary Enhancement Tool is a Java assembler, dissassembler, and binary editor. more>>
The Java Binary Enhancement Tool (JBET) is a general Java program analysis and manipulation tool. Existing class files can be disassembled, reassembled, or edited programmatically through the JBET API. JBET can also be used to create new Java class files from scratch. JBET uses a convenient internal representation of all the contents of Java binary (.class) files, allowing the user to edit the classes easily, in a structured manner.
JBET was developed as part of the DARPA Self-Protecting Mobile Agents project under the OASIS and Active Networks programs (contract number N66001-00-C-8602) in order to study automated software obfuscation.
The Java language was chosen for this project because of the (relative) ease of constructing binary editing tools provided by the large amount of type information present in the class files. Our two reports, the Obfuscation Techniques Evaluation Report, and the Obfuscation Report, are available from the download area. The obfuscation tool developed is not part of this release.
JBET was also used in the DARPA/AFRL Survivable Server project (contract number F30602-00-C-0183) to add additional security checks to the Java Standard Library. (The Java SecurityManager API does not support many desirable security checks, such as continued authorization of file accesses after opening.)
JBET was used to replace the native method references in the Java standard library with stubs that call a pluggable security policy. This tool, called Jpolicy, is also available for download at this website. Jpolicy is very incomplete at this time, but may be interesting to those working in Java security or changing the standard library themselves.
The internal representation of Java class files used by JBET is intented to make it easy for programmers to write Java binary code transforms. Each element of Java class files has a corresponding internal data structure: ClassInfo for entire classes, MethodInfo for methods, FieldInfo for fields, Snippit for code blocks, and Instruction for individual instructions. Snippit and Instruction understand Java opcode syntax and semantics, allowing automated creation of valid Java programs. A Java-compatible class verifier is also included.
Some code transforms are difficult to program directly by manipulating Java instructions. For those transforms, a directed acyclic graph (DAG) representation of code is available. In the DAG representation, each basic block has a corresponding DAG, with a set of input and output nodes. Edges in the graph connect "producer" nodes (such as constants, or the result of calculations) to "user" nodes (such as method calls or other calculations). Methods are divided into basic blocks and control flow is stored at the basic block level (possible because Java has only fixed jump targets)
JBET requires a Java 1.4 virtual machine to run, although it can operate on class files from earlier Java versions. The packaging and build environment supplied supports Linux and Windows with Cygwin; however, the build process is simple and could be performed manually on other platforms. Perl is required for regression testing.
Jpolicy requires a Java 1.4 virtual machine to build, either Linux or Windows NT/XP with Cygwin. gcc is required for building on Windows (supplied with Cygwin). The runtime system can be either Java 1.3 or 1.4 (with Suns JVM only), running on Linux or Windows NT/XP. Windows 9x and Windows 2000 may work as well, but have not been tested.
Installation
1. Install jdk 1.4.1.
2. Set CLASSPATH to jdk1.4.1/jre/lib/rt.jar
3. cd src; make
4. If that didnt work, examine the makefile. java or javac may not be in the path.
5. To build a jar file that can be used with "java -jar jbet.jar", run "make jar".
6. If you have perl installed, run the tests with "make test".
Optionally, run "make regen; make test".
Make a symbolic link from jbet3/bin/jbet to somewhere in your path.
Usage
JBET uses the JNI format for class names, and JNI type and method descriptors. For a summary of this syntax, use jbet help syntax. Suns JVM specification may also be helpful.
To look at a class disassembly, use jbet print. Try disassembling a class you have source for, and was built with debug info (-g): jbet -P < classpath > print < classname >. Suns JVM specification has an instruction reference.
<<lessJBET was developed as part of the DARPA Self-Protecting Mobile Agents project under the OASIS and Active Networks programs (contract number N66001-00-C-8602) in order to study automated software obfuscation.
The Java language was chosen for this project because of the (relative) ease of constructing binary editing tools provided by the large amount of type information present in the class files. Our two reports, the Obfuscation Techniques Evaluation Report, and the Obfuscation Report, are available from the download area. The obfuscation tool developed is not part of this release.
JBET was also used in the DARPA/AFRL Survivable Server project (contract number F30602-00-C-0183) to add additional security checks to the Java Standard Library. (The Java SecurityManager API does not support many desirable security checks, such as continued authorization of file accesses after opening.)
JBET was used to replace the native method references in the Java standard library with stubs that call a pluggable security policy. This tool, called Jpolicy, is also available for download at this website. Jpolicy is very incomplete at this time, but may be interesting to those working in Java security or changing the standard library themselves.
The internal representation of Java class files used by JBET is intented to make it easy for programmers to write Java binary code transforms. Each element of Java class files has a corresponding internal data structure: ClassInfo for entire classes, MethodInfo for methods, FieldInfo for fields, Snippit for code blocks, and Instruction for individual instructions. Snippit and Instruction understand Java opcode syntax and semantics, allowing automated creation of valid Java programs. A Java-compatible class verifier is also included.
Some code transforms are difficult to program directly by manipulating Java instructions. For those transforms, a directed acyclic graph (DAG) representation of code is available. In the DAG representation, each basic block has a corresponding DAG, with a set of input and output nodes. Edges in the graph connect "producer" nodes (such as constants, or the result of calculations) to "user" nodes (such as method calls or other calculations). Methods are divided into basic blocks and control flow is stored at the basic block level (possible because Java has only fixed jump targets)
JBET requires a Java 1.4 virtual machine to run, although it can operate on class files from earlier Java versions. The packaging and build environment supplied supports Linux and Windows with Cygwin; however, the build process is simple and could be performed manually on other platforms. Perl is required for regression testing.
Jpolicy requires a Java 1.4 virtual machine to build, either Linux or Windows NT/XP with Cygwin. gcc is required for building on Windows (supplied with Cygwin). The runtime system can be either Java 1.3 or 1.4 (with Suns JVM only), running on Linux or Windows NT/XP. Windows 9x and Windows 2000 may work as well, but have not been tested.
Installation
1. Install jdk 1.4.1.
2. Set CLASSPATH to jdk1.4.1/jre/lib/rt.jar
3. cd src; make
4. If that didnt work, examine the makefile. java or javac may not be in the path.
5. To build a jar file that can be used with "java -jar jbet.jar", run "make jar".
6. If you have perl installed, run the tests with "make test".
Optionally, run "make regen; make test".
Make a symbolic link from jbet3/bin/jbet to somewhere in your path.
Usage
JBET uses the JNI format for class names, and JNI type and method descriptors. For a summary of this syntax, use jbet help syntax. Suns JVM specification may also be helpful.
To look at a class disassembly, use jbet print. Try disassembling a class you have source for, and was built with debug info (-g): jbet -P < classpath > print < classname >. Suns JVM specification has an instruction reference.
Download (0.19MB)
Added: 2005-03-07 License: BSD License Price:
1697 downloads
MDB Tools 0.6pre1
MDB Tools is a set of tools for reading Microsoft Access MDB files. more>>
The MDB Tools project is a effort to document the MDB file format used in Microsofts Access database package, and to provide a set of tools and applications to make that data available on other platforms.
Specifically, MDB Tools includes programs to export schema and data to other databases such as MySQL, Oracle, Sybase, PostgreSQL, and others.
Also, included is a SQL engine for performing simple SQL queries. The 0.5 release includes an updated GUI interface (screenshot is available here). A sparse but functional ODBC driver is included as well.
MDB Tools currently has read-only support for Access 97 (Jet 3) and Access 2000/2002 (Jet 4) formats. Access 2000 support is a recent addition and may not be as complete as Jet 3 support.
Write support is currently being worked on and the first cut is expected to be included in the 0.6 release.
<<lessSpecifically, MDB Tools includes programs to export schema and data to other databases such as MySQL, Oracle, Sybase, PostgreSQL, and others.
Also, included is a SQL engine for performing simple SQL queries. The 0.5 release includes an updated GUI interface (screenshot is available here). A sparse but functional ODBC driver is included as well.
MDB Tools currently has read-only support for Access 97 (Jet 3) and Access 2000/2002 (Jet 4) formats. Access 2000 support is a recent addition and may not be as complete as Jet 3 support.
Write support is currently being worked on and the first cut is expected to be included in the 0.6 release.
Download (0.60MB)
Added: 2005-04-21 License: LGPL (GNU Lesser General Public License) Price:
1695 downloads
Spumoni 1.4
Spumoni provides an open framework for monitoring applications using SNMP. more>>
Spumoni enables any program which can be queried via local commands to be health-checked via SNMP. This allows admins to use enterprise-level monitoring programs such as OpenNMS, Tivoli, OpenView, MRTG and RRDTool for even non-SNMP-enabled applications.
Spumoni acheives this efficiently using a native SNMP engine coupled with a stats collection daemon. Everything is highly configurable using modular XML files. Because of this modularity, the Spumoni project also contains a repository of configuration files to make monitoring various programs easier. A complete list of config files is available in the distribution package.
Main features:
- 100% Java means it can run on almost any platform.
- Licensed under the GPL. Special licensing also available.
- Low run-time utilization (only slightly more than your stats collection programs).
- Tested on Linux and Windows 2000.
- Uses a built-in SNMP daemon, so Net-SNMP is no longer needed.
- Includes an example MRTG front-end and a collection of monitoring config files to get you started.
Enhancements:
- Native SNMP TRAP and GET (agent) capability, thanks to JoeSNMP and Bob Sniders prototype code. This means that Net-SNMP, cfget and cfcat are no longer needed, so Spumoni runs just fine on Windows. Should make it more compatable on other platforms too.
- Added init.d-style startup script
- Added Windows batch file to run Spumoni
- Lots of code style standardization (thanks Checkstyle!)
- Tightened the XML DTDs
- Added CHANGELOG (this file)
- Added HTMLized source code to docs
- Added JUnit and Checkstyle Ant tasks
- Added JUnit and Checkstyle output to docs
- Greatly improved JavaDoc
- Improved build and versioning process
- Improved documentation & web site links
<<lessSpumoni acheives this efficiently using a native SNMP engine coupled with a stats collection daemon. Everything is highly configurable using modular XML files. Because of this modularity, the Spumoni project also contains a repository of configuration files to make monitoring various programs easier. A complete list of config files is available in the distribution package.
Main features:
- 100% Java means it can run on almost any platform.
- Licensed under the GPL. Special licensing also available.
- Low run-time utilization (only slightly more than your stats collection programs).
- Tested on Linux and Windows 2000.
- Uses a built-in SNMP daemon, so Net-SNMP is no longer needed.
- Includes an example MRTG front-end and a collection of monitoring config files to get you started.
Enhancements:
- Native SNMP TRAP and GET (agent) capability, thanks to JoeSNMP and Bob Sniders prototype code. This means that Net-SNMP, cfget and cfcat are no longer needed, so Spumoni runs just fine on Windows. Should make it more compatable on other platforms too.
- Added init.d-style startup script
- Added Windows batch file to run Spumoni
- Lots of code style standardization (thanks Checkstyle!)
- Tightened the XML DTDs
- Added CHANGELOG (this file)
- Added HTMLized source code to docs
- Added JUnit and Checkstyle Ant tasks
- Added JUnit and Checkstyle output to docs
- Greatly improved JavaDoc
- Improved build and versioning process
- Improved documentation & web site links
Download (0.10MB)
Added: 2005-04-07 License: GPL (GNU General Public License) Price:
1663 downloads
DOOM 3 1.3.1.1304 Patch
DOOM 3 is a sci-fi horror masterpiece, DOOM 3 is like nothing you have experienced. more>>
DOOM 3 is a sci-fi horror masterpiece, DOOM 3 is like nothing you have experienced.
id Software has released a new patch for its FPS DOOM 3. This update brings your retail game to v1.3.1 and adds various fixes and improvements, Vista compatibility, and bringing back cross-platform multiplayer compatibility with the Mac.
Minimum System Requierments:
3D Hardware Accelerator Card Required - 100% DirectX 9.0b compatible 64MB Hardware Accelerated video card and the lateset drivers*.
English verision of Microsoft Windows 2000/XP
Pentium IV 1.5 GHz or Athlon XP 1500+ processoror higher
384MB RAM
8x Speed CD-ROM drive (1200KB/sec sustained transfer rate) and latest drivers
2.2GB of uncompressed free hard disk space (plus 400MB for Windows swap file)
100% DirectX 9.0b compatible 16-bit sound card and the latest drivers
100% Windows compatible mouse, keyboard, and latest drivers
DirectX 9.0b (included)
Multiplayer Requierments:
Internet (TCP/IP) and LAN (TCP/IP) play supported.
Internet play requires broadband connection and latest drivers
LAN play requires network interface card and latest drivers
Enhancements:
- Tested and improved Vista compatibility
- Fix a potential crash in physics
- Fix an issue with pak downloaded being immediately appended without filesystem restart
- Fixes to DNS lookup, reduced the stalls
- Updated the code to gcc 4.0 compliance, for Mac OSX universal binaries and GNU/Linux x86 binaries
- Threading implementation for Mac and Linux is more compliant with the Win32 behaviours
- Fix Alsa sound backend (Linux)
- Fixes to tty code (Linux)
<<lessid Software has released a new patch for its FPS DOOM 3. This update brings your retail game to v1.3.1 and adds various fixes and improvements, Vista compatibility, and bringing back cross-platform multiplayer compatibility with the Mac.
Minimum System Requierments:
3D Hardware Accelerator Card Required - 100% DirectX 9.0b compatible 64MB Hardware Accelerated video card and the lateset drivers*.
English verision of Microsoft Windows 2000/XP
Pentium IV 1.5 GHz or Athlon XP 1500+ processoror higher
384MB RAM
8x Speed CD-ROM drive (1200KB/sec sustained transfer rate) and latest drivers
2.2GB of uncompressed free hard disk space (plus 400MB for Windows swap file)
100% DirectX 9.0b compatible 16-bit sound card and the latest drivers
100% Windows compatible mouse, keyboard, and latest drivers
DirectX 9.0b (included)
Multiplayer Requierments:
Internet (TCP/IP) and LAN (TCP/IP) play supported.
Internet play requires broadband connection and latest drivers
LAN play requires network interface card and latest drivers
Enhancements:
- Tested and improved Vista compatibility
- Fix a potential crash in physics
- Fix an issue with pak downloaded being immediately appended without filesystem restart
- Fixes to DNS lookup, reduced the stalls
- Updated the code to gcc 4.0 compliance, for Mac OSX universal binaries and GNU/Linux x86 binaries
- Threading implementation for Mac and Linux is more compliant with the Win32 behaviours
- Fix Alsa sound backend (Linux)
- Fixes to tty code (Linux)
Download (20.2MB)
Added: 2007-02-04 License: Freeware Price:
1642 downloads
Howl 1.0.0
Howl is a cross platform implementation of the Zeroconf zero configuration networking standard. more>>
Howl is a cross-platform implementation of Zeroconf networking. Zeroconf brings a new ease of use to IP networking.
Branded as Bonjouy by Apple Computer, Inc., Zeroconf standardizes networking protocols for delivering hassle-free ad-hoc networking, service discovery and IP configuration.
This ease of use, enjoyed by users of Mac OS X, is now available as an SDK for Windows 2000/XP and many flavors of Unix.
Howl allows software developers to easily embed Zeroconf functionality in their applications, making cumbersome and error-prone network configuration tasks seem so five minutes ago. Give your users what they want. Give them simple, elegant networking. Give them Howl.
Howl is open-source and royalty-free. We ask only that any fixes or improvements you make are fed back to us so we can ensure that we provide the most stable, best-quality cross-platform software for Zeroconf/Bonjour networking.
<<lessBranded as Bonjouy by Apple Computer, Inc., Zeroconf standardizes networking protocols for delivering hassle-free ad-hoc networking, service discovery and IP configuration.
This ease of use, enjoyed by users of Mac OS X, is now available as an SDK for Windows 2000/XP and many flavors of Unix.
Howl allows software developers to easily embed Zeroconf functionality in their applications, making cumbersome and error-prone network configuration tasks seem so five minutes ago. Give your users what they want. Give them simple, elegant networking. Give them Howl.
Howl is open-source and royalty-free. We ask only that any fixes or improvements you make are fed back to us so we can ensure that we provide the most stable, best-quality cross-platform software for Zeroconf/Bonjour networking.
Download (0.55MB)
Added: 2005-05-20 License: GPL (GNU General Public License) Price:
1620 downloads
PyMovie 0.9.7a
PyMovie is a program for organizing your movie collection. more>>
PyMovie differentiates between Movies and Series. It can track which friend has borrowed which movies.
Main features:
General
- Saving general information to a movie, serie
- Assigning eppisodes to a serie
- Holding information of Users
- Lend a movie or eppisode to a user
- Search for a movie, serie, eppisode or a user
- Edit a movie, serie, eppisode or a user
- Search for the lend movies or eppisodes of a user
- Search for the eppisodes from a serie
- Getting Imformation about a Movie from IMDB
Database, File access
- Accsess to a Postresql Database
- Accsess to a MySQL Database
- File Database with SQLite
- Import of Comma Seperated Value Files (CSV)
- Import of XML Files that were exportet with PyMovie
- Export into an XML File
- Export into an Comma Separated Value File (CSV)
- Export into HTML
- Export into iXeMeL (A format i use to create this Webpage)
Supported Operating Systems
- Works on Linux with X11
- Works on Windows (2000, XP)
- Should work on other *nixes, but there is just the source version
<<lessMain features:
General
- Saving general information to a movie, serie
- Assigning eppisodes to a serie
- Holding information of Users
- Lend a movie or eppisode to a user
- Search for a movie, serie, eppisode or a user
- Edit a movie, serie, eppisode or a user
- Search for the lend movies or eppisodes of a user
- Search for the eppisodes from a serie
- Getting Imformation about a Movie from IMDB
Database, File access
- Accsess to a Postresql Database
- Accsess to a MySQL Database
- File Database with SQLite
- Import of Comma Seperated Value Files (CSV)
- Import of XML Files that were exportet with PyMovie
- Export into an XML File
- Export into an Comma Separated Value File (CSV)
- Export into HTML
- Export into iXeMeL (A format i use to create this Webpage)
Supported Operating Systems
- Works on Linux with X11
- Works on Windows (2000, XP)
- Should work on other *nixes, but there is just the source version
Download (4.5MB)
Added: 2005-07-26 License: GPL (GNU General Public License) Price:
1550 downloads
Racer 0.5.2 beta8.9
Racer is a free car simulation project, using real car physics to get a realistic feeling. more>>
Racer is a free car simulation project, using real car physics to get a realistic feeling. Cars, tracks, scenes and such can be created with relative simplicity in mind (compared to other driving simulations).
The 3D and other file formats are, or should be, documented. Editors and support programs are also available to get a very flexible and expandable simulator. It uses OpenGL for rendering.
It attempts to do well at the physics section, trying to create life-like cars to emphasize car control and doesnt cut back on realism in the interest of fun. If youve played Grand Prix Legends from Papyrus, youll know what Im talking about.
Racer major features:
- Its totally free! (for non-commercial use)
- Available for multiple platforms; Windows 2000/XP (95/98/ME may work but have some trouble with fonts), Linux and Mac OS X.
- 6 DOF models used (the car can move around freely)
- Uses motion formulae from actual engineering documents from SAE for example.
- Total flexibility; almost everything is customizable through ASCII files.
- Commercial-quality rendering engine (with smoke, skidmarks, sparks, sun, flares, vertex-color lit tracks).
- Support for Matrox Surround Gaming. See the corresponding page on Matrox site.
- Lots of addon cars and tracks available on the web.
- Easy integration of your own cars and tracks that you create in ZModeler, 3D Studio Max(tm), Maya etc.
- At least 15 degrees of freedom for a regular car (6 DOF for the car body, 1 for each wheels vertical motion and 1 for each wheel spinning, and 1 for the engine, several more for the driveline). Depending actually on how many wheels you put on the car.
- Real-time internal clock; no physical dependency on framerate. Controller updates are also done independently of the framerate.
- Not limited to 4 wheels; anything from 2 to 8 wheel vehicles are currently supported (but mostly untested, and some problems with hardcoded differentials for example may exist (v0.5.0)).
- Not much constraints on the track data; surface info is taken from polygon data (VRML tracks), and splines are used to smooth out the track surface (polygons are too harsh for driving on just like that).
- Tools to modify the cars & tracks are freely available on this site (though external utilities are recommended for best results).
- Some used algorithms are explained on this site. Also, references are available. If you are programming a carsim, you might find something useful here.
- Save game present!
Main features:
PHYSICS FEATURES
- Full 6 degree of freedom motion of the car chassis.
- Independent suspension for all wheels.
- Suspension features: springs, dampers, anti-rollbar, rollcenter, anti-pitch.
- Wheel features: camber, wheel hop (the wheels have mass), toe.
- Tires: Pacejka tire model, relaxation length.
GRAPHICS FEATURES
- View frustum culling for increased framerate.
- Shader system for Quake-style rendering.
- Fog definable per track.
- Environment mapping for shiny materials.
- Live track environment mapping.
<<lessThe 3D and other file formats are, or should be, documented. Editors and support programs are also available to get a very flexible and expandable simulator. It uses OpenGL for rendering.
It attempts to do well at the physics section, trying to create life-like cars to emphasize car control and doesnt cut back on realism in the interest of fun. If youve played Grand Prix Legends from Papyrus, youll know what Im talking about.
Racer major features:
- Its totally free! (for non-commercial use)
- Available for multiple platforms; Windows 2000/XP (95/98/ME may work but have some trouble with fonts), Linux and Mac OS X.
- 6 DOF models used (the car can move around freely)
- Uses motion formulae from actual engineering documents from SAE for example.
- Total flexibility; almost everything is customizable through ASCII files.
- Commercial-quality rendering engine (with smoke, skidmarks, sparks, sun, flares, vertex-color lit tracks).
- Support for Matrox Surround Gaming. See the corresponding page on Matrox site.
- Lots of addon cars and tracks available on the web.
- Easy integration of your own cars and tracks that you create in ZModeler, 3D Studio Max(tm), Maya etc.
- At least 15 degrees of freedom for a regular car (6 DOF for the car body, 1 for each wheels vertical motion and 1 for each wheel spinning, and 1 for the engine, several more for the driveline). Depending actually on how many wheels you put on the car.
- Real-time internal clock; no physical dependency on framerate. Controller updates are also done independently of the framerate.
- Not limited to 4 wheels; anything from 2 to 8 wheel vehicles are currently supported (but mostly untested, and some problems with hardcoded differentials for example may exist (v0.5.0)).
- Not much constraints on the track data; surface info is taken from polygon data (VRML tracks), and splines are used to smooth out the track surface (polygons are too harsh for driving on just like that).
- Tools to modify the cars & tracks are freely available on this site (though external utilities are recommended for best results).
- Some used algorithms are explained on this site. Also, references are available. If you are programming a carsim, you might find something useful here.
- Save game present!
Main features:
PHYSICS FEATURES
- Full 6 degree of freedom motion of the car chassis.
- Independent suspension for all wheels.
- Suspension features: springs, dampers, anti-rollbar, rollcenter, anti-pitch.
- Wheel features: camber, wheel hop (the wheels have mass), toe.
- Tires: Pacejka tire model, relaxation length.
GRAPHICS FEATURES
- View frustum culling for increased framerate.
- Shader system for Quake-style rendering.
- Fog definable per track.
- Environment mapping for shiny materials.
- Live track environment mapping.
Download (10.7MB)
Added: 2005-08-16 License: GPL (GNU General Public License) Price:
1543 downloads
Mono SQL Sharp for GTK Sharp 0.2
Mono SQL Sharp for GTK# is a GUI client for entering and running SQL commands and scripts. more>>
Mono SQL Sharp for GTK# is a GUI client for entering and running SQL commands and scripts. Database objects, such as, tables and table columns can be browsed.
Mono SQL Sharp for GTK Sharp is built for Mono 1.1.7 and GTK# 1.9.3 or higher. It works on Linux and Windows 2000/XP. It has support for various databases via Monos ADO.NET implementation and data providers.
Providers supported:
- Npgsql for PostgreSQL
- ByteFX.Data.MySqLClient for MySQL
- FirebirdSql.Data.Firebird for Firebird
- System.Data.SqlClient for Microsoft SQL Server 7.0/2000/2005
- System.Data.OracleClient for Oracle 8i, 9i, and 10g
- Mono.Data.SybaseClient for Sybase 12.x
- Mono.Data.SqliteClient for SQL Lite
- System.Data.Odbc for ODBC
- And whatever provider you add to the xml configuration settings file sqlsharpgtk.exe.config
Results can be shown in a grid or a text log. Files can be loaded into the SQL text editor or saved.
Mono SQL# for GTK# has a command-line version, sqlsharp.exe, which is included with Mono. Mono SQL# for GTK# is a separate project for the GTK# GUI version.
<<lessMono SQL Sharp for GTK Sharp is built for Mono 1.1.7 and GTK# 1.9.3 or higher. It works on Linux and Windows 2000/XP. It has support for various databases via Monos ADO.NET implementation and data providers.
Providers supported:
- Npgsql for PostgreSQL
- ByteFX.Data.MySqLClient for MySQL
- FirebirdSql.Data.Firebird for Firebird
- System.Data.SqlClient for Microsoft SQL Server 7.0/2000/2005
- System.Data.OracleClient for Oracle 8i, 9i, and 10g
- Mono.Data.SybaseClient for Sybase 12.x
- Mono.Data.SqliteClient for SQL Lite
- System.Data.Odbc for ODBC
- And whatever provider you add to the xml configuration settings file sqlsharpgtk.exe.config
Results can be shown in a grid or a text log. Files can be loaded into the SQL text editor or saved.
Mono SQL# for GTK# has a command-line version, sqlsharp.exe, which is included with Mono. Mono SQL# for GTK# is a separate project for the GTK# GUI version.
Download (0.67MB)
Added: 2005-08-08 License: GPL (GNU General Public License) Price:
1541 downloads
Donzilla 0.9
Donzilla is a customized version of Mozilla App-Suite, created by HardwareHacks 2000. more>>
Donzilla is intended for a user that is looking for everything he or she could possibly need in one convenient package.
Donzilla project is definitely not reccomended to a minimalist user. For minimalist users, there is SillyDog701s Netscape Streamline Series.
Main features:
- ChatZilla
- Mozilla Calendar
- Adblock 0.5d2 Nightly, Build 39
- Googlebar for Mozilla
- CopyImage
- Checky 2.5
- Wmlbrowser 0.4.9
- BBCode 0.4
<<lessDonzilla project is definitely not reccomended to a minimalist user. For minimalist users, there is SillyDog701s Netscape Streamline Series.
Main features:
- ChatZilla
- Mozilla Calendar
- Adblock 0.5d2 Nightly, Build 39
- Googlebar for Mozilla
- CopyImage
- Checky 2.5
- Wmlbrowser 0.4.9
- BBCode 0.4
Download (12.6MB)
Added: 2005-12-20 License: GPL (GNU General Public License) Price:
1471 downloads
ptyaim 0.5.7
ptyaim is a very simple, extra special curses client for AOLs Instant Messenger (AIM) and ICQ services, plus IRC. more>>
ptyaim is a very simple, extra special curses client for AOLs Instant Messenger (AIM) and ICQ services, plus Internet Relay Chat (IRC). ptyaims project interface is somewhat inspired by naim. However, it uses no code from naim.
The latest version of ptyaim has been tested on Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Tru64 Unix, Mac OS 10.3, and Microsoft Windows 2000. Most likely, it will work on other platforms, too.
Enhancements:
- This new version of ptyaim features improvements to the OSCAR plugin, including support for group chat.
- The TOC plugin has also been removed.
<<lessThe latest version of ptyaim has been tested on Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Tru64 Unix, Mac OS 10.3, and Microsoft Windows 2000. Most likely, it will work on other platforms, too.
Enhancements:
- This new version of ptyaim features improvements to the OSCAR plugin, including support for group chat.
- The TOC plugin has also been removed.
Download (0.10MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
portbase 0.4
portbase is a portable base services library for C. more>>
portbase is a portable base services library for C. Portbase is tested on all machines I have access to.
Currently, this list includes all of the machines on the sourceforge.net compile farm, as well as my own Windows 2000 and OpenBSD machines.
Expect portbase to compile without warnings on these platforms, and the test suite to run without errors (see the Portability Notes for exceptions to this.)
Main features:
- Data integrity functions. CRC8, 16 and 32.
- Message digest functions. MD5, SHA-1 and SHA-512.
- Keyed-digest functions. HMAC-MD5 and HMAC-SHA1.
- Block cipher. 16-rounds Blowfish (with and without CBC mode).
- Strong cryptograhic authentication and key exchange. SRP-6.
- Randomizer. Pseudo-randomizer with a period of 28222, fully controllable.
- Threading, including mutexes and per-thread data.
- Time and date functions, including timer functions.
- Directory reading (list of files, ownership, permissions etc).
- Fairly comprehensive string functionality, including number-mapping and sounds-like.
- Basic but user-friendly URI parsing.
- Linked-list functions.
- AVL tree functions (self-balancing binary tree).
- TCP and UDP networking.
<<lessCurrently, this list includes all of the machines on the sourceforge.net compile farm, as well as my own Windows 2000 and OpenBSD machines.
Expect portbase to compile without warnings on these platforms, and the test suite to run without errors (see the Portability Notes for exceptions to this.)
Main features:
- Data integrity functions. CRC8, 16 and 32.
- Message digest functions. MD5, SHA-1 and SHA-512.
- Keyed-digest functions. HMAC-MD5 and HMAC-SHA1.
- Block cipher. 16-rounds Blowfish (with and without CBC mode).
- Strong cryptograhic authentication and key exchange. SRP-6.
- Randomizer. Pseudo-randomizer with a period of 28222, fully controllable.
- Threading, including mutexes and per-thread data.
- Time and date functions, including timer functions.
- Directory reading (list of files, ownership, permissions etc).
- Fairly comprehensive string functionality, including number-mapping and sounds-like.
- Basic but user-friendly URI parsing.
- Linked-list functions.
- AVL tree functions (self-balancing binary tree).
- TCP and UDP networking.
Download (0.52MB)
Added: 2006-01-20 License: MIT/X Consortium License Price:
1374 downloads
Ciphire Mail 1.2.47
Ciphire Mail is an email encryption tool. more>>
Ciphire Mail is an email encryption tool. It works in conjunction with your existing email client. It operates seamlessly in the background and does not interfere with normal email routines.
Ciphire Mail program encrypts and decrypts email messages, and can digitally sign each message to provide authentication and guard against identity theft.
It resides on your computer, between your email client and your email server, transparently encrypting/decrypting and digitally signing your email communication. It runs on Windows 2000/XP, Linux, and Mac OS X.
It is compatible with all email clients using standard SMTP, POP3, or IMAP4 (including SSL/TLS variants and STARTTLS support). It is free for consumers, non-profit organizations, and the press.
Enhancements:
- This version is primarily a bugfix release, and fixes some minor issues in the 1.2.42 stable version.
<<lessCiphire Mail program encrypts and decrypts email messages, and can digitally sign each message to provide authentication and guard against identity theft.
It resides on your computer, between your email client and your email server, transparently encrypting/decrypting and digitally signing your email communication. It runs on Windows 2000/XP, Linux, and Mac OS X.
It is compatible with all email clients using standard SMTP, POP3, or IMAP4 (including SSL/TLS variants and STARTTLS support). It is free for consumers, non-profit organizations, and the press.
Enhancements:
- This version is primarily a bugfix release, and fixes some minor issues in the 1.2.42 stable version.
Download (12.5MB)
Added: 2006-03-31 License: Free For Educational Use Price:
1368 downloads
PXES Universal Linux Thin Client 1.1
PXES is a micro Linux thin client distribution. more>>
PXES project is a micro Linux thin client distribution. PXES will boot a real thin client or will help to convert in minutes any compliant hardware (see list bellow) into a versatile thin client.
They will be capable of accessing any XDM server presenting the graphical login screen or any Microsoft Terminal Server through RDP protocol. The actual configuration of clients is made with an easy to use graphical configuration tool, allowing the specification of clients parameters or the server to access to.
You can recover hardware that is useless running current desktop OS or office package and give it a second chance. This thin client boots from the network with PXE (Intel Pre-Execution Environment specifications) so neither boot diskette nor boot eprom is needed.
The linux kernel and an initial root filesystem is transmitted over the network (the compressed size as of version 0.4 is about 4M).
Main features:
Supported servers and protocols
- Unix/Linux supporting XDM
- Microsoft Terminal Server using RDP
- Citrix using ICA
- VNC using TightVNC
- LOCAL local graphical session with simple desktop
- LTSP or K12LTSP
- IBM Host using 3270 or 5250 emulation (soon)
- Telnet emulating ANSI terminal
- SSH
- Tarantella using proprietary protocol
- NoMachine using NX
- Thinlinc
Boot methods
- PXE network card included in most modern PC hardware
- Etherboot to boot from diskette or EPROM
- CD-ROM
- Hard disk
- DOC DiskOnChip and DOM DiskOnModule
- USB Storage
- For Hard Disk, DOC, DOM or other flash memory installation you may also use PXES HD/DOM Installer (http://pxes.sourceforge.net/enterprise/install-dom.shtml) which is part of Enterprise Edition (http://pxes.sourceforge.net/enterprise/index.php).
- You can also see the detailed information about Boot Methods.
Hardware requirements
- Processor: x86 architecture (i486, i586, i686, VIA C3, Geode, Vortex86, Transmeta Crusoe, etc.)
- BUS: PCI recommended (although ISA works)
- RAM: 32 Mb recommended (16 Mb minimum)
- NIC: see supported network card list
- Video: see supported video card list
Local devices
- Diskette
- Hard disk
- CD-ROM
- Printers parallel, serial and USB
- Serial devices (bar code reader, etc.)
- Audio
- Flash memory / USB storage
Supported operating system
- Linux
- Solaris
- AIX
- SCO
- BSD
- HP-UX
- Microsoft Windows NT4
- Microsoft Windows 2000
- Microsoft Windows 2003
- Microsoft Windows XP
Enhancements:
- Support for different boot loaders was added.
- Support for GRUB on ISO images was added.
- A correction was made in the kernel and image path in isolinux.
- A message telling the user to run "pxesconfig --updatefstab" was added.
- updatefstab was added in post.
- Support for 2.4.32 and 2.6.15 kernels was added.
- Automated owner and permission changing on specific files was added, so now the whole pxes-base tree can be checked out as a normal user.
<<lessThey will be capable of accessing any XDM server presenting the graphical login screen or any Microsoft Terminal Server through RDP protocol. The actual configuration of clients is made with an easy to use graphical configuration tool, allowing the specification of clients parameters or the server to access to.
You can recover hardware that is useless running current desktop OS or office package and give it a second chance. This thin client boots from the network with PXE (Intel Pre-Execution Environment specifications) so neither boot diskette nor boot eprom is needed.
The linux kernel and an initial root filesystem is transmitted over the network (the compressed size as of version 0.4 is about 4M).
Main features:
Supported servers and protocols
- Unix/Linux supporting XDM
- Microsoft Terminal Server using RDP
- Citrix using ICA
- VNC using TightVNC
- LOCAL local graphical session with simple desktop
- LTSP or K12LTSP
- IBM Host using 3270 or 5250 emulation (soon)
- Telnet emulating ANSI terminal
- SSH
- Tarantella using proprietary protocol
- NoMachine using NX
- Thinlinc
Boot methods
- PXE network card included in most modern PC hardware
- Etherboot to boot from diskette or EPROM
- CD-ROM
- Hard disk
- DOC DiskOnChip and DOM DiskOnModule
- USB Storage
- For Hard Disk, DOC, DOM or other flash memory installation you may also use PXES HD/DOM Installer (http://pxes.sourceforge.net/enterprise/install-dom.shtml) which is part of Enterprise Edition (http://pxes.sourceforge.net/enterprise/index.php).
- You can also see the detailed information about Boot Methods.
Hardware requirements
- Processor: x86 architecture (i486, i586, i686, VIA C3, Geode, Vortex86, Transmeta Crusoe, etc.)
- BUS: PCI recommended (although ISA works)
- RAM: 32 Mb recommended (16 Mb minimum)
- NIC: see supported network card list
- Video: see supported video card list
Local devices
- Diskette
- Hard disk
- CD-ROM
- Printers parallel, serial and USB
- Serial devices (bar code reader, etc.)
- Audio
- Flash memory / USB storage
Supported operating system
- Linux
- Solaris
- AIX
- SCO
- BSD
- HP-UX
- Microsoft Windows NT4
- Microsoft Windows 2000
- Microsoft Windows 2003
- Microsoft Windows XP
Enhancements:
- Support for different boot loaders was added.
- Support for GRUB on ISO images was added.
- A correction was made in the kernel and image path in isolinux.
- A message telling the user to run "pxesconfig --updatefstab" was added.
- updatefstab was added in post.
- Support for 2.4.32 and 2.6.15 kernels was added.
- Automated owner and permission changing on specific files was added, so now the whole pxes-base tree can be checked out as a normal user.
Download (23MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1365 downloads
AdvanceMAME 0.104.0
AdvanceMAME is a port of the MAME and MESS emulators for arcade monitors, TVs, and PC monitors. more>>
AdvanceMAME and AdvanceMESS are unofficial MAME and MESS versions with an advanced video support for helping the use with TVs, Arcade Monitors, Fixed Frequencies Monitors and also for PC Monitors.
They run in GNU/Linux, Mac OS X, DOS, Windows and in all the other platforms supported by the SDL library.
The main difference compared with the official emulators is that the Advance versions are able to program directly the video board to always get a video mode with the correct size and frequency.
Generally the Advance emulators are able to use a video mode which doesnt require any stretching or other unneeded effects to match the original arcade display.
The direct video board programming is fully supported in Linux and DOS. Its partially supported in Windows. AdvanceMAME isnt supported in Mac OS X and other platforms.
Main features:
- Automatic creation of perfect video modes with the correct size and clock.
- A lot of video boards supported. See the GNU/Linux, DOS and Windows card list.
- Support for 8, 15, 16 and 32 bits video modes.
- Real hardware scanlines.
- Software video image stretching by fractional factors, for example to play vertical games like "Pac-Man" with horizontal Arcade Monitors or TVs.
- Special scale, lq and hq effects to improve the aspect with modern PC Monitors. See Scale2x and hq3x pages for examples.
- Special blit effects to improve the image quality in stretching. See Blit Effetcs for examples.
- Special rgb effects to simulate the aspect of a real Arcade Monitor See Rgb Effetcs for examples.
- Change of the video mode and other video options at runtime. See the Snapshots.
- Support of Symmetric Multi-Processing (SMP) with a multiple threads architecture in Linux.
- Sound and Video recording in WAV, PNG and .MNG files.
- Multiple mice support in Linux, DOS, Windows 2000 and Windows XP.
- Automatic exit after some time of inactivity.
- Scripts capabilities to drive external hardware devices like LCDs and lights.
- Textual configuration files.
- Help screen describing the user input keys.
Enhancements:
- This release updates the emulator sources to the latest MAME version.
<<lessThey run in GNU/Linux, Mac OS X, DOS, Windows and in all the other platforms supported by the SDL library.
The main difference compared with the official emulators is that the Advance versions are able to program directly the video board to always get a video mode with the correct size and frequency.
Generally the Advance emulators are able to use a video mode which doesnt require any stretching or other unneeded effects to match the original arcade display.
The direct video board programming is fully supported in Linux and DOS. Its partially supported in Windows. AdvanceMAME isnt supported in Mac OS X and other platforms.
Main features:
- Automatic creation of perfect video modes with the correct size and clock.
- A lot of video boards supported. See the GNU/Linux, DOS and Windows card list.
- Support for 8, 15, 16 and 32 bits video modes.
- Real hardware scanlines.
- Software video image stretching by fractional factors, for example to play vertical games like "Pac-Man" with horizontal Arcade Monitors or TVs.
- Special scale, lq and hq effects to improve the aspect with modern PC Monitors. See Scale2x and hq3x pages for examples.
- Special blit effects to improve the image quality in stretching. See Blit Effetcs for examples.
- Special rgb effects to simulate the aspect of a real Arcade Monitor See Rgb Effetcs for examples.
- Change of the video mode and other video options at runtime. See the Snapshots.
- Support of Symmetric Multi-Processing (SMP) with a multiple threads architecture in Linux.
- Sound and Video recording in WAV, PNG and .MNG files.
- Multiple mice support in Linux, DOS, Windows 2000 and Windows XP.
- Automatic exit after some time of inactivity.
- Scripts capabilities to drive external hardware devices like LCDs and lights.
- Textual configuration files.
- Help screen describing the user input keys.
Enhancements:
- This release updates the emulator sources to the latest MAME version.
Download (15MB)
Added: 2006-02-19 License: GPL (GNU General Public License) Price:
1362 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 windows 2000 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