JSP itself is just a plaint text and will be translated into Java source file (actually a servlet), compiled into class file and only interpreted at the end during runtime. All these happen at the backend. When the whole JSP is translated into Java source file, all the HTML codes will be translated and source lines in <% %> tag will be included in a function of the t … [Read more...]
WordPress Theme: How to Enable Gravatar in WordPress Theme
Gravatars are Globally Recognized Avatars. An avatar or gravatar is an icon, or representation, of a user in a shared virtual reality, such as a forum, chat, website, or any other form of online community in which the user(s) wish to have something to distinguish themselves from other users. … [Read more...]
Gmail: How to Search Your Email Quickly in Gmail
If your are using Gmail as you email client, how do you search all your emails from your girl friends with keywords "I love your" for a certain date range for the received emails? … [Read more...]
Gmail: How to Monitor Your Mail Account Activities
How do you know your Gmail account's actitivies like the date and time when you signin, access type (mobile, web and etc) and the IP addresses where you signin your Gmail mail account. Sometime you may have signed in at other PC (like cyber cafer, friends's house and etc) and may have forgotten to sign out. How can you ensure that all your Gmail mail account sessions has … [Read more...]
PHP: Format integer into number of decimal places
Previous I have written an article about formating interger into number of decimal places in Java. The main reason to store money value in integer in to prevent loss in precision. For example the actual value for 12.33 in float could be 12.3333333333...; while 1233 in integer is always 1233. Today I will be showing you the same code but in PHP language. I know you can do the … [Read more...]