operations
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1050
Irregular Operations Database 1.0
Irregular Operations Database is a project used for tracking flight delays. more>>
Irregular Operations Database is a project used for tracking flight delays.
Irregular Ops is a CGI script for intranet use to track irregular operations (flight delays) for scheduled airlines.
<<lessIrregular Ops is a CGI script for intranet use to track irregular operations (flight delays) for scheduled airlines.
Download (0.013MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
979 downloads
Tactical Operations: Crossfire 1.6
Tactical Operations: Crossfire is a tactical shooter based on Unreal Tournament 2004. more>>
Tactical Operations: Crossfire is a tactical shooter based on Unreal Tournament 2004.
Tactical Operations: Crossfire is a fast paced first person online shooter in which two teams, terrorists and special forces, duke it out in a wide variety of environments with various objectives to accomplish. From rescuing hostages kept in a small desert town in Saudi-Arabia to preventing the bombing of an oil refinery on the Caspian sea shore. There are no less than fourteen official maps to choose from!
Each map is played for a certain amount of time and the team having won the most rounds when the time runs out is declared the winner. A round can be won either by completing the objective set for that team, such as rescueing the hostages, or by simply eliminating all players on the opposite team.
A large number of weapons is avaialable for both teams, which can be purchased by each player at the start of the round. Out of the thirty weapons currently available, theres bound to be a weapon to suit your style of playing, be it either up close and personal with the Benelli Nova tactical shotgun or sneaky sniper work with the Dragunov SVD.
Tactical Operations: Crossfire continues where the popular Tactical Ops: Assault on Terror left off, with many classic weapons returning and remakes of some of the original maps. To play TO:C, you will need Unreal Tournament 2004 installed and patched to the latest version (3369). Tactical Ops: Crossfire can be played on Windows, Linux and Mac systems.
<<lessTactical Operations: Crossfire is a fast paced first person online shooter in which two teams, terrorists and special forces, duke it out in a wide variety of environments with various objectives to accomplish. From rescuing hostages kept in a small desert town in Saudi-Arabia to preventing the bombing of an oil refinery on the Caspian sea shore. There are no less than fourteen official maps to choose from!
Each map is played for a certain amount of time and the team having won the most rounds when the time runs out is declared the winner. A round can be won either by completing the objective set for that team, such as rescueing the hostages, or by simply eliminating all players on the opposite team.
A large number of weapons is avaialable for both teams, which can be purchased by each player at the start of the round. Out of the thirty weapons currently available, theres bound to be a weapon to suit your style of playing, be it either up close and personal with the Benelli Nova tactical shotgun or sneaky sniper work with the Dragunov SVD.
Tactical Operations: Crossfire continues where the popular Tactical Ops: Assault on Terror left off, with many classic weapons returning and remakes of some of the original maps. To play TO:C, you will need Unreal Tournament 2004 installed and patched to the latest version (3369). Tactical Ops: Crossfire can be played on Windows, Linux and Mac systems.
Download (697.8MB)
Added: 2007-03-04 License: Freeware Price:
997 downloads
Bulk Meter Flow and Operations 1.2.5
Bulk Meter Flow and Operations project provides a Web-based application to manage water meter readings. more>>
Bulk Meter Flow and Operations provides a Web-based application to manage water meter readings.
<<less Download (1.4MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
823 downloads
Tactical Operations: Crossfire Server 1.6
Tactical Operations: Crossfire is a tactical shooter based on Unreal Tournament 2004. more>>
Tactical Operations: Crossfire is a tactical shooter based on Unreal Tournament 2004.
Tactical Operations: Crossfire is a fast paced first person online shooter in which two teams, terrorists and special forces, duke it out in a wide variety of environments with various objectives to accomplish. From rescuing hostages kept in a small desert town in Saudi-Arabia to preventing the bombing of an oil refinery on the Caspian sea shore. There are no less than fourteen official maps to choose from!
Each map is played for a certain amount of time and the team having won the most rounds when the time runs out is declared the winner. A round can be won either by completing the objective set for that team, such as rescueing the hostages, or by simply eliminating all players on the opposite team.
A large number of weapons is avaialable for both teams, which can be purchased by each player at the start of the round. Out of the thirty weapons currently available, theres bound to be a weapon to suit your style of playing, be it either up close and personal with the Benelli Nova tactical shotgun or sneaky sniper work with the Dragunov SVD.
Tactical Operations: Crossfire continues where the popular Tactical Ops: Assault on Terror left off, with many classic weapons returning and remakes of some of the original maps. To play TO:C, you will need Unreal Tournament 2004 installed and patched to the latest version (3369). Tactical Ops: Crossfire can be played on Windows, Linux and Mac systems.
<<lessTactical Operations: Crossfire is a fast paced first person online shooter in which two teams, terrorists and special forces, duke it out in a wide variety of environments with various objectives to accomplish. From rescuing hostages kept in a small desert town in Saudi-Arabia to preventing the bombing of an oil refinery on the Caspian sea shore. There are no less than fourteen official maps to choose from!
Each map is played for a certain amount of time and the team having won the most rounds when the time runs out is declared the winner. A round can be won either by completing the objective set for that team, such as rescueing the hostages, or by simply eliminating all players on the opposite team.
A large number of weapons is avaialable for both teams, which can be purchased by each player at the start of the round. Out of the thirty weapons currently available, theres bound to be a weapon to suit your style of playing, be it either up close and personal with the Benelli Nova tactical shotgun or sneaky sniper work with the Dragunov SVD.
Tactical Operations: Crossfire continues where the popular Tactical Ops: Assault on Terror left off, with many classic weapons returning and remakes of some of the original maps. To play TO:C, you will need Unreal Tournament 2004 installed and patched to the latest version (3369). Tactical Ops: Crossfire can be played on Windows, Linux and Mac systems.
Download (311.6MB)
Added: 2007-03-04 License: Freeware Price:
974 downloads
Arithmetic Operations Simulation Library 0.01
Arithmetic Operations Simulation Librarys aim is to develop an open source library to simulate heavy arithmetic operations. more>>
Arithmetic Operations Simulation Librarys aim is to develop an open source library to simulate heavy arithmetic operations efficiently.
Finding different ways to solve a problem has been an interesting way to relax for many people. Not only they derive some kicks out of it, but as a side effect they develop much deeper insight into the problems enabling them to work out solutions under different constraints easily.
Here you will find discussion/hints to solve some common programming problems in efficient ways, supported with code that you can try.
DSP Programming Tricks
Often support for many heavy arithmetic operations goes missing to reduce the chip cost for marketability reasons, or during chip development stages. And we programmers have to make for the lack of these.
Accessing recent N items in history
This problem attracted my attention during DSP guest lectures by Mr. Ganesh Bhokare at PUCSD in later half of 2005. Various programming solutions to this problem would be.
Maintain a circular buffer in an array of N (or N+1) items. This will require support for MOD operation.
In case N is a power of 2, bitwise-anding with (N-1) can be used in place of MOD.
If neither N is a power of 2, nor MOD support is available?
Enhancements:
- This version supports finding the first 1/0 bit from left/right (lsb/msb), 16-bit unsigned numbers multiplication, division and mod operations, and also special cases of division by 3.
<<lessFinding different ways to solve a problem has been an interesting way to relax for many people. Not only they derive some kicks out of it, but as a side effect they develop much deeper insight into the problems enabling them to work out solutions under different constraints easily.
Here you will find discussion/hints to solve some common programming problems in efficient ways, supported with code that you can try.
DSP Programming Tricks
Often support for many heavy arithmetic operations goes missing to reduce the chip cost for marketability reasons, or during chip development stages. And we programmers have to make for the lack of these.
Accessing recent N items in history
This problem attracted my attention during DSP guest lectures by Mr. Ganesh Bhokare at PUCSD in later half of 2005. Various programming solutions to this problem would be.
Maintain a circular buffer in an array of N (or N+1) items. This will require support for MOD operation.
In case N is a power of 2, bitwise-anding with (N-1) can be used in place of MOD.
If neither N is a power of 2, nor MOD support is available?
Enhancements:
- This version supports finding the first 1/0 bit from left/right (lsb/msb), 16-bit unsigned numbers multiplication, division and mod operations, and also special cases of division by 3.
Download (0.010MB)
Added: 2006-05-15 License: GPL (GNU General Public License) Price:
1258 downloads
OS Independent Atomic Operations 1.00 revision 1
OS Independent Atomic Operations is a project that intends to develop an OS-independent atomic operations macro library. more>>
OS Independent Atomic Operations is a project that intends to develop an OS-independent atomic operations macro library with a common API for the C programming language as a cross-platform alternative to the uncoordinated efforts by OS developers.
As multi-core CPUs and multi-processor computer systems become more and more common, efficient synchronisation between concurrent execution units becomes more important. Atomic operations, that is operations which cannnot be interrupted, are needed to implement semaphores, reference counters and lock-free algorithms.
Operating systems generally provide atomic operation macros but there is no common API and no coordination between vendors and developers of different systems. Thus library and application developers are facing a dilemma. They can take advantage of one of the existing APIs for atomic operations but their software will then be tied to a particular operating system.
Enhancements:
- The initial release contains the Common AO API draft and a skeleton macro library.
- To complete the macros, the project will need contributors with inline assembly skills for various CPU architectures.
<<lessAs multi-core CPUs and multi-processor computer systems become more and more common, efficient synchronisation between concurrent execution units becomes more important. Atomic operations, that is operations which cannnot be interrupted, are needed to implement semaphores, reference counters and lock-free algorithms.
Operating systems generally provide atomic operation macros but there is no common API and no coordination between vendors and developers of different systems. Thus library and application developers are facing a dilemma. They can take advantage of one of the existing APIs for atomic operations but their software will then be tied to a particular operating system.
Enhancements:
- The initial release contains the Common AO API draft and a skeleton macro library.
- To complete the macros, the project will need contributors with inline assembly skills for various CPU architectures.
Download (0.006MB)
Added: 2007-07-25 License: MIT/X Consortium License Price:
828 downloads
Navy SEALs: Covert Operations for Quake 3 Arena Beta 1.9
Navy SEALs: Covert Operations is a Total Conversion or Modification for Quake III Arena. more>> <<less
Download (53.2MB)
Added: 2006-03-02 License: Freeware Price:
1358 downloads
Hanihani Operation Sanctuary 1.0
Hanihani Operation Sanctuary project is an English adaptation of a Japanese visual novel game. more>>
Hanihani Operation Sanctuary project is an English adaptation of a Japanese visual novel game.
The girl that fell out of the blue.
And the protagonists life, which began to take a turn little by little into the realm of the extraordinary starting from that very day.
- Nao-kun, if you dont get up soon, youre going to be late.
The new school term started today. The protagonists childhood friend, Honami, has kept telling him that hes not a child anymore, and yet continues to come to wake him up. They proceed as they always have to "Hasumidai Academy", which stands atop a hill ... but this time around, as second-year students.
- Naoki, Im going on ahead of you!
And the protagonists cousin, Matsuri, zips past the two of them. After having lost both parents in a terrible accident 5 years ago, the protagonist Naoki Kuzumi was taken in by Matsuris parents. And now, Matsuri herself -- who had been so opposed to Naokis moving in back then -- has become a freshman at Hasumidai Academy.
These ordinary, ordinary days, stretching on forever.
... but then, one day, up on the roof of school ...
Enhancements:
- RTM, all platforms.
- Initial page release. Currently in QC. Expect RTM for all platforms this weekend.
<<lessThe girl that fell out of the blue.
And the protagonists life, which began to take a turn little by little into the realm of the extraordinary starting from that very day.
- Nao-kun, if you dont get up soon, youre going to be late.
The new school term started today. The protagonists childhood friend, Honami, has kept telling him that hes not a child anymore, and yet continues to come to wake him up. They proceed as they always have to "Hasumidai Academy", which stands atop a hill ... but this time around, as second-year students.
- Naoki, Im going on ahead of you!
And the protagonists cousin, Matsuri, zips past the two of them. After having lost both parents in a terrible accident 5 years ago, the protagonist Naoki Kuzumi was taken in by Matsuris parents. And now, Matsuri herself -- who had been so opposed to Naokis moving in back then -- has become a freshman at Hasumidai Academy.
These ordinary, ordinary days, stretching on forever.
... but then, one day, up on the roof of school ...
Enhancements:
- RTM, all platforms.
- Initial page release. Currently in QC. Expect RTM for all platforms this weekend.
Download (MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1076 downloads
Sys::PortIO 0.1
Sys::PortIO is a Perl module to perform direct port I/O from Perl. more>>
Sys::PortIO is a Perl module to perform direct port I/O from Perl.
SYNOPSIS
use Sys::PortIO;
port_open($portnum);
write_byte($portnum, $value);
$value = read_byte($portnum);
port_close($portnum);
This module provides a Perl interface to the low-level port I/O operations provided by Linux, FreeBSD, or OpenBSD. Among other things, this is useful for writing Perl scripts that interface with parallel, serial, or joystick ports.
<<lessSYNOPSIS
use Sys::PortIO;
port_open($portnum);
write_byte($portnum, $value);
$value = read_byte($portnum);
port_close($portnum);
This module provides a Perl interface to the low-level port I/O operations provided by Linux, FreeBSD, or OpenBSD. Among other things, this is useful for writing Perl scripts that interface with parallel, serial, or joystick ports.
Download (0.72MB)
Added: 2007-04-13 License: Perl Artistic License Price:
932 downloads
XML::DOM::DOMImplementation 1.44
XML::DOM::DOMImplementation is a information about XML::DOM implementation. more>>
XML::DOM::DOMImplementation is a information about XML::DOM implementation.
The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
The DOM Level 1 does not specify a way of creating a document instance, and hence document creation is an operation specific to an implementation. Future Levels of the DOM specification are expected to provide methods for creating documents directly.
METHODS
hasFeature (feature, version)
Returns 1 if and only if feature equals "XML" and version equals "1.0".
<<lessThe DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
The DOM Level 1 does not specify a way of creating a document instance, and hence document creation is an operation specific to an implementation. Future Levels of the DOM specification are expected to provide methods for creating documents directly.
METHODS
hasFeature (feature, version)
Returns 1 if and only if feature equals "XML" and version equals "1.0".
Download (0.11MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1191 downloads
Fortress 0.3
Fortress is a simple script driven framework for performing security scans. more>>
Fortress is a simple script driven framework for performing security scans. The core of the application is an application which will execute testing scripts written using the embedded LUA scripting engine.
The scripts may perform almost arbitrary operations, including making HTTP requests, conducting port scanning, and taking advantage of several other provided primitives.
<<lessThe scripts may perform almost arbitrary operations, including making HTTP requests, conducting port scanning, and taking advantage of several other provided primitives.
Download (0.076MB)
Added: 2005-10-26 License: GPL (GNU General Public License) Price:
1478 downloads
edanator 1.03
edanator is an intuitive graphical binary and hex calculator. more>>
edanator is an intuitive graphical binary and hex calculator. Each nibble is displayed in hex and binary. Clicking on the button (hex nibble or binary bit) changes the value. Bit and nibble shifting is supported via dedicated buttons. The project supports variable widths per word (up to 64- bits), three words (each on a different row), and mathematical operations between words.
Enhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
<<lessEnhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
Download (0.007MB)
Added: 2007-03-27 License: LGPL (GNU Lesser General Public License) Price:
944 downloads
Hyperic HQ 3.1
Hyperic HQ is a distributed infrastructure management system. more>>
Hyperic HQ project is a distributed infrastructure management system whose architecture assures scalability, while keeping the solution easy to deploy.
HQs design is meant to deliver on the promise of a single integrated management portal capable of managing unlimited types of technologies in environments that range from small business IT departments to the operations groups of todays largest financial and industrial organizations.
<<lessHQs design is meant to deliver on the promise of a single integrated management portal capable of managing unlimited types of technologies in environments that range from small business IT departments to the operations groups of todays largest financial and industrial organizations.
Download (MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
842 downloads
Small Operation Center for Unix 1.2 build 060420
Inspired by famous MRTG and information system operation experience. more>> Inspired by famous MRTG and information system operation experience. This sofware comes with the following features:
Cross platform
This program based on java technology and supposed to run on any system support J2SE without problem.
Plug and play
It is not necessary to deal with windows service or unix cron job now. Simply supply correct SNMP parameters and you are ready to see whats happening on your system.
Centralized monitor
Receive syslog event from all your hosts. Also monitor resource utilization on multiple hosts at the same time.
Mobile technology
With our leading software developed for mobile phone,you can easily monitor device utilization through GPRS network anytime and anywhere.
Internationalization
Currently english and tranditional chinese supported<<less
Download (7.06MB)
Added: 2009-04-21 License: Freeware Price: Free
185 downloads
WorldForge::Eris 1.3.12
WorldForge::Eris is designed to simplify client development. more>>
Eris is designed to simplify client development (and promote code reuse) by providing a common system to deal with the back-end Atlas tasks. Notably, Eris encapsulates most of the work in getting Atlas entities available on your client, logging into a server, and managing updates from the server.
Once the entities are made available locally, Eris also manages updating them as required. Thus it can be considered as a session layer above Atlas, providing persistent (for an entire gaming session) objects as opposed to transient Atlas ones.
WorldForge::Eris project handles the client-side implementation of the meta-server protocol, and querying game servers; out-of-game (OOG) operations (via the Lobby and Rooms), and most important in-game (IG) operations such as entity creation, updates and movement.
<<lessOnce the entities are made available locally, Eris also manages updating them as required. Thus it can be considered as a session layer above Atlas, providing persistent (for an entire gaming session) objects as opposed to transient Atlas ones.
WorldForge::Eris project handles the client-side implementation of the meta-server protocol, and querying game servers; out-of-game (OOG) operations (via the Lobby and Rooms), and most important in-game (IG) operations such as entity creation, updates and movement.
Download (0.28MB)
Added: 2007-01-29 License: GPL (GNU General Public License) Price:
999 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 operations 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