New search results layout

Saturday, October 20, 2007   —   Vienna 0 Comments

Made some changes on the design of the "Browsing" section. Search results brings up artist images.   more »

The Madison dance and the Pulp Fiction twist

Wednesday, October 10, 2007   —   Vienna 0 Comments

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.

  more »

Converting hexadecimal color values to RGB

Sunday, October 07, 2007   —   Vienna 0 Comments

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 »

Bande à part (Band of Outsiders) (1964)

Monday, October 01, 2007   —   Vienna 0 Comments

  • Director: Jean-Luc Godard
  • Starring: Anna Karina, Sami Frey, Claude Brasseur
  • Genre: Foreign Films
  • RT Rating: 95%
  • My Rating: A
  • Links: IMDb, Rotten Tomatoes, Wikipedia
  • Trailer: YouTube

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
Two restless young men (Sami Frey and Claude Brasseur) enlist the object of their desire (Anna Karina) to help them commit a robbery––in her own home. French New Wave pioneer Jean-Luc Godard takes to the streets of Paris to re-imagine the gangster genre, spinning an audacious yarn that’s at once sentimental and insouciant, romantic and melancholy.

  more »

THU 11

« Sep   October 2007   Nov »

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      


Search blog



Archive



Categories