Posts Tagged ‘linux’

好吧 終於我也投奔到kde了

Thursday, September 3rd, 2009 at 06:47 | 1 comment
Categories: blah, linux

It’s my first time writing something in perl, the code is not very efficient and for now it can only display info of cpu, memory, bandwidth and uptime.

# Configuration
$eth = "eth0";
 
# Script
Xchat::register("Sysinfo", "0.1", "System Information Displayer");
Xchat::print("Sysinfo 0.1 Loaded.");
Xchat::hook_command("uptime", "uptime");
Xchat::hook_command("os", "os");
Xchat::hook_command("bw", "bw");
Xchat::hook_command("cpu", "cpu");
Xchat::hook_command("mem", "mem");
 
sub uptime {
$uptime = `cat /proc/uptime | awk ‘{printf \$1}’`;
$_day = 60 * [...]

Sunday, August 30th, 2009 at 20:23 | 0 comments
Categories: Programming, linux

I used to redirect the output to /dev/null, but sometimes it’s not good enough. It’s much better to just turn off stdout and stderr.

$ command 1>&- 2>&- &

Monday, August 24th, 2009 at 09:32 | 0 comments
Categories: linux

I am so sick of the msn plugin that comes with pidgin, it takes years to login every time
with msn-pecan the login process took me less than 1sec, which IMO is much better.
you can grab the debian installer package here if you are using 64bits linux and don’t feel like to compile it yourself

Wednesday, February 4th, 2009 at 20:52 | 0 comments
Categories: linux

compiled from official stable tarball

Friday, October 31st, 2008 at 20:16 | 0 comments
Categories: linux
Tags: , , ,
Friday, October 31st, 2008 at 13:24 | 0 comments
Categories: linux

It’s been a while since the last build, coz I was pretty occupied by a lot of things lately
Last Changed Rev: 3689
Last Changed Date: 2008-09-05 02:03:39 +0200 (Fri, 05 Sep 2008)

Saturday, September 6th, 2008 at 21:30 | 1 comment
Categories: linux

I just don’t understand why nobody is updating the debian repository :/

Thursday, July 10th, 2008 at 20:56 | 0 comments
Categories: blah

a lightweight but powerful enough to use socks proxy

Thursday, July 10th, 2008 at 20:53 | 2 comments
Categories: blah

it’s just for archiving so that i won’t have to compile it again next time when i have to reinstall the system.

Sunday, July 6th, 2008 at 18:57 | 0 comments
Categories: linux
Page 1 of 212
TOP