After my upgrade to hardy, firefox always starts with offline mode and it’s really hectic to keep change it back to online and refresh the each saved session tabs. Also in parallel, I find my NM (network manager) applet showingContinue reading… Ubuntu: firefox always starts in offline in hardy
Linux : Awesome commands – find
Name find — Searching for files and possibly executing commands on them Synopsis find [path] [options] Examples To list all files below a given directory, say /home/user/some-directory find /home/user/some-directory To find all pdf files below that directory find /home/user/some-directory -nameContinue reading… Linux : Awesome commands – find
java.sql.SQLException: Io exception: Invalid Packet Lenght
Similar exceptions are : 1. java.io.IOException: Io exception: Unexpected packet 2. java.sql.SQLException: Protocol violation 3. java.sql.SQLException: Io exception: Bad packet type 4. java.sql.SQLException: Bigger type length than Maximum 5. java.sql.SQLException: Io exception: Invalid Packet Lenght 6. java.sql.SQLException: Closed Connection 7.Continue reading… java.sql.SQLException: Io exception: Invalid Packet Lenght
java.io.UTFDataFormatException: 5-byte UTF8 encoding not supported.
An interesting exception faced while parsing xml content. Also, on further analysis on this error caused below similar issues started to raise. Another similar exception is: java.io.UTFDataFormatException: Invalid byte 1 of 1-byte UTF-8 sequence Here, I am trying to parseContinue reading… java.io.UTFDataFormatException: 5-byte UTF8 encoding not supported.
International Time Conversions
When you are working with an MNC, it’s pretty common to have interactions with onsite team Vs offsite teams. Problems comes when your calender tool not properly convert the appointments between the time zones. These are the very common TimeContinue reading… International Time Conversions
Dealing with newline, n or even r in PL/SQL
In my PL/SQL procedure I had to add a text including newline (n in java, ascii #10) in a text to be read by a java application. Tried with the code l_text := ‘hellonworld’; This did not work, the nContinue reading… Dealing with newline, n or even r in PL/SQL
Good Bye ‘JUMBO’
I’m not big fan of cricket game. Also, this is my first post to publish on cricket game. But where ever you go, you see very few people to get inspired. Such personalities need this piece of appreciation to letContinue reading… Good Bye ‘JUMBO’
Real Estate Bubble 2008 : Part 2 (Indian context)
Now to put it in terms of Indian real estate bubble – here is the scenario – 1) IT professionals (or allied industries) started earning money in US$ (1500 US$ pm is a good pay in India). Note that thisContinue reading… Real Estate Bubble 2008 : Part 2 (Indian context)
Real Estate Bubble 2008 : Part 1
I found it quite interesting in track.in articles and thought it would be great article for market readers. I am producing the comment verbatim here.. STORY OF PUNE REAL ESTATE Once there was a little island country. The land ofContinue reading… Real Estate Bubble 2008 : Part 1
Memory efficient doubly linked list
Linux Journal has an article in the January 2005 issue that introduces a doubly linked list that is designed for memory efficiency. Typically elements in doubly linked list implementations consist of a pointer to the data, a pointer to theContinue reading… Memory efficient doubly linked list