1239 projects tagged "MIT/X"
A Simple Version Control System is an easy to install and easy to to use version/revision control system. It differs from most other version control systems in that it is designed to keep track of files in place. It does not allow any changes to be made to files; all changes require the users to change files externally with FTP or SSH access. It is very easy to set up and use. Users do not need to work with repository, branches, commit, and check-out files. All a user needs to do is upload the changes files and click Update, or if enabled, just wait for it to be updated automatically.
ABC Path Generator is a program and a Perl library that generates layouts of ABC Path based on the input of a random number generator. Giving different seeds to the generator will yield different layouts. ABC Path is a puzzle game in which one should position the letters from "A" to "Y" in a 5*5 grid based on clues. It is featured on brainbashers.com. ABC Path Generator makes use of depth-first-search to find usable final paths, and then assigns the clues for it, also using DFS.
ABC Path Solver is a Perl program and library that automatically solves an ABC Path game while giving the reasoning. ABC Path is a puzzle game in which one should position the letters from "A" to "Y" in a 5*5 grid based on clues. It is featured in brainbashers.com. ABC Path Solver uses a mixture of deduction and solving by trying several branches, which should allow it to solve all initial boards.
ARSCIF is a powerful framework that makes it trivial to use asynchronous remote-script callback invocation (AJAX) techniques. It helps the developer by working out problems such as data and character encoding, concurrency control, browser implementations, and so on, allowing the creation of pages with sophisticated, dynamic features.
AS3WavSound allows you to embed wav files into your project compiled with the open source Flash SDK compiler. Normally this is not possible and circumvented either by: using a licensed expensive editor that does this for you, or by the very ugly .swf workaround. This library does it natively and cleanly.
AVL Array is an STL-like container for C++ that fills the gap between vector (or deque) and list, providing both fast random access and fast insertion/removal, all O(log n). This is not a map; in an avl_array, the "keys" always range from 0 to size-1, and they automatically change on insertion or removal. As a sequence container, like vector and list, it respects the order of elements.
Abmash provides Web application automation based on visible rendered output. It is all about interacting with a browser as humans would do, including AJAX and forms. It lets you perform tasks like "Click the red button", "Give me all text elements directly below an image", or "Click 'Login' and wait until the login form is loaded, then type in my credentials and submit the form".