CPU-Z is a diagnostic tool and gatherer of cpu, memory, mainboard and system information. It is a freeware application. WEBSITE
Author: contrib
Using clearfix css method when floating child elements in a div
Assigning this css class to a html container will clear any floats within it. .clearfix:after, #container:after { clear:both; content:”\0020″; display:block; height:0; max-height:0; overflow:hidden; visibility:hidden; }
Display specific post in WordPress
To display a specific post by post ID, add the following code to your WordPress template file. <?php //Select specific post ID $post_id=256; //To display post title echo ‘<h1>’ . get_post($post_id)->post_title . ‘</h1>’; //To display post content echo get_post($post_id)->post_content; ?> Tested with WordPress 3.3
Fraps
Fraps is a multifunctional tool mainly used for game benchmarking and video capture. Shows how many Frames Per Second (FPS) you are getting in a corner of your screen. Save the statistics out to disk and use them for your own reviews and applications. Video and screenshot capture. Take screenshots with the press of a […]
HTML Code to Text Converter
Useful for converting code for presentation on a WordPress post. Converts tags so they are not processed. Good for displaying blocks of code for tutorials etc.. This version seems the best I have found for WordPress. WEBSITE