24 5 / 2013
Bundle CSS to load page faster
A test with a simple HTML page over a DSL connection shows that one big stylesheet or css of 50 KB can speed up load time by factor 2 compared to five stylesheets that are 10 KB each in size:
- 5 Stylesheets (10KB each): 1100ms
- 1 Stylesheet (50KB): 500ms
So…
18 5 / 2013
Browser Caching with htaccess
First make sure all three module is enabled :
a2enmod rewrite a2enmod expires a2enmod headersAfter that you have to restart Apache !
service apache2 restartIf you want to disable later ,
a2dismod rewrite a2dismod expires a2dismod headersAnd again ,
05 5 / 2013
Linux File/Folder Search from Terminal
Sometimes we need to find file or folder . It is easy in graphical file manager . But in terminal you have to be tricky . (more…)
01 5 / 2013
Some Scripts to Upload File via php
Here is some php script which will help you to upload files using form by php . (more…)
01 5 / 2013
Show Bangla Date in php Website
You can now show Bangla date-time in your websites preferred place . First create a php file , like bndate.php and put below code in it. (more…)
23 4 / 2013
Password Protect dicrectory or file by htaccess
Password protecting a directory can be done several ways. Many people use PHP or ASP to verify users, but if you want to protect a directory of files or images (for example), that often isn’t practical. Fortunately, Apache has a built-in method for…
23 4 / 2013
Website Analytics : Keep Records of Your Websites Traffic
Most people are introduced to web analytics by the ever-popular hit counter, a simple bit of code…
21 4 / 2013
Introduction to Transaction Analysis : The Basic Accounting Equation
Introduction to Transaction Analysis: The Basic Accounting EquationAccounting is built upon the fundamental accounting equation:
Assets = Liabilities + Owner’s Equity
This equation must remain in balance and for that reason our modern accounting system…
18 4 / 2013
Some Movies About Western Country & Muslim Country
I am talking about six films having similar plot . About , What do the western people think about…
15 4 / 2013
Installing Squid Proxy Server in Ubuntu
Log in on Ubuntu Server, then type command below to Install squid :
sudo apt-get install squid3 cczeCreate directory for Cache, on this case cache directory placed on
directory /home/precise/cache/. Then change
the permissions cache directory to 777 and…

