Archive Tutorial

Written by davidonzo on 19/03/2009, Filled in OpenSource, Tutorial
Installing the cURL library on Leopard Mac OS X is very easy to do. First of all download the sources from the official web site. Unpack the tarball in your /usr/sources/ directory and join it. Downloading the file today, you'll get the curl-7.19.4 versi ==>
Comments (0)
Written by davidonzo on 08/01/2009, Filled in MioBlog, OpenSource, Web, Tutorial
Time to begin some nice improve to this blog. But I need a correct list of mobile device user agents, so I write an array including all mobile user agent's browser I found surfing the web.   The list is available downloading this file. I hope it w ==>
Comments (7)
Written by davidonzo on 30/10/2008, Filled in OpenSource, Web, Tutorial
I'm trying to have time for a blog template restyling. In order to do it I write a simple file to create live png, jpeg and gif thumbelins.   This script require the GD compiled on your PHP installation.   <?php    $file = $_G ==>
Comments (0)
Written by davidonzo on 15/10/2008, Filled in OpenSource, Web, Tutorial
Easy to think, easy to use   function in_array(thaArray, element){  var res=false;   for(var e=0;e<thaArray.length;e++){      if(thaArray == element[e]){        res=true;  &n ==>
Comments (11)
Written by davidonzo on 11/10/2008, Filled in OpenSource, Tutorial
I was working on some template modification of this blog, when I dediced to make a php image extractor function. I don't love to use big class with thousend of code lines to parse html.   Looking on PHP5 core it seems to be some DOM function avail ==>
Comments (5)