pro 1.04
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 73
MD-Pro 1.0.74
MD-Pro is the most complete, flexible and reliable CMS available on the market. more>>
MaxDev is proud to introduce MD-Pro, the most complete, flexible and reliable CMS available on the market.
A CMS is an application that provides for the display and management of the contents of a web site. MD-Pro carries this many steps farther by making this management simple yet powerful. Your MD-Pro powered web site can be updated in seconds without any knowledge of programming or HTML. MD-Pro can be configured to allow your site users to send news, comment on existing news, vote in polls, administer their own account via a simple graphical interface and much more.
Normally you must pay for technology this simple and powerful. CMSs available today, cost from several thousand dollars to several hundred thousand dollars. Thanks to the work of many Open Source development communities however, today there are a variety of no cost CMSs published under GNU/GPL.
Open Source systems have gained popularity and matured to the point where they are used by many large companies and organizations around the world.
Main features:
Some of the entities taking advantage of Open Source systems are:
- IBM
- Oracle
- Google
- Amazon.com
- Dreamworks
- Kenwood
- Incyte Geonomica
- Ameritrade
- Pixar Animation
- Credit Suisse
- New York Stock Exchange
- PWL Euro-Subsidies (The Hague)
- United States Army
- NASA
- European Commission
- Mexico City
- China
- And many more...
MD-Pro provides an Open Source CMS "certified" and guaranteed by a highly qualified staff of developers. MD-Pro has been developed to be more versatile and modular than competing CMSs.. It is comprised of a highly optimized core platform, to which you can add additional modules according to the needs of your site and users. Not only are there a variety of third party modules available, you are free to develop or contract the development of customized modules and features to fit your needs.
These are just some of the modules currently available:
e-Commerce
- osCommerce (electronic shopping system)
- pnSubscriptions (site subscriptions, donations, PayPal payments, etc.)
- Stock_Quotes (for stock exchange)
Collaboration and productivity
- Project management
- Task organizers
- Calendars
Virtual community and multi-media
- Image galleries
- Discussion forums
- Chat
Webmaster tools
- Advanced menu system
- Advanced statistics
- Server tools
Other
- Polls
- Forms management
- Newsletter
- Distance learning
<<lessA CMS is an application that provides for the display and management of the contents of a web site. MD-Pro carries this many steps farther by making this management simple yet powerful. Your MD-Pro powered web site can be updated in seconds without any knowledge of programming or HTML. MD-Pro can be configured to allow your site users to send news, comment on existing news, vote in polls, administer their own account via a simple graphical interface and much more.
Normally you must pay for technology this simple and powerful. CMSs available today, cost from several thousand dollars to several hundred thousand dollars. Thanks to the work of many Open Source development communities however, today there are a variety of no cost CMSs published under GNU/GPL.
Open Source systems have gained popularity and matured to the point where they are used by many large companies and organizations around the world.
Main features:
Some of the entities taking advantage of Open Source systems are:
- IBM
- Oracle
- Amazon.com
- Dreamworks
- Kenwood
- Incyte Geonomica
- Ameritrade
- Pixar Animation
- Credit Suisse
- New York Stock Exchange
- PWL Euro-Subsidies (The Hague)
- United States Army
- NASA
- European Commission
- Mexico City
- China
- And many more...
MD-Pro provides an Open Source CMS "certified" and guaranteed by a highly qualified staff of developers. MD-Pro has been developed to be more versatile and modular than competing CMSs.. It is comprised of a highly optimized core platform, to which you can add additional modules according to the needs of your site and users. Not only are there a variety of third party modules available, you are free to develop or contract the development of customized modules and features to fit your needs.
These are just some of the modules currently available:
e-Commerce
- osCommerce (electronic shopping system)
- pnSubscriptions (site subscriptions, donations, PayPal payments, etc.)
- Stock_Quotes (for stock exchange)
Collaboration and productivity
- Project management
- Task organizers
- Calendars
Virtual community and multi-media
- Image galleries
- Discussion forums
- Chat
Webmaster tools
- Advanced menu system
- Advanced statistics
- Server tools
Other
- Polls
- Forms management
- Newsletter
- Distance learning
Download (3.4MB)
Added: 2005-09-20 License: Freeware Price:
1496 downloads
Yasper 1.04
Yasper (Yet Another Smart Pointer) is a sweet and simple single-header smart pointer for C++. more>>
Yasper (Yet Another Smart Pointer) is a sweet and simple single-header smart pointer for C++.
Why write another C++ smart pointer?
There are two high quality libraries that include smart pointers: Loki and Boost. Alexandrescus Loki SmartPtr is customizable to a fault. I find policy templates unspeakably ugly and dont need the extra options. Boosts shared_ptr is quite nice, but is too restrictive and introduces undesirable dependency on the massive Boost library. What I need is a small, simple smart pointer: yasper.
Philosophy
small (contained in single header)
simple (nothing fancy in the code, easy to understand)
maximum compatibility (drop in replacement for dumb pointers)
The last point can be dangerous, since yasper permits risky (yet useful) actions (such as assignment to raw pointers and manual release) disallowed by other implementations. Be careful, only use those features if you know what youre doing!
<<lessWhy write another C++ smart pointer?
There are two high quality libraries that include smart pointers: Loki and Boost. Alexandrescus Loki SmartPtr is customizable to a fault. I find policy templates unspeakably ugly and dont need the extra options. Boosts shared_ptr is quite nice, but is too restrictive and introduces undesirable dependency on the massive Boost library. What I need is a small, simple smart pointer: yasper.
Philosophy
small (contained in single header)
simple (nothing fancy in the code, easy to understand)
maximum compatibility (drop in replacement for dumb pointers)
The last point can be dangerous, since yasper permits risky (yet useful) actions (such as assignment to raw pointers and manual release) disallowed by other implementations. Be careful, only use those features if you know what youre doing!
Download (0.002MB)
Added: 2007-05-25 License: zlib/libpng License Price:
885 downloads
Religion 1.04
Religion is a Perl module that can generate tracebacks and create and install die() and warn() handlers. more>>
Religion is a Perl module that can generate tracebacks and create and install die() and warn() handlers.
This is a second go at a module to simplify installing die() and warn() handlers, and to make such handlers easier to write and control.
For most people, this just means that if use use Religion; then youll get noticably better error reporting from warn() and die(). This is especially useful if you are using eval().
Religion provides four classes, WarnHandler, DieHandler, WarnPreHandler, and DiePreHandler, that when you construct them return closures that can be stored in variables that in turn get invoked by $SIG{__DIE__} and $SIG{__WARN__}. Note that if Religion is in use, you should not modify $SIG{__DIE__} or $SIG{__WARN__}, unless you are careful about invoking chaining to the old handler.
Religion also provides a TraceBack function, which is used by a DieHandler after you die() to give a better handle on the current scope of your situation, and provide information about where you were, which might influence where you want to go next, either returning back to where you were, or going on to the very last. [Sorry - Ed.]
See below for usage and examples.
USAGE
DieHandler SUB
Invoke like this:
$Die::Handler = new DieHandler sub {
#...
};
where #... contains your handler code. Your handler will receive the following arguments:
$message, $full_message, $level, $eval,
$iline, $ifile, $oline, $ofile, $oscope
$message is the message provided to die(). Note that the default addition of " at FILE line LINE.n" will have been stripped off if it was present. If you want to add such a message back on, feel free to do so with $iline and $ifile.
$full_message) is the message with a scope message added on if there was no newline at the end of $message. Currently, this is not the original message that die() tacked on, but something along the lines of " at line 3 of the eval at line 4 of Foo.pln".
$eval is non-zero if the die() was invoked inside an eval.
The rest of the arguments are explained in the source for Religion::TraceBack. Yes, I need to document these, but not just now, for they are a pain to explain.
Whenever you install a DieHandler, it will automatically store the current value of $Die::Handler so it can chain to it. If you want to install a handler only temporarily, use local().
If your handler returns data using return or by falling off the end, then the items returns will be used to fill back in the argument list, and the next handler in the chain, if any, will be invoked. Dont fall off the end if you dont want to change the error message.
If your handler exits using last, then no further handlers will be invoked, and the program will die immediatly.
If your handler exits using next, then the next handler in the chain will be invoked directly, without giving you a chance to change its arguments as you could if you used return.
If your handler invokes die(), then die() will proceed as if no handlers were installed. If you are inside an eval, then it will exit to the scope enclosing the eval, otherwise it will exit the program.
WarnHandler SUB
Invoke like this:
$Warn::Handler = new WarnHandler sub {
#...
};
For the rest of its explanation, see DieHandler, and subsitute warn() for die(). Note that once the last DieHandler completes (or last is invoked) then execution will return to the code that invoked warn().
DiePreHandler SUB
Invoke like this:
$Die::PreHandler = new DiePreHandler sub {
#...
};
This works identically to $Die::Handler, except that it forms a separate chain that is invoked before the DieHandler chain. Since you can use last to abort all the handlers and die immediately, or change the messages or scope details, this can be useful for modifying data that all future handlers will see, or to dispose of some messages from further handling.
This is even more useful in $Warn::PreHandler, since you can just throw away warnings that you know arent needed.
WarnPreHandler SUB
Invoke like this:
$Warn::PreHandler = new WarnPreHandler sub {
#...
};
This works identically to $Warn::Handler, except that it forms a separate chain that is invoked before the WarnHandler chain. Since you can use last to abort all the handlers and return to the program, or change the messages or scope details, this can be useful for modifying data that all future handlers will see, or to dispose of some messages.
This is very useful, since you can just throw away warnings that you know arent needed.
<<lessThis is a second go at a module to simplify installing die() and warn() handlers, and to make such handlers easier to write and control.
For most people, this just means that if use use Religion; then youll get noticably better error reporting from warn() and die(). This is especially useful if you are using eval().
Religion provides four classes, WarnHandler, DieHandler, WarnPreHandler, and DiePreHandler, that when you construct them return closures that can be stored in variables that in turn get invoked by $SIG{__DIE__} and $SIG{__WARN__}. Note that if Religion is in use, you should not modify $SIG{__DIE__} or $SIG{__WARN__}, unless you are careful about invoking chaining to the old handler.
Religion also provides a TraceBack function, which is used by a DieHandler after you die() to give a better handle on the current scope of your situation, and provide information about where you were, which might influence where you want to go next, either returning back to where you were, or going on to the very last. [Sorry - Ed.]
See below for usage and examples.
USAGE
DieHandler SUB
Invoke like this:
$Die::Handler = new DieHandler sub {
#...
};
where #... contains your handler code. Your handler will receive the following arguments:
$message, $full_message, $level, $eval,
$iline, $ifile, $oline, $ofile, $oscope
$message is the message provided to die(). Note that the default addition of " at FILE line LINE.n" will have been stripped off if it was present. If you want to add such a message back on, feel free to do so with $iline and $ifile.
$full_message) is the message with a scope message added on if there was no newline at the end of $message. Currently, this is not the original message that die() tacked on, but something along the lines of " at line 3 of the eval at line 4 of Foo.pln".
$eval is non-zero if the die() was invoked inside an eval.
The rest of the arguments are explained in the source for Religion::TraceBack. Yes, I need to document these, but not just now, for they are a pain to explain.
Whenever you install a DieHandler, it will automatically store the current value of $Die::Handler so it can chain to it. If you want to install a handler only temporarily, use local().
If your handler returns data using return or by falling off the end, then the items returns will be used to fill back in the argument list, and the next handler in the chain, if any, will be invoked. Dont fall off the end if you dont want to change the error message.
If your handler exits using last, then no further handlers will be invoked, and the program will die immediatly.
If your handler exits using next, then the next handler in the chain will be invoked directly, without giving you a chance to change its arguments as you could if you used return.
If your handler invokes die(), then die() will proceed as if no handlers were installed. If you are inside an eval, then it will exit to the scope enclosing the eval, otherwise it will exit the program.
WarnHandler SUB
Invoke like this:
$Warn::Handler = new WarnHandler sub {
#...
};
For the rest of its explanation, see DieHandler, and subsitute warn() for die(). Note that once the last DieHandler completes (or last is invoked) then execution will return to the code that invoked warn().
DiePreHandler SUB
Invoke like this:
$Die::PreHandler = new DiePreHandler sub {
#...
};
This works identically to $Die::Handler, except that it forms a separate chain that is invoked before the DieHandler chain. Since you can use last to abort all the handlers and die immediately, or change the messages or scope details, this can be useful for modifying data that all future handlers will see, or to dispose of some messages from further handling.
This is even more useful in $Warn::PreHandler, since you can just throw away warnings that you know arent needed.
WarnPreHandler SUB
Invoke like this:
$Warn::PreHandler = new WarnPreHandler sub {
#...
};
This works identically to $Warn::Handler, except that it forms a separate chain that is invoked before the WarnHandler chain. Since you can use last to abort all the handlers and return to the program, or change the messages or scope details, this can be useful for modifying data that all future handlers will see, or to dispose of some messages.
This is very useful, since you can just throw away warnings that you know arent needed.
Download (0.005MB)
Added: 2007-05-24 License: Perl Artistic License Price:
883 downloads
Resources 1.04
Resources is a Perl module to handle application defaults in Perl. more>>
Resources is a Perl module to handle application defaults in Perl.
SYNOPSIS
use Resources;
$res = new Resources;
$res = new Resources "resfile";
Resources are a way to specify information of interest to program or packages.
Applications use resource files to specify and document the values of quantities or attributes of interest.
Resources can be loaded from or saved to resource files. Methods are provided to search, modify and create resources.
Packages use resources to hardwire in their code the default values for their attributes, along with documentation for the attibutes themselves.
Packages inherit resources when subclassed, and the resource names are updated dynamically to reflect a class hierarchy.
<<lessSYNOPSIS
use Resources;
$res = new Resources;
$res = new Resources "resfile";
Resources are a way to specify information of interest to program or packages.
Applications use resource files to specify and document the values of quantities or attributes of interest.
Resources can be loaded from or saved to resource files. Methods are provided to search, modify and create resources.
Packages use resources to hardwire in their code the default values for their attributes, along with documentation for the attibutes themselves.
Packages inherit resources when subclassed, and the resource names are updated dynamically to reflect a class hierarchy.
Download (0.018MB)
Added: 2007-05-10 License: Perl Artistic License Price:
899 downloads
Klicker 1.04
Klicker is a KDE/QT based metronome. more>>
Klicker project is a KDE/QT based metronome that supports from 30 to 208 beats per minute, duple, tuple, and quartal time, and it also has DCOP interfaces for interprocess control.
<<less Download (2.5MB)
Added: 2006-01-23 License: GPL (GNU General Public License) Price:
1396 downloads
Public Fox 1.04
Public Fox cleans stuff after downloading. more>>
Public Fox cleans stuff after downloading.
Tired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.
Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.
<<lessTired of cleaning stuff people download? Use this to limit file downloading.
Prevent browser changes.
Public Fox blocks users from downloading unwanted files.
Locks down Add-ons.
Locks down Preferences.
Locks down about:config
All with a central password.
Download (0.019MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
862 downloads
MEsmtpd 1.04
MEsmtpd provides a small SMTP Daemon with From-header rewrite and SMTP-Auth. more>>
MEsmtpd provides a small SMTP Daemon with From-header rewrite and SMTP-Auth.
The main features of MEsmtpd are SMTP-Auth (RFC 2554) and rewriting the From: header (email body From: header and envelope from) based on an account-list (configuration file and auth data).
Some big companies dont allow plain SMTP because the From header (sender) is fakeable by the sender. Many companies use MAPI (MS Exchange) to solve this problem.
The alternative open source solution is MEsmtpd. It is an independent extension to sendmail, postfix or qmail.
Enhancements:
- added smtp Reset. Thanks to Paul!
<<lessThe main features of MEsmtpd are SMTP-Auth (RFC 2554) and rewriting the From: header (email body From: header and envelope from) based on an account-list (configuration file and auth data).
Some big companies dont allow plain SMTP because the From header (sender) is fakeable by the sender. Many companies use MAPI (MS Exchange) to solve this problem.
The alternative open source solution is MEsmtpd. It is an independent extension to sendmail, postfix or qmail.
Enhancements:
- added smtp Reset. Thanks to Paul!
Download (0.005MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
954 downloads
TLSWrap 1.04
TLSWrap is a TLS/SSL FTP wrapper/proxy for UNIX and Windows, allowing you to use your favourite FTP client with any TLS/SSL-enab more>>
TLSWrap is a TLS/SSL FTP wrapper/proxy for UNIX and Windows, allowing you to use your favourite FTP client with any TLS/SSL-enabled FTP server.
Main features:
- Full encryption of both control and data connections (data encryption is optional, see README).
- Allows existing FTP clients to support Transport Layer Security/Secure Socket Layer.
it gives TLS/SSL support for existing ftp clients
- Works on both UNIX and Windows.
- One process handles all connections (non-blocking I/O).
- A helper process does hostname lookups so the main process is free for other work during slow lookups.
- Both C source and Windows executables for both 32-bit (x86) and 64-bit (x64: AMD64 and EM64T) systems are available.
- Proper support for X.509 certificates
Enhancements:
- This release fixes a bug that could cause crashes on some systems.
- TLSWTray has been upgraded to MFC 8.
<<lessMain features:
- Full encryption of both control and data connections (data encryption is optional, see README).
- Allows existing FTP clients to support Transport Layer Security/Secure Socket Layer.
it gives TLS/SSL support for existing ftp clients
- Works on both UNIX and Windows.
- One process handles all connections (non-blocking I/O).
- A helper process does hostname lookups so the main process is free for other work during slow lookups.
- Both C source and Windows executables for both 32-bit (x86) and 64-bit (x64: AMD64 and EM64T) systems are available.
- Proper support for X.509 certificates
Enhancements:
- This release fixes a bug that could cause crashes on some systems.
- TLSWTray has been upgraded to MFC 8.
Download (0.134MB)
Added: 2006-12-17 License: BSD License Price:
1043 downloads
FireBug 1.04
FireBug is a Firefox extension that allows you to explore the far corners of the DOM by keyboard or mouse. more>>
FireBug is a Firefox extension that allows you to explore the far corners of the DOM by keyboard or mouse.
All of the tools you need to poke, prod, and monitor your JavaScript, CSS, HTML and Ajax are brought together into one seamless experience, including a debugger, an error console, command line, and a variety of fun inspectors.
Main features:
- JavaScript debugger for stepping through code one line at a time
- Status bar icon shows you when there is an error in a web page
- A console that shows errors from JavaScript and CSS
- Log messages from JavaScript in your web page to the console (bye bye "alert debugging")
- An JavaScript command line (no more "javascript:" in the URL bar)
- Spy on XMLHttpRequest traffic
- Inspect HTML source, computed style, events, layout and the DOM
<<lessAll of the tools you need to poke, prod, and monitor your JavaScript, CSS, HTML and Ajax are brought together into one seamless experience, including a debugger, an error console, command line, and a variety of fun inspectors.
Main features:
- JavaScript debugger for stepping through code one line at a time
- Status bar icon shows you when there is an error in a web page
- A console that shows errors from JavaScript and CSS
- Log messages from JavaScript in your web page to the console (bye bye "alert debugging")
- An JavaScript command line (no more "javascript:" in the URL bar)
- Spy on XMLHttpRequest traffic
- Inspect HTML source, computed style, events, layout and the DOM
Download (0.29MB)
Added: 2007-04-09 License: MPL (Mozilla Public License) Price:
1573 downloads
Devel::Profile 1.04
Devel::Profile is a Perl module to tell me why my perl program runs so slowly. more>>
Devel::Profile is a Perl module to tell me why my perl program runs so slowly.
SYNOPSIS
perl -d:Profile program.pl
less prof.out
The Devel::Profile package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using the most time and which subroutines are being called most often.
To profile a Perl script, run the perl interpreter with the -d debugging switch. The profiler uses the debugging hooks. So to profile script test.pl the following command should be used:
perl -d:Profile test.pl
When the script terminates (or periodicly while running, see ENVIRONMENT) the profiler will dump the profile information to a file called prof.out. This file is human-readable, no additional tool is required to read it.
Note: Statistics are kept per sub, not per line.
<<lessSYNOPSIS
perl -d:Profile program.pl
less prof.out
The Devel::Profile package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using the most time and which subroutines are being called most often.
To profile a Perl script, run the perl interpreter with the -d debugging switch. The profiler uses the debugging hooks. So to profile script test.pl the following command should be used:
perl -d:Profile test.pl
When the script terminates (or periodicly while running, see ENVIRONMENT) the profiler will dump the profile information to a file called prof.out. This file is human-readable, no additional tool is required to read it.
Note: Statistics are kept per sub, not per line.
Download (0.007MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1116 downloads
glastree 1.04
glastree builds live backup trees. more>>
glastree application builds live backup trees, with branches for each day. Users directly browse the past to recover older documents or retrieve lost files. Hard links serve to compress out unchanged files, while modified ones are copied verbatim. A prune utility effects a constant, sliding window.
<<less Download (0.006MB)
Added: 2007-06-11 License: Public Domain Price:
865 downloads
DadaDodo 1.04
DadaDodo is a program that generates random sentences based on input files. more>>
DadaDodo project is a program that generates random sentences based on input files.
Sometimes these sentences are nonsense; but sometimes they cut right through to the heart of the matter, and reveal hidden meanings.
DadaDodo works rather differently than Dissociated Press; whereas Dissociated Press (which, incidentally, refers to itself as a ``travesty generator) simply grabs segments of the body of text and shuffles them, DadaDodo tries to work on a larger scale: it scans bodies of text, and builds a probability tree expressing how frequently word B tends to occur after word A, and various other statistics; then it generates sentences based on those probabilities.
The theory here is that, with a large enough corpus, the generated sentences will tend to be grammatically correct, but semantically random: exterminate all rational thought.
This kind of probability histogram is called a Markov Chain, after Andrei Markov, the fellow who invented it. It turns out that Markov Chains can actually be used for things other than generating random text.
They are used in image processing, for feature recognition; and can be used to analyze finite-state machines for bottlenecks and critical paths: the states which occur most often are where the bottlenecks are.
Enhancements:
- Fixed some crashes by using "unsigned char" everywhere.
<<lessSometimes these sentences are nonsense; but sometimes they cut right through to the heart of the matter, and reveal hidden meanings.
DadaDodo works rather differently than Dissociated Press; whereas Dissociated Press (which, incidentally, refers to itself as a ``travesty generator) simply grabs segments of the body of text and shuffles them, DadaDodo tries to work on a larger scale: it scans bodies of text, and builds a probability tree expressing how frequently word B tends to occur after word A, and various other statistics; then it generates sentences based on those probabilities.
The theory here is that, with a large enough corpus, the generated sentences will tend to be grammatically correct, but semantically random: exterminate all rational thought.
This kind of probability histogram is called a Markov Chain, after Andrei Markov, the fellow who invented it. It turns out that Markov Chains can actually be used for things other than generating random text.
They are used in image processing, for feature recognition; and can be used to analyze finite-state machines for bottlenecks and critical paths: the states which occur most often are where the bottlenecks are.
Enhancements:
- Fixed some crashes by using "unsigned char" everywhere.
Download (0.022MB)
Added: 2006-12-13 License: BSD License Price:
1049 downloads
xmlformat 1.04
xmlformat is a configurable formatter (or pretty-printer) for XML documents. more>>
xmlformat is a configurable formatter (or "pretty-printer") for XML documents. xmlformat gives the user control over indentation, line-breaking, and text wrapping. These properties can be defined on a per-element basis.
Enhancements:
- Each token is now assigned an input line number, which is displayed in error messages.
- This provides better information to the user about the location of problems in input files.
- The token stack is now printed when an error occurs.
- This provides some idea of the context of the element that is malformed or has malformed content.
<<lessEnhancements:
- Each token is now assigned an input line number, which is displayed in error messages.
- This provides better information to the user about the location of problems in input files.
- The token stack is now printed when an error occurs.
- This provides some idea of the context of the element that is malformed or has malformed content.
Download (0.15MB)
Added: 2006-08-17 License: BSD License Price:
1163 downloads
MiniRacer 1.04
MiniRacer is an OpenGL car racing game, based on IDs famous Quake engine. more>>
MiniRacer is an OpenGL car racing game, based on IDs famous Quake engine.
The goal of this project is, to port the original game, which was written for Win32, to Linux.
Further we want to add new features and make some redesign of the old project.
MiniRacer is Free Software. Its source code is licensed under the terms of the GPL.
Enhancements:
- With this release we have a fully supported version for Linux.
- It fixes many nasty bugs in the graphics engine, especially crashes on ATI hardware.
- We also have a dedicated server mode now.
- Most sounds and graphics are replaced.
- An important thing is that were now able to build maps, even on Linux: We added some example maps and entities for GtkRadiant to the current release.
<<lessThe goal of this project is, to port the original game, which was written for Win32, to Linux.
Further we want to add new features and make some redesign of the old project.
MiniRacer is Free Software. Its source code is licensed under the terms of the GPL.
Enhancements:
- With this release we have a fully supported version for Linux.
- It fixes many nasty bugs in the graphics engine, especially crashes on ATI hardware.
- We also have a dedicated server mode now.
- Most sounds and graphics are replaced.
- An important thing is that were now able to build maps, even on Linux: We added some example maps and entities for GtkRadiant to the current release.
Download (7.2MB)
Added: 2005-08-17 License: GPL (GNU General Public License) Price:
854 downloads
TEKlib 1.04
TEKlib is a games operating system and cross-development SDK for games. more>>
TEKlib is a games operating system and cross-development SDK for games.
TEKlib is an open-source library and operating system effort under the terms of the free MIT software license. This project has a many of facets; it is a
virtual operating system that runs hosted on platforms such as Linux, Windows, BSD and MorphOS,
freestanding operating system on architectures such as the Playstation 2, where it runs on a thin layer of ROM calls,
middleware providing a constistent interface across all hosting environments,
component library in that it is not strictly limited to OS services,
development platform that comes with a cross-platform build system and documentation tools.
TEKlib was started around the year 1999 out of frustration from the ended lifecycle of the AmigaOS and the lack of a worthy successor for its most basic principle, excellence by simplicity. Today, TEKlib is a virtual operating system, distributed over a set of portable libraries. You can use it as your sole environment on the Playstation 2 (provided that you are hardcore enough); most people however will use it as a development platform under Linux or Windows.
By picking from its facilities, it can serve as
a games operating system and cross-development SDK for games and everything multimedia,
a hosting environment for libraries that depend on non-trivial features like plugins and threads, striving for portability and durability,
a virtual OS target as a backend for applications that would have to be ported to many individual hosts,
a toolkit to provide an extensible virtual filesystem,
an ubiquitous component architecture that allows plugins and their host to compile from the same source on all platforms,
a small and powerful replacement for standard C libraries in embedded applications.
TEKlib is both an architecture and component library. In short, it can be embedded into any kind of library and application, and conversely, any kind of library and application can be based on TEKlib.
<<lessTEKlib is an open-source library and operating system effort under the terms of the free MIT software license. This project has a many of facets; it is a
virtual operating system that runs hosted on platforms such as Linux, Windows, BSD and MorphOS,
freestanding operating system on architectures such as the Playstation 2, where it runs on a thin layer of ROM calls,
middleware providing a constistent interface across all hosting environments,
component library in that it is not strictly limited to OS services,
development platform that comes with a cross-platform build system and documentation tools.
TEKlib was started around the year 1999 out of frustration from the ended lifecycle of the AmigaOS and the lack of a worthy successor for its most basic principle, excellence by simplicity. Today, TEKlib is a virtual operating system, distributed over a set of portable libraries. You can use it as your sole environment on the Playstation 2 (provided that you are hardcore enough); most people however will use it as a development platform under Linux or Windows.
By picking from its facilities, it can serve as
a games operating system and cross-development SDK for games and everything multimedia,
a hosting environment for libraries that depend on non-trivial features like plugins and threads, striving for portability and durability,
a virtual OS target as a backend for applications that would have to be ported to many individual hosts,
a toolkit to provide an extensible virtual filesystem,
an ubiquitous component architecture that allows plugins and their host to compile from the same source on all platforms,
a small and powerful replacement for standard C libraries in embedded applications.
TEKlib is both an architecture and component library. In short, it can be embedded into any kind of library and application, and conversely, any kind of library and application can be based on TEKlib.
Download (1.0MB)
Added: 2006-07-27 License: MIT/X Consortium License Price:
1184 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 pro 1.04 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