Remove the Downadup

How Dangerous Is The Downadup Virus?

This site will help you remove W32.Downadup worm from your computer. The Downadup virus has spread to millions of PCs. Since this virus connects to remote web sites for instructions, it can become dangerous at any moment. It spreads through weak network passwords, unpatched Windows software, and USB stick drives. Because this virus can disable auto updates from Microsoft and anti-virus companies, your PC’s “immune system” becomes degraded and exposed to future threats. Finally, this virus highlights the Autoplay dangers on Windows – which we can show you how to fix here.

Continue reading “Remove the Downadup”

In-Field Labels jQuery Plugin

Last week I was dealing with a unique problem. I needed to set focus to a username field, but the field had an in-field label. The script was set to clear out the helper text (label) when the user entered the field. Hmm…. that won’t work! I remember seeing a nicer implementation on Mobile Me for their login. Basically the label stays over the input element even after it had focus. Only after typing began did it totally disappear. Inspired by that implementation, today I am releasing the In-Field Labels jQuery Plugin so you can use this new method as well. The plugin is open source and available for download or on Github. If you can make it better, please fork it and send a pull request when you have finished your changes!

Continue reading “In-Field Labels jQuery Plugin”

php strtotime

echo ‘Today day: ‘. date(‘Ymd’) .”\n”;
echo  date(‘Ymd’, strtotime(‘-1 day’));
echo strtotime(“now”), “\n”;
echo strtotime(“10 September 2000”), “\n”;
echo strtotime(“+1 day”), “\n”;
echo strtotime(“+1 week”), “\n”;
echo strtotime(“+1 week 2 days 4 hours 2 seconds”), “\n”;
echo strtotime(“next Thursday”), “\n”;
echo strtotime(“last Monday”), “\n”;
echo ‘Today day: ‘. date(‘Ymd’) .”\n”;
$dateprev=date(‘Ymd’, strtotime($date. ‘-1 day’));