Archive for July, 2007

Hello world!

I now blog here and it feel really cool to blog on your own webspace. It just makes you feel you’re for real.

Vulnerability In Firefox 2.0.0.5

Came across this post and would like to caution people who uses Firefox’s password management feature. It has been reported that is has a vulnerability which allows malicious website to steal passwords.

According to the post, if you let firefox remember your password, you are at a big risk from the flaw. I always see that feature as a security risk, no wonder I don’t use it. I better rely on my current means of remembering passwords than browser based password management.

To me, not only mailicious website can steal passwords but malicious users of your machine too can steal passwords.

There is a discussion on going as to if that feature should be removed or not. To me alone, it should be completely zapped or made as an extention to be downloaded and used only if the user want to take the risk.

Using PHP curl to fetch post from del.icio.us

Been playing with del.icio.us’s api to pull my del.icio.us ( very hard writing that ) post. php’s curl made everything smooth. Below is the code. Feel free to comment on it.

$fetch_url ="https://api.del.icio.us/v1/posts/all?";
$curl = curl_init();
curl_setopt( $curl, CURLOPT_URL, $fetch_url );
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $curl, CURLOPT_USERPWD,"your username:your password");
curl_setopt( $curl, CURLOPT_CONNECTTIMEOUT, 30 );
curl_setopt( $curl, CURLOPT_TIMEOUT,5 );
curl_setopt( $curl, CURLOPT_POST, 1 );
$response = curl_exec( $curl );
curl_close( $curl );
header("Content-Type:text/xml");
echo $response;

Translating The Easy Way With Google Translate


It amazes me anytime Google brings out a product, they just do a wow and impressive stuff. Today I got notified by a colleague of mine at the office if I know about Google Translate , my hungry for new products from Google, I quickly loaded the page before he could finish with his sentences, I was on the site already.

As traditional of Google, it was in beta. I played around with it to translate from English to French to test my lousy French. The most amazing of it all is that, it translates website too to all the languages available. It translated my site from English to French and it worked like a charm.

Now I feel, most translators will be heading for a new profession as this really works almost perfect. It amazes me how it just works and the most fascinating thing about it is, it is beta but so intelligent that, it just works. What I’m hoping for in the future is for it to have almost all the major local languages. I miss my Twi, Ga, Ewe, Hausa, Swahili etc and I know others too have missed theirs. Google you rock!!