Al Gore office

No Comments




GTD: Getting Things Done

Originally uploaded by Emborg

Green Al Gore consuming power and paper.

  • Share/Bookmark

Reminder : logs to check in first place on linux

No Comments

Obvious/well known but always forgotten

sudo tail /var/log/syslog

sudo tail /var/log/messages

  • Share/Bookmark

Meeting users’ requests

No Comments

Good idea for a future product baseline.

  • Share/Bookmark

test preg snippet

No Comments

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";
}
  • Share/Bookmark

Best jQuery Video Plugins | jQuery Wisdom

No Comments

Best jQuery Video Plugins | jQuery Wisdom.

  • Share/Bookmark

Another vision of Human-computer interfaces (TED)

No Comments

David Merrill demos Siftables | Video on TED.com

  • Share/Bookmark

A StackOverflow clone in PHP/MySql

No Comments

PHP StackOverflow Clone | anant garg

  • Share/Bookmark

RBL Forms

No Comments

RBL Forms, un outils de création de formulaires pour jQuery | Dator Blog

  • Share/Bookmark

jQueryList : 1-page list of jQuery plugins and examples (to bookmark !)

No Comments

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

  • Ajax plugins
  • CSS plugins
  • Form plugins
  • Upload plugins
  • etc.

Bookmark it immediatly !

  • Share/Bookmark