Author Archives: Cyril

Private navigation browser for iPhone / iPad

Ok – I’ve found a great app to browse the web on iPhone and iPad that supports incognito mode : Private. Private is a private navigation only browser : you open it and you surf, but as soon as you … Continue reading

Posted in iPhone | Leave a comment

addEventListener and cleanup with removeEventListener

Add/Remove events listeners to/from an object In javascript, you can easily add events on obejct using addEventListener method, and remove them with removeEventListener. Example : Click-me function p712_onclick() {   alert(’You clicked on me’);   // Remove listener   this.removeEventListener(’click’, … Continue reading

Posted in Web technologies | Leave a comment

Booking.com easter egg in headers

I must admit I really was surprised ! I was looking at booking.com headers and here is what I read : X-Recruiting: Like HTTP headers? Come write ours: booking.com/jobs That is really a special way to speak about its jobs … Continue reading

Posted in Web technologies | Leave a comment

:nth-child() CSS property

Today, I’d like to talk about the CSS property :nth-child. It is a pseudo class introduced in CSS 3, and that can select child nodes by their position number in a child list. It’s very useful to color background of … Continue reading

Posted in Web technologies | Tagged | Leave a comment

Amazon AWS SimpleDB review : pros and cons

Amazon has a webservice for a simplified database access called SimpleDB : you can store anything you want in the cloud. SimpleDB : a simplified database Unlike relational databases, SimpleDB just gives the possibility to store heterogeneous informations in the … Continue reading

Posted in Web technologies | 1 Comment

Puzzle Game for iPhone and iPad : Trainyard

Here is a very good puzzle game for iPhone / iPad I have downloaded recently, with a very good price/time ratio : TrainYard. TrainYard : a “Train”-puzzle game (really ???) TrainYard is a game where you have to build paths … Continue reading

Posted in iPhone | Leave a comment

Verify an SSL Certificate for a server

Introduction In general, you need 3 different files for an SSL Certificate : a private key for the server (.key or .pem), a certificate (.cer or .crt) given to the client for SSL-encryption, and the trust chain (.chain or .txt) … Continue reading

Posted in Web technologies | Leave a comment

Safari Library for Extensions Developers

Extensions for Safari available for Windows and Mac OS X versions Safari team has published a new API for extensions development. Extensions are officially available since Safari 5.0, through a JavaScript API that really looks like Chrome API. Some new … Continue reading

Posted in Web technologies | Tagged , | Leave a comment

HTML5 Desktop Notifications for Firefox

Here it is ! I recently released the HTML5 Desktop Notifications for Firefox Add-on v1.0.0. This extension adds the webkitNotifications object to all window objects of every page. So what ? (Information for users) The desktop notifications are used, for … Continue reading

Posted in Firefox HTML5 Notifications | 1 Comment

PIE.htc : CSS3 for everyone, even Internet Explorer !

Every single HTML developer knows that it’s really hard to make CSS styles to give the same render in every Internet browser ! Each browser has its own specifications : Chrome has webkit-, Safari does not, Firefox adds -moz … … Continue reading

Posted in Web technologies | Tagged , | Leave a comment