Monthly Archives: January 2010

Simple mail server report

Here is a small script I wrote a few minutes ago. It gather some informations from the local machine and send them by email to the administrator (me). I plays nice with a @weekly rule in Cron. It is easily … Continue reading

Posted in None | Tagged , , | View Comments

About Apple’s Magic Mouse

In short: wow! I recognize my not really inventive attitude, but I think there is no better summarize about my feelings. Look Well, just by itself, the mouse is really beautiful. I admit it would not be worse with a … Continue reading

Posted in None | Tagged | View Comments

Quicksort C++ implementation

Hello. I just had to implement a quicksort algorithm version in C++ for an exercise. Here is what I’ve done: The code on friendpaste.com #include <iostream> #include <vector> using namespace std; void swap(int &a, int &b) { int temp; a … Continue reading

Posted in None | Tagged | View Comments

Time Machine, FreeBSD and AFP are on a little boat

Okay, I just had set up a backup system from a MacBookPro (let’s say, the client) to a FreeBSD-powered server (quite boringly, the server). I chose Time Machine because of it’s nice and polished interface and its deep integration with … Continue reading

Posted in None | Tagged , | View Comments