Keran’s masterpiece – toy service station
I like DIY, and our product manager Keran has created this toy service station, I think this deserves to be blogged about Good job Keran!
I like DIY, and our product manager Keran has created this toy service station, I think this deserves to be blogged about Good job Keran!
Server Load: Just a quick tutorial on drawing the server load bar chart in php: serverload.php function get_server_load($windows = 0) { $os = strtolower(PHP_OS); if (strpos($os, “win”) === false) { if (file_exists(“/proc/loadavg”)) { $load = file_get_contents(“/proc/loadavg”); $load = explode(‘ ‘, $load); return $load; } elseif (function_exists(“shell_exec”)) { $load = explode(‘ ‘, `uptime`); return $load; }… Read More »
Sometime around this Christmas eve, the untethered jailbreak of iOS 4.2.1 devices will be able have untethered jailbreak, with “one-click” . Good news! source: redmondpie.com
Late last week, I started a hash reserve lookup service, and today the database has just grown over 5 million entries. By the end of this week I reckon we will 10 million entries, hopefully we can have better search result by then. Fingers crossed!
Ever had problem choosing the right MySQL storage engine? Here is a simple matrix for you to make your decision Is your table is going to be inserted, deleted, and updated much much more than it is going to be selected? InnoDB If you need full-text search MyISAM If you prefer/require relational database design InnoDB… Read More »
I have published a hash reverse lookup service http://hash.limsbros.com/ It provides: a web page for searching md5 and sha1 hashes restful service for search md5 and sha1 hashes Currently I am still importing the word list, so if you don’t get a result from your hash, please try it again in a few days.
Quoted from the release notes … _________________________________________________________________________ .’ `. | .o .o .oooooo. o8o | | .8′ .8′ d8P’ `Y8b `”‘ | | .888888888888′ 888 ooo. .oo. .ooooo. .oooo.o oooo .oooo.o| | .8′ .8′ 888 `888P”Y88b d88′ `88b d88( “8 `888 d88( “8| |.888888888888’ 888 ooooo 888 888 888 888 `”Y88b. 888 `”Y88b. | |… Read More »
I was writing a Python program to perform some routine tasks on twitter API, and came across this very helpful article for creating daemon process in Python… thought you might be interested… A simple unix/linux daemon in Python
Came across this Chrome extension tonight, works very well, so I thought you might be interested. https://chrome.google.com/extensions/detail/cccpiddacjljmfbbgeimpelpndgpoknn?hl=en
Poor Rob…