PHP
opera mobile
i have to say that, so far, opera mobile (demo/beta mind you) is the best web browser available for my…
A class for normalizing mixed value containers
There are times (like when dealing with simplexml) when you just wish you had an array that you can iterate…
Building and using large scale arrays
Here’s a real world example of what I was talking about earlier (using all parts of an array as relevant…
2.0.1 to 2.0.2 patchfile
Sometimes us unix folk like to have a patchfile to upgrade our software (especially scripts) so I made one for…
On the note of arrays… Building large MSQL inserts with php, the easy way
$cols[0] = “title”; $vals[0] = “”CodeWord: Apoalyptik””; $cols[1] = “url”; $vals[1] = “”http://blog.apokalyptik.com/””; $cols[2] = “feed_url” $vals[2] = “”http://blog.apokalyptik.com/?feed=rss2″”; $query=”INSERT…
This might be of use to someone
I’ve been writing PHP for a long time now. And one of the things that I see quite often is…
Generic function/class names
This is especially true when you’re writing a library which is meant to be absorbed into a larger codebase, but…
Playing with loopholes
The most amusing things happen when you’re been coding a long time. I found, and used a “hole” in one…