<?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>www.tjeerd.net &#187; Tjeerd</title>
	<atom:link href="http://www.tjeerd.net/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tjeerd.net</link>
	<description>a different look (v5.0)</description>
	<lastBuildDate>Thu, 03 Nov 2011 11:20:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>World Statues Festival Arnhem 2011</title>
		<link>http://www.tjeerd.net/2011/10/23/world-statues-festival-arnhem-2011/</link>
		<comments>http://www.tjeerd.net/2011/10/23/world-statues-festival-arnhem-2011/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 17:52:16 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/home]]></category>
		<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=763</guid>
		<description><![CDATA[Last month I visited the World Statues Festival in Arnhem. More than hundred people from all over the world presenting themselves as statues. The weather was great and it was very crowded. Ester and I took some pictures which you can find here.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tjeerd.net/wp-content/uploads/2011/10/worldstatuesfestivalarnhem.jpg"><img src="http://www.tjeerd.net/wp-content/uploads/2011/10/worldstatuesfestivalarnhem.jpg" alt="" title="World Statues Festival Arnhem 2011" width="200" height="133" class="alignleft size-full wp-image-764" /></a>Last month I visited the <a href="http://www.worldstatues.nl" title="World Statues Festival Arnhem 2011" target="_blank">World Statues Festival</a> in Arnhem. More than hundred people from all over the world presenting themselves as statues. The weather was great and it was very crowded. Ester and I took some pictures which you can find <a href="http://tjeerd.net/photography/#/content/worldstatuesfestivalarnhem/" title="World Statues Festival Arnhem 2011" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2011/10/23/world-statues-festival-arnhem-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guruplug boot and kernel upgrade for stable Wi-Fi</title>
		<link>http://www.tjeerd.net/2010/12/29/guruplug-boot-and-kernel-upgrade-for-stable-wi-fi/</link>
		<comments>http://www.tjeerd.net/2010/12/29/guruplug-boot-and-kernel-upgrade-for-stable-wi-fi/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 10:41:13 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/dev]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=736</guid>
		<description><![CDATA[Recently I got my Guruplug Server Plus device and I am happy with the toy, but soon I discovered that the Wi-Fi drivers are not stable if you want to run the device in &#8220;client mode&#8221;, I found out that recently there has been put up a page with instructions to make the device Wi-Fi [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I got my Guruplug Server Plus device and I am happy with the toy, but soon I discovered that the Wi-Fi drivers are not stable if you want to run the device in &#8220;client mode&#8221;, I found out that recently there has been put up a <a href="http://www.plugcomputer.org/plugwiki/index.php/Setting_GuruPlug_to_be_a_stable_WiFi_Client">page with instructions</a> to make the device Wi-Fi stable. Although the instructions are there, it was difficult for me to find the right way to upgrade the U-boot and kernel. So here the way I did it. In a next posting I will explain how to setup Wi-Fi correctly, still figuring that out.</p>
<p>Prerequisites:<br />
- Guruplug connected to your network via ethernet and a JTAG module to allow serial console access to the device<br />
- Computer connected to your network (probably also the computer you want to use to access your Guruplug via the serial console)</p>
<p><strong>Part 1: setting up the TFTP-server and putting the images in the right place</strong></p>
<p>- Download pre-compiled U-boot binary <a href="http://oinkzwurgl.org/guruplug_uboot">here</a> (direct <a href="http://oinkzwurgl.org/dl.php?file=guruplug-u-boot-flipflip-20101111.tar.gz">link</a>) into a directory (e.g. /root/guruplug)<br />
- Download pre-compiled binary kernel <a href="http://www.plugcomputer.org/plugwiki/index.php/Setting_GuruPlug_to_be_a_stable_WiFi_Client">here</a> (direct <a href="http://www.plugcomputer.org/plugwiki/index.php/File:UImage_linux_kernel_2_6_33_7.tar.bz2">link</a>) into a directory (e.g. also /root/guruplug)<br />
- Install a tftp-server (under Ubuntu Linux) and check whether it is running:</p>
<p><code>sudo apt-get install tftpd-hpa<br />
service tftpd-hpa status</code></p>
<p>- Go to your work directory (/root/guruplug) and extract the u-boot and the kernel archive:</p>
<p><code>tar xvzf guruplug-u-boot-flipflip-20101111.tar.gz<br />
tar xjvf UImage_linux_kernel_2_6_33_7.tar.bz2</code></p>
<p>- Copy of the extracted contents the following two files to the folder where tftpboot resides, in my case /var/lib/tftpboot:</p>
<p><code>mv /root/guruplug/u-boot.kwb /var/lib/tftpboot<br />
mv /root/guruplug/uImage /var/lib/tftpboot</code></p>
<p><strong>Part 2: The serial console / JTAG setup and &#8216;burning&#8217; the images</strong></p>
<p>- Connect via the serial console to the Guruplug, see <a href="http://www.plugcomputer.org/plugwiki/index.php/Setting_up_Serial_Console_Under_Linux">this </a>page. This<br />
allows you to see what is going on on the device, including the boot process (U-boot).<br />
- Turn on the Guruplug and see the device booting, when you see a message which allows you to interrupt the boot process by pressing a key, do so, this will show you the U-boot prompt<br />
- Set some environment variables to prepare for &#8216;downloading&#8217; the images from your TFTP-server (= <em>serverip</em> variable) to your Guruplug (= <em>ipaddr</em> variable). The IP addresses used here might be different for your network. The <em>serverip</em> is the computer running the TFTP-server. The <em>ipaddr</em> is the IP address you give to your Guruplug. It might be handy to save the environment variables so they are there everytime you boot.</p>
<p><code>setenv serverip=192.168.0.100<br />
setenv ipaddr=192.168.0.110<br />
saveenv<br />
</code></p>
<p>- Download the U-boot image from the TFTP-server into the memory of your Guruplug, erase the old U-boot image and write the new U-boot image into the memory of the plug. Finally reset the device. If everything went fine, you will see your updated U-boot prompt.</p>
<p><code>tftp 0x6400000 u-boot.kwb<br />
nand erase 0x00000000 0x0100000<br />
nand write 0x6400000 0x0000000 0x80000<br />
reset</code></p>
<p>- Now install the new kernel image from the TFTP-server into the memory of the Guruplug and set the environment variables and save them.</p>
<p><code>tftp 0x6400000 uImage<br />
nand erase 0x100000 0x400000<br />
nand write.e 0x6400000 0x100000 0x400000</p>
<p>setenv x_bootcmd_kernel 'nand read.e 0x6400000 0x100000 0x400000'<br />
setenv x_bootargs_root 'ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs'<br />
setenv x_bootargs 'console=ttyS0,115200'<br />
setenv x_bootcmd '$(x_bootcmd_kernel); setenv bootargs $(x_bootargs) $(x_bootargs_root) ;bootm 0x6400000;'<br />
setenv bootcmd 'run x_bootcmd'<br />
saveenv<br />
</code></p>
<p>Now you should be able to boot up your Guruplug with a new U-boot and kernel installed by entering the following command:</p>
<p><code>reset</code></p>
<p>Useful links:<br />
<a href="http://www.denx.de/wiki/bin/view/DULG/Manual">http://www.denx.de/wiki/bin/view/DULG/Manual</a><br />
<a href="http://www.plugcomputer.org/plugwiki/index.php/U-Boot_Quick_Reference">http://www.plugcomputer.org/plugwiki/index.php/U-Boot_Quick_Reference</a><br />
<a href="http://www.plugcomputer.org/plugwiki/index.php/Re-building_the_kernel_and_U-Boot">http://www.plugcomputer.org/plugwiki/index.php/Re-building_the_kernel_and_U-Boot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/12/29/guruplug-boot-and-kernel-upgrade-for-stable-wi-fi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Polder of Zuidland and Het Spui</title>
		<link>http://www.tjeerd.net/2010/09/11/polder-of-zuidland-and-het-spui/</link>
		<comments>http://www.tjeerd.net/2010/09/11/polder-of-zuidland-and-het-spui/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 18:41:49 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=727</guid>
		<description><![CDATA[Last Monday I filmed nearby Zuidland and Het Spui. I used a tripod for a more stable underground. I experienced several issues which I need to solve, like the need for ND (neutral density/gradient) filters to minimalize the effect of over exposure of some footage. So I am now looking around for Cokin filtersets/adapters/holders which [...]]]></description>
			<content:encoded><![CDATA[<p>Last Monday I filmed nearby <a href="http://maps.google.nl/maps?om=1&#038;hl=nl&#038;ie=UTF8&#038;ll=51.81355,4.282994&#038;spn=0.022419,0.066047&#038;z=15">Zuidland</a> and <a href="http://nl.wikipedia.org/wiki/Spui_(water)">Het Spui</a>. I used a tripod for a more stable underground. I experienced several issues which I need to solve, like the need for ND (neutral density/gradient) filters to minimalize the effect of over exposure of some footage. So I am now looking around for Cokin filtersets/adapters/holders which I can put on my lenses. Hopefully this improves the contrast/exposure effects.</p>
<p><object width="540" height="385"><param name="movie" value="http://www.youtube.com/v/B5xMkKFOho0?fs=1&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/B5xMkKFOho0?fs=1&amp;hl=nl_NL" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/09/11/polder-of-zuidland-and-het-spui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimental footage of Castle De Haar, Haarzuilens</title>
		<link>http://www.tjeerd.net/2010/08/02/experimental-footage-of-castle-de-haar-haarzuilens/</link>
		<comments>http://www.tjeerd.net/2010/08/02/experimental-footage-of-castle-de-haar-haarzuilens/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 13:45:19 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/home]]></category>
		<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=721</guid>
		<description><![CDATA[Yesterday I went to castle De Haar in Haarzuilens to record some random locations with my camera and to test my monopod with my new wide-angle lens with polarisation filter. You will notice there is some shakey footage and even some moiree-effects on the castle walls. Actually it&#8217;s a relatively quick-and-dirty edited movie, but it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I went to castle De Haar in Haarzuilens to record some random locations with my camera and to test my monopod with my new wide-angle lens with polarisation filter. You will notice there is some shakey footage and even some moiree-effects on the castle walls. Actually it&#8217;s a relatively quick-and-dirty edited movie, but it&#8217;s a good way to learn and experiment with the camera. Remember: I have little to no knowledge about filming at all and that&#8217;s clearly visible, for now <img src='http://www.tjeerd.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p><center><object width="540" height="385"><param name="movie" value="http://www.youtube.com/v/NJRLjnio8MQ&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/NJRLjnio8MQ&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="385"></embed></object></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/08/02/experimental-footage-of-castle-de-haar-haarzuilens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pasture and nature between Haarzuilens and Vleuten</title>
		<link>http://www.tjeerd.net/2010/07/17/pasture-and-nature-between-haarzuilens-and-vleuten/</link>
		<comments>http://www.tjeerd.net/2010/07/17/pasture-and-nature-between-haarzuilens-and-vleuten/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 19:29:27 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/home]]></category>
		<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=716</guid>
		<description><![CDATA[Today I filmed in the grasslands between Vleuten and Haarzuilens with my Canon 550D-camera. It was nice weather with sun and clouds. This is actually the third or fourth time that I put some effort in filming and you can notice that in the experimental way it is done. Also I still need to find [...]]]></description>
			<content:encoded><![CDATA[<p>Today I filmed in the grasslands between Vleuten and Haarzuilens with my Canon 550D-camera. It was nice weather with sun and clouds. This is actually the third or fourth time that I put some effort in filming and you can notice that in the experimental way it is done. Also I still need to find my tripod, because it is sometimes too shakey. But the image stabilizer of the Canon telelens does a good job to reduce the shaking.</p>
<p><center><object width="540" height="385"><param name="movie" value="http://www.youtube.com/v/1arNXoO9-xs&amp;hl=nl_NL&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/1arNXoO9-xs&amp;hl=nl_NL&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="385"></embed></object></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/07/17/pasture-and-nature-between-haarzuilens-and-vleuten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bollywood movies</title>
		<link>http://www.tjeerd.net/2010/05/15/bollywood-movies/</link>
		<comments>http://www.tjeerd.net/2010/05/15/bollywood-movies/#comments</comments>
		<pubDate>Sat, 15 May 2010 08:29:33 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=709</guid>
		<description><![CDATA[Will hollywood do a re-make of the following movie called Alluda Majaka with the actor Chiranjeevi? Never heard about both the movie and the actor, but a movie with ingredients like a flying tractor must be hilarious.]]></description>
			<content:encoded><![CDATA[<p>Will hollywood do a re-make of the following movie called Alluda Majaka with the actor Chiranjeevi? Never heard about both the movie and the actor, but a movie with ingredients like a flying tractor must be hilarious.</p>
<p><object width="540" height="385"><param name="movie" value="http://www.youtube.com/v/-E6q-m1tLn8&#038;hl=nl_NL&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-E6q-m1tLn8&#038;hl=nl_NL&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/05/15/bollywood-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photographing grasslands in Vleuten and Haarzuilens</title>
		<link>http://www.tjeerd.net/2010/05/08/photographing-grasslands-in-vleuten-and-haarzuilens/</link>
		<comments>http://www.tjeerd.net/2010/05/08/photographing-grasslands-in-vleuten-and-haarzuilens/#comments</comments>
		<pubDate>Sat, 08 May 2010 20:09:45 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/home]]></category>
		<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=705</guid>
		<description><![CDATA[This week I finally made some time to take photographs of the grasslands between Vleuten and Haarzuilens. I had luck with the weather and I was just in time because when I came home, they mowed all dandelions. This is my first walk here with my new camera and it all seems to work fine. [...]]]></description>
			<content:encoded><![CDATA[<p>This week I finally made some time to take photographs of the grasslands between Vleuten and Haarzuilens. I had luck with the weather and I was just in time because when I came home, they mowed all dandelions. This is my first walk here with my new camera and it all seems to work fine.</p>
<p>You can see the pictures <a href="http://www.tjeerd.net/galerij2/view.php?galerij=poldervleutenhaarzuilens">here </a>.</p>
<p><img src="http://www.tjeerd.net/wp-content/uploads/2010/05/img_0090.jpg" alt="Grasslands of Vleuten and Haarzuilens" title="Grasslands of Vleuten and Haarzuilens" width="256" height="171" class="alignleft size-full wp-image-706" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/05/08/photographing-grasslands-in-vleuten-and-haarzuilens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New photocamera, Canon 550d</title>
		<link>http://www.tjeerd.net/2010/03/20/new-photocamera-canon-550d/</link>
		<comments>http://www.tjeerd.net/2010/03/20/new-photocamera-canon-550d/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 20:24:13 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/dev]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=683</guid>
		<description><![CDATA[A few weeks ago I heard about the new Canon 550D camera which was going to hit the market. This photocamera allows you to record movies in full HD resolution using your normal photography lenses. After seeing some recordings with this camera I was completely astonished by the filming quality. It looks so professional. I [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I heard about the new Canon 550D camera which was going to hit the market. This photocamera allows you to record movies in full HD resolution using your normal photography lenses. After <a href="http://www.youtube.com/watch?v=u0pvqxMeyIQ">seeing</a> <a href="http://www.youtube.com/watch?v=HfAzMTtS3G8">some</a> <a href="http://www.youtube.com/watch?v=8N7A0TYwJ7Q">recordings</a> with this camera I was completely astonished by the filming quality. It looks so professional. I immediately ordered the camera and within a few days I received it. Unfortunately I don&#8217;t have that much time yet to experiment with it, but I managed to record from behind glass (at home) some hares in the pasture. But it is at 500 mm without a tripod, so it proves that it can record, but the quality is not representative.</p>
<p><center><object width="450" height="285"><param name="movie" value="http://www.youtube.com/v/ckrE7y1lKRY&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ckrE7y1lKRY&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="285"></embed></object></center></p>
<p>Another issue is that my computer cannot manage to play the HD files, so I also need to buy a faster computer. Which probably will be required if I want to really start editing movies, my laptop is not fast enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2010/03/20/new-photocamera-canon-550d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy in our new house</title>
		<link>http://www.tjeerd.net/2009/11/15/busy-in-our-new-house/</link>
		<comments>http://www.tjeerd.net/2009/11/15/busy-in-our-new-house/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 18:04:32 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/home]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=673</guid>
		<description><![CDATA[Not that I&#8217;m not writing anything at all at the moment, but since we got the keys of our new house two weeks ago, we are constantly busy with our new house. You can read updates about the work we are doing in our new house at our special website. If you want access to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-674" title="Safety Helmet" src="http://www.tjeerd.net/wp-content/uploads/2009/11/Safety_Helmet_Earmuff.jpg" alt="Safety Helmet" width="100" height="142" /> Not that I&#8217;m not writing anything at all at the moment, but since we got the keys of our new house two weeks ago, we are constantly busy with our new house. You can read updates about the work we are doing in our new house at our special website. If you want access to that site, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2009/11/15/busy-in-our-new-house/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2001: A Space Oddysey</title>
		<link>http://www.tjeerd.net/2009/10/21/2001-a-space-oddysey/</link>
		<comments>http://www.tjeerd.net/2009/10/21/2001-a-space-oddysey/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 19:23:05 +0000</pubDate>
		<dc:creator>Tjeerd</dc:creator>
				<category><![CDATA[/media]]></category>

		<guid isPermaLink="false">http://www.tjeerd.net/?p=667</guid>
		<description><![CDATA[For years the movie 2001: A Space Oddysey was on my todo list, I watched it this evening. I&#8217;ve seen A Clockwork Orange &#8211; also from Kubrick - which was already vague, but this movie also has a sort of storyline which is really making it &#8216;complex&#8217; actually. The focus is really on graphics and sound [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-668" title="2001: A Space Oddysey" src="http://www.tjeerd.net/wp-content/uploads/2009/10/2001_a_space_odyssey_hello_dave.jpg" alt="2001: A Space Oddysey" width="153" height="181" />For years the movie 2001: A Space Oddysey was on my todo list, I watched it this evening. I&#8217;ve seen A Clockwork Orange &#8211; also from Kubrick - which was already vague, but this movie also has a sort of storyline which is really making it &#8216;complex&#8217; actually. The focus is really on graphics and sound and some sort of story which is probably something for the viewer to think about.</p>
<p>What I dislike about modern day movies is that there is so much continuous action, overloaded with special effects, a lot of talking and not that much to think about. Then A Space Oddysey is a big contrast with that. Not bad to have seen it now finally.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tjeerd.net/2009/10/21/2001-a-space-oddysey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

