Wednesday, November 3, 2010

BuzzClassAction.com Scam?

Most all of Gmail users received this email:

Google rarely contacts Gmail users via email, but we are making an exception to let you know that we've reached a settlement in a lawsuit regarding Google Buzz (http://buzz.google.com), a service we launched within Gmail in February of this year.

Shortly after its launch, we heard from a number of people who were concerned about privacy. In addition, we were sued by a group of Buzz users and recently reached a settlement in this case.

The settlement acknowledges that we quickly changed the service to address users' concerns. In addition, Google has committed $8.5 million to an independent fund, most of which will support organizations promoting privacy education and policy on the web. We will also do more to educate people about privacy controls specific to Buzz. The more people know about privacy online, the better their online experience will be.

Just to be clear, this is not a settlement in which people who use Gmail can file to receive compensation. Everyone in the U.S. who uses Gmail is included in the settlement, unless you personally decide to opt out before December 6, 2010. The Court will consider final approval of the agreement on January 31, 2011. This email is a summary of the settlement, and more detailed information and instructions approved by the court, including instructions about how to opt out, object, or comment, are available at http://www.BuzzClassAction.com

Most people took one look at this and figured that this was a scam, fraud, or just spam of some sort. A quick search for "BuzzClassAction.com Scam" doesn't return much. Several Google Employees have confirmed the legitimacy of this email though. The website simply informs you of the background of the lawsuit and doesn't ask you for money. Some people are qualified to be part of the class action, but I don't think anyone is going to get money from it because they can't prove damages.

Confirmations
http://www.google.com/support/forum/p/gmail/thread?tid=3baa11d440d1f16d&hl=en
http://www.google.com/support/forum/p/gmail/thread?tid=2bfa59608687a83d&hl=en


Still not sure if BuzzClassAction.com is legit? Don't got to it, you're not missing out on anything.

Tuesday, November 2, 2010

PHP: hex color to RGB

I wrote this small script to convert a hex color to RGB value.

<?php
function hex2rgb($h){
    $h = trim($h,'#');
    if(strlen($h)==3) $h=$h[0].$h[0].$h[1].$h[1].$h[2].$h[2];
    if(strlen($h)!=6) return false;
    $d = hexdec($h);
    return array("R"=>0xFF&($d>>0x10),"G"=>0xFF&($d>>0x8),"B"=>0xFF&$d);
}
?>

I know this isn't helpful to the majority of my readers, but nonetheless here it is.

I'm trying out ping.fm
So far posterous.com has worked but I'm having some problems with blogging.