Blog Detail
techTamasha...a new play everyday
http://www.techtamasha.com
techTamasha is a technology blog where I put up tips on topics that I come across while I develop applications.
Recent Posts
How to remove Active Desktop Recovery screen
Go to Run and type regedit Now navigate to this path - HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\SafeMode\Components You would find a key named DeskHtmlVersion Right click the key and select Modify Under the label Base, select th...
javac bug - no unique maximal instance
While trying to compile my java class files with the 1.6 java compiler, I came across an error message that read : “no unique maximal instance exists for type variable U with upper bounds U” The weird thing was that the file compiled just...
Javascript Substring function
Javascript has an inbuilt substring function which helps to extract parts of a string. substring(start, stop) : start (mandatory) - The starting index stop (optional) - The index to stop extraction Example: If you want to find the first 3 alphabets i...
Create a desktop shortcut to lock computer
You can lock your windows desktop by clicking on “windows key + L“. There is another way to do this. By creating a shortcut. Right Click on your desktop and select New -> Shortcut. A shortcut will be created and a dialog box would pop...
Generate dynamic id’s for struts html tags
Do you use struts tags to generate html content? If yes, then sooner or later you’ll come across a scenario where you would generate html elements with the same name but would need different id’s for each element. I faced a similar predic...
Method overriding and overloading in Java
I know this may be trivial for many people but then it can be pretty confusing for new bees (pssst.. in the beginning me too used to be confused between overloading and overriding) OVERRIDING - when you extend a class and write a method in the derive...

