Categories
- Code (31)
- C# (4)
- emacs (4)
- Javascript (1)
- PHP (1)
- Python (6)
- Shell Script (2)
- silverlight (4)
- Blend (2)
- Sysadmin (3)
- unix (4)
- Code (31)
Meta
ad
Category Archives: unix
ashttp: vt100 screen scraping exported over HTTP
Originally wrote for logtop I just wrote a vt100 screen scraper that listen to a port and serve the screen over HTTP. Basically, you want a `top` (or logtop ;-) ) to be displayed in your website back office ? … Continue reading
Posted in Code, Python, Sysadmin, unix
3 Comments
nfsmount : rpc failed: 2
For those, here on the internet, asking themselves what is this f*cking `rpc failed: 2` while mounting an NFS, i’ts possible that teh response is here : Your NFS client, trying to mount the NFS share will use RPC to … Continue reading
Posted in Code, Sysadmin, unix
2 Comments
Yauib : Yet another useless IRC Bot !
After 2 years of … non blogging … I’m back ! This time I stopped C# (Oh yeah !) and I’m writing a lot of Python ! (Oh YEAH !) So to say HELLO I’ll present something useless : My … Continue reading
Posted in Python, unix
4 Comments
Exclude directories from recursive grep
How often are you using grep in subversionned folders like that : grep -rni foobar . | grep -v .svn Upgrade to grep 2.5.3 and use (alias it ?) grep -rni –exclude-dir .svn foobar . (or … stop using SVN … Continue reading