A Lazy Sequence

19 Oct

Backbone

Backbone supplies structure to JavaScript-heavy applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing application over a RESTful JSON interface.
12 Dec

Ring 1.0.0 Released

Clojure's Ring, the HTTP abstraction and associated libraries, has reached 1.0.0. Great work by Mark McGranaghan, James Reeves, and the other contributors.
14 Feb

Bugs Everywhere

Distributed bug tracking software; supports multiple interfaces and backends (via Ian Bicking)
09 Apr

The Thing About Git

Ryan Tomayko talks about how GIT solves some VCS problems, with side notes about other systems such as SVN and BZR
28 Mar

HaskellDB Introduction

Introduces the HaskellDB API which provides a monadic DSL for relational database interaction backed onto two different general haskell DB APIs (HDBC or HSQL) – apparently unmaintained
22 Feb

Penumbra

An idiomatic wrapper for OpenGL in Clojure
22 Oct

docco

A javascript/coffeescript documentation generator.
01 Apr

templatemaker - Google Code

Given a list of text files in a similar format, templatemaker creates a template that can extract data from files in that same format.
14 Jul

Real World Haskell

A book, available for free online, about programming Haskell with a real world rather than theoretical or mathsy focus.
24 Apr

VMKit

A Substrate for Managed Runtime Environments. Apparently built on top of a number of interesting technologies, most notably LLVM.
30 Jun

Here be Dragons

Advances in problems you didnt even know you had. Short article on recent improvements to floating point to text algorithms.
25 Jul

All About Monads

Massive and detailed documentation for Monads in Haskell
26 May

js2-mode

Steve Yegge's JavaScript mode for emacs
27 Nov

Clojure at BackType

Nathan Marz shows how BackType uses Clojure and his Hadoop powered Cascalog system. In this video Marz introduces Cascalog and shows how they used it to build their influencer metrics
05 Feb

Die Geister

An asynchronous processing library for Clojure inspired by F# and C#'s async API.
24 Sep

When Ajax Attacks!

Slides for Simon Willison's web application security presentation
26 Mar

django-tagging application

Tagging support for django models, including form fields, template tags and a pile of helpful support functions
28 Sep

Browser Market Pollution

Paul Irish writes about the increasing problems facing web developers hoping to support Internet Explorer. This is one depressing read.
15 May

Emacs WebDev Environment

Instructions for setting up an (X)HTML editing environment for Emacs suitable for Web Developers.
02 Oct

Using JavaScript libraries in ClojureScript

A detailed article by Luke VanderHart on the various mechanisms in ClojureScript and Google Closure for using external javascript libraries in your ClojureScript projects.
18 Apr

Twisted interface to Erlang OTP in Launchpad

Twotp is an implementation of the Erlang node protocol written in Python using the Twisted networking engine. It makes possible to run an Erlang node in Python, like the Jinterface library of Erlang allows to do in Java. You can then call methods on an Erlang node or receive method calls.
02 Apr

Documentation for processing-0.50

A library to aid in the development of multiprocess programs in python. Implements the same API as threading does for threads and adds some more tools
23 Apr

Memcached Internals

Notes on the internals of memcached and some best practises to consider
05 Feb

Conduit

A stream processing library using arrows in Clojure.
18 Feb

Typeclassopedia [PDF]

A introduction to the various core typeclass provided by haskell that come from esoteric fields such as category theory.
16 Apr

Three Small Javascript Libraries

Oliver Steele presents three little Javascript libraries that provide a lot of power. Worth a look just for picking up ideas at least
05 Jan

Mercury

Mercury is a statically typed Logical programming language. It's type system includes agebraic data types, “modes” (whether an predicates parameters may be inputs or outputs), and definitions of the determinism a predicate provides (the number of values it generates on outputs).
22 Sep

Strange Loop 2011 Slides

All the slides to this years Strange Loop presentations as PDFs in one github repository.
24 Feb

Playing with Arrows

David R. Maclver's mechanical introduction to Haskell's Control.Arrow package. It looks at the functions rather than the abstraction.