Did you know you can add Facebook Chat protocol to Pidgin IM using a 3rd-party plugin made by Eion Robb (he also made Skype for Pidgin). Get it now from http://code.google.com/p/pidgin-facebookchat/.
This is a Facebook chat plugin for Pidgin and libpurple messengers. It connects to the new Facebook Chat IM service without the need for an API key. It was created by Eion Robb in May 2008 and has had major code additions by Casey Ho and Mark Doliner who joined the project at the end of 2008.
Posted in Asides, Ubuntu
|
This is a collection of guide how to install Apache Httpd Web Server complete with latest PHP (as Apache mod), MySQL for Ubuntu. As a bonus, I even through in an additional guide to install PHPMyAdmin. Please do note that most of this guide can be found elsewhere which is listed at the bottom of the guide.
Continue reading…
Posted in MySQL, PHP, Ubuntu
|
Did you know, in Linux (especially under EXT3) you can only have less or equal to 31,998 subfolder under a folder.
There is a limit of 31998 sub-directories per one directory, stemming from its limit of 32000 links per inode – Wikipedia
Sometime you might get irritating with the amount of temporary files appearing in all your project when code using Aptana IDE but here a bash script that can help you automatically remove those temporary file without much hassle.
> cd /bin
> sudo vi cleanAptana
Then paste the following script
find . -type f -name ".tmp*" -exec rm -f {} \;
You might also need to change the chmod first before using the script
> sudo chmod 0777 cleanAptana
To execute the command.
> cd /var/www/myproject
> cleanAptana