English Version: A nice book to discover HTML5 and the futur of the web. The author, Mark Pilgrim Engineer at Google, is describing the main features of HTML5 from the very basic level like new semantic elements: <audio>, <video>, <header>, <footer> to  the most advanced use of canvas, geolocalisation, local […]

HTML5: Up and Running by Mark Pilgrim


Using one and one hosting, I wanted to install WordPress. I had an Error 500. Too Bad. Here is the trick : Check that your root .htaccess file has the following information : # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} […]

Error 500 wordpress 1and1


Recently I have been seeking for business events about entrepreneurship and web around la Cote d’Azur, in South of France. My objectives are simple : to see what’s going on, to meet people, to understand how to do for when I’ll  be ready and on top of that, to understand […]

Web and Entrepreneurship on the Cote d’Azur



1
These past years JavaScript has been the language on the web. Through Ajax, we can do amazing dynamics things on a web page. From what I remember, when I started my first web page a while ago in 2002, Javascript was considered evil. Hard to program, poor documentation, and to […]

Why we love JavaScript


It displays “Busy” in the shell but it’s not started? Executing “apache_start.bat” says something like : (OS 10048)Une seule utilisation de chaque adresse de socket (protocole/adresse réseau/port) est habituellement autorisée.  : make_sock: could not bind to addres s 0.0.0.0:80 ? Then, if you are using Skype then the solution is […]

Xampp/Wampp Apache Crashes on Start


Je ne sais pas si c’est juste moi ou la population entière, mais j’ai un problème avec l’administratif. J’ai rempli les formalités au mois de juillet 2010 pour créer ma micro entreprise. Mon but initial était de pouvoir vendre des produits achetés sur internet dans la région où je réside, […]

Galère de l’auto entreprise



4
I created my own company ! By the end of November, I will be available to work freelance for you, all around the world ! Hire me, get a professional web Engineer for your online projects. Get the French touch ! Don’t hesitate to contact me to tell me about your […]

I am an entrepreneur now.


How to get an object real coordinates when there is a zoom or an scroll bar on the page ? var scrOfX = 0, scrOfY = 0; if (typeof(window.pageYOffset) == 'number' ) { //Netscape compliant scrOfY = window.pageYOffset; scrOfX = window.pageXOffset; } else if (document.body && (document.body.scrollLeft || document.body.scrollTop)) { […]

Coordinates when there is an offset in the page


1
I participated a while ago in Smashing Magazine CSS3 Contest. The aim was to play with CSS3. So I used my non-talent to design a menu enabling actions on a content, without Javascript. I used the general sibling selector ~, pseudo class :active,  and some other well know stuff, such […]

CSS3 Smashing Magazine Contest



Pidgin Configuration for Gtchat
Because you would like to use Pidgin as Gtalk for group chat… This is how to create a conference into Pidgin with multiple persons and a Gmail account. I assume people you want to talk to have also a Gmail account. Start a new discussion. And then, it’s just configuration […]

Gmail Group Chat conference in Pidgin



1
I hate rewrite rules, and they hate me too. So I used a PHP file. <?php $sRadNewAdress='/wp'; if (isset($_SERVER['QUERY_STRING'])&&($_SERVER['QUERY_STRING']!='')) { $sQstring = $_SERVER['QUERY_STRING']; $aString = explode('/', $sQstring); $sNewAdress = $sRadNewAdress."/".$aString[1]."/".$aString[2]."/".strtolower ($aString[4]); } else { $sNewAdress = $sRadNewAdress; } header('Location: '.$sNewAdress); //Redirection HTTP header('HTTP/1.1 301 Moved Permanently'); header('Status: 301 Moved Permanently'); […]

Dotclear to WordPress Rewrite rule