Hiya! I am Chai.

I keep this blog to enjoy writing, sharing, and reflecting on my life experiences, both for my future self and anyone who is curious.

I hope you discover something on my blog that resonates with you.
Nice to see you here. Thanks for stopping by!

Besides the posts below, I occasionally write weekly notes.

  • Today I woke up to the fact that – Microsoft Excel can store only 65,536 rows per sheet.Exporting data from any other tool like TOAD,…

    read more

  • TO_CHAR(date column to format , ‘DD-Mon-YYYY’) = ’10-May-2008′ THis function comes handy to do quick date comparisions.

    read more

  • Standard Swap problem

    public class SwapVariables{ public static void main(String args[]) { int a=5; int b= 6; System.out.println(“Before Swap :”+a+” “+b); a=a+b; b=a-b; a=a-b; System.out.println(“After Swap :”+a+” “+b);…

    read more

  • FizzBuzz Problem

    Found about FizzBuzz problem here I wrote Java program for it in 6 minutes including testing and debugging. [ Yes 🙁 I didn’t get it…

    read more

  • “It is not the critic who counts, not the man who points out how the strong man stumbles or where the doer of deeds could…

    read more

  • “Many people are like garbage trucks. They run around full of garbage, full of frustration, full of anger, and full of disappointment. As their garbage…

    read more

  • The following piece of text is produced as it is from one of my company blogs.I am very thankful to its presenter. To laugh is…

    read more

  • Till date, I installed Java software hundreds of times.Even then I have to spend sometime(though very few minutes) troubleshooting and I don’t get it correct…

    read more

  • This didnt seem to be a good idea counting all the experiences we had in the past 7 months of our stay.True that it is…

    read more

  • <script language=”javascript” type=”text/javascript”> document.onkeypress= resetTimer document.onmousemove= resetTimer document.onmousedown= resetTimer document.Onfocus= resetTimer var timerId; timerId = window.setTimeout(“timeOut()”,7200000); function resetTimer() { window.clearTimeout(timerId); timerId = window.setTimeout(“timeOut()”,7200000); } function…

    read more