Free YouTube Music download

Available for Windows XP and Vista, Muziic offers a media player UI that is reminiscent of Winamp Music Player. Music seems to be free now.

Cloud Privacy

TechCrunch just had an interesting article on Cloud Privacy.

Comments on this blog

You can only leave a comment on this blog if your logged-in via the XSall.com OSO. You normally found out about this after you wrote a comment. This was quite some pain because you had to write your comment twice. I fixed this today. Now you can’t write a comment before you are logged-in.

Loop quantum gravity

The standard model of physics and loop quantum gravity may be compatible after all writes Chris Lee. But where does Garrett Lisi ’s “An Exceptionally Simple Theory of Everything.” E8 Theory fit in? Scientific American reported in March 2008 that the theory was being “largely but not entirely ignored” by the mainstream physics community and FQXi awarded Garrett Lisi with a $ 77.000,- grant for theiss research last august. Will we understand gravity this year or is it only Garrett Lisi who does?

Brain Teaser

Click the image to see it larger.

Source

Kutiman mixes YouTube

THRU YOU | Kutiman mixes YouTube hit the credits link while a movie is playing to go to the original clips. Thanks Ze.

SM2

This is just a test to see if SM2 detects that I wrote the terms OSO and OpenSignOn here.

Is it going to Rain ?

http://goingtorain.com/ ?

Silverlight-Selenium

The silverlight-selenium libraries extend the Selenium RC clients, adding Silverlight communication capabilities to the Selenium RC tests. Link

Fibonacci number in Perl

Inspired by Brian here are the Fibonacci numbers in Perl.

sub fib {
    my ($n) = @_;
    my $phi = (1 + sqrt(5)) / 2;
    return int ((($phi ** $n) - ((1 - $phi) ** $n) ) / sqrt(5));
}

for (0..20) {
  print fib($_)."\n";
}