Thursday, November 30, 2006

Psiphon : Firewall Hoppers to Fight Censorship

I read an interesting project developed by experts at University of Toronto. This project is called Psiphon.

With this project, an Internet user who live in a censored country can use server in uncensored country to access the Internet. And all the web traffic between users is encrypted and secure. A very good project for privacy.

So let's download the software on Dec. 1, 2006 and try it out.

Generate Secure Password Online

I found out a website that can help us in generating secure password. It's called SafePasswd.

Here is a screenshot when I generated a secure password (not anymore :D) :


Wednesday, November 08, 2006

Resize Images Using convert

A friend of mine has a lot of images. Those images are very beautiful. Unfortunately I found out that the image size was very big. One of them has 2592x1944 pixels dimension and of course the size is gigantic (1MB) (!).

I remembered sometimes ago I played a little bit with "convert", an application to :

convert between image formats as well as resize an image,
blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.

Convert is a tool available in ImageMagick package.

So here is the command to resize that big image :

convert -resize 648x486 Picture\ 021.jpg Picture\ 021a.jpg

Notes :

- For -resize option you can give whatever argument suitable for that image. I resize the image to a quarter of its origin dimension.

- I resized the image to another file, just in case the result is not good enough I can always revert to the original file.

The convertion process will take sometime depends on your computer speed.

The gigantic image now becomes a smaller image (its size only 71.5KB).