Archive for February, 2010

Top 7 Gmail Labs Features I Can’t Live Without

As a Web-based email, gmail was cool. However, with the added features of gmail labs, it is now beyond awesomeness!. Lots of additional features that can be activated through google labs. Starting from ‘time killer’ game to feature that is greatly increases productivity.

Find Your Computer Driver Easily

During several months having new PC, I was not aware of my operating system security. I did install anti virus, but after a while, my anti virus is not up-to-date. This causes my PC is infected with some virus, so I have to reinstall my operating system.
I tried to install my operating system. Replace the [...]

Powerful Registry Cleaner for your PC

When I was a newbie user, I installed many software without considering its benefit for my system. I just wanna try to installed them all.
One day, when I was using my PC, blue screen appears. It’s freak me out. I don’t know what to do. Fortunately, my friend told me that the blue screen [...]

7 Samples Of Professional PHP/Programmer Resume

I was in the way of fixing my current online resume and I though a few googling would reveal some good samples. I found some and though out that someone out there might be needed this resources as well. Here it is:

Stan Taylor
A.J. Brown
Mike Brittain
Alan T. Miller
A nice one page resume featuring C’thulhu.
An example from [...]

Yay! Got Google Buzz!

Just logged in on my gmail account and received surprise from Google! I was selected as early google buzz user! It also appeared on my google profile page.

Reset File Association in Linux From Nautilus

If you have ever experienced, for example, installing an application that turned out change the way how a file is opened. For example, to open a txt file in gnome, gedit is used. But, at a time, you install, geany or mousepad. When you want to open the txt file again, instead of calling gedit, [...]

Add Custom Column To Media Page

How do you get full image URL in Media Library? I bet you will go through this step:

Go to Media » Library
On Media Library list, click file name.
Form Edit Media appeared. Select File URL and use it.

For single image operation, this should be enough. But, if you did have a lot of pictures, this operation [...]

Get Only n Words From String

Here’s the code:

function trim_word( $words, $howmany = 1){
$x = explode(" ", $words);
if(count( $x) <=$howmany ){
return $words;
} else {
return implode(" ", array_slice( $x, 0, $howmany));
}
}

Here’s the output:

$words = "this is string that is long enough that I want to trim it.";

echo trim_word($words, 10) . "\n";
//this will echo: this is string that is long enough that I [...]

Adsense under Image: Reloaded

A few month ago, my friend Jauhari contacted me, asking specific question about a wordpress plugin called Adsense Under Image. At that time, I crawl the code and though that it would be cool if it can have multiple images and or set randomly where the adsense code appeared. I try to contact the developer [...]