gcui: gui for google chart api

12 December 2007 // javascript.

Gcui is a browser-based tool for creating google chart API urls.

Current version is 0.1 β

The author is not affiliated with google. ;)

goto gcui

generating combinations in php

10 September 2007 // php. stuff.

This is just a follow-up to the previous post, describes how to enumerate combinations using php iterators.

more...

generating permutations in php

16 August 2007 // php. stuff.

Generating permutations (all possible combinations) of characters or array elements is asked often in php groups. Although simple, the answer is relatively verbose, so I thought I post it here for later reference.

more...

makrell, the macro processor

23 July 2007 // php. things.

makrell is a simple but powerful macroprocessor for php language. It is aimed to simplify creating complex documents by using macros. A macro is a (typically short) chunk of text that replaces another (typically much longer) chunk. Macros act like functions in programming: once defined, they can be used over and over again.

The applications of makrell are templating, domain specific languages and php preprocessing.

more...

printing a plain-text table

16 January 2007 // php. stuff.

php function that creates a plain text table from array of arrays

more...