-
I temporarily postponed my wanting for iPhone.Now Nokia E51 looks even more impressive than earlier.I think I can wait some more time to get iPhone…
-
Blogging after a really long break. Blocking blogger.com at workplace impacted my blogging badly. Thanks to Websense widely described as web-non-sense at my office. Finally…
-
Blogger used to irritate me when I have to type any code snippet in courier font.But this is only until Susam Pal suggested the use…
-
While typing word documents Shift + F3 can be used to change the case of the text. The same can be achieved by choosing Menu…
-
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,…
-
TO_CHAR(date column to format , ‘DD-Mon-YYYY’) = ’10-May-2008′ THis function comes handy to do quick date comparisions.
-
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);…
-
Found about FizzBuzz problem here I wrote Java program for it in 6 minutes including testing and debugging. [ Yes 🙁 I didn’t get it…
-
“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…