Archive for the ‘Uncategorized’ Category

global distribution system (CDS)

October 1, 2009

many website like tripadvisor.com or lastminutes.com pull the information from CDS. One free provider is Kayak.com but usage is restricted to 1000 queries/day.

kayak.com
airline reservation system
Hotel booking system

ps2 emulator

February 14, 2009

develop system base on mykad

February 12, 2009

it is quite interesting to develop a software application base on mykad.


interesting topic on lowyat

free mykad SDK for testing
mykad reader

reset root password

February 3, 2009

You must have physical access to the server. On booting, append to boot

init=/bin/bash

then

#mount -o remount,rw /
#passwd
#exec init

done.
Forgot the root password in debian
Lost root password

ie6,ie7 min-height bug and margin bug fixed

January 28, 2009

I come across this stupid IE bug and it really waste a lot of my time. The worst thing is, my client use IE6 in his office computer and whenever i went to his office showing him his website. Everything look terrible.

it should look like this
iceweasel

Image offset to the right
ie7

Image offset to the right and the web page is too short
ie6

I am not sure it is fixed or it just a dirty workaround. But here it is

ul.innerfade li {
_margin-left:-425px; /*ie6 fix*/
*margin-left:-425px; /*ie7 fix */
}

and another one in the td (html)

style="_height:350px;"


CSS hacks
IE7 only hacks

List of proxies in malaysia

December 28, 2008

Just in case you are interested

list of proxies server based in malaysia

tagged by sandra. something about me

November 19, 2008

i am relatively new on this blogging world. and honestly i am not really good in writing. LOL, i should write something about me supposed to be a month ago. But i am relative slow to pick up what it mean by tagged. Anyway, better late than never. so here is a 7 funny or weird fact about me.

wait. i don’t even know where i should start. LOL

pwgen – password generator

November 18, 2008

from the project homepage, it says

password generator which creates password which can be easily memorized by human


#apt-get install pwgen

It does have a -y switch to include special characters in the generated password. try

$pwgen -syB
m=g_L3on
\d?7ans^
[J7\{xwo

nice!
pwgen homepage

how to replace notebook page

October 10, 2008

it is quite tricky since there is not such function in gtk_notebook_*
tadeboro from gtkforums.com answer me with a good code example.

read more

How To Write Unmaintainable Code

October 1, 2008

The article come with a quote “ensure job for life”.


if(a);
else;
{
int d;
d = c;
}
;

An article written by Roedy Green.