Best Registry Cleaner

Thursday, July 9, 2009

Currently due to there are so much problems that we have regarding broken registry file, we have to use registry cleaner software to solve those problems. Unfortunately to use and choose the best software to be used is not an easy task. Since if we use the wrong software, sometimes the problem that we have getting worse. The software is not become the cure,instead the new problem. That's why registry cleaner 4u, a website dedicated to provide useful information registry cleaner software is trying to give some clue to choose the best product on the market, for further information, please visit the site by clicking here

Read more...

I know my love - The corrs

Sunday, June 21, 2009


I know my love by his way of walking
And I know my love by his way of talking
And I know my love dressed in a suit of blue
And if my love leaves me, what will I do?

Chorus:
And still she cried, I love him the best,
And a troubled mind, sure can know no rest
And still she cried, bonny boys are few,
And if my love leaves me, what will I do?

There is a dance house in maradyke
And there my true love goes every night
He takes a strange girl upon his knee
Well now dont you think that that vexes me?

Chorus

If my love knew I can wash and wring
If my love knew I can sew and spin
Id make a coat of the finest kind
But the want of money sure leaves me behind

Chorus

I know my love is an arrant rover
I know hell wander the wild world over
In dear old ireland hell no longer tarry
An american girl hes sure to marry

Chorus
Chorus

What will I do?

Read more...

Linux 32 bit vs Linux 64 bit

Saturday, June 6, 2009

Today, A friend of mine has given a good explanation through the following links below, in order to get better understanding about the topic:


Take a look these links :




Read more...

SSH refusing the connection

Friday, May 29, 2009

A few days ago, i was wondering, why the SSH daemon of my development server suddenly died. Died in here it means i was unable to do any establish connection to my server through SSH connection. Since i'm the big fans of Unix like environment (Linux), i checked syslog and authlog-FYI i use Debian Linux 4.0 (etch), finally i got the answer. The problem due to there was any ssh brute force attack from an IP address that known as China's IP address,since then i had to change the default port (22) to other secret port. The behavior of SSH when there are so many failure connection,it will be refusing any connection to take higher security level.

The second problem i had is almost the same case, but the SSH daemon did not refusing any connection ,after i did deeply check finally i got the answer. The problem almost similar but the 2nd problem caused by the brute force attack to FTP server. Just take care with both ports, it looks like we have to do additional steps in order to ensure our server is secure.

Read more...

Linode VPS

Sunday, May 3, 2009

Currently I am in the progress of moving our data center from current data center (everyone-theplanet) to linode.I decided to use Newark,new jersey USA,since our targeted visitors are Europe,Canada and north east America .Linode new jersey uses NAC backbone operator, i'm really excited with the ping time of data center especially for Europe area.Before this i had been looking the best value VPS out there. I found two VPS provider,that seems the best value, these providers are slicehost and linode.
At the first time, i was choosing slicehost, but finally i decided to use linode,and now I am being their customer.The reason i used to decide these things are :
-Linode has the better price ,compare with slicehost you can get more storage space, Dedicated RAM,and off course less money.I use Linode 540 (29.95 USD/month) ,where i can get 540 megabyte,the competitor package of slicehost is slice 512 (38 USD/month), you only get 512 megabyte RAM.
-Linode fully supported 32 bit architecture,as we know 32 bit application uses less memory than 64 bit.In other side,slicehost only support 64 bit, that uses more memory.
-In Linode we can choose the one of four data centers out there,if you are not satisfied with the data center you can move to other data center, you can contact Linode support through their ticket support system to make this happen.
-And best of all, i like their cool control panel to build and create disk node.

Since i just signed up, currently, i would not able to let you know, how performance and good of their services is.

Read more...

IE Png Transparent image bug

Monday, January 26, 2009

There's any a strange bug in Internet Explorer, It recognized started at version 5.5.Unfortunately Until the last version of IE (IE 7 - As far as i know),Microsoft has not fixed it.Today as we know,IE is the most commonly used web browser in the world.The bug is the lack of handling Transparent PNG image.
For the detail information and the solution of the bug please take a look here

Read more...

PostgreSQL Division Trick

Monday, January 19, 2009

I was trying to divide a number and the result is always wrong, i tried to calculate the simple division SQL in pgsql,

SELECT (30/50) as count_result;

and the result was zero (0), it should be 0,6 rather than 0...i do not know, what i have done wrong,At the first time i experienced the problem, i thought it was bug, Until i found the following information as shown below :

Operations on integer arguments will return an integer result. To get
the value you're expecting from that division, you'll need to cast one
of the numbers to a floating point type.

Any of the following will produce the result you wanted:

select cast(30 as real) / 50;
select cast(30 as numeric) / 50;
select 30::real / 50;
select 30 / 50::float;


Hope it helps someone...who might be experiencing the same problem..


Read more...