Parambir.in

Things I Came Across…

Taj 03

without comments



Taj 03, originally uploaded by Parambir.

Written by Param

September 3rd, 2010 at 8:13 pm

Posted in Uncategorized

Taj 02

without comments



Taj 02, originally uploaded by Parambir.

Written by Param

September 3rd, 2010 at 8:51 am

Taj 01

without comments



Taj 01, originally uploaded by Parambir.

View of Taj from the entrance

Written by Param

September 3rd, 2010 at 8:41 am

Posted in Photography

Fixing “emulator: ERROR: unknown virtual device name:” issue with Android SDK

without comments

Android SDK expects your AVD to be located at the location “C:\Documents and Settings\<username>”. If your home folder is at some other location, you might see the error:

ERROR: unknown virtual device name: <device name>

when you try to run your application in the emulator. To fix this, create a new environment variable named “ANDROID_SDK_HOME” and set its value to the location of your home folder. To be sure that you are entering the correct value, verify that there’s a folder named “.android” at this location.

Written by Param

May 24th, 2010 at 4:37 pm

Posted in Android

Tagged with

onclick or ONCLICK or onClick?

without comments

HTML is case-insensitive and therefore the casing of event handler names in your HTML documents is irrelevant. E.g. you can use onclick, ONCLICK, onClick or event oNcLiCk for your event handler name. However, XHTML is not so liberal and stipulates that all event handler names should be lowercase (e.g. onclick=”…”). Therefore, to make your HTML pages XHTML compliant, always use lowercase event handler names.

Written by Param

March 25th, 2010 at 11:38 am

Posted in HTML/XHTML,JavaScript

Tagged with