November 2009
2 posts
Problems with Twitter's new Retweet - and a...
“If someone retweets you (new-style), you won’t see it (it’s not in your @-replies or main feed) - even if you follow them!”
Update (3 Mar): I was just chatting with my mate Sol from Tweetdeck and we realised the fix I described here doesn’t work any more. Ah well, it was nice while it lasted..
My twitter feed is a bit of a mess right now after I discovered a...
2 tags
PHP Trick: Catching fatal errors (E_ERROR) with a...
Implementing a custom error handler using set_error_handler() in PHP can be a useful technique (Google search for more info/examples)
Unfortunately, set_error_handler() doesn’t catch fatal errors - as the PHP docs say:
The following error types cannot be handled with a user defined function: E_ERROR, E_PARSE, E_CORE_ERROR, E_CORE_WARNING, E_COMPILE_ERROR, E_COMPILE_WARNING, and most of...