mastercraft tires
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 64
Motorsport 1.0
Motorsport project is a realistic wheeled vehicle simulator. more>>
Motorsport project is a realistic wheeled vehicle simulator.
Motorsport is a project with a clear goal: to create the most realistic vehicle simulation possible. This includes cars and trucks, which can be driven using common input devices such as keyboards and steering wheels.
It limits realism to what the hardware, and is intended for hardcore driving simulator fans.
This means that it will try to have realistic physics, but not necessarily playable, easy, or fun physics - these characteristics will depend on which vehicle is driven and on what a person is trying to drive it.
Main features:
- Customizable game pause (via .xml file)
- Slow motion mode
- Video frames recording system
- Constant gravity (vector definable via .xml file)
- Interactive boxes (bounding box)
- Body collisions (double bounding box)
- Wheels collisions (simplest tire model, capped cylinder collision shape)
<<lessMotorsport is a project with a clear goal: to create the most realistic vehicle simulation possible. This includes cars and trucks, which can be driven using common input devices such as keyboards and steering wheels.
It limits realism to what the hardware, and is intended for hardcore driving simulator fans.
This means that it will try to have realistic physics, but not necessarily playable, easy, or fun physics - these characteristics will depend on which vehicle is driven and on what a person is trying to drive it.
Main features:
- Customizable game pause (via .xml file)
- Slow motion mode
- Video frames recording system
- Constant gravity (vector definable via .xml file)
- Interactive boxes (bounding box)
- Body collisions (double bounding box)
- Wheels collisions (simplest tire model, capped cylinder collision shape)
Download (4.0MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1115 downloads
StrongBad Emails 2.0
StrongBad Emails is an extension which adds the words Previous and Next to the StrongBad Emails. more>>
StrongBad Emails is an extension which adds the words "Previous" and "Next" to the StrongBad Emails.
Tired of having to go back to the main email page to view the next Strong Bad email cartoon? Well wake up and smell the coffee with this extension.
<<lessTired of having to go back to the main email page to view the next Strong Bad email cartoon? Well wake up and smell the coffee with this extension.
Download (0.003MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
928 downloads
UML::State 0.02
UML::State is an object oriented module which draws simple state diagrams. more>>
UML::State is an object oriented module which draws simple state diagrams.
SYNOPSIS
use UML::State;
my $diagram = UML::State->new(
$node_array,
$start_list,
$accept_list,
$edges
);
# You may change these defaults (doing so may even work):
$UML::State::ROW_SPACING = 75; # all numbers are in pixels
$UML::State::LEFT_MARGIN = 20;
$UML::State::WIDTH = 800;
$UML::State::HEIGHT = 800;
print $diagram->draw();
ABSTRACT
Are you tired of pointing and clicking to make simple diagrams? Do your wrists hurt thinking about making the pretty UML your boss likes so well? Consider using UML::State and UML::Sequence to make your life easier.
UML::State together with drawstate.pl allows you to easily generate state diagrams. You enter them in something like a cross between ASCII art and school room algebra. They come out looking like something from a drawing program like Visio. See drawstate.pl in the distribution for details about the input format and the samples directory for some examples of input and output.
You will probably use this class by running drawstate.pl or drawstatexml.pl which are included in the distribution. But you can use this package directly to gain control over the appearance of your pictures.
The two methods you need are new and draw (see below). If you want, you may change the dimensions by setting the package global variables as shown in the SYNOPSIS. Obviously, no error checking is done, so be careful to use reasonable values (positive numbers are good). All numbers are in pixels (sorry by Beziers in SVG seem to require pixels). I have not tried changing the numbers, so I dont have any idea if doing so makes reasonable changes to the output.
<<lessSYNOPSIS
use UML::State;
my $diagram = UML::State->new(
$node_array,
$start_list,
$accept_list,
$edges
);
# You may change these defaults (doing so may even work):
$UML::State::ROW_SPACING = 75; # all numbers are in pixels
$UML::State::LEFT_MARGIN = 20;
$UML::State::WIDTH = 800;
$UML::State::HEIGHT = 800;
print $diagram->draw();
ABSTRACT
Are you tired of pointing and clicking to make simple diagrams? Do your wrists hurt thinking about making the pretty UML your boss likes so well? Consider using UML::State and UML::Sequence to make your life easier.
UML::State together with drawstate.pl allows you to easily generate state diagrams. You enter them in something like a cross between ASCII art and school room algebra. They come out looking like something from a drawing program like Visio. See drawstate.pl in the distribution for details about the input format and the samples directory for some examples of input and output.
You will probably use this class by running drawstate.pl or drawstatexml.pl which are included in the distribution. But you can use this package directly to gain control over the appearance of your pictures.
The two methods you need are new and draw (see below). If you want, you may change the dimensions by setting the package global variables as shown in the SYNOPSIS. Obviously, no error checking is done, so be careful to use reasonable values (positive numbers are good). All numbers are in pixels (sorry by Beziers in SVG seem to require pixels). I have not tried changing the numbers, so I dont have any idea if doing so makes reasonable changes to the output.
Download (0.054MB)
Added: 2007-04-23 License: Perl Artistic License Price:
915 downloads
FTester 1.0
FTester (The Firewall Tester) is a tool designed for testing firewalls filtering policies and Intrusion Detection System (IDS). more>>
FTester (The Firewall Tester) is a tool designed for testing firewalls filtering policies and Intrusion Detection System (IDS) capabilities.
The tool consists of two perl scripts, a packet injector (ftest) and the listening sniffer (ftestd). The first script injects custom packets, defined in ftest.conf, with a signature in the data part while the sniffer listens for such marked packets. The scripts both write a log file which is in the same form for both scripts. A diff of the two produced files (ftest.log and ftestd.log) shows the packets that were unable to reach the sniffer due to filtering rules if these two scripts are ran on hosts placed on two different sides of a firewall. Stateful inspection firewalls are handled with the connection spoofing option. A script called freport is also available for automatically parse the log files.
Of course this is not an automated process, ftest.conf must be crafted for every different situation. Examples and rules are included in the attached configuration file.
The IDS (Intrusion Detection System) testing feature can be used either with ftest only or with the additional support of ftestd for handling stateful inspection IDS, ftest can also use common IDS evasion techniques. Instead of using the configuration syntax currently the script can also process snort rule definition file.
These two scripts were written because I was tired of doing this by hand (with packet-crafting tools and tcpdump), I know that there are at least two dozens of other methods to do this but another reason was to learn some perl ;). I hope that you enjoy them.
Main features:
- firewall testing
- IDS testing
- simulation of real tcp connections for stateful inspection firewalls and IDS
- connection spoofing
- IP fragmentation / TCP segmentation
- IDS evasion techniques
<<lessThe tool consists of two perl scripts, a packet injector (ftest) and the listening sniffer (ftestd). The first script injects custom packets, defined in ftest.conf, with a signature in the data part while the sniffer listens for such marked packets. The scripts both write a log file which is in the same form for both scripts. A diff of the two produced files (ftest.log and ftestd.log) shows the packets that were unable to reach the sniffer due to filtering rules if these two scripts are ran on hosts placed on two different sides of a firewall. Stateful inspection firewalls are handled with the connection spoofing option. A script called freport is also available for automatically parse the log files.
Of course this is not an automated process, ftest.conf must be crafted for every different situation. Examples and rules are included in the attached configuration file.
The IDS (Intrusion Detection System) testing feature can be used either with ftest only or with the additional support of ftestd for handling stateful inspection IDS, ftest can also use common IDS evasion techniques. Instead of using the configuration syntax currently the script can also process snort rule definition file.
These two scripts were written because I was tired of doing this by hand (with packet-crafting tools and tcpdump), I know that there are at least two dozens of other methods to do this but another reason was to learn some perl ;). I hope that you enjoy them.
Main features:
- firewall testing
- IDS testing
- simulation of real tcp connections for stateful inspection firewalls and IDS
- connection spoofing
- IP fragmentation / TCP segmentation
- IDS evasion techniques
Download (0.030MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
994 downloads
EtherDam 0.4
EtherDam is a firewall configuration engine that relies on iptables. more>>
EtherDam is a firewall configuration engine that relies on iptables. It presents firewall configuration as a somewhat simpler scripting language thats still flexible enough for most purposes.
So why not just use iptables?
Well, lets just face one thing: iptables is a pain to manage. By pain, I mean a heavy dull throb that seems ready to make your head explode. Its nice to finally have a stateful firewalling facility for Linux, but you have to remember fifteen or so different arrangements of the iptables options just to make a simple bare-metal NAT box. Its enough to send you running back to OpenBSD.
One day, I got tired of that. So I came up with EtherDam.
My goal with EtherDam was to create a simplified firewall configuration language rather than remember or look up several complex incantations of the iptables command. EtherDam is a wrapper; it still uses iptables as a back-end. The processing engine is also fast, though its not extremely well tested.
The language itself is fairly complete--complete enough for a decent firewall--though its not properly documented yet.
Enhancements:
- etherdam.in:
- added IPTABLES command support.
- added MSS command for TCP MSS clamping.
- firewall.conf.5.in: documented MSS command, fixed typos.
- firewall.conf.in: added example MSS command usage.
- configure, configure.ac, etherdam.spec: bumped version number.
- new release (release 0.4)
<<lessSo why not just use iptables?
Well, lets just face one thing: iptables is a pain to manage. By pain, I mean a heavy dull throb that seems ready to make your head explode. Its nice to finally have a stateful firewalling facility for Linux, but you have to remember fifteen or so different arrangements of the iptables options just to make a simple bare-metal NAT box. Its enough to send you running back to OpenBSD.
One day, I got tired of that. So I came up with EtherDam.
My goal with EtherDam was to create a simplified firewall configuration language rather than remember or look up several complex incantations of the iptables command. EtherDam is a wrapper; it still uses iptables as a back-end. The processing engine is also fast, though its not extremely well tested.
The language itself is fairly complete--complete enough for a decent firewall--though its not properly documented yet.
Enhancements:
- etherdam.in:
- added IPTABLES command support.
- added MSS command for TCP MSS clamping.
- firewall.conf.5.in: documented MSS command, fixed typos.
- firewall.conf.in: added example MSS command usage.
- configure, configure.ac, etherdam.spec: bumped version number.
- new release (release 0.4)
Download (0.032MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1201 downloads
Firewall Tester 1.0
The Firewall Tester (FTester) is a tool designed for testing firewalls filtering policies and Intrusion Detection System (IDS) c more>>
The Firewall Tester (FTester) is a tool designed for testing firewalls filtering policies and Intrusion Detection System (IDS) capabilities.The tool consists of two perl scripts, a packet injector (ftest) and the listening sniffer (ftestd). The first script injects custom packets, defined in ftest.conf, with a signature in the data part while the sniffer listens for such marked packets. The scripts both write a log file which is in the same form for both scripts. A diff of the two produced files (ftest.log and ftestd.log) shows the packets that were unable to reach the sniffer due to filtering rules if these two scripts are ran on hosts placed on two different sides of a firewall. Stateful inspection firewalls are handled with the connection spoofing option. A script called freport is also available for automatically write to log files.
Of course this is not an automated process, ftest.conf must be crafted for every different situation. Examples and rules are included in the attached configuration file.
The IDS (Intrusion Detection System) testing feature can be used either with ftest only or with the additional support of ftestd for handling stateful inspection IDS, ftest can also use common IDS evasion techniques. Instead of using the configuration syntax currently the script can also process snort rule definition file.
These two scripts were written because I was tired of doing this by hand (with packet-crafting tools and tcpdump), I know that there are at least two dozens of other methods to do this but another reason was to learn some perl ;). I hope that you enjoy them.
Main features:
- firewall testing
- IDS testing
- simulation of real tcp connections for stateful inspection firewalls and IDS
- connection spoofing
- IP fragmentation / TCP segmentation
- IDS evasion techniques
<<lessOf course this is not an automated process, ftest.conf must be crafted for every different situation. Examples and rules are included in the attached configuration file.
The IDS (Intrusion Detection System) testing feature can be used either with ftest only or with the additional support of ftestd for handling stateful inspection IDS, ftest can also use common IDS evasion techniques. Instead of using the configuration syntax currently the script can also process snort rule definition file.
These two scripts were written because I was tired of doing this by hand (with packet-crafting tools and tcpdump), I know that there are at least two dozens of other methods to do this but another reason was to learn some perl ;). I hope that you enjoy them.
Main features:
- firewall testing
- IDS testing
- simulation of real tcp connections for stateful inspection firewalls and IDS
- connection spoofing
- IP fragmentation / TCP segmentation
- IDS evasion techniques
Download (0.030MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1206 downloads
libtemplate 1.5
libtemplate is a C template library for CGI programs. more>>
libtemplate allows C developers to use templates for their CGI programs just like Perl and PHP programmers.
Use this template library to separate your programs business logic from the HTML that generates the output. Your code will be smaller and easier to maintain, and cosmetic changes to an application wont create havoc with your program.
If youre tired of recompiling your CGI program every time somebody wants to change the HTML, you need to check out templates. Libtemplate is an easy to use C interface that will let you use the same sort of templates used in Lazarus applications.
Using templates in PHP and C++ has spoiled me. So when I started developing applications in C, I went hunting for a templating library that I could use again. I didnt find it, so after developing in a mixture of C for my lowlevel routines and C++ for my interface, I finally broke down and wrote a templating engine in C.
<<lessUse this template library to separate your programs business logic from the HTML that generates the output. Your code will be smaller and easier to maintain, and cosmetic changes to an application wont create havoc with your program.
If youre tired of recompiling your CGI program every time somebody wants to change the HTML, you need to check out templates. Libtemplate is an easy to use C interface that will let you use the same sort of templates used in Lazarus applications.
Using templates in PHP and C++ has spoiled me. So when I started developing applications in C, I went hunting for a templating library that I could use again. I didnt find it, so after developing in a mixture of C for my lowlevel routines and C++ for my interface, I finally broke down and wrote a templating engine in C.
Download (0.018MB)
Added: 2005-10-03 License: BSD License Price:
1484 downloads
Streamsniff 0.03
Streamsniff is a small command line tool that sniffs network traffic for stream URLs. more>>
Streamsniff is a command line tool that sniffs network traffic for stream urls. I built it because I got tired chasing stream urls hidden behind loads of html and javascript.
Run it as root, fire up your browser and start the stream you want to "expose". Streamsniff detects the initiation of rtsp, mms, icy and http streams, and performs a backtrace on http traffic to detect "playlist"-urls (stream metafiles).
Sample output showing ICY, RTSP and MMS urls and their playlist urls:
ICY : http://212.92.28.98:2002/
: http://real1.radio.hu/BartokG2.ram
RTSP: rtsp://rmlivev8.bbc.net.uk:554/farm/*/ev7/live24/6music/live/6music_dsat_g2.ra
: http://www.bbc.co.uk/6music/ram/dsatg2.ram
MMS : mms://wm05.nm.cbc.ca/cbcr2-toronto
: http://origin.www.cbc.ca/mrl2/livemedia/cbcr2-toronto.asx
Streamsniff is experimental. It runs on little-endian (Intel/AMD), Linux and Windows XP SP2. I want to be less specific about the platform. Help with ports (big-endian, FreeBSD) is appreciated.
Detects:
MMS
RTSP
ICY
HTTP (with Content-Type: audio.. , video.. , ..wms-hdr..)
<<lessRun it as root, fire up your browser and start the stream you want to "expose". Streamsniff detects the initiation of rtsp, mms, icy and http streams, and performs a backtrace on http traffic to detect "playlist"-urls (stream metafiles).
Sample output showing ICY, RTSP and MMS urls and their playlist urls:
ICY : http://212.92.28.98:2002/
: http://real1.radio.hu/BartokG2.ram
RTSP: rtsp://rmlivev8.bbc.net.uk:554/farm/*/ev7/live24/6music/live/6music_dsat_g2.ra
: http://www.bbc.co.uk/6music/ram/dsatg2.ram
MMS : mms://wm05.nm.cbc.ca/cbcr2-toronto
: http://origin.www.cbc.ca/mrl2/livemedia/cbcr2-toronto.asx
Streamsniff is experimental. It runs on little-endian (Intel/AMD), Linux and Windows XP SP2. I want to be less specific about the platform. Help with ports (big-endian, FreeBSD) is appreciated.
Detects:
MMS
RTSP
ICY
HTTP (with Content-Type: audio.. , video.. , ..wms-hdr..)
Download (0.020MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1493 downloads
eBayCaptcha Populator 1.2
eBayCaptcha Populator automatically fills the verification code for you. more>>
eBayCaptcha Populator automatically fills the verification code for you.
Are you tired of getting "For added security, please enter the verification code hidden in the image." message on eBay sites?
Install our Firefox extension and that problem will go away!
Everytime you get that message the extension will automatically fill the code for you.
<<lessAre you tired of getting "For added security, please enter the verification code hidden in the image." message on eBay sites?
Install our Firefox extension and that problem will go away!
Everytime you get that message the extension will automatically fill the code for you.
Download (0.005MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
940 downloads
Vamos Automotive Simulator 0.5.7
Vamos is an automotive simulation framework with an emphasis on thorough physical modeling and good C++ design. more>>
Vamos Automotive Simulator project, as the name suggest is an automotive simulation framework with an emphasis on thorough physical modeling and good C++ design. Vamos includes a real-time, first-person, 3D driving application.
Vamos is young and its goals are only partially met. I invite anyone whos interested to contribute.
Thorough physical modeling
Vamos models most major systems of a car. The drivetrain includes a simulation of the engine, clutch, transmission and a limited-slip differential. Tires and suspension are also modeled. If I missed something, let me know.
Good C++ Design
The geometry, track, car and world modules are in their own namespaces. Care has been taken to avoid cyclic dependencies. Standard Library components like strings, vectors and maps are favored over arrays. Some of the modules and classes have aged more gracefully than others. If you see a design area that needs improvement, feel free to pitch in.
<<lessVamos is young and its goals are only partially met. I invite anyone whos interested to contribute.
Thorough physical modeling
Vamos models most major systems of a car. The drivetrain includes a simulation of the engine, clutch, transmission and a limited-slip differential. Tires and suspension are also modeled. If I missed something, let me know.
Good C++ Design
The geometry, track, car and world modules are in their own namespaces. Care has been taken to avoid cyclic dependencies. Standard Library components like strings, vectors and maps are favored over arrays. Some of the modules and classes have aged more gracefully than others. If you see a design area that needs improvement, feel free to pitch in.
Download (1.4MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
872 downloads
Pawn Project 0.3.1
Pawn Project is an easy-to-use desktop. more>>
The Pawn Project aims to make computing easy for anyone with an easy-to-use desktop environment.
How often have you felt that your computer could be smarter ? Arent you tired of the old drag and drop style desktop and the horribly command promps.
Well Open Pawn Projekt (OPP) is about to change all that. The Pawn shall make it possibly for you to command your computer exactly what you would like it to do.
Order it in plain and simple english or whatever your natural language is.
Pawn is written in Perl, TCL TK and C++. Just to make it so portable as possible. Currently it will run on any Unix/Linux system.
<<lessHow often have you felt that your computer could be smarter ? Arent you tired of the old drag and drop style desktop and the horribly command promps.
Well Open Pawn Projekt (OPP) is about to change all that. The Pawn shall make it possibly for you to command your computer exactly what you would like it to do.
Order it in plain and simple english or whatever your natural language is.
Pawn is written in Perl, TCL TK and C++. Just to make it so portable as possible. Currently it will run on any Unix/Linux system.
Download (4.58MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1647 downloads
TORCS 1.3.0
TORCS is a 3D open racing car simulator. more>>
TORCS is a 3D racing cars simulator using OpenGL.
The goal is to have programmed robots drivers racing against each others.
You can also drive yourself with either a wheel or keyboard or mouse.
TORCS is available on Linux and Windows.
This concept is directly inspired from RARS
There are 42 different cars, 30 tracks and more than 50 opponents to race against. You can steer with a joystick or steering wheel, if its supported by your platform. It is also possible to drive with the mouse or the keyboard, but its not easy.
Graphic features lighting, smoke, skidmarks and glowing brake disks. The simulation features a simple damage model, collisions, tire and wheel properties (springs, dampers, stiffness, ...), aerodynamics (ground effect, spoilers, ...) and much more.
The gameplay allows different types of races from the simple practice session up to the championship. Enjoy racing against your friends in the split screen mode with up to four human players.
Installation:
1. Download the source package torcs-1.2.3.tar.bz2.
2. Unpack the package with "tar xfvj torcs-1.2.3.tar.bz2".
3. Run the following commands:
$ cd torcs-1.2.3
$ ./configure # --prefix="target dir", --enable-debug or --disable-xrandr might be of interest
$ make
$ make install
$ make datainstall
Youll need those dependencies
Default installation directories:
* /usr/local/bin - TORCS command (directory should be in your PATH)
* /usr/local/lib/torcs - TORCS dynamic libs (directory MUST be in your LD_LIBRARY_PATH if you dont use the torcs shell)
* /usr/local/share/games/torcs - TORCS data files
4. Run the "torcs" command (default location is /usr/local/bin/torcs), you can use those command line options.
All the configuration data, race results and players options will be saved below the $HOME/.torcs directory.
<<lessThe goal is to have programmed robots drivers racing against each others.
You can also drive yourself with either a wheel or keyboard or mouse.
TORCS is available on Linux and Windows.
This concept is directly inspired from RARS
There are 42 different cars, 30 tracks and more than 50 opponents to race against. You can steer with a joystick or steering wheel, if its supported by your platform. It is also possible to drive with the mouse or the keyboard, but its not easy.
Graphic features lighting, smoke, skidmarks and glowing brake disks. The simulation features a simple damage model, collisions, tire and wheel properties (springs, dampers, stiffness, ...), aerodynamics (ground effect, spoilers, ...) and much more.
The gameplay allows different types of races from the simple practice session up to the championship. Enjoy racing against your friends in the split screen mode with up to four human players.
Installation:
1. Download the source package torcs-1.2.3.tar.bz2.
2. Unpack the package with "tar xfvj torcs-1.2.3.tar.bz2".
3. Run the following commands:
$ cd torcs-1.2.3
$ ./configure # --prefix="target dir", --enable-debug or --disable-xrandr might be of interest
$ make
$ make install
$ make datainstall
Youll need those dependencies
Default installation directories:
* /usr/local/bin - TORCS command (directory should be in your PATH)
* /usr/local/lib/torcs - TORCS dynamic libs (directory MUST be in your LD_LIBRARY_PATH if you dont use the torcs shell)
* /usr/local/share/games/torcs - TORCS data files
4. Run the "torcs" command (default location is /usr/local/bin/torcs), you can use those command line options.
All the configuration data, race results and players options will be saved below the $HOME/.torcs directory.
Download (129.3MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1097 downloads
Dynamic Copyright It! 1.0
Dynamic Copyright it! is an easy-to-install, easy-to-use PHP script that adds copyright notices to your images dynamically. more>>
Dynamic Copyright it! is an easy-to-install, easy-to-use PHP script that adds copyright notices to your images dynamically, meaning that the copyright notices are generated on the fly.
If you get tired of changing the copyright on your images from year to year, this tools makes it so you never have to. You can use the Dynamic Copyright It! script for your own benefit, or add it to your web site for additional functionality.
Main features:
- Dynamic Copyright It! is easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- Choose your copyright text, the font size, even the color!
- Dynamic Copyright It! integrates the copyright notice right in the image, so its difficult to remove.
- Copyright notices are added to images on-the-fly, making it so you can easily integrate other scripts to alter the copyright text site-wide without having to edit all of your images manually.
<<lessIf you get tired of changing the copyright on your images from year to year, this tools makes it so you never have to. You can use the Dynamic Copyright It! script for your own benefit, or add it to your web site for additional functionality.
Main features:
- Dynamic Copyright It! is easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- Choose your copyright text, the font size, even the color!
- Dynamic Copyright It! integrates the copyright notice right in the image, so its difficult to remove.
- Copyright notices are added to images on-the-fly, making it so you can easily integrate other scripts to alter the copyright text site-wide without having to edit all of your images manually.
Download (0.50MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1325 downloads
Tadpoles 0.5
Tadpoles is a 4-player action game similar to QBasics Nibbles. more>>
Tadpoles project is a 4-player action game similar to QBasics Nibbles.
Tadpoles is an action game for up to 4 players with ties to the original "snakes" or "nibbles" game concept. In Tadpoles, you control using a direction and velocity rather than the tired up/down, left/right controls. You can also collect various power-ups.
In Tadpoles, you control using a direction and velocity rather than the tired up/down, left/right controls. Not only that, but you can collect power-ups such as Lightning and GhostWalks.
The game is built on an object-oriented design concept, with the intent to create an adventure game out of the engine.
<<lessTadpoles is an action game for up to 4 players with ties to the original "snakes" or "nibbles" game concept. In Tadpoles, you control using a direction and velocity rather than the tired up/down, left/right controls. You can also collect various power-ups.
In Tadpoles, you control using a direction and velocity rather than the tired up/down, left/right controls. Not only that, but you can collect power-ups such as Lightning and GhostWalks.
The game is built on an object-oriented design concept, with the intent to create an adventure game out of the engine.
Download (0.46MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1051 downloads
Example netfilter setup 0.1
Example netfilter setup contains a simple example on how to setup netfilter. more>>
Example netfilter setup contains a simple example on how to setup netfilter.
Warning this is experimental, I dont garantee this is 100% secure, it just does the work fine for me and i thought it could be a good jumpstart for people new to netfilter.
Now I am waiting for your corrections, suggestions and critics. Also I am gonna write a small addon for setting up dynamic rules cause i am tired of all these programs with dynamics port like bind, xdm and rpc.
Btw nmap -sU will still report udp dropping port as open.
nmap -sU -p 111 192.168.1.1
<<lessWarning this is experimental, I dont garantee this is 100% secure, it just does the work fine for me and i thought it could be a good jumpstart for people new to netfilter.
Now I am waiting for your corrections, suggestions and critics. Also I am gonna write a small addon for setting up dynamic rules cause i am tired of all these programs with dynamics port like bind, xdm and rpc.
Btw nmap -sU will still report udp dropping port as open.
nmap -sU -p 111 192.168.1.1
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
986 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 mastercraft tires 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