Main > Free Download Search >

Free air force ones software for linux

air force ones

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6106
Air Traffic Controller 0.3.3

Air Traffic Controller 0.3.3


Air Traffic Controller is an air traffic controller simulation. more>>
Air Traffic Controller project is an air traffic controller simulation.

Airtraffic is a game/simulator that puts you into an air traffic controllers hotseat. Planes come into your airspace from various directions and you have to guide them safely to their destinations. It uses Python, Corba, and GTK.

<<less
Download (0.025MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
716 downloads
Force Content-Type 1.2.1

Force Content-Type 1.2.1


Force Content-Type is an extension used to force the Content-Type of URLs. more>>
Force Content-Type is an extension used to force the Content-Type of URLs.

Its useful to avoid the tag soup when you are developing a XHTML webpage and want Firefox to use its internal XML parser. If the webserver is not correctly configured, it will serve the page with a text/html Content-Type (a tag soup), instead of sending it as application/xhtml+xml, and therefore avoiding Firefox to treat the page as pure XML.

Force Content-Type allows you to define the Content-Type of some URLs (using Regular Expressions), overriding the webservers incorrect Content-Type.

Supported locales:
- Basque
- English
- Spanish

<<less
Download (0.035MB)
Added: 2007-04-03 License: MPL (Mozilla Public License) Price:
951 downloads
Airfart 0.2.1

Airfart 0.2.1


AirFart is a wireless tool created to detect wireless devices, detect their signal strengths more>>
AirFart is a wireless tool created to detect wireless devices, calculate their signal strengths, and present them to the user in an easy-to-understand fashion. It is written in C/C++ with a GTK front end. Airfart supports all wireless network cards supported by the linux-wlan-ng Prism2 driver that provide hardware signal strength information in the "raw signal" format (ssi_type 3). Airfart has a modular n-tier architecture with the data collection at the bottom tier and a graphical user interface at the top.
Following suit with the major players in the wireless arena, we decided the air prefix best categorizes airfart. Further, re-arrange the letters in traf and you can get fart. So, our mission is to sniff out wireless devices who broadcast a scent.
We hope our name isnt offensive. 99% of the people we have come in contact with have thought the name is clever and funny. Remember, no one is forcing you to use it...
Enhancements:
- Updated interface.c and Makefile, now graphics are located in /usr/share/pixmaps/airfart
- Updated vendor.c, now manuf file is located in /usr/share/airfart;
- need to do make install before running airfart
- Added initial Gentoo ebuild file; still needs work
- Number of packets received per ethernet address is now stored
- Tweaked Makefile to not bail out if directories already exist
- Added the star to the about entry in help
- Added GUI support for Packet Count
- Added a column for numerical (percentage) strength
- Added support for a config file and a basic preferences box
- Changes do not yet affect behaviour of the program
<<less
Download (0.097MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1230 downloads
force-preview 1.0

force-preview 1.0


force-preview plugin helps reduce comment spam on a Movable Type blog. more>> <<less
Download (0.006MB)
Added: 2006-11-20 License: GPL (GNU General Public License) Price:
1071 downloads
OpenHIP for Linux 0.5.1

OpenHIP for Linux 0.5.1


OpenHIP for Linux decouples network identity from network location. more>> OpenHIP is a free, open-source implementation of the Host Identity Protocol (HIP). HIP is being developed within the Internet Engineering Task Force (IETF) and the Internet Research Task Force (IRTF) to study and experiment with HIP and related protocols.
HIP is a specific proposal to decouple network identity from network location in the Internet protocol stack. Historically, IP addresses have served both functions. This dual use of IP addresses is becoming problematic, and there have been many research efforts aimed at studying the decoupling of identifier and locator in the network stack. HIP is a specific proposal that uses public/private key pairs as the host identifiers. Please see the Documentation section for more information about HIP and the HIP architecture.
<<less
Download (410KB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
cfourcc 0.1.2

cfourcc 0.1.2


This program identifies the codec used in AVI files (*.avi) and allow the user to change the FourCC description code. more>>
This program identifies the codec used in AVI files (*.avi) and allow the user to change the FourCC description code (like fourcc-changer in Windows). It is useful for people working with Microsoft AVI file.
I created this simple program after reading divx/mpeg4 related forums. It comes to me that there arent any software developed in GNU/Linux (nor other UN*X-variant) that have similiar functionality as "Nics Mini AviC" in Microsoft Windows platform.
FourCC (Four Character Code) is a (rather crude) method to identify codec used to encode Microsoft RIFF AVI files. Application software/hardware use the FourCC to correctly select a codec suitable for playing the AVI file in question. The problem arises when a video player (usually the hardware one) fail to recognize a FourCC, and unable to select a newer/compatible codec to play the AVI file. This simple program solves this problem by providing a simple way to change the FourCC of the AVI file to a value accepted by the video player.
Enhancements:
- add -f (force) option to enable changing FourCC in unsupported files.
<<less
Download (0.014MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1202 downloads
Rails History Plugin 0.2

Rails History Plugin 0.2


Rails History Plugin is a Ruby on Rails plugin that stores user actions (i.e. URLs that the user has recently visited). more>>
Rails History Plugin is a Ruby on Rails plugin that stores user actions (i.e. URLs that the user has recently visited).
It avoids storage of POST and AJAX requests, and it provides a manual way to specify which actions not to store.
Installation:
Unpack into the vendor/plugin and that should be it.
Usage:
In your app/controllers/application_controller.rb, add a history line like this:
class ApplicationController < ActionController::Base
history :default => "http://default.url.com/",
:max => 10
end
The history function accepts a hash of options
:default, the default URL to redirect
:max, the maximum locations to remember (five by defaults).
None of the parameters are required. If somebody knows of a better way to obtain the default URL, he is welcomed to tell me how.
You can use the method history_skip in your controller if you want to avoid certain location to be stored in the history. By default, action resulting from a POST, PUT, DELETE request or an Ajax request are not stored in the history.
class FooController < ApplicationController
history_skip :action_to_skip
def action_to_skip
# I will not be stored in the history
end
end
In your actions, you can then use the following methods:
last_location: returns the last visited location, can be used with one numeric argument precising how many locations to go back in the history (1 by default),
peek_last_location: like last_location but dont remove it from the history,
redirect_back: redirect the user to the last location in history, it takes the same arguments as last_location,
store_location(force = false): stores the current location in the history, set force parameter to true to store location even if it would be skipped.
Note that if you want to use the plugin to create a "back" link on a page, you must go back two times. For example, using this controller
class HistoryController < ApplicationController
def foo
end
def bar
end
def back
redirect_back(2)
end
end
Ill try to explain clearly why. Lets say that in your bar view, you create a back link wich links to the back action. Now a user visits foo then bar. What you want is your user being redirected to foo when clicking your "back" link. Now your user hits the link. The controller will call the back action. From its point of view, you are in the back action so going back one time would take you to the bar action.
Enhancements:
- This release fixes a bug where a user variable was stored in a class variable instead of a session one, so a user going back would make another one skip a page in its history.
- The plugin no longer stores PUT and DELETE requests.
- A peek_last_location method was added to look at the history without modifying it, and a "force" parameter was added to the store_location method to force storing of a location even if it would normally be skipped.
<<less
Download (0.011MB)
Added: 2006-06-29 License: MIT/X Consortium License Price:
1213 downloads
Star Trek Voyager: Elite Force 1.36

Star Trek Voyager: Elite Force 1.36


Star Trek Voyager: Elite Force is a modification to the icculus.org maintained quake3 engine. more>>
Star Trek Voyager: Elite Force is a modification to the icculus.org maintained quake3 engine
to make it possible to run EliteForce holomatch. This means: you can *not* play single player missions with this project.
This engine has full compatibility for the newer _and_ the original EliteForce protocol, clients using the original engine can use newer servers, and clients using my engine can use old servers, too.

Now, the next few paragraphs are just some random blabla about the advantages of this release, but if you want to you can just skip it and go right to the installation instructions.

What was the motivation for me doing this project?

It actually started pretty small.. The Quake3 source has been released more than half a year ago and I got the crazy idea to try the quake3 engine with EliteForce on my trusted Gentoo Linux.

When I started the program first the screen went black and nothing happened... nearly nothing. I heard some sounds and when I moved the cursor I heard random click-clicks from the mouse going over some menu buttons. This meant this stuff is not completely incompatible after all, it didnt crash right away though that was exactly what I expected it to do. I digged in Ravens multiplayer source that they released (only the virtual machine stuff, to allow for building modifications) and compared it to quake3s virtual machines and realized that there was a small
incompatibility in one of the data structures used to pass information between engine and virtual machine. It was nothing big and after fixing this the menu worked!

There were some quirks here or there, but most of the menu really worked. So it got me thinking: If I fix all these incompatibilities.. maybe I can finally play my beloved multiplayer game Ive been clinging to for over 5 years on my favorite OS natively.. and IPv6 support for EliteForce would be pretty cool too...

So a crazy idea was turned into a serious project. I had to add support for Ravens models, playing mp3s, EliteForces own network protocol. My goal was to make this release as close to the original as possible. Most of the time, I only could guess what names and functions would mean to the engine or I had to compare the original game and then try to make it work the same way in my engine.

The quake3 game relies heavily on floating point operations. Unfortunately, the original EliteForce engine does non-ISO compliant rounding of floating point numbers to integers in the VMs. The game VM uses that flaw which will result in higher jumping for certain com_maxfps settings. As with the new engine there are many platforms that can be supported, there are probably many different ways one has to take to revert the rounding to the old behaviour. This is nearly impossible to do, so I had to use a different approach: build new VMs.

<<less
Download (4.8MB)
Added: 2006-10-20 License: Freeware Price:
1185 downloads
CPAN::Reporter 0.38

CPAN::Reporter 0.38


CPAN::Reporter is a Perl module to provides Test::Reporter support for CPAN.pm. more>>
CPAN::Reporter is a Perl module to provides Test::Reporter support for CPAN.pm.

SYNOPSIS

From the CPAN shell:

cpan> install CPAN::Reporter
cpan> reload cpan
cpan> o conf init test_report

CPAN::Reporter is an add-on for the CPAN.pm module that uses Test::Reporter to send the results of module tests to the CPAN Testers project. Support for CPAN::Reporter is available in CPAN.pm as of version 1.88.

The goal of the CPAN Testers project (http://testers.cpan.org/) is to test as many CPAN packages as possible on as many platforms as possible. This provides valuable feedback to module authors and potential users to identify bugs or platform compatibility issues and improves the overall quality and value of CPAN.

One way individuals can contribute is to send test results for each module that they test or install. Installing CPAN::Reporter gives the option of automatically generating and emailing test reports whenever tests are run via CPAN.pm.

GETTING STARTED

The first step in using CPAN::Reporter is to install it using whatever version of CPAN.pm is already installed. CPAN.pm will be upgraded as a dependency if necessary.

cpan> install CPAN::Reporter

If CPAN.pm was upgraded, it needs to be reloaded.

cpan> reload cpan

If upgrading from a very old version of CPAN.pm, users may be prompted to renew their configuration settings, including the test_report option to enable CPAN::Reporter.

If not prompted automatically, users should manually initialize CPAN::Reporter support. After enabling CPAN::Reporter, CPAN.pm will automatically continue with interactive configuration of CPAN::Reporter options. (Remember to commit the CPAN configuration changes.)

cpan> o conf init test_report
cpan> o conf commit

Once CPAN::Reporter is enabled and configured, test or install modules with CPAN.pm as usual.

For example, to force CPAN to repeat tests for CPAN::Reporter to see how it works:

cpan> force test CPAN::Reporter

<<less
Download (0.044MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
Kickoff Qt Fedora 7 1.0

Kickoff Qt Fedora 7 1.0


Kickoff QT desktop panel for KDE is the best effort effort to maximize the users experience. more>>
Kickoff QT desktop panel for KDE is the best effort effort to maximize the users experience.
Kicker QT requires less clicking to launch programs because it uses the mouse over effect which is lacking in other menu launchers. it also loads plugins and uses qtcurve which is lacking in other menu launchers for that eye candy we like. The history feature keeps track of recent programs and files/documents in an organized display which is lacking in other menu launchers. Favorites is as nearly as quick as quick launcher which is lacking in other menu launchers in that it required one click.
Note: Other menu launchers includes Vista.
You can also adjust the size of the menu unlike older menu launchers which become cluttered over time and explode all over your desktop. ;^D
WARNING this is a Force install at the time and will mutilate KDEbase, not for the faint of heart! I am working on the entire KDE 3.5.7 KDE QT which will be debugged for personal use with development on mng animation.
Use this at your own risk!!!
Reboot after installing launch button respones slowly the first few seconds.
Enhancements:
- replaced suse button with FedoraBubbles kbfx button
<<less
Download (MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
526 downloads
Kraptor Final 2004

Kraptor Final 2004


Kraptor is a classic shoot em up scroller game, where you must fight against tons of bad dudes. more>>
Kraptor is a classic shoot em up scroller game, where you must fight against tons of bad dudes.
The game offers high speed action, with massive destruction and lots of fun. Kraptor features a powerful engine for 2D shooter scroller games. Massive destruction, powerful weapons, all that you always wanted in this kind of games! It is also multi-platform (DOS, Win32, Linux and more!)
Main features:
- FULL SOURCE CODE AVAILABLE FREE (Under MIT license)
- Works on many platforms, including DOS, Windows and Linux!
- Supports all resolutions, like 320x200, 640x480, 1024x768, etc.; even those bizarre ones, like 160x120, 320x400, etc.
- Uses stereo positional sound (you hear the ships flying around you)
- Has a incredible particle system, that let all sorts of particle effects in the explosions, fire on the ground, the ships going down in flames,and the weapons can let a trail of smoke, beams, etc
- Has a dynamic fire, smoke and explosions system based on layers and on-fly rendering, that let show a massive destruction effect on the air and ground.
- Has a dynamic enviroment sub-engine to render rain, snow, etc.
- The ships explodes into pieces, and the builds on the ground blows up in a chain-explosion effect.
- Enemys of any size, and custom IAs and weapons.
- All kind of animated bad dudes, from tiny ones to big bad bosses.
- All the flying objects cast shadows over the background, with perspective correction.
- Support for animations and cinematic, with sound and subtitles.
- A on-fly translation system with UNICODE and UTF-8 support, that can translate on the fly all the GUIs to other language.
- Multiple weapons for player and enemies.
- Has original music sound-track.
- You can lower/raise the detail level, in low detail, the game runs good even on a 486 DX2!
- Original story, with cool movies.
- Realistic huge hi-res backgrounds levels.
- Original high quality stereo sounds and music
- Support for Spanish and English translation on-fly
- Black market shop to buy new weapons, upgrade ship, etc.
- GUI driven interface like the one used in Unre*l.
- You can Save / Load your game
<<less
Download (10MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1537 downloads
RAIDmon2 2.3

RAIDmon2 2.3


RAIDmon2 is a script to monitor PERC RAID controllers. more>>
RAIDmon2 is a script to monitor Dells PERC/4 RAID controller with SNMP.

It uses X-window (Tk at version 2.2, GTK in older ones) or STDOUT as output.

<<less
Download (0.021MB)
Added: 2005-04-07 License: Free To Use But Restricted Price:
1661 downloads
RWSecure 0.4

RWSecure 0.4


rwsecure parses the /var/log/secure file for invalid usernames or failed passwords to help protect against brute force. more>>
RWSecure application parses the /var/log/secure file for invalid usernames or failed passwords to help protect against brute force and similar attacks.
If there are more than three invalid or failed attempts by one IP, it will add that IP to your /etc/hosts.deny file.
Put this file in any directory of your choice and use the cron to run this program every
few minutes, hours, or days... adding this entry to your crontab will have it run every 5 minutes:
*/5 * * * * root /yourdirectory/rwsecure
This is just an example of a way to run it without user intervention.
Suggest you stop logging info level messages from auth, or log them in a seperate file, if you run this program every few minutes as misc cron messages can start to fill your logs.
Program will append to /etc/hosts.deny (however, this file can be changed by changing the variable in rwsecure, just vi rwsecure and make change the HostsDenypath to whatever you want)
Sample program output:
ALL: 82.140.81.26 # Added by rwsecure on Sep 17 18:18:01 2005
ALL: 67.15.20.58 # Added by rwsecure on Sep 18 04:42:01 2005
ALL: 211.78.142.116 # Added by rwsecure on Sep 18 06:22:01 2005
ALL: 130.215.226.185 # Added by rwsecure on Sep 19 04:26:01 2005
ALL: 70.85.221.46 # Added by rwsecure on Sep 21 09:26:01 2005
Enhancements:
- Improved handling of IPv6 and illegal users.
<<less
Download (0.010MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
944 downloads
PircBot 1.4.6

PircBot 1.4.6


PircBot is a Java framework for writing IRC bots quickly and easily. more>>
PircBot is a Java framework for writing IRC bots quickly and easily. PircBot has many features like an event-driven architecture to handle common IRC events, flood protection, DCC resuming support, ident support, and more. Its comprehensive logfile format is suitable for use with pisg to generate channel statistics. Full documentation is included, and this page contains a 5-minute step-by-step guide to making your first IRC bot.
PircBot allows you to perform a variety of fun tasks on IRC, but it is also used for more serious applications by the US Navy, the US Air Force, the CIA (unconfirmed), several national defence agencies, and inside the Azureus bittorrent client. But dont let that put you off - its still easy to use!
Enhancements:
- This release adds a new method to make it easy to identify with NickServ.
- This is useful on networks such as Freenode where a client must identify itself before it is able to send private messages.
<<less
Download (0.20MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
923 downloads
Gamma Low 0.1

Gamma Low 0.1


Gamma Low is an open-source, multiplayer strategy game. more>>
Gamma Low is an open-source, multiplayer strategy game where players in two teams fight for the dominance of a cellular system in a real-time, match-based environment.

In each team, one player is elected to be The Mind, the commander. A few other players are chosen to be his tactical helpers, called the Spirits and the other players form the working and attacking force of the team.

Gamma Low project is released under the GPL license.
<<less
Download (0.071MB)
Added: 2007-06-15 License: zlib/libpng License Price:
863 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5