I have been working on a mobile application for the iPhone/iPod that needs to be installed on the user’s device in “fullscreen mode.” Naturally, I wanted to prevent the user from being bothered by the little magnifying/selecting controls, as well as any long-touch menus. So, I thought that I would make a global CSS declaration:
* {-webkit-user-select: none; -webkit-touch-callout: none;}
Worked a treat until I about went bald trying to figure out why my form elements would not accept user-input. If I touched on a textarea, for example, the keyboard would pop up, and keyup/keydown events would fire, but nothing would get inserted into the element, and no cursor appeared. I put -webkit-user-select: text; in the form element’s css declaration, and everything started working great again.
If you get this error in plesk when you are trying to create a new domain, chances are you moved your /var/www/vhosts to a new partition or disk with more space, and you forgot to copy the .skel directory to the new partition.
Did you know?
As of PHP 5, you can easily modify array’s elements by preceding $value with &. This will assign reference instead of copying the value.
<?php $arr = array(1, 2, 3, 4);
foreach ($arr as &$value) {
$value = $value * 2;
}
// $arr is now array( 2, 4, 6, 8 )
unset($value); // break the reference with the last element
?>
Just had to notice the amazing new graphics that are available in Windows 7.

Windows 7 Graphic Capabilities
So not only does AT&T not have good service, and make you PAY for an option to have cell service in your home, they also don’t make it very easy on you to actually use the thing. So I plug this unit in that I picked up off of Craigslist, and I get the following error, even though the guy I bought it from said that he deactivated it.
FTC007: Device serial number is currently associated to another subscriber. Please check the number and try again. If device was recently acquired from another subscriber, please contact that subscriber and ask them to disconnect the device by visiting att.com/3GMicroCell, selecting “Manage your AT&T 3G MicroCell”, logging into their account, and following the online steps for “Disconnect Your 3G MicroCell Device”. If the problem persists, please call 1-800-331-0500.
So, I called AT&T; who really doesn’t know anything more about this than I do, and they tell me that they will have some sort of resolution in about a week. Nice.