Articles

Heroic journey to RAID-5 data recovery

Last week there was a power grid failure which break down my server’s RAID array. I have no UPS (as I’m a skinflint) and no automatic email alerts (because I’m too lazy to set it up). As a result, for 5 days, my 3-disk RAID-5 array …
➟ Read more

How-to add proxy support to Feedalizer ruby library

Here is a little code snippet which monkey-patch Feedalizer to let it grab web content through a HTTP proxy: # HTTP proxy settings HTTP_PROXY_HOST = "123.456.78.90" HTTP_PROXY_PORT = 8080 # Calculate proxy URL HTTP_PROXY_URL = "http://#{HTTP_PROXY_HOST}:#{HTTP_PROXY_PORT}" # Monkey patch feedalizer to support page grabbing through a proxy require 'feedalizer' class Feedalizer …
➟ Read more

Python ultimate regular expression to catch HTML tags

!!! alert alert-warning “Disclaimer” This is a dirty hack! To parse HTML or XML, use a dedicated library like the good old: - [`BeautifoulSoup`](https://pypi.python.org/pypi/beautifulsoup4) - [`lxml.html`](https://lxml.de/lxmlhtml.html) 1 year and 3 months ago I’ve came with a PHP regexp to parse …
➟ Read more


I wrote the best Open-Source Payroll Software of the world!

… at least according Smile , a French consulting company. They studied Open-Source ERPs in their latest white paper. It is available for download here . And here is what they said about ERP5 at page 77: ERP5 va même jusqu’à gérer les paies alors qu’aucun autre ERP libre n’est …
➟ Read more