77 projects tagged "Linux"
The Parsing Expression Grammar Template Library (PEGTL) is a C++0x library for creating parsers according to a Parsing Expression Grammar (PEG). Grammars are embedded as regular C++ code, created with template programming (not template meta programming). These hierarchies naturally correspond to the inductive definition of PEGs. The library extends on the subject of PEGs with new expression types, actions that can be attached to grammar rules, and mechanisms to ensure helpful diagnostics in case of parsing errors. PEGs are superficially similar to Context-Free Grammars (CFGs).
hMUD is a classic Telnet MUD client that runs in major Web browsers (IE, Firefox, and Chrome). Internally it's a Flash client, but you do not interact directly with Flash; it just does a bridge between the HTML and the MUD server. For the user, it's just an HTML page using Javascript (like most Web sites). So it is largely accessible by modern computers. It works on any Telnet MUD, and it parses ANSI colors, transforming the output to HTML. It has basic features like command history, logging output in HTML (so that you can save a log with the same output currently in your screen), and other conveniences.
siwapp is a Web application meant to help manage and create invoices in a simple, straightforward way. It can manage invoices with different serial numbers (as rectification invoices), provide printable PDF versions of the invoices with a professional look & feel, save drafts of your invoices and continue editing them later, and automatically generate invoices on a periodic basis.
P2P-Fusion is a software system that supports audiovisual creative activities and makes it easy for anyone to create, reuse, and share audio and video productions over the Internet legally, without costly servers and complicated system management. Fusion binds together a peer-to-peer network, a distributed semantic database, social enrichment features, support for embedded licenses, and a social media application toolkit into an integrated easy-to-use solution.
eLua (Embedded Lua) aims to introduce the programming language Lua to the embedded software development world. Lua is the perfect example of a minimal yet fully functional language. The aim of the project is to have a fully functional Lua development environment on a microcontroller (Lua interpreter, modules appropriate for microcontroller environments, and editor) without the need to install a specific toolchain on the PC side.
delegate.c implements an abstract function pointer by capturing a user-specified callback signature -- delegate() -- and exposing it through a simple interface -- invoke(). It provides something loosely approximating lambda expressions; or even more analogous, C# delegates. It includes a wrapper to support libevent callbacks to functions not matching the required libevent callback signature.
Nagios 4 iPhone is a Nagios interface for the iPhone. It does not require any modifications on your Nagios servers. The server part of this software collects statistics on several Nagios servers, serves a few static files, and generates a JSON response. The client part handles the display of the data on the iPhone.
Node is similar in design to and influenced by systems like Ruby's Event Machine or Python's Twisted. Node takes the event model a bit further: it presents the event loop as a language construct instead of as a library. In other systems, there is always a blocking call to start the event loop. Typically, one defines behavior through callbacks at the beginning of a script, and at the end starts a server through a blocking call like EventMachine::run(). In Node, there is no such start-the-event-loop call. Node simply enters the event loop after executing the input script. Node exits the event loop when there are no more callbacks to perform. This behavior is like browser Javascript: the event loop is hidden from the user.