Online Compilers

Hi friends,
Many time we come across situations that we need to run a program and we do not have that compiler installed in our system and either we are not allowed or may be time taking. So we need to use some online compilers. So here is some. Please try it out:
For C/C++ and Java :
http://www.botskool.com/online-compiler
For PHP and Javascript:
http://writecodeonline.com/javascript/
http://writecodeonline.com/php/

Saving server time with php

Hi All,
We have often seen that the loading of some sites with heavy data retrieving from database are become late 1-2 sec. and sometimes it is upto 5sec. also. So the main problem is execution of sql query each time.
Here is a concept of creating some intermediate files i.e. *.cache files such that the files generated for the first time and for the consequence times it shows result without executing the whole sql query.
I know this may be a little bit difficult to understand at the first time but it is easy and you can learn it soon. I have taken php to create the code and database used is mySql. The example is from osCommerce code.
I hope you will enjoy this.
So here you can start...
Click to see the post

Best Practice for Speeding up WEBSITE

The main problem when we design a website is its loading time. IT generally flashes out in IEs' and takes time to load.When designing the web-site it should be always there in brain that will it be supported by each Browser or not OR it is behaving the same in all or not. These are the main functions should always in mind.

So here I have given the solution of this problem. This is best to learn and practice. I hope you will enjoy this

This is it