-
April 27, 2012
Taxon: Redis-backed Tagged Data Store ➝
Taxon is an implementation of a tagged data store on top of Redis. It allows you to organize your data by tag, and perform arbitrary complex queries with and, or, and not operations to retrieve the data.
-
March 30, 2012
Transpiling Languages: An Intro with Brainfuck ➝
Languages that are implemented with source-to-source compilers, or transpilers, are becoming more popular in web development. A high-level but conceptually complete overview is given, with an example Brainfuck to C transpiler.
-
March 25, 2012
Partial Function Application in PHP ➝
Starting with PHP 5.3, using partial function application in your apps is a viable alternative to some existing design patterns.
-
March 18, 2012
Pathfinding with Python, Graphs, and A-Star ➝
Using some basic knowledge of graphs and the A* algorithm, we can generalize pathfinding for games by being aware of the graph properties of maps.