Mindblown: a blog about philosophy.
-
Speed up your website with the perfect .htaccess file
I was doing some research about the guidelines that Google and Yahoo offer for speeding up websites, and kind of found that the quickest thing that you could do is add a .htacces file to your document root of your project. With this quick trick you can speed up your website dramatically. Of course, I’m…
-
Redirect to non-www domain
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
-
Set mysql password after install
mysqladmin -u root password new-password
-
Formatting date values returned from MYSQL table to more readable format including time
echo date(“d-m-Y : G-i”,strtotime(‘2011-02-26 09:47:11’);
-
Five reasons why you should run Linux
There are many reasons why people choose to use Linux. The most of them are computer engineers, computer enthusiasts, programmers etc. Lately with some newer distributions of Linux like Ubuntu, OpenSuse and others, and making them more user friendly and usable, the people choose not to use Windows anymore. Here are some of the reasons…
-
CSS shorthands
There is no official documentation about CSS shorthands but they are there and some of you know them, some of you not. I tried to make a list of CSS shorthands, that may be of use by anyone.
Got any book recommendations?