December 2010
3 posts
5 tags
RedisExtended
I decided to share my small library that i plugged on top of PhpRedis :
https://github.com/Mikushi/RedisExtended
Basically offers some extra functionality using Redis. I’ll be pushing more stuff, stack and message queue as soon as i have it fully tested locally.
5 tags
The fun of writing PHP Extensions
Lately i’ve been digging into writing PHP extension, for multiple reasons, first knowing the language from the inside can never hurt (and i would recommend for every PHP developer to take a look at the PHP internals, you’ll learn a lot), secondly, PHP being my primary language, i wanted to contribute, i’m not much of a QA person so writing test, no thanks, so i decided to take a...
3 tags
Asynchronous JavaScript Loading
Last week i stumble upon a JavaScript problem, how to load a JavaScript asynchronously across all platforms. Usually i would just put the script tag at the bottom of my page to prevent any blocking, but in some case (advertisement) the script tag needed to be on the top.
The default script we were given looks like this :
The problem with this is pretty simple, it only behaves as a...