-
Exq Scheduler
A cron like job scheduler for Exq that’s also compatible with Sidekiq and Resque. It is designed to run on more than one machine for redundancy without causing duplicate jobs to be scheduled.
Tags: Scheduler, Elixir -
xml_stream
An Elixir library for building XML documents in a streaming fashion. We built this library for a reporting system that could generate Excel Spreadsheets with millions of rows while maintaining a constant memory overhead.
Tags: Stream, Elixir -
httpolice-devtool
A lint-tool for the HTTP, integrated with Chrome devtools.
It intercepts and sends the HTTP headers from your browser to a server running httpolice, where they are analysed, and a detailed report is sent back to the browser where it’s displayed.
Tags: Linter, Chrome -
µ
µ is a JavaScript library for encoding/decoding state (JavaScript object) in URL. Define a spec for the state, based on which the encoding is done. Manage the state with versioning.
Tags: Encoder, JavaScript -
FakeDynamo
In-memory dynamodb emulator for Amazon DynamoDB written in ruby. We built it to help us develop applications on dynamodb in development and test environments without incurring the costs and the latencies. This also allows us to host the non production versions of the application outside of EC2.
Tags: DynamoDB, Ruby -
gotunnel
Gotunnel allows you to share server running on localhost, over the net. localtunnel allows you to do the same, but at the time of this writing, didn’t support WebSocket. And well, we wanted to do a project in Golang.
Read blog post about the implementation.
Tags: HTTP tunnel, Go -
Tide
TypeScript Interactive Development Environment for Emacs - written in the early days of typescript when emacs support for it was spotty. Since then, it has grown into a mature package and featured in the front page of typescriptlang.org.
Tags: Emacs, TypeScript -
memcachex
A memcached client written in pure Elixir which aims to provide good performance and solid error recovery from network connection failures.
Tags: Memcached, Elixir -
PDF slide splitter
A web app to split PDF’s with multiple slides per page, to single slide per page. An exploration in webpack, PDF, Google App Engine and more.
Tags: webpack, JavaScript -
Mini-Mocha
Mini-Mocha is a small experiment at understanding DSL of mochajs.org. About 100 lines of code is enough, to implement the synchronous DSL that mocha supports. Supporting asynchronous DSL isn’t much tougher. If you do hack it, please look at our careers page.
Read blog post about the implementation.
Tags: JavaScript -
Devmirror
Devmirror is an experiment at remote debugging. May be, an experiment gone wild. The idea is to render a remote user’s browser screen, to a developer. With devtools open at developers end, which is connected to the users browser session.
In other words, developer see user’s interaction. And can change the page live, for the user. It’s like local development, but actual browser session is probably happening on the other side of the world.
Watch a talk about it.
Tags: Debugger, JavaScript -
devsync
chrome devtools (WebInspector) hack, which allows your CSS/JavaScript edits from WebInspector to be saved directly to the localhost files. It was a winner at Yahoo! Hacknight.
Tags: Editor, JavaScript