- Friday, November 6, 2009, 9:00
- CSS, Featured, How-To
- 7,268 views
Following are few CSS Tips and Tricks that I think every web developer should be aware of. You may already know many of these tricks.
Disclaimer: Not all from the below CSS tricks are written by me. Some of them are taken from different sources on internet.
1. Round Corners without images
Here is a simple CSS technique of ...
Full story
- Monday, August 17, 2009, 14:51
- Featured, JQuery
- 23,831 views
Following are few very useful jQuery Tips and Tricks for all jQuery developers. I am sharing these as I think they will be very useful to you.
Disclaimer: I have not written all of the below code but have collected from various sources from Internet.
1. Optimize performance of complex selectors
Query a subset of the DOM when using ...
Full story
- Thursday, August 13, 2009, 20:42
- General
- 662 views
If you are using wordpress as your blogging system you know that everytime you publish a post with an image, Wordpress creates two thumbnails and store them in the web server. These thumbnails are useful for photo galleries where smaller image will be displayed have a link to original image. These thumbnails are useful if you displaying some photo gallery but otherwise it just eat ...
Full story
- Wednesday, July 15, 2009, 21:10
- General
- 408 views
Soon after the iPhone 3GS was launched, it was jailbreaked by a 19 year old hacker
George Hotz. Jailbreaking and unlocking are two entirely different things. Jailbreaking is simply hack that lets you install unapproved third-party applications on your iPhone. Unlocking, on the other hand, is a hack that lets you use your iPhone ...
Full story
- Tuesday, July 14, 2009, 14:24
- General
- 809 views
While surfing through the web, I encounter this wonderful website
codepad.org, that can be used to compile/interpret and share code snippets online. A number of language/script option is available which can be used to compile your code online.
I started with writing a simple Hello World C program.
#include
main()
{
printf("Hello World");
}...
Full story
- Monday, July 13, 2009, 17:28
- General
- 4,406 views
Eclipse have been my favorite Java IDE since I started coding in Java. Shortcuts makes life very easy when you are working with any IDE. Eclipse also comes with lot of shortcuts that makes like of a developer easy.
Following are few shortcuts of my choice.
Ctrl + Shift + O : Organize imports
Ctrl + / ...
Full story
- Friday, July 10, 2009, 13:38
- General
- 1,533 views
A lot of time we forget our passwords and try to recover it using the same old technique where the service provider send new password to an email address that we have registered earlier with them. Security question is also an option to recover password where user set a security question ...
Full story
- Tuesday, July 7, 2009, 19:44
- General
- 4,251 views
I have been using firefox browser for a while now. Although I never had any issue with this browser, I just hate it when it starts hogging on memory and eats up almost half of the RAM.
Following are few tweaks that you can perform on your firefox browser to reduce its memory usage.
1. Remove unnecessary ...
Full story
- Monday, June 22, 2009, 15:07
- General
- 11,869 views
Apache web servers have a great way to manipulate information using .htaccess files. .htaccess (hypertext access) is the default name of a directory-level configuration file that allows for decentralized management of web server configuration. The .htaccess file is placed inside the web tree, and is able to override a subset of the server's global configuration; the ...
Full story
- Tuesday, February 3, 2009, 12:07
- Java
- 89,351 views
I remember the day when I created a Tic Tac Toe game using Java Swing and packed it in an executable JAR file to distribute it among my friends. As few of my friends were not from computer background, they were unable to execute the JAR file. Hence I converted the ...
Full story