Archive for October, 2006

 

Digitally Conned by Dove

Thursday, October 19th, 2006

Dove cosmetics shows us what can be done with cutting edge graphics manipulation. I couldn't help laughing about it. It's fun to watch. Have a look yourself.

YouTube Preview Image

Syntax highlighter activated

Wednesday, October 11th, 2006

Well it goes like so . . . Thanks goes to Peter Ryan. Great visual enhancement.


	function show_photos_main() {
		$album = $_GET['album'];
		$photo = $_GET['photo'];
		$page = $_GET['page'];
		$tags = $_GET['tags'];
		$show = $_GET['show'];

		$output = '';
		$continue = true;
		if (!is_null($show)) {
			if ($show == 'tags') {
				$output = $this->show_tags();
				$continue = false;
			}
			elseif ($show == 'recent') {
				$tags = '';
			}
		}

		if ($continue) {
			// Show list of albums/photosets (none have been selected yet)
			if (is_null($album) && is_null($tags) && is_null($photo)) {
				$output = $this->show_albums($page);
			}
			// Show list of photos in the selected album/photoset
			elseif (!is_null($album) && is_null($photo)) {
				$output = $this->show_album_thumbnails($album, $page);
			}
			// Show list of photos of the selected tags
			elseif (!is_null($tags) && is_null($photo)) {
				$output = $this->show_tags_thumbnails($tags, $page);
			}
			// Show the selected photo in the slected album/photoset
			elseif ((!is_null($album) || !is_null($tags)) && !is_null($photo)) {
				$output = $this->show_photo($album, $tags, $photo, $page);
			}
		}

		if ($this->has_error) {
			$this->template->reset('error');
			$this->template->set('message', $this->error_detail);
			$output = $this->template->fetch();
		}

		return $output;
	}

Flyweb Pink for October

Friday, October 6th, 2006

I’m a bit late to the party here, but what the hell.

pinkforoctober

Inspired by Phu, Anton and Matthew, I’ve turned this site ever so subtly Pink for October (you might need to hit refresh), in support of National Breast Cancer Awareness Month.