Saturday, October 20, 2007 Vienna 0 Comments
Made some changes on the design of the "Browsing" section. Search results brings up artist images. more »
Made some changes on the design of the "Browsing" section. Search results brings up artist images. more »
Two awesome movie scenes that spawned an awful lot of regretful wedding videos. People should just not attempt these in the vicinity of a camera.
A useful function to convert a hexadecimal color value to an array of RGB values.
function Hex2RGB($c)
{
if(!$c) { return false; }
$c = trim($c);
$rgb = false;
if(eregi("^[0-9ABCDEFabcdef\#]+$", $c))
{
$c = str_replace('#','', $c);
$l = strlen($c);
if($l == 3)
{
for($i=0; $i<3; $i++) { $c6 .= substr($c, $i,1) . substr($c, $i,1); }
$c = $c6;
}
unset($rgb);
$rgb[0] = $rgb['r'] = $rgb['red'] = hexdec(substr($c, 0,2));
$rgb[1] = $rgb['g'] = $rgb['green'] = hexdec(substr($c, 2,2));
$rgb[2] = $rgb['b'] = $rgb['blue'] = hexdec(substr($c, 4,2));
}
else { $rgb = false; }
return $rgb;
}
more »
|
|
|
|
Three years of Media Studies has made me hate the word "Postmodern", so I prefere to think of Jean-Luc Godard's film as a great example of French New Wave – which it is.
Synopsis from
www.criterion.com
| |
| Su | Mo | Tu | We | Th | Fr | Sa |
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |