Articles

FTT Migration from Subversion to Git

Last month I released the Feed Tracking Tool project (aka FTT) on GitHub . I reconstructed the code history from old tarballs. In the mean time, my friend at Uperto managed to recover the original Subversion repository from very old backups. Here is how I migrated the old SVN repository to …
➟ Read more

Network commands

Interfaces Get the list of all wireless networks reachable by the wlan0 interface: 1$ iwlist wlan0 scanning | grep ESSID Get some information about open ports: 1$ netstat --taupen 2$ netstat --lapute Watch network activity in real-time: 1$ watch -n 1 "lsof -i" Reboot machine if the 192.168.0.254 …
➟ Read more

Feed Tracking Tool released under an Open-Source license

I’ve just open-sourced the Feed Tracking Tool project (aka β€œFTT”), my first (and only) Ruby on Rails  experience. This tool was developed within Uperto , the company I currently work for, for its internal needs. The project had an ancestor written in 2006 that was based on Pylons . It was …
➟ Read more


Fixing messed-up encoding in MySQL

Currently working on my e107 Importer plugin , I was confronted today with badly-encoded data coming from my databases. e107 migrated to full UTF-8 years ago , but I must have messed the upgrade process at the time. That was my conclusion when I took a close look to my tables …
➟ Read more