Coding

Essays that reflect on how code creates the future

Building an Object Collection Manager with the SPL

Coding

First we are going to do a quick introduction to the interfaces we will be using. After that we...
Read More

The Mind Models of a Developer

Coding

The Interpreter – sees role as interpreting the back end processes to the user – application is a specialized gui to the...
Read More

Graphs in the database: SQL meets social networks

Coding

Graphs are ubiquitous. Social or P2P networks, thesauri, route planning systems, recommendation...
Read More

open without leaving process fragments in your terminal

Coding

open() { NO_ARGS=0 if $# -eq "$NO_ARGS" then echo " enter a program"; else $1 &>/dev/null & fi }...
Read More

PHP Validation and Sanitization with filters

Coding

One of the most common problems in web development in validating and sanitizing user inputted data. Often, we’re tempted to reinvent...
Read More

Howl

Coding

I saw the best minds of my generation destroyed by coding, starving hysterical naked, debugging...
Read More

The Insufficiency of SCRUM

Coding

Interesting analysis of creeping issues in SCRUM. Having recently adopted SCRUM I haven’t seen the problems described here yet, but...
Read More

Using gmdate()

Coding

Recently at work I came across an odd bug involving gmdate(). A client wanted us to post some information to them including two fields:...
Read More

Forking PHP

Coding

Interesting code used to fork long running processes in php. The first script, prefork.php, is for...
Read More
Close