Interested in advertising on Intense Cogitation? Check out our advertising policy!
Jun 032010
 

Some background info So what’s Gzip? Gzip is a form of compression (think ZIP/RAR files) that compresses files so that you save bandwidth and the page loads faster. It’s very useful for compressing text since there are good compression algorithms for it, whereas images and movies are already compressed. Thus, Gzip is extremely useful for [...Read more...]

May 262010
 

This tutorial is designed for PHP. Basic Info and Code Ok, this page is about identifying browsers. How do we do that? (Copy the code below) <?php $ua = $_SERVER["HTTP_USER_AGENT"]; // Here’s the fun part – we’re identifying Mac IE if (stristr($ua, “Mac”) && stristr($ua, “MSIE”)) { // Do something here – maybe a redirect? [...Read more...]