<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Leonard Teo</title>
	<atom:link href="http://www.leonardteo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leonardteo.com</link>
	<description>Rambunctious Ramblings</description>
	<lastBuildDate>Sat, 24 Jul 2010 20:15:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to set up a local web server on your computer with Apache, PHP and MySQL</title>
		<link>http://www.leonardteo.com/2010/07/how-to-set-up-a-local-web-server-on-your-computer-with-apache-php-and-mysql/</link>
		<comments>http://www.leonardteo.com/2010/07/how-to-set-up-a-local-web-server-on-your-computer-with-apache-php-and-mysql/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 22:07:52 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=210</guid>
		<description><![CDATA[In this tutorial, I&#8217;m going to explain how to set up a web server on your computer (Windows) with Apache, PHP and MySQL. I&#8217;m also going to show you how to configure name-based virtual hosting so that you can run multiple sites off the web server. I&#8217;m then going to validate the set up by [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, I&#8217;m going to explain how to set up a web server on  your computer (Windows) with Apache, PHP and MySQL. I&#8217;m also going to  show you how to configure name-based virtual hosting so that you can run  multiple sites off the web server. I&#8217;m then going to validate the set  up by installing WordPress.</p>
<p><strong>Why would you want to do this?</strong></p>
<p>The main reason for setting up a local web server is so that you can  develop and test your website(s) very quickly, without having to  constantly upload to another server. It&#8217;s a good way to &#8220;stage&#8221; your  content in an environment which somewhat mimics what the live server  environment would be. Whether you&#8217;re developing themes or plug-ins for  wordpress, or creating a site from scratch using PHP/MySQL, this is a  great way to develop and test stuff.</p>
<p><strong>Explanation</strong></p>
<p>This is basically a three step process (and it would be the same on a  Mac, though I&#8217;m doing this on a PC):</p>
<ol>
<li>Install <a href="http://www.apachefriends.org/">XAMPP</a> (or MAMPP)</li>
<li>Configure Apache virtual hosts file</li>
<li>Configure host file</li>
</ol>
<p><strong>Install XAMPP</strong></p>
<p>Installing XAMPP is dead easy. <a href="http://www.apachefriends.org/">Download it</a> and install it.</p>
<p>The one thing that I would recommend to do before jumping into configuring virtual hosting is that you fire up XAMPP to make sure that the installation works. You can start XAMPP either by using the GUI which is conveniently installed to your Start Menu. Look for &#8220;XAMPP Control Panel&#8221;. Or you can start using the command line by clicking Start-&gt;Run and typing &#8220;cmd&#8221;. Type &#8220;cd c:\xampp&#8221;. Then &#8220;xampp_start&#8221;.</p>
<p>Make sure you have other network-listening apps such as Skype turned off as they may prevent Apache from starting.</p>
<p>You should now be able to fire up a web browser and visit http://localhost, which will load up the default XAMPP page.</p>
<p><strong>Configuring Virtual Hosting<br />
</strong></p>
<p>Virtual hosting is basically a way of hosting multiple websites  through the same server. It&#8217;s as if it&#8217;s running several servers but  it&#8217;s all running off one server and IP address. So&#8230;for example&#8230; if  you have a server and it has the IP address of 127.0.0.1, you can run  10, 20, 100 different websites on that server. You&#8217;d also be able to  call the individual websites by their name. For example in this case I  have &#8220;upvector.local&#8221;.</p>
<p>Once you&#8217;ve validated that the installation of XAMPP works, you&#8217;ll  need to set up the Apache virtual hosts file. This is typically in:</p>
<pre>XAMPP installation directory\apache\conf\extra\httpd-vhosts.conf</pre>
<p>Look for this line:</p>
<pre>#NameVirtualHost *:80</pre>
<p>Un-comment it so that it reads without the pound sign before it:</p>
<pre>NameVirtualHost *:80</pre>
<p>Each &#8220;virtual host&#8221; has its own set up. You&#8217;ll need one for the  default &#8220;localhost&#8221; name, so that when you type &#8220;localhost&#8221;, you get all  the XAMPP utilities.</p>
<pre>&lt;VirtualHost *:80&gt;
    DocumentRoot "C:\xampp\htdocs"
    ServerName localhost
    &lt;Directory "C:\xampp\htdocs"&gt;
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;
</pre>
<p>To create any arbitrary virtual host, you basically create a new  definition using &lt;VirtualHost *:80&gt;. E.g. to create one for  &#8220;upvector.local&#8221;, you&#8217;d use this code:</p>
<pre name="code">&lt;VirtualHost *:80&gt;
    DocumentRoot "C:\webprojects\upvector"
    ServerName upvector.local
    &lt;Directory "C:\webprojects\upvector"&gt;
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;
</pre>
<p><strong>Configuring the Hosts file</strong></p>
<p>Once you&#8217;ve configured Apache, you&#8217;ll need to configure your  operating system&#8217;s &#8220;hosts&#8221; file. This will let your OS know that when  you call a particular network host name, it will route it back to your  computer.</p>
<p>To find your hosts file, go to this <a href="http://en.wikipedia.org/wiki/Hosts_file">page</a> on Wikipedia  where they have documented the hosts file on almost every operating  system.</p>
<p>On Windows, it is typically here:</p>
<pre><code>C:\Windows\system32\drivers\etc\hosts</code></pre>
<p>I recommend that you use <a href="http://notepad-plus-plus.org/">Notepad ++</a> to edit text files. Make sure  that when you run Notepad++ (or whatever text editing app), that you  RIGHT-CLICK and RUN AS ADMINISTRATOR. If you don&#8217;t run the program as an  administrator, you&#8217;ll be unable to write to the hosts file.</p>
<p>For each of the virtual hosts that you want to run, add:</p>
<pre>127.0.0.1        host_name</pre>
<p>E.g.</p>
<pre>127.0.0.1        upvector.local
</pre>
<p>Restart Apache. If you did everything correctly, it should start back  up and you&#8217;ll be able to type the host name into your browser and it&#8217;ll  serve the correct website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2010/07/how-to-set-up-a-local-web-server-on-your-computer-with-apache-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Star Wars Subway Car</title>
		<link>http://www.leonardteo.com/2010/07/star-wars-subway-car/</link>
		<comments>http://www.leonardteo.com/2010/07/star-wars-subway-car/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 20:11:16 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Nerdicious]]></category>
		<category><![CDATA[Rambling]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=207</guid>
		<description><![CDATA[Because&#8230;you know&#8230;we&#8217;re nerds&#8230;]]></description>
			<content:encoded><![CDATA[<p>Because&#8230;you know&#8230;we&#8217;re nerds&#8230; <img src='http://www.leonardteo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.leonardteo.com/2010/07/star-wars-subway-car/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2010/07/star-wars-subway-car/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun with Materials</title>
		<link>http://www.leonardteo.com/2010/04/fun-with-materials/</link>
		<comments>http://www.leonardteo.com/2010/04/fun-with-materials/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 11:07:24 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Eye Candy]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=190</guid>
		<description><![CDATA[One of the most enjoyable parts of my work with Gnomon School of Visual Effects is that I get to do 3D again. I&#8217;m taking a texturing class with Eric Miller this term. Here&#8217;s my first assignment, produced in Maya 2010 and Mental Ray. Basically just trying to simulate some real life materials.]]></description>
			<content:encoded><![CDATA[<p>One of the most enjoyable parts of my work with <a href="http://www.gnomonschool.com">Gnomon School of Visual Effects</a> is that I get to do 3D again. I&#8217;m taking a texturing class with Eric Miller this term. Here&#8217;s my first assignment, produced in Maya 2010 and Mental Ray. Basically just trying to simulate some real life materials.</p>
<p><a href="http://www.leonardteo.com/wp-content/uploads/2010/04/material_eggs_3.jpg"><img class="aligncenter size-medium wp-image-192" title="material_eggs_3" src="http://www.leonardteo.com/wp-content/uploads/2010/04/material_eggs_3-400x225.jpg" alt="" width="400" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2010/04/fun-with-materials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really nice ad by Pedigree</title>
		<link>http://www.leonardteo.com/2010/03/really-nice-ad-by-pedigree/</link>
		<comments>http://www.leonardteo.com/2010/03/really-nice-ad-by-pedigree/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 21:26:17 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Rambling]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=184</guid>
		<description><![CDATA[Here&#8217;s a great new ad by Pedigree for its line of dog food. I want to point out that from a marketing angle, the ad is very very good. The marketing message that is communicated through the video is that &#8220;dogs love Pedigree&#8221;. It is wonderfully communicated through the commercial without a word ever being [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a great new ad by Pedigree for its line of dog food. I want to point out that from a marketing angle, the ad is very very good.</p>
<p>The marketing message that is communicated through the video is that &#8220;dogs love Pedigree&#8221;. It is wonderfully communicated through the commercial without a word ever being said or spelled out. Dogs flying in the air slow motion, catching their treat and smacking their lips? Just about perfect in my books!</p>
<p><a href="http://www.leonardteo.com/2010/03/really-nice-ad-by-pedigree/"><em>Click here to view the embedded video.</em></a></p>
<p>According to the YouTube comments, it may be a knock off of a film by <a href="http://www.pleix.net/films.html">Pleix</a> called &#8216;Birds&#8217;. Nevertheless&#8230;.very effective.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2010/03/really-nice-ad-by-pedigree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CG Channel goes video-based</title>
		<link>http://www.leonardteo.com/2010/02/cg-channel-goes-video-based/</link>
		<comments>http://www.leonardteo.com/2010/02/cg-channel-goes-video-based/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 17:54:01 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=180</guid>
		<description><![CDATA[One of the cool things about working on CG Channel again but under the auspices of Gnomon is that we can innovate and do it really quickly. This week, we announced the new content direction for CG Channel, going video-based. Watch the announcement here. We&#8217;ve already posted a few really good interviews on the site: [...]]]></description>
			<content:encoded><![CDATA[<p>One of the cool things about working on CG Channel again but under the auspices of Gnomon is that we can innovate and do it really quickly. This week, we announced the new content direction for CG Channel, going video-based. Watch the announcement <a href="http://www.cgchannel.com/2010/02/new-cg-channel-content-direction/">here</a>.</p>
<p>We&#8217;ve already posted a few really good interviews on the site:</p>
<ul>
<li><a href="http://www.cgchannel.com/2010/02/digital-domain-on-transformers-2-dan-taylor/">Digital Domain on Transformers 2</a></li>
<li><a href="http://www.cgchannel.com/2010/02/interview-with-concept-artist-paul-richards/">Interview with Darksiders artist Paul Richards</a></li>
<li><a href="http://www.cgchannel.com/2010/02/andy-park-on-god-of-war-3/">Andy Park on God of War 3</a></li>
<li><a href="http://www.cgchannel.com/2010/01/interview-with-terryl-whitlatch/">Interview with Terryl Whitlach</a></li>
<li><a href="http://www.cgchannel.com/2009/11/2012-behind-the-scenes-with-digital-domain-2/">2012: Behind the Scenes with Digital Domain</a></li>
<li><a href="http://www.cgchannel.com/2009/11/the-making-of-2012-interview-with-volker-engel-marc-weigert/">The Making of 2012: Interview with Volker Engel &amp; Marc Weigert</a></li>
<li><a href="http://www.cgchannel.com/2009/10/behind-the-scenes-with-digital-domain-for-gi-joe-rise-of-cobra-2/">GI Joe: Rise of the Cobra</a></li>
</ul>
<p>More to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2010/02/cg-channel-goes-video-based/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New CG Channel website</title>
		<link>http://www.leonardteo.com/2010/02/new-cg-channel-website/</link>
		<comments>http://www.leonardteo.com/2010/02/new-cg-channel-website/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 14:12:46 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=172</guid>
		<description><![CDATA[This is awesome. Yesterday, we launched the brand new CG Channel website. CG Channel is an online destination for entertainment artists. Our mission is to inform, inspire and empower our viewers. For over a decade, CG Channel has served the entertainment production industry with news, features and community services. What makes CG Channel different from [...]]]></description>
			<content:encoded><![CDATA[<p>This is awesome. Yesterday, we launched the brand new <a href="http://www.cgchannel.com">CG Channel</a> website.</p>
<p><a href="http://www.leonardteo.com/wp-content/uploads/2010/02/cgchannelfinal.jpg"><img class="aligncenter size-medium wp-image-173" title="cgchannelfinal" src="http://www.leonardteo.com/wp-content/uploads/2010/02/cgchannelfinal-399x289.jpg" alt="" width="399" height="289" /></a></p>
<p>CG Channel is an online destination for entertainment artists. Our mission is to <em>inform</em>, <em>inspire </em>and <em>empower </em>our viewers. For over a decade, CG Channel has served the entertainment production industry with news, features and community services.</p>
<p>What makes CG Channel different from other sites?</p>
<p><strong>High quality video content</strong> – CG Channel features impactful interviews and insights from professional production artists.</p>
<p><strong>Broadcasting worldwide from Hollywood</strong> – With access to hundreds of studios and artists, CG Channel has access to some of the best artists and studios for unique, insightful content.</p>
<p><strong>Focus on education and training</strong> – CG Channel is part of the Gnomon group of companies, which is focused on inspiring and empowering entertainment production artists. The Gnomon group of companies includes:</p>
<ul style="list-style-type: disc; list-style-image: none; list-style-position: outside; margin-left: 20px; margin-bottom: 0px; padding-bottom: 0px;">
<li><a href="http://www.gnomonschool.com/">Gnomon School of Visual Effects</a> – The premiere school for digital entertainment artists, based in Hollywood, CA.</li>
<li><a href="http://www.thegnomonworkshop.com/">The Gnomon Workshop</a> – Video training products for digital entertainment artists.</li>
</ul>
<p><strong>Competitions hosted by top-level professionals</strong> – CG Channel runs monthly digital art contests hosted by top-level industry professionals, giving an opportunity for developing artists to learn from the pros.</p>
<p>So check it out. Head on over to <a href="http://www.cgchannel.com">www.cgchannel.com</a>.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<p><strong>High quality video content</strong> – CG Channel features impactful interviews and insights from professional production artists.</p>
<p><strong>Broadcasting worldwide from Hollywood</strong> – With access to hundreds of studios and artists, CG Channel has access to some of the best artists and studios for unique, insightful content.</p>
<p><strong>Focus on education and training</strong> – CG Channel is part of the Gnomon group of companies, which is focused on inspiring and empowering entertainment production artists. The Gnomon group of companies includes:</p>
<ul style="list-style-type: disc; list-style-image: none; list-style-position: outside; margin-left: 20px; margin-bottom: 0px; padding-bottom: 0px;">
<li><a href="http://www.gnomonschool.com/">Gnomon School of Visual Effects</a> – The premiere school for digital entertainment artists, based in Hollywood, CA.</li>
<li><a href="http://www.thegnomonworkshop.com/">The Gnomon Workshop</a> – Video training products for digital entertainment artists.</li>
</ul>
<p><strong>Competitions hosted by top-level professionals</strong> – CG Channel runs monthly digital art contests hosted by top-level industry professionals, giving an opportunity for developing artists to learn from the pros.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2010/02/new-cg-channel-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Peoples Church of Montreal Website</title>
		<link>http://www.leonardteo.com/2009/12/peoples-church-of-montreal-website/</link>
		<comments>http://www.leonardteo.com/2009/12/peoples-church-of-montreal-website/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 13:18:42 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Rambling]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=153</guid>
		<description><![CDATA[I&#8217;m pleased to say that the new Peoples Church of Montreal website that I got to work on has finally gone live at www.peoplesmontreal.org. The website was built with WordPress and a theme which I designed and developed from scratch with PHP and JQuery. I built it using WordPress so that others in the church [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m pleased to say that the new Peoples Church of Montreal website that I got to work on has finally gone live at <a href="http://www.peoplesmontreal.org">www.peoplesmontreal.org</a>. The website was built with WordPress and a theme which I designed and developed from scratch with PHP and JQuery. I built it using WordPress so that others in the church can update the website on their own. Jonathan Sturgeon, the Media Director for the church has been shooting videos of all the sermons and is making them available through Vimeo on the website.</p>
<p><a href="http://www.peoplesmontreal.org"><img class="aligncenter size-medium wp-image-155" title="peoplesmontreal" src="http://www.leonardteo.com/wp-content/uploads/2009/12/peoplesmontreal-400x327.jpg" alt="" width="400" height="327" /></a><a href="http://www.peoplesmontreal.org"></a></p>
<p><a href="http://www.peoplesmontreal.org">Peoples Church of Montreal website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2009/12/peoples-church-of-montreal-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PTGUI and Panoramas</title>
		<link>http://www.leonardteo.com/2009/12/ptgui-and-panoramas/</link>
		<comments>http://www.leonardteo.com/2009/12/ptgui-and-panoramas/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:05:22 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Eye Candy]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=124</guid>
		<description><![CDATA[After years of using Realviz Stitcher software for creating panoramas, I decided to try out PTGUI, which was recommended to me by visual effects artists for creating spherical HDR&#8217;s used for lighting and reflections in 3D computer graphics. I ran in some old images that I had taken which did not stitch correctly in Stitcher, [...]]]></description>
			<content:encoded><![CDATA[<p>After years of using Realviz Stitcher software for creating panoramas, I decided to try out PTGUI, which was recommended to me by visual effects artists for creating spherical HDR&#8217;s used for lighting and reflections in 3D computer graphics. I ran in some old images that I had taken which did not stitch correctly in Stitcher, and found PTGUI to be absurdly amazing. Check out the images.</p>
<p style="text-align: center;"><a href="http://www.leonardteo.com/wp-content/uploads/2009/12/calanques.jpg"><img class="aligncenter size-medium wp-image-125" title="calanques" src="http://www.leonardteo.com/wp-content/uploads/2009/12/calanques-400x132.jpg" alt="" width="400" height="132" /></a>Calanque in Marseilles, France</p>
<p style="text-align: center;"><a href="http://www.leonardteo.com/wp-content/uploads/2009/12/sevenlakes1.jpg"><img class="aligncenter size-medium wp-image-126" title="sevenlakes1" src="http://www.leonardteo.com/wp-content/uploads/2009/12/sevenlakes1-400x126.jpg" alt="" width="400" height="126" /></a>Seven Lakes in Sierra Nevada Ranges, California</p>
<p style="text-align: center;"><a href="http://www.leonardteo.com/wp-content/uploads/2009/12/sevenlakes2.jpg"><img class="aligncenter size-medium wp-image-127" title="sevenlakes2" src="http://www.leonardteo.com/wp-content/uploads/2009/12/sevenlakes2-400x137.jpg" alt="" width="400" height="137" /></a>Seven Lakes in Sierra Nevada Ranges, California</p>
<p style="text-align: center;"><a href="http://www.leonardteo.com/wp-content/uploads/2009/12/sevenlakes3.jpg"><img class="aligncenter size-medium wp-image-128" title="sevenlakes3" src="http://www.leonardteo.com/wp-content/uploads/2009/12/sevenlakes3-400x125.jpg" alt="" width="400" height="125" /></a>Seven Lakes in Sierra Nevada Ranges, California</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2009/12/ptgui-and-panoramas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Dom Cathedral &#8211; why technology doesn&#8217;t make us better</title>
		<link>http://www.leonardteo.com/2009/08/the-dom-cathedral-why-technology-doesnt-make-us-better/</link>
		<comments>http://www.leonardteo.com/2009/08/the-dom-cathedral-why-technology-doesnt-make-us-better/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 02:36:34 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Rambling]]></category>

		<guid isPermaLink="false">http://www.leonardteo.com/?p=49</guid>
		<description><![CDATA[I recently had the opportunity to visit Cologne, Germany for the Game Developers Conference and Gamescom conventions. When I arrived in Cologne, I was greeted by an amazing, towering cathedral larger than any historical building that I&#8217;ve ever seen. Look at the photo above (I didn&#8217;t take this btw, I swiped it off Wikipedia as [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had the opportunity to visit Cologne, Germany for the Game Developers Conference and Gamescom conventions. When I arrived in Cologne, I was greeted by an amazing, towering cathedral larger than any historical building that I&#8217;ve ever seen.</p>
<p><img class="aligncenter size-full wp-image-50" title="Koelner_Dom" src="http://www.leonardteo.com/wp-content/uploads/2009/08/Koelner_Dom.jpg" alt="Koelner_Dom" width="441" height="793" /></p>
<p>Look at the photo above (I didn&#8217;t take this btw, I swiped it off Wikipedia as I didn&#8217;t bring a camera with me). Check out how small the people are in relation to the cathedral. That&#8217;s just insane.</p>
<p>The story goes that the Dom commenced construction in 1248 and stopped in 1473, then commenced again in 1842 and was completed in 1880. The structure is beautiful, made of solid stone and carved to perfection. There is so much detail as you walk up to the walls to check out the intricacies of its exterior.</p>
<p>As I walked into the interior, I couldn&#8217;t believe it. It looked like a matte painting from a movie. This was not something that I was expecting to see in real life.</p>
<p>The Dom was built in an era where they had no computers and no power machinery. Granted, they probably had lot&#8217;s of slaves or peasants who worked their entire lives on the Dom without much to survive on. But my point is that they somehow managed to build this structure without all the technological wizardry that we have today.</p>
<p>Today, our construction methods involve using a lot of CAD, BIM and software to design and visualize the construction project before it gets built. Dom had none of that. In fact, I learned from a colleague that the Dom is technically not supposed to be standing. Apparently, if you put the Dom into a software simulation, it should actually fall down!</p>
<p>Construction-wise, the Dom is literally rock solid. I&#8217;m just amazed at how much stone they moved, cut and put into place! This was all done by hand with no powertools, heavy machinery and powercranes to haul up the materials.</p>
<p>I can&#8217;t help but make comparisons. Here is a structure that was built hundreds of years ago, without the aid of technology. Not only is it more beautiful than most of the concrete monstrosities that we create today, it&#8217;s still standing strong and not falling down any time soon! Compare that with the structures in Montreal which are all crumbling to pieces after only a few years!</p>
<p style="text-align: center;"><img class="aligncenter" title="Koelner_Dom_Innenraum" src="../wp-content/uploads/2009/08/Koelner_Dom_Innenraum-648x1024.jpg" alt="Koelner_Dom_Innenraum" width="583" height="922" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardteo.com/2009/08/the-dom-cathedral-why-technology-doesnt-make-us-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
