Remote support tool. Free for personal use. Has iPad app. WEBSITE
Latest Posts
Ultimate Boot CD
Ultimate Boot CD is a multifunctional diagnostic and utility tool. Follow link below for more information… WEBSITE
Windirstat
WinDirStat is a disk usage statistics viewer which graphical displays file use over a disk or device. It is similar to Overdisk. WEBSITE
Handbrake
HandBrake is an open-source, GPL-licensed, multiplatform, multithreaded video transcoder, available for MacOS X, Linux and Windows. Handbrake is a good DVD ripper, current version will rip to mp4 and mkv, older versions will rip to avi also. When used in combination with DVD43 it is useful for ripping DVDs with DRM(digital rights management) Great for […]
Wrapping pre tag text in a div using css
When using pre tags in html to display code blocks it will ignore the div boundaries and not wrap the text by default. By adding some css for pre tags this can be accomplished as follows. Hint: Another option is to use overflow:auto which will add scroll bars for the content. pre, code{ /*Wrap pre […]
Add a Read More link to the_excerpt() in WordPress
To remove the default […] marker at the end of an excerpt and add a Read More link add the following code to your theme’s functions.php file function new_excerpt_more($more) { global $post; return '<a href="'. get_permalink($post->ID) . '"> Read More…</a>'; } add_filter('excerpt_more', 'new_excerpt_more'); Tested with WordPress version 3.3