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
Author Archives: Julien Palard
emacs: standard input is not a tty
Did you ever tried something like : $ find -name ‘*.c’ | xargs emacs or $ grep -rl snmp . | xargs emacs and got the error “emacs: standard input is not a tty” ? That’s normal, as the stdin … Continue reading
Posted in Code
Leave a comment
Automating GNU screen startup
At work I use GNU screen with one window per server (ssh connection), and when I loose my screen, it takes minutes to rebuild the naming and the ssh connections … So I searched and found a PHP version on … Continue reading
Posted in Code
2 Comments
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
squid: (101) Network is unreachable when DNS returns IPv6
If you have a Squid proxy configured on a machine that have no IPv6 access, and try to reach an IPv6 powered site, you squid will try to reach the site using IPv6 (I use squid 3.1.6 from Debian Squeeze) … Continue reading
Posted in Sysadmin
Leave a comment
emacs: Highlighting errors for c, python, and other languages
Hi ! Today we’ll see how to highlight syntax errors in emacs, with exemples for C and Python. First you should learn about flymake-mode here : http://www.emacswiki.org/emacs/FlyMake In a nutshell Flymake is a minor mode to perform on the fly … Continue reading
Posted in Code, emacs, Python
Leave a comment