Posts Tagged ‘plugin’

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

如題
requirements 是 firefox + greasemonkey
啟用後的效果如下

Tuesday, June 2nd, 2009 at 18:42 | 1 comment
Categories: Programming

上班無聊隨便寫了個….
This plugin can retrieve the most recent 10 updates from your personal rss on last.fm, please notice that there is delay for the rss to get updated.

Monday, March 9th, 2009 at 17:08 | 0 comments
Categories: Programming

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
TOP