Al Gore office
Feb 18
Green Al Gore consuming power and paper.
Hints and tips of a web worker
Feb 16
Obvious/well known but always forgotten
sudo tail /var/log/syslog
sudo tail /var/log/messages
Feb 04
just a little piece of code to test php preg_match(). I used it to test regexp on urls with Zend_Cache_Frontend_Page
$regexp='\?page';//just a regexp (without delimiter)
checkPreg($regexp);
checkPreg($regexp,$_SERVER['REQUEST_URI']);
function checkPreg($preg,$url='http://domain.com/index.php?page=shop/cart2'){
$res=preg_match(sprintf('|%s|',$preg),$url);
echo $preg ." match with $url ? ";
if(false===$res){
echo 'ERROR';
} elseif(0 === $res) {
echo 'NON';
} else {
echo 'YES. Num = '.$res;
}
echo "<br />\n";
}
Dec 15
David Merrill demos Siftables | Video on TED.com

Dec 13
jQueryList.com is a new website listing all jQuery plugins + the examples, on one page. Useful too by its sorting by category :
Bookmark it immediatly !
