what if YUM hangs forever???

Sometimes, YUM may just hang forever even you didn’t do anything. What’ve you gotta do now?? Simple! 1. kill all running YUM: killall -9 yum 2. clear running YUM’s files: rm -f /var/lib/rpm/__db.*

Yahoo Smileys/Emoticons for Pidgin

If you are familiar with Yahoo Smileys, that should be happier when you use Pidgin and see this thing 😀 If you want to, just download Yahoo Smileys Then, un-tar and copy the folder into ~/.purple/smileys/ (on Linux) or “C:Program FilesPidginpixmapspidginemotes” (on Window$) Finally, restart your Pidgin and open ToolsPreperences (Press Ctrl+P), go to Smiley […]

Pidgin Plugins for Windows hahahha…

after a hard-working day, I’ve got some cocking things eventually. hehehe… These are some hand-built plugins for PIDGIN 2.x on M$ Windows. 1. Buzz with Pidgin by pressing CTRL+G http://www.overinter.net/dll/buzz-beta3.dll 2. Send a message to group (all contacts in group include invisible buddies as well) http://www.overinter.net/dll/groupmsg.dll 3. Send a message to ALL BUDDY LIST http://www.overinter.net/dll/broadcast.dll […]

Pidgin Plugins: be better “Buddy list” appearance…

1. When using Pidgin, I always have a “long list” of buddy. It always takes a long time to scroll from the beginning to the end of the list. So, I modified a Pidgin plugin to shortent the list like this: 2. And this is the plugin: http://www.overinter.net/deb/pidgin-blistops_2.3.1-1_i386.deb 3. How to install it? wget http://www.overinter.net/deb/pidgin-blistops_2.3.1-1_i386.deb […]

Pidgin Plugins: Group message with Pidgin on Ubuntu/Debian

How to send a message to a group with Pidgin??? This is a Pidgin plugin I’ve modified and compiled. 1. get the file: wget http://www.overinter.net/deb/pidgin-groupmsg_2.2.0-2_i386.deb 2. install it sudo apt-get install libglib1.2 sudo dpkg -i pidgin-groupmsg_2.2.0-2_i386.deb 3. it’s done restart your lovely Pidgin and open Plugins window (Tools/Plugins or pressing Ctrl+U) There is a plugin […]

Pidgin Plugins: Buzz with Pidgin on Ubuntu/Debian Linux

Please use newer version: http://www.anhtt.net/deb/pidgin-yahoobuzz_1.0.2piwener-1_i386.deb How to use Buzz (Ctrl-G on conversation window) in Pidgin??? 1. get the file wget http://www.overinter.net/deb/pidgin-yahoobuzz_1.0-1_i386.deb 2. install it sudo dpkg -i pidgin-yahoobuzz_1.0-1_i386.deb 3. it’s done restart your lovely Pidgin, open the Plugins window (Tools/Plugins or Ctrl-U). you will see a plugin called “Buzz support for Yahoo”. check it on […]

Download Ubuntu/Debian packages faster!

1. install [url=http://www.overinter.net/deb/prozilla_2.0.3-1_i386.deb]prozilla[/url] 2. create 2 files [code] root@anhtt-laptop:~# cat bin/apt-path #!/bin/bash echo http://ftp.ussg.iu.edu/linux/ubuntu/`apt-cache show $1 | grep ‘Filename:’ | sed -e ‘s/Filename: //g’ | head -1` root@anhtt-laptop:~# cat bin/apt-proz #!/bin/bash for i in $* do filename=`apt-path $i` if [ -f /var/cache/apt/archives/`basename $filename` ] then echo ‘Exists already’; else sudo proz –directory-prefix=/var/cache/apt/archives/ -k 16 `apt-path […]