The problem : The problem is famous : how to keep multiple computers in sync in order to have access to our data no matter where we are, no matter which computer we are using. It isn’t the first time I wonder about how to improve this aspect of my computer setup and I must [...]

On tuesday this week, my iMac started acting up. It would boot successfully, run normally for a while but sometimes hang from 20 to 60 seconds in a row with the spinning beach ball cursor. I quickly identified two things : hangs would occur when launching apps or triggering the launcher (spotlight, Alfred) which meant [...]

Recently, I was given a Virtual Machine development appliance to work with. The machine was running Debian which I like but it had been installed in French which I … dislike. First, I find Debian to be not so well translated and I’d rather use it in English. Second, I use qwerty keyboards so the [...]

As I understand, this post might soon be outdated if the next version of Virtual Box does manage to natively run VMWare Player appliances. Still, this version hasn’t be released yet and, since the VMWare Player doesn’t exist for OS X, I had to convert an appliance from VMWare player to Virtual Box. Here are [...]

The plugin used on the homepage of this blog to display featured articles is called Related Posts with Thumbs. It will display the last X posts published in a given category. For flexibility, I created a categoruy called “Editorial” for the posts which should be displayed with the plugin. The problem was : I didn’t [...]

Here’s a quick code snipet allowing to parse some content (a string), detect the URLs it can contain and make them clickable links. The method uses preg_replace and a regular expression to detect URLs. 123function detectLinks($content) { return preg_replace(’/\s((http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.\/]+\.[a-zA-Z\/]{2,3}(\/\S*)?)/’, ‘<a href="${1}">${1}</a>’, $content); }   Let’s test this snipet by doing : 12$content = "This is [...]

Since I successfully reinstalled Ruby on my server last week to reinstall my Teambox, I now have a Ruby stack I can use to tryout other Ruby/RoR projects. This time, I decided to try out Typo, a RoR blog engine which is currently developed and maintained by Frédéric De Villamil and Matijs van Zuijlen. The [...]

The YouTube API allows a user to retrieve a lot of information about an user’s profile and his videos (his uploads, his favorite videos). For each of these videos, it also allows to retrieve a lot of information like duration, keywords, comments and trackbacks… These information are accessible without the need of an API key. [...]

Recently, I stumbled on the Textmate droplet by Henrik Nyh allowing me to quickly open a file or a folder in Textmate by dragging it to the Finder toolbar. Since I had just setup iTerm2 and learned to script it with AppleScript, I figured I’d put the two together and create my own iTerm2 droplet. [...]

Teambox is an open sourced project collaboration software with simple task managements, file sharing and wiki collaborations for small teams. Teambox can be used in a hosted mode (Saas version with various plans depending on how many team members and projects you need to manage) on teambox.com or the code can be downloaded from GitHub [...]

« go backkeep looking »