gas
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 16
python-gastables 0.1
python-gastables includes Python modules for compressible gas flow calculations. more>>
python-gastables includes Python modules for compressible gas flow calculations.
The project includes Python modules for isentropic relations, normal shock relations, oblique shock relations, Fanno flow, isothermal flow, Rayleigh flow, and Prandtl Meyer functions.
<<lessThe project includes Python modules for isentropic relations, normal shock relations, oblique shock relations, Fanno flow, isothermal flow, Rayleigh flow, and Prandtl Meyer functions.
Download (0.016MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
931 downloads
AustinSmoke GasTracker 1.0.0
GasTracker will allow you to keep track of your gas mileage and display the results in an easy to read Web site. more>>
AustinSmoke GasTracker script will allow you to keep track of your gas mileage and have the results displayed in an easy to read website.
None of the data is harvested from anywhere on the web but is rather entered manually by the user and for the user.
Currently the program only supports the English system of miles and gallons. Future versions intend to include the metric system as well as conversions between the figures.
If the demand seems to exist, a future version will allow the user to import a CSV file (or something similar). This should satisfy any users who have historically kept up with such data with Excel and other spreadsheets.
<<lessNone of the data is harvested from anywhere on the web but is rather entered manually by the user and for the user.
Currently the program only supports the English system of miles and gallons. Future versions intend to include the metric system as well as conversions between the figures.
If the demand seems to exist, a future version will allow the user to import a CSV file (or something similar). This should satisfy any users who have historically kept up with such data with Excel and other spreadsheets.
Download (0.043MB)
Added: 2005-12-07 License: GPL (GNU General Public License) Price:
1416 downloads
Yasm 0.6.1
Yasm is a complete rewrite of NASM. more>>
Yasm is a complete rewrite of the NASM assembler under the "new" BSD License (some portions are under other licenses, see COPYING for details).
Yasm project is designed from the ground up to allow for multiple assembler syntaxes to be supported (eg, TASM, GAS, NASM etc.) in addition to multiple output object formats and even multiple instruction sets. Another primary module of the overall design is an optimizer module.
The core focus of Yasm is not the "yasm" commandline frontend; rather, it is the Libyasm library and associated LoadableModules? (see the ProgrammerReferences for documentation).
Libyasm and the modules are intended for reuse in other sorts of programs dealing with code at the assembly level (compilers, debuggers, etc). Someday, libyasm may be packaged separately from the rest of Yasm.
Key Current User-Visible Yasm major features:>
- Nearly feature-complete lexing and parsing of (preprocessed) NASM syntax?.
- AMD64 support (enabled using "BITS 64" and "-m amd64" option)
- 64-bit (and larger) integer constants allowed (including math operations).
- Internationalization support via GNU gettext.
- A simple 2-pass optimizer (its a bit better than the NASM one).
- The "real" NASM preprocessor (imported from NASMs source tree).
- Binary object file? output (NASM style).
- COFF object file? output, for use with DJGPP.
- Win32 object file? output (including Win64/AMD64 support).
- STABS debug format?.
- ELF32 and ELF64 object file output. No debugging information included at this point.
- Portability; currently compilable on:
- UNIX and compatibles (FreeBSD and Linux tested, GNU configure based autoconfiguration)
- DOS (using DJGPP)
- Windows (using Visual C++ or CygWin).
Key Internal Main features:>
- A NASM syntax parser written in yacc. This simplifies the source code and increases performance: yacc-generated parsers are almost always faster than hand-written ones. Also, yacc (and its GNU implementation, bison) is an extremely well-tested and well-documented tool.
- Architecture-specific instruction parsers hand-written for simplicity and size, as well as to make it easy to add additional architectures while retaining the same front-end syntax. The blend of yacc for syntax and a hand-written parser for instructions strikes a great balance between the strengths and weaknesses of each approach.
- A NASM syntax? lexer written in re2c. A highly efficient scanner generator (almost always faster than lex/flex), its also very embeddable due to its code generation methodology, allowing a number of re2c scanners to be used in various places in yasm without any worries about naming conflicts.
- Many of the modular interfaces at least superficially finished. This is still an area that needs a lot of work.
- A small set of portable equivalants of useful functions that are standard on some systems (detected via configure), such as the queue(3) set of functions, strdup, strcasecmp, and mergesort.
- A decent (and growing) set of assembler test input files to test the entire assembler as well as specific modules.
Important Differences from NASM:
- Yasm defaults to reading from standard input if no files are specified. When an input file is specified, Yasm behaves like NASM.
- A number of command line options are different. Run "yasm --help" for a quick command line option summary, or read the full yasm(1) manpage for detailed descriptions of all command line options.
Enhancements:
- This release adds SSE4.1 and SSE4.2 instruction support, a .set directive in the GAS parser, and allowing Mach-O custom sections.
- Bugfixes include fixes to AMD Pacifica (SVM) instructions, absolute section handling, RIP-relative cross-section references in bin output, and many others.
<<lessYasm project is designed from the ground up to allow for multiple assembler syntaxes to be supported (eg, TASM, GAS, NASM etc.) in addition to multiple output object formats and even multiple instruction sets. Another primary module of the overall design is an optimizer module.
The core focus of Yasm is not the "yasm" commandline frontend; rather, it is the Libyasm library and associated LoadableModules? (see the ProgrammerReferences for documentation).
Libyasm and the modules are intended for reuse in other sorts of programs dealing with code at the assembly level (compilers, debuggers, etc). Someday, libyasm may be packaged separately from the rest of Yasm.
Key Current User-Visible Yasm major features:>
- Nearly feature-complete lexing and parsing of (preprocessed) NASM syntax?.
- AMD64 support (enabled using "BITS 64" and "-m amd64" option)
- 64-bit (and larger) integer constants allowed (including math operations).
- Internationalization support via GNU gettext.
- A simple 2-pass optimizer (its a bit better than the NASM one).
- The "real" NASM preprocessor (imported from NASMs source tree).
- Binary object file? output (NASM style).
- COFF object file? output, for use with DJGPP.
- Win32 object file? output (including Win64/AMD64 support).
- STABS debug format?.
- ELF32 and ELF64 object file output. No debugging information included at this point.
- Portability; currently compilable on:
- UNIX and compatibles (FreeBSD and Linux tested, GNU configure based autoconfiguration)
- DOS (using DJGPP)
- Windows (using Visual C++ or CygWin).
Key Internal Main features:>
- A NASM syntax parser written in yacc. This simplifies the source code and increases performance: yacc-generated parsers are almost always faster than hand-written ones. Also, yacc (and its GNU implementation, bison) is an extremely well-tested and well-documented tool.
- Architecture-specific instruction parsers hand-written for simplicity and size, as well as to make it easy to add additional architectures while retaining the same front-end syntax. The blend of yacc for syntax and a hand-written parser for instructions strikes a great balance between the strengths and weaknesses of each approach.
- A NASM syntax? lexer written in re2c. A highly efficient scanner generator (almost always faster than lex/flex), its also very embeddable due to its code generation methodology, allowing a number of re2c scanners to be used in various places in yasm without any worries about naming conflicts.
- Many of the modular interfaces at least superficially finished. This is still an area that needs a lot of work.
- A small set of portable equivalants of useful functions that are standard on some systems (detected via configure), such as the queue(3) set of functions, strdup, strcasecmp, and mergesort.
- A decent (and growing) set of assembler test input files to test the entire assembler as well as specific modules.
Important Differences from NASM:
- Yasm defaults to reading from standard input if no files are specified. When an input file is specified, Yasm behaves like NASM.
- A number of command line options are different. Run "yasm --help" for a quick command line option summary, or read the full yasm(1) manpage for detailed descriptions of all command line options.
Enhancements:
- This release adds SSE4.1 and SSE4.2 instruction support, a .set directive in the GAS parser, and allowing Mach-O custom sections.
- Bugfixes include fixes to AMD Pacifica (SVM) instructions, absolute section handling, RIP-relative cross-section references in bin output, and many others.
Download (1.1MB)
Added: 2007-06-16 License: BSD License Price:
876 downloads
JGAP 3.2.1
JGAP is a genetic algorithms component written in the form of a Java package. more>>
JGAP (pronounced "jay-gap") is a genetic algorithms component written in the form of a Java package. JGAP project provides basic genetic mechanisms that can be easily used to apply evolutionary principles to problem solutions. The ground is laid for introducing Genetic Programming to JGAP in the near future!
JGAP has been written to be very easy to use "out of the box," while also designed to be highly modular so that more adventurous users can easily plug-in custom genetic operators and other sub-components.
Genetic algorithms (GAs) are evolutionary algorithms that use the principle of natural selection to evolve a set of solutions toward an optimum solution. GAs are not only very powerful, but are also very easy to use as most of the work can be encapsulated into a single component, requiring users only to define a fitness function that is used to determine how "good" a particular solution is relative to other solutions.
Enhancements:
- Made Robocode example work with newest Robocode version and enhanced the example in general
- Added Maven pom file
- Introduced log4j
- Fixed bug with allTimeBest and cloning (see bug 1744077)
- Fixed bug with GABreeder.evolution (bug 1748528)
- Made INodeValidator serializable
- Added custom-initialization mechanism for GP
- Enhanced IGPChromosome by method getFunctionSet()
- Added Java command version to NOP
- Enhanced Javadoc a lot
- Added two utility functions to SystemKit
- Improved Chromosome.hashCode()
- Added some few unit tests
<<lessJGAP has been written to be very easy to use "out of the box," while also designed to be highly modular so that more adventurous users can easily plug-in custom genetic operators and other sub-components.
Genetic algorithms (GAs) are evolutionary algorithms that use the principle of natural selection to evolve a set of solutions toward an optimum solution. GAs are not only very powerful, but are also very easy to use as most of the work can be encapsulated into a single component, requiring users only to define a fitness function that is used to determine how "good" a particular solution is relative to other solutions.
Enhancements:
- Made Robocode example work with newest Robocode version and enhanced the example in general
- Added Maven pom file
- Introduced log4j
- Fixed bug with allTimeBest and cloning (see bug 1744077)
- Fixed bug with GABreeder.evolution (bug 1748528)
- Made INodeValidator serializable
- Added custom-initialization mechanism for GP
- Enhanced IGPChromosome by method getFunctionSet()
- Added Java command version to NOP
- Enhanced Javadoc a lot
- Added two utility functions to SystemKit
- Improved Chromosome.hashCode()
- Added some few unit tests
Download (3.9MB)
Added: 2007-07-12 License: LGPL (GNU Lesser General Public License) Price:
834 downloads
LDasm 0.04.53
LDasm is an x86 disassembler and GUI. more>>
LDasm (Linux Disassembler) is a Perl/Tk-based GUI for objdump/binutils that tries to imitate the looknfeel of W32Dasm.
It searchs for cross-references (e.g. strings), converts the code from GAS to a MASM-like style, traces programs and much more.
Comes along with PTrace a process-flow-logger.
Enhancements:
- Fileoffset is calculated and displayed
<<lessIt searchs for cross-references (e.g. strings), converts the code from GAS to a MASM-like style, traces programs and much more.
Comes along with PTrace a process-flow-logger.
Enhancements:
- Fileoffset is calculated and displayed
Download (0.059MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1661 downloads
Nonpareil 0.78
Nonpareil is a calculator microassembler and simulator. more>>
Nonpareil is a microassembler and simulator package for the calculators. It currently supports the HP Classic and Woodstock series. Nonpareil is written in C and uses the GTK+ toolkit.
The Classic series of HP handheld calculators included the following models:
- HP-35 Scientific (Electronic Slide Rule)
- HP-80 Financial
- HP-45 Advanced Scientific
- HP-65 Card Programmable Scientific
- HP-70 Business
- HP-55 Programmable Scientific
The HP-67 is considered by many people to be part of the Classic series since it is packaged similarly to the HP-65, but electrically it is really a Woodstock series machine.
The classic series chip set was also used in the HP-46 and HP-81, which were desktop printing versions of the HP-45 and HP-80, respectively, and the HP 9805A desktop calculator. The same chip set was also used in the HP 1722A Oscilliscope, the HP 3380A Integrator (for Gas Chromatography), and in several HP Gas Chromatographs.
The Woodstock series of HP handheld calculators included the following models:
- HP-21 Scientific
- HP-22 Financial
- HP-25 Programmable Scientific
- HP-25C Programmable Scientific with continuous memory
- HP-27 Scientific and Financial
- HP-29C Programmable Scientific with continuous memory
The code name "Woodstock" referred both to the Woodstock series of calculators, and to the processor architecture use in them. The same processor architecture was also used in the Topcat, Sting, and Spice series, and the HP-67.
Enhancements:
- Build problems that occurred with certain versions of Bison were fixed.
- The need for an X server during the build process was eliminated.
<<lessThe Classic series of HP handheld calculators included the following models:
- HP-35 Scientific (Electronic Slide Rule)
- HP-80 Financial
- HP-45 Advanced Scientific
- HP-65 Card Programmable Scientific
- HP-70 Business
- HP-55 Programmable Scientific
The HP-67 is considered by many people to be part of the Classic series since it is packaged similarly to the HP-65, but electrically it is really a Woodstock series machine.
The classic series chip set was also used in the HP-46 and HP-81, which were desktop printing versions of the HP-45 and HP-80, respectively, and the HP 9805A desktop calculator. The same chip set was also used in the HP 1722A Oscilliscope, the HP 3380A Integrator (for Gas Chromatography), and in several HP Gas Chromatographs.
The Woodstock series of HP handheld calculators included the following models:
- HP-21 Scientific
- HP-22 Financial
- HP-25 Programmable Scientific
- HP-25C Programmable Scientific with continuous memory
- HP-27 Scientific and Financial
- HP-29C Programmable Scientific with continuous memory
The code name "Woodstock" referred both to the Woodstock series of calculators, and to the processor architecture use in them. The same processor architecture was also used in the Topcat, Sting, and Spice series, and the HP-67.
Enhancements:
- Build problems that occurred with certain versions of Bison were fixed.
- The need for an X server during the build process was eliminated.
Download (4.5MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
664 downloads
GDC 0.4.3.3 RC2
GDC is a utility to calculate compressible flow (Gas Dynamics Calculator). more>>
GDC is a utility to calculate compressible flow (Gas Dynamics Calculator). It provides calculations for isentropic nozzle, isothermal nozzle, isothermal, Fanno, Rayleigh flow, etc.
GDC project also provide calculations for shock and oblique shock by direct calculations (no iteration, probably the only one that can do it). The result are in plain text, LaTeX, or a range of values.
Enhancements:
- This release adds the option to calculate the shock location for Fanno Flow when the pipe exceeds the "maximum length.
- The results of the above calculation can also provide the iterations details (good for students to show how their work was carried out).
- This release includes calculation of Mach as the results of piston movement.
- It has some parts of the compressible flow class "whatInfo" variable/problem.
<<lessGDC project also provide calculations for shock and oblique shock by direct calculations (no iteration, probably the only one that can do it). The result are in plain text, LaTeX, or a range of values.
Enhancements:
- This release adds the option to calculate the shock location for Fanno Flow when the pipe exceeds the "maximum length.
- The results of the above calculation can also provide the iterations details (good for students to show how their work was carried out).
- This release includes calculation of Mach as the results of piston movement.
- It has some parts of the compressible flow class "whatInfo" variable/problem.
Download (0.66MB)
Added: 2006-12-07 License: CDDL (Common Development and Distribution License) Price:
1053 downloads
XDrawChem 1.9.9
XDrawChem is a chemical drawing program. more>>
XDrawChem is a two-dimensional molecule drawing program for Unix operating systems. XDrawChem is similar in functionality to other molecule drawing programs such as ChemDraw (TM, CambridgeSoft).
It can read and write MDL Molfiles, and read ChemDraw text and binary files, to allow sharing between XDrawChem and other chemistry applications, and it can create images in popular formats like PNG and EPS. XDrawChem has been tested on Linux, SGI IRIX 6.5, Sun Solaris, Mac OS X, and Windows.
Main features:
- 100% compatible Windows 95/98/NT version
- Fixed length, fixed angle drawing.
- Automatic alignment of figures. Detects structures, text, and arrows and places them automatically.
- Can automatically draw rings and other structures - has all standard amino acids and nucleic acids in built-in library.
- Can retrieve structures from a network database based on CAS number, formula, or name.
- Can draw symbols such as partial charge, radicals, etc.
- Can read MDL Molfiles, CML [Chemical Markup Language, defined in J. Chem. Inf. Comput. Sci.39(1999), 928-942], ChemDraw(TM) binary format, ChemDraw(TM) XML text format.
- Can write MDL Molfiles, CML, ChemDraw(TM) XML text format.
- Can also read and write any format supported by the current release of OpenBabel.
- Can export pictures in PNG, Windows bitmap (*.bmp), Encapsulated PostScript (EPS), and Scalable Vector Graphics (SVG).
- Can generate 3-D structures with the help of the external program BUILD3D.
- Online help, including tool tips.
- 13C-NMR prediction, based on Bremser W, Mag. Res. Chem.23(4):271-275
- 1H-NMR prediction, based on additive rules and functional group lookup methods, described in Pretsch, Clerc, Seibl, Simon, "Tables of Spectral Data for Structure Determination of Organic Compounds", 2ed., 1989, Springer-Verlag
- Simple IR prediction.
- Simple pKa estimation.
- Octanol-water partition coefficient estimation.
- Reaction analysis: gas-phase enthalpy change estimate, 1H NMR and 13C NMR comparison.
- Integration with OpenBabel, allowing XDrawChem to read and write over 20 different chemical file formats.
<<lessIt can read and write MDL Molfiles, and read ChemDraw text and binary files, to allow sharing between XDrawChem and other chemistry applications, and it can create images in popular formats like PNG and EPS. XDrawChem has been tested on Linux, SGI IRIX 6.5, Sun Solaris, Mac OS X, and Windows.
Main features:
- 100% compatible Windows 95/98/NT version
- Fixed length, fixed angle drawing.
- Automatic alignment of figures. Detects structures, text, and arrows and places them automatically.
- Can automatically draw rings and other structures - has all standard amino acids and nucleic acids in built-in library.
- Can retrieve structures from a network database based on CAS number, formula, or name.
- Can draw symbols such as partial charge, radicals, etc.
- Can read MDL Molfiles, CML [Chemical Markup Language, defined in J. Chem. Inf. Comput. Sci.39(1999), 928-942], ChemDraw(TM) binary format, ChemDraw(TM) XML text format.
- Can write MDL Molfiles, CML, ChemDraw(TM) XML text format.
- Can also read and write any format supported by the current release of OpenBabel.
- Can export pictures in PNG, Windows bitmap (*.bmp), Encapsulated PostScript (EPS), and Scalable Vector Graphics (SVG).
- Can generate 3-D structures with the help of the external program BUILD3D.
- Online help, including tool tips.
- 13C-NMR prediction, based on Bremser W, Mag. Res. Chem.23(4):271-275
- 1H-NMR prediction, based on additive rules and functional group lookup methods, described in Pretsch, Clerc, Seibl, Simon, "Tables of Spectral Data for Structure Determination of Organic Compounds", 2ed., 1989, Springer-Verlag
- Simple IR prediction.
- Simple pKa estimation.
- Octanol-water partition coefficient estimation.
- Reaction analysis: gas-phase enthalpy change estimate, 1H NMR and 13C NMR comparison.
- Integration with OpenBabel, allowing XDrawChem to read and write over 20 different chemical file formats.
Download (0.85MB)
Added: 2005-12-01 License: GPL (GNU General Public License) Price:
1436 downloads
NASM - The Netwide Assembler 0.99.00
NASM - The Netwide Assembler is 80x86 assembler designed for portability and modularity. more>>
NASM is an 80x86 assembler designed for portability and modularity. The project supports a range of object file formats including Linux a.out and ELF, COFF, Microsoft 16-bit OBJ and Win32. It will also output plain binary files.
Its syntax is designed to be simple and easy to understand, similar to Intels but less complex. It supports Pentium, P6, MMX, 3DNow! and SSE opcodes, and has macro capability. It includes a disassembler as well.
The Netwide Assembler grew out of an idea on comp.lang.asm.x86 (or possibly alt.lang.asm - I forget which), which was essentially that there didnt seem to be a good free x86-series assembler around, and that maybe someone ought to write one.
- a86 is good, but not free, and in particular you dont get any 32-bit capability until you pay. Its DOS only, too.
- gas is free, and ports over DOS and Unix, but its not very good, since its designed to be a back end to gcc, which always feeds it correct code. So its error checking is minimal. Also, its syntax is horrible, from the point of view of anyone trying to actually write anything in it. Plus you cant write 16-bit code in it (properly).
- as86 is Minix- and Linux-specific, and (my version at least) doesnt seem to have much (or any) documentation.
- MASM isnt very good, and its (was) expensive, and it runs only under DOS.
- TASM is better, but still strives for MASM compatibility, which means millions of directives and tons of red tape. And its syntax is essentially MASMs, with the contradictions and quirks that entails (although it sorts out some of those by means of Ideal mode). Its expensive too. And its DOS-only.
So here, for your coding pleasure, is NASM. At present its still in prototype stage - we dont promise that it can outperform any of these assemblers. But please, please send us bug reports, fixes, helpful information, and anything else you can get your hands on (and thanks to the many people whove done this already! You all know who you are), and well improve it out of all recognition. Again.
Installing NASM under Unix
Once youve obtained the Unix source archive for NASM, nasm-X.XX.tar.gz (where X.XX denotes the version number of NASM contained in the archive), unpack it into a directory such as /usr/local/src. The archive, when unpacked, will create its own subdirectory nasm-X.XX.
NASM is an auto-configuring package: once youve unpacked it, cd to the directory its been unpacked into and type ./configure. This shell script will find the best C compiler to use for building NASM and set up Makefiles accordingly.
Once NASM has auto-configured, you can type make to build the nasm and ndisasm binaries, and then make install to install them in /usr/local/bin and install the man pages nasm.1 and ndisasm.1 in /usr/local/man/man1. Alternatively, you can give options such as --prefix to the configure script (see the file INSTALL for more details), or install the programs yourself.
NASM also comes with a set of utilities for handling the RDOFF custom object-file format, which are in the rdoff subdirectory of the NASM archive. You can build these with make rdf and install them with make rdf_install, if you want them.
If NASM fails to auto-configure, you may still be able to make it compile by using the fall-back Unix makefile Makefile.unx. Copy or rename that file to Makefile and try typing make. There is also a Makefile.unx file in the rdoff subdirectory.
Enhancements:
- adds 64-bit support "-f macho" output format "265th extern" bug in "-f obj" fixed(?)
<<lessIts syntax is designed to be simple and easy to understand, similar to Intels but less complex. It supports Pentium, P6, MMX, 3DNow! and SSE opcodes, and has macro capability. It includes a disassembler as well.
The Netwide Assembler grew out of an idea on comp.lang.asm.x86 (or possibly alt.lang.asm - I forget which), which was essentially that there didnt seem to be a good free x86-series assembler around, and that maybe someone ought to write one.
- a86 is good, but not free, and in particular you dont get any 32-bit capability until you pay. Its DOS only, too.
- gas is free, and ports over DOS and Unix, but its not very good, since its designed to be a back end to gcc, which always feeds it correct code. So its error checking is minimal. Also, its syntax is horrible, from the point of view of anyone trying to actually write anything in it. Plus you cant write 16-bit code in it (properly).
- as86 is Minix- and Linux-specific, and (my version at least) doesnt seem to have much (or any) documentation.
- MASM isnt very good, and its (was) expensive, and it runs only under DOS.
- TASM is better, but still strives for MASM compatibility, which means millions of directives and tons of red tape. And its syntax is essentially MASMs, with the contradictions and quirks that entails (although it sorts out some of those by means of Ideal mode). Its expensive too. And its DOS-only.
So here, for your coding pleasure, is NASM. At present its still in prototype stage - we dont promise that it can outperform any of these assemblers. But please, please send us bug reports, fixes, helpful information, and anything else you can get your hands on (and thanks to the many people whove done this already! You all know who you are), and well improve it out of all recognition. Again.
Installing NASM under Unix
Once youve obtained the Unix source archive for NASM, nasm-X.XX.tar.gz (where X.XX denotes the version number of NASM contained in the archive), unpack it into a directory such as /usr/local/src. The archive, when unpacked, will create its own subdirectory nasm-X.XX.
NASM is an auto-configuring package: once youve unpacked it, cd to the directory its been unpacked into and type ./configure. This shell script will find the best C compiler to use for building NASM and set up Makefiles accordingly.
Once NASM has auto-configured, you can type make to build the nasm and ndisasm binaries, and then make install to install them in /usr/local/bin and install the man pages nasm.1 and ndisasm.1 in /usr/local/man/man1. Alternatively, you can give options such as --prefix to the configure script (see the file INSTALL for more details), or install the programs yourself.
NASM also comes with a set of utilities for handling the RDOFF custom object-file format, which are in the rdoff subdirectory of the NASM archive. You can build these with make rdf and install them with make rdf_install, if you want them.
If NASM fails to auto-configure, you may still be able to make it compile by using the fall-back Unix makefile Makefile.unx. Copy or rename that file to Makefile and try typing make. There is also a Makefile.unx file in the rdoff subdirectory.
Enhancements:
- adds 64-bit support "-f macho" output format "265th extern" bug in "-f obj" fixed(?)
Download (MB)
Added: 2007-05-24 License: GMGPL (GNAT Modified GPL) Price:
921 downloads
DropTeam 1.2.2 DEMO
DropTeam is an online multiplayer FPS for Linux. more>>
DropTeam is an online multiplayer FPS for Linux.
DropTeam combines accurate physics and ballistic systems, intelligent and realistic unit and weaponry capabilities with fast paced action set in a stark future of humanity. This Public Test is being offered in three different formats. One for Mac, one for Windows and one for Linux. This marks the first title published by Battlefront.com to offer Linux support!
Main features:
- A rich, fleshed out universe complete with a engaging back story and detailed history.
- Realistic combat system that models projectile/armor penetration, various munition types, and interior vehicle damage in detail.
- Huge, detailed and varied alien landscapes each planet accurately modeling its own gravity and atmospheric density, radically changing the tactical situation.
- Map sizes up to a massive 1000 (!) square kilometers.
- Terrain height resolutions from small ridges and vehicle fighting positions to towering hills and mountains.
- Deformable terrain with engineering vehicles digging out trenches in real time, ordnance created surface cratering and even trees toppling over under artillery fire.
- Dynamic environmental effects include building destruction and vehicles exploding and flipping over.
- Support for enhanced graphics effects including advanced shaders and High Dynamic Range rendering.
- Terrain uses dynamic tessellation (continuous Level of Detail) to render high resolution terrain at large sizes.
- Up to 16 human players or more supported, depending on system specs. Maximum online players realistically only limited by game server bandwidth, CPU and RAM.
More background and info on the game can be found on the DropTeam webpage located here.
The purpose of this release is to test DropTeams network functionality with a large number of players. Anyone can play for free in order to help us test DropTeam but this build has the following important restrictions:
1. Single player is disabled. You can only play network games with this release. The full version of the game includes single player skirmish games and a single player campaign.
2. This release only allows you to play 2 scenarios. The full version of the game includes 21 scenarios with more available for free download after release.
3. This is a test release, which means the game isnt finished yet. It definitely still has bugs. We greatly appreciate your help in finding and fixing them all!
Apart from these restrictions, this is a fully functional release. Players can use all of the dozens of vehicles and deployable items in the game. The two included scenarios are "Ice Field" and "Raid". Ice Field takes place on the frozen wasteland of Arcanum, a once-inhabitable planet orbiting Luytens Star that has had its climate devastated by bombardments from the Mu Arae Entente. The Raid scenario takes place on an inhabitable moon called Hopewell. Hopewell orbits a gas giant in the Wolf 9773 star system. Almost half of the moons surface, called "The Scorch", is a radioactive Hell created by the destruction of an antimatter station that used to orbit the gas giant. The remainder of Hopewell has recovered from this disaster and is once again beginning to flourish with vegetation and a growing human population.
This release includes everything needed to connect to servers and play on the Internet or on Local Area Networks on Windows, Linux, and Mac OS X Tiger. It also includes everything needed for players to run their own public or private servers. This is important since there will be a limited number of public servers made available by TBG. We plan to run only 6 servers for this public test release so players might need to run their own servers if they want to play frequently.
<<lessDropTeam combines accurate physics and ballistic systems, intelligent and realistic unit and weaponry capabilities with fast paced action set in a stark future of humanity. This Public Test is being offered in three different formats. One for Mac, one for Windows and one for Linux. This marks the first title published by Battlefront.com to offer Linux support!
Main features:
- A rich, fleshed out universe complete with a engaging back story and detailed history.
- Realistic combat system that models projectile/armor penetration, various munition types, and interior vehicle damage in detail.
- Huge, detailed and varied alien landscapes each planet accurately modeling its own gravity and atmospheric density, radically changing the tactical situation.
- Map sizes up to a massive 1000 (!) square kilometers.
- Terrain height resolutions from small ridges and vehicle fighting positions to towering hills and mountains.
- Deformable terrain with engineering vehicles digging out trenches in real time, ordnance created surface cratering and even trees toppling over under artillery fire.
- Dynamic environmental effects include building destruction and vehicles exploding and flipping over.
- Support for enhanced graphics effects including advanced shaders and High Dynamic Range rendering.
- Terrain uses dynamic tessellation (continuous Level of Detail) to render high resolution terrain at large sizes.
- Up to 16 human players or more supported, depending on system specs. Maximum online players realistically only limited by game server bandwidth, CPU and RAM.
More background and info on the game can be found on the DropTeam webpage located here.
The purpose of this release is to test DropTeams network functionality with a large number of players. Anyone can play for free in order to help us test DropTeam but this build has the following important restrictions:
1. Single player is disabled. You can only play network games with this release. The full version of the game includes single player skirmish games and a single player campaign.
2. This release only allows you to play 2 scenarios. The full version of the game includes 21 scenarios with more available for free download after release.
3. This is a test release, which means the game isnt finished yet. It definitely still has bugs. We greatly appreciate your help in finding and fixing them all!
Apart from these restrictions, this is a fully functional release. Players can use all of the dozens of vehicles and deployable items in the game. The two included scenarios are "Ice Field" and "Raid". Ice Field takes place on the frozen wasteland of Arcanum, a once-inhabitable planet orbiting Luytens Star that has had its climate devastated by bombardments from the Mu Arae Entente. The Raid scenario takes place on an inhabitable moon called Hopewell. Hopewell orbits a gas giant in the Wolf 9773 star system. Almost half of the moons surface, called "The Scorch", is a radioactive Hell created by the destruction of an antimatter station that used to orbit the gas giant. The remainder of Hopewell has recovered from this disaster and is once again beginning to flourish with vegetation and a growing human population.
This release includes everything needed to connect to servers and play on the Internet or on Local Area Networks on Windows, Linux, and Mac OS X Tiger. It also includes everything needed for players to run their own public or private servers. This is important since there will be a limited number of public servers made available by TBG. We plan to run only 6 servers for this public test release so players might need to run their own servers if they want to play frequently.
Download (MB)
Added: 2007-03-05 License: Freeware Price:
965 downloads
Choose a free eCourse 1
Education Wallpaper. Education Wallpaper. Education Wallpaper. Auto Expenses – first off, there isn’t the extra expense of gas and we are all aware (a... more>> <<less
Download (41KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
Damn Vulnerable Linux 1.0
Damn Vulnerable Linux (DVL) is a Linux-based (modified Damn Small Linux) tool for IT-Security & IT-Anti-Security. more>>
Damn Vulnerable Linux (DVL) is a Linux-based (modified Damn Small Linux) tool for IT-Security & IT-Anti-Security and Attack & Defense. Damn Vulnerable Linux was initiated for training tasks during university lessons by the IITAC (International Institute for Training, Assessment, and Certification).
Damn Vulnerable Linux (DVL) is highly integrated into the community project crackmes.de (http://www.crackmes.de) and is frequently updated with new community provided lessons. Damn Vulnerable Linux (DVL) is your place either to get the latest Damn Vulnerable Linux (DVL) distribution, to get new lessons, or to submit own lessons based on the Damn Vulnerable Linux (DVL) training system.
Damn Vulnerable Linux (DVL) is provided without any fee or charge! Actually, it is a perverted Linux distribution made to be as insecure as possible. It is collection of IT-Security and IT-Anti-Security tools. Additional it includes a fullscaled lesson based environment for Attack & Defense on/for IT systems for self-study or teaching activities during university lectures. Its a Live Linux Distro, which means it runs from a bootable CD in memory without changing the native operating system of the host computer.
As well it can be run within virtual machine environments, such as qemu or vmware. There is no need to install a virtual machine if you use the embedded option. Its sole purpose in life is to put as many security tools at your disposal with as much training options as it can. It contains a huge ammount of lessons including lesson description - and solutions if the level has been solved by a community member at crackmes.de.
Damn Vulnerable Linux (DVL) is meant to be used by both novice and professional security personnel but is not ideal for the Linux uninitiated. Damn Vulnerable Linux (DVL) assumes you know the basics of Linux as most of your work will be done from the command line. If you are completely new to Linux, its best you stop playing with this system.
INSTALLED TOOLS
- HT 0.5
- libreadline4_4.2a-5_i386
- gdb_5.2.cvs20020401-6_i386
- binutils_2.12.90.0.1-4_i386 (including objdumps,gas,strings ...)
- nasm-0.98-1.i386
- HLA v1.86
- libelfsh0-dev_0.65rc1-1_i386
- elfsh_0.65rc1-1_i386
- Apache 2.0.5.4
- Php 4.4.0
- ethereal-common_0.9.4-1woody12_i386
- ethereal_0.9.4-1woody12_i386
- libpcap0_0.6.2-2_i386
- tcpdump_3.6.2-2.8_i386
- lsof_4.57-1_i386
- ltrace_0.3.26_i386
- nmap_2.54.31.BETA-1_i386
- strace_4.4-1.2_i386
- ELFkickers-2.0a (including sstrip, rebind, elfls, ebfc, elftoc)
- GCC/G++ 3.3.4
- GNU Make 3.80
- bastard_bin- 0.17.tgz
- Mysql-server 4.4.1
- Ruby 1.8
- Python 2.3
- lida-03.00.00
- DDD 3.3.1
- Metasploit Framework
<<lessDamn Vulnerable Linux (DVL) is highly integrated into the community project crackmes.de (http://www.crackmes.de) and is frequently updated with new community provided lessons. Damn Vulnerable Linux (DVL) is your place either to get the latest Damn Vulnerable Linux (DVL) distribution, to get new lessons, or to submit own lessons based on the Damn Vulnerable Linux (DVL) training system.
Damn Vulnerable Linux (DVL) is provided without any fee or charge! Actually, it is a perverted Linux distribution made to be as insecure as possible. It is collection of IT-Security and IT-Anti-Security tools. Additional it includes a fullscaled lesson based environment for Attack & Defense on/for IT systems for self-study or teaching activities during university lectures. Its a Live Linux Distro, which means it runs from a bootable CD in memory without changing the native operating system of the host computer.
As well it can be run within virtual machine environments, such as qemu or vmware. There is no need to install a virtual machine if you use the embedded option. Its sole purpose in life is to put as many security tools at your disposal with as much training options as it can. It contains a huge ammount of lessons including lesson description - and solutions if the level has been solved by a community member at crackmes.de.
Damn Vulnerable Linux (DVL) is meant to be used by both novice and professional security personnel but is not ideal for the Linux uninitiated. Damn Vulnerable Linux (DVL) assumes you know the basics of Linux as most of your work will be done from the command line. If you are completely new to Linux, its best you stop playing with this system.
INSTALLED TOOLS
- HT 0.5
- libreadline4_4.2a-5_i386
- gdb_5.2.cvs20020401-6_i386
- binutils_2.12.90.0.1-4_i386 (including objdumps,gas,strings ...)
- nasm-0.98-1.i386
- HLA v1.86
- libelfsh0-dev_0.65rc1-1_i386
- elfsh_0.65rc1-1_i386
- Apache 2.0.5.4
- Php 4.4.0
- ethereal-common_0.9.4-1woody12_i386
- ethereal_0.9.4-1woody12_i386
- libpcap0_0.6.2-2_i386
- tcpdump_3.6.2-2.8_i386
- lsof_4.57-1_i386
- ltrace_0.3.26_i386
- nmap_2.54.31.BETA-1_i386
- strace_4.4-1.2_i386
- ELFkickers-2.0a (including sstrip, rebind, elfls, ebfc, elftoc)
- GCC/G++ 3.3.4
- GNU Make 3.80
- bastard_bin- 0.17.tgz
- Mysql-server 4.4.1
- Ruby 1.8
- Python 2.3
- lida-03.00.00
- DDD 3.3.1
- Metasploit Framework
Download (142.6MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1026 downloads
Super Methane Brothers 1.4.8
Super Methane Brothers is an arcade game for Linux. more>>
Super Methane Brothers is an arcade game where you have to: Trap baddies in a gas cloud. Suck into your gas gun. Throw against a wall to destroy them.
Game Controls:
Press Fire to start. Use "Player One" Fire for single player mode. Use "Player Two" Fire for two player mode.
You will then be prompted to input the player names. Use the keyboard to type in the name with a maximum of four characters. Press Return when you have finished.
The game will start.
Use the keyboard to move the player (See below for keys). Hold down the Jump higher. Use in combination with the Left and Right keys for directional jumping
Tap Fire to fire gas from the gun.
When a baddie is within a certain range from the players gun, hold Fire to suck a trapped baddie into the gun.
Release Fire to throw the trapped baddie from the gun.
Keyboard - Player One:
Cursor key Left / Right to move left and right
Cursor key Up to jump.
Cursor key Down to move down (Only used with the wings "Power Up")
Control key (CTRL) - Fire.
Keyboard - Player Two:
A key to move left
D key to move right
W key to jump.
S key to move down (Only used with the wings "Power Up")
Shift key - Fire.
Enhancements:
- Made compatible with ClanLib V0.8.0
<<lessGame Controls:
Press Fire to start. Use "Player One" Fire for single player mode. Use "Player Two" Fire for two player mode.
You will then be prompted to input the player names. Use the keyboard to type in the name with a maximum of four characters. Press Return when you have finished.
The game will start.
Use the keyboard to move the player (See below for keys). Hold down the Jump higher. Use in combination with the Left and Right keys for directional jumping
Tap Fire to fire gas from the gun.
When a baddie is within a certain range from the players gun, hold Fire to suck a trapped baddie into the gun.
Release Fire to throw the trapped baddie from the gun.
Keyboard - Player One:
Cursor key Left / Right to move left and right
Cursor key Up to jump.
Cursor key Down to move down (Only used with the wings "Power Up")
Control key (CTRL) - Fire.
Keyboard - Player Two:
A key to move left
D key to move right
W key to jump.
S key to move down (Only used with the wings "Power Up")
Shift key - Fire.
Enhancements:
- Made compatible with ClanLib V0.8.0
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
549 downloads
ChkDB 0.9.9
ChkDB provides a rule-based data checking for Oracle. more>>
ChkDB provides a rule-based data checking for Oracle.
ChkDB is rule-based data checking software for Oracle, plus files that define rule-sets and data domains (tables/views to be checked).
The software is a PL/SQL package and some SQL scripts. There is currently no GUI front-end.
For oil and gas data, there are domains and rulesets for well-header, drill-stem-test, and seismic-inventory data.
Enhancements:
- This release fixes a bug that caused errors when using early versions of Oracle 8 (or earlier).
- The database column CHKDB_RULE.COLUMN_TYPE_CNDO was renamed from COLUMN_TYPE_CND.
- Specifying the datatype of a column in a rule is now optional if the user owns the table being checked.
<<lessChkDB is rule-based data checking software for Oracle, plus files that define rule-sets and data domains (tables/views to be checked).
The software is a PL/SQL package and some SQL scripts. There is currently no GUI front-end.
For oil and gas data, there are domains and rulesets for well-header, drill-stem-test, and seismic-inventory data.
Enhancements:
- This release fixes a bug that caused errors when using early versions of Oracle 8 (or earlier).
- The database column CHKDB_RULE.COLUMN_TYPE_CNDO was renamed from COLUMN_TYPE_CND.
- Specifying the datatype of a column in a rule is now optional if the user owns the table being checked.
Download (0.043MB)
Added: 2007-01-23 License: MIT/X Consortium License Price:
1004 downloads
xmbmon 2.05
xmbmon is a monitoring program for motherboards. more>>
xmbmon is a monitoring program for motherboards.
Recent motherboards have functionalities to monitor the CPU temperatures and the frequency of CPU cooling fans etc.
Although some programs utilizing these hardware monitoring facilities have been developed for the Microsoft Windows platforms, no programs seem to exist for PC-UNIX and the X Windows System platforms.
Thus, I have tried to make small programs. They have only least functionalities, the one "mbmon" used at the command line reports the temperatures, voltages and rpm (rounds per minute) of cooling fans, and the other "xmbmon" displays the three temperatures and a core voltage as simple curves.
The following hardware monitor chips are supported and the programs will work if your motherboard uses one of them or their compatible chip:
1. National Semiconductor co.
LM78/LM79, LM75, LM90, LM80, LM85
2. WinBond co.
W83781D, W83782D, W83783S, W83627HF, W83697HF built-in, W83L784R, W83L785R, W83L785TS-S, W83627THF
3. ASUSTek co.
AS99127F, ASB100 (Bach), ASM58 etc. (Mozart-2)
4. VIA Technology co.
VT82C686A/B built-in
5. Integrated Technology Express co.
IT8705F, IT8712F built-in
6. Genesys Logic
GL518SM, GL520SM
7. Analog Devices
ADM1024/1025/1027, ADT7463, ADM1020/1021/1023
8. Standard Microsystem co.
EMC6D100/101/102
Enhancements:
- Bugs for detecting ALi chipset fixed.
- Further smoothing for plotting curves in xmbmon.
- SMBus accesses of VIA VT8237 and Intel ICH6 are supported.
- Problem related to select() system call fixed.
- The part of IO port read/write is unified into an gas in-line assembler code (so, gcc with x86-gas is assumed!).
- Changes to work on Solaris for x86 platform and others for cleaning up the codes.
<<lessRecent motherboards have functionalities to monitor the CPU temperatures and the frequency of CPU cooling fans etc.
Although some programs utilizing these hardware monitoring facilities have been developed for the Microsoft Windows platforms, no programs seem to exist for PC-UNIX and the X Windows System platforms.
Thus, I have tried to make small programs. They have only least functionalities, the one "mbmon" used at the command line reports the temperatures, voltages and rpm (rounds per minute) of cooling fans, and the other "xmbmon" displays the three temperatures and a core voltage as simple curves.
The following hardware monitor chips are supported and the programs will work if your motherboard uses one of them or their compatible chip:
1. National Semiconductor co.
LM78/LM79, LM75, LM90, LM80, LM85
2. WinBond co.
W83781D, W83782D, W83783S, W83627HF, W83697HF built-in, W83L784R, W83L785R, W83L785TS-S, W83627THF
3. ASUSTek co.
AS99127F, ASB100 (Bach), ASM58 etc. (Mozart-2)
4. VIA Technology co.
VT82C686A/B built-in
5. Integrated Technology Express co.
IT8705F, IT8712F built-in
6. Genesys Logic
GL518SM, GL520SM
7. Analog Devices
ADM1024/1025/1027, ADT7463, ADM1020/1021/1023
8. Standard Microsystem co.
EMC6D100/101/102
Enhancements:
- Bugs for detecting ALi chipset fixed.
- Further smoothing for plotting curves in xmbmon.
- SMBus accesses of VIA VT8237 and Intel ICH6 are supported.
- Problem related to select() system call fixed.
- The part of IO port read/write is unified into an gas in-line assembler code (so, gcc with x86-gas is assumed!).
- Changes to work on Solaris for x86 platform and others for cleaning up the codes.
Download (0.14MB)
Added: 2005-10-07 License: GPL (GNU General Public License) Price:
1488 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above gas 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