Darik’s Boot and Nuke (DBAN) is a boot disk tool that securely wipes the hard disks of most computers. DBAN will securely delete the contents of any hard disk that it can detect, which makes it an ideal utility for bulk or emergency data destruction. WEBSITE
Author: contrib
SpeedFan
SpeedFan is an application that monitors voltages, fan speeds and temperatures in computers with hardware monitor chips. Can access S.M.A.R.T. info and show hard disk temperatures, also has SCSI support. Can access digital temperature sensors and can change fan speeds accordingly, thus reducing noise. Supports Windows 9x, ME, NT, 2000, 2003, XP, Vista and Windows […]
GPU-Z Graphics Card Tool
GPU-Z is a utility designed to give you information about your video card and GPU. Nvidia and ATI support. No install application. WEBSITE
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