A helper lib that copes with complicated type computations !
Run load tests for your web application. Mostly ab-compatible interface, with an option to force requests per second. Includes an API for automated load testing.
The PyPy Python VM, in JavaScript
Node.js module for storing JSON data on the file system
Pretty prints strings to console if it contains valid JSON
Web Page Inspection Tool. Sentiment Analysis, Keyword Extraction, Named Entity Recognition & Spell Check
Serialisation library for JavaScript that understands object graphs
empty
empty
A mutation-based fuzzer for JSON, XML, HTML forms, text and binary data
a little globber
A JSINF reference implementation
A http(s) proxy middleware
An intuitive, object-orientated approach to a Neural Network library.
Fast HTML parser. Based on ashi009's fast-html-parser.
Run load tests for your web application. Mostly ab-compatible interface, with an option to force requests per second. Includes an API for automated load testing.
A simple tool to shuffle messages in an AMQP queue.
<a href="http://apostrophenow.org/"><img src="https://raw.github.com/punkave/jquery-projector/master/logos/logo-box-madefor.png" align="right" /></a>
Download ebook pdf mobi epub Alice Hoffman Property Of, The Drowning Season, Fortune's Daught is available now
A tool that identifies executable files used in automatic CoreCtrl profiles
wip
wip
A library for parsing and analysing SMT traces.
A commmand line utility that allows for batch coping & renaming with globs.
"minimal std is a feature" - a coping rust shill.
a subset of C compiler for Atari 2600
a subset of C compiler for Atari 7800
A simple CLI interface to basic Matrix room admin tasks
Fast and zero-cost stun message decoder and encoder.
A library for handling round sessions.
Easily cope with numeric literals in generic Rust code
Faraday Middleware coping with variety of json (patch, hal, etc)
home-assistant does not cope well with bluetooth on raspberry pi. This gem sends event to HA.
A multi-language code generator to cope with Hyrum's law
Variable name is an important key for developers to understand what codes do. This cope checks instance variable names.
# Sparrow is a really fast lightweight queue written in Ruby that speaks memcached. # That means you can use Sparrow with any memcached client library (Ruby or otherwise). # # Basic tests shows that Sparrow processes messages at a rate of 850-900 per second. # The load Sparrow can cope with increases exponentially as you add to the cluster. # Sparrow also takes advantage of eventmachine, which uses a non-blocking io, offering great performance. # # Sparrow is a in-memory queue but will persist the data to disk when receiving a term signal. # # Sparrow comes with built in support for daemonization and clustering. # Also included are example libraries and clients. For example: # # require 'memcache' # m = MemCache.new('127.0.0.1:11212') # m['queue_name'] = '1' # Publish to queue # m['queue_name'] #=> 1 Pull next msg from queue # m['queue_name'] #=> nil # m.delete('queue_name) # Delete queue # # # or using the included client: # # class MyQueue < MQ3::Queue # def on_message # logger.info "Received msg with args: #{args.inspect}" # end # end # # MyQueue.servers = [ # MQ3::Protocols::Memcache.new({:host => '127.0.0.1', :port => 11212, :weight => 1}) # ] # MyQueue.publish('test msg') # MyQueue.run # # Messages are deleted as soon as they're read and the order you add messages to the queue probably won't # be the same order when they're removed. # # Additional memcached commands that are supported are: # flush_all # Deletes all queues # version # quit # The memcached commands 'add', and 'replace' just call 'set'. # # Call sparrow with --help for usage options # # The daemonization won't work on Windows. # # Check out the code: # svn checkout http://sparrow.googlecode.com/svn/trunk/ sparrow # # Sparrow was inspired by Twitter's Starling