To avoid another heaving PHP/other language sorting process on results from complex SQL queries I wanted to reorder my way, I’ve discovered an interesting property in SQL to order according special values using SQL FIELD (documentation on MySQL FIELD here, and scroll). Example : -- Let's I have a table of articles […]
Yearly archives: 2011
Sometimes you will need to replace an HTML <select> box by a custom one in order to apply special styles. Life might not allow you to use beautiful frameworks such as Jquery or Dojo, so you will have to manage without them, just with your own two hands… A first […]
Replace an HTML select box with onchange without jquery
Auto entreprise, suite et fin. Ou comment arrêter un massacre administratif inutile. J’ai fermé il y a plusieurs mois mon auto entreprise avec grande joie. J’avais créé mon auto entreprise parce que mes besoins professionnels étaient les suivants : Pouvoir encaisser légalement le fruit de mon travail et de mes […]
Auto entreprise suite et fin
One day I needed to get the function name from the function itself. Here is what I found. function functionName(fn) { var name=/\W*function\s+([\w\$]+)\(/.exec(fn); if(!name)return 'No name'; return name[1]; } via http://bytes.com/topic/javascript/answers/640929-obtain-function-name
get a function name from the function in Javascript
Date: 2011 Technologies: WordPress, PHP5, CSS3, HTML5, Javascript Details: Website for INSA’s Toulouse Ô Talents Association, to promote equality of chances for students with different backgrounds. URL: http://otalents-insat.org/
Association Ô Talents
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
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 […]