<?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>Information Overload</title>
	<atom:link href="http://alexandervanloon.nl/english/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://alexandervanloon.nl/english</link>
	<description>Alexander van Loon&#039;s weblog</description>
	<lastBuildDate>Sat, 19 May 2012 11:25:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>My personal alternate style for Tarski</title>
		<link>http://alexandervanloon.nl/english/?p=1050</link>
		<comments>http://alexandervanloon.nl/english/?p=1050#comments</comments>
		<pubDate>Fri, 18 May 2012 15:21:15 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=1050</guid>
		<description><![CDATA[As you regular visitors might have noticed, I&#8217;ve finally decided to switch themes. As I wrote almost a year ago, the K2 theme I used previously is unmaintained. I didn&#8217;t want to keep using it in combination with all the new versions of WordPress because I feared might cause compatibility problems and not allow using [...]]]></description>
			<content:encoded><![CDATA[<p>As you regular visitors might have noticed, I&#8217;ve finally decided to switch themes. As I <a href="http://alexandervanloon.nl/english/?p=794">wrote</a> almost a year ago, the <a href="http://getk2.com/">K2</a> theme I used previously is unmaintained. I didn&#8217;t want to keep using it in combination with all the new versions of WordPress because I feared might cause compatibility problems and not allow using certain new functionality. So I decided to start using the <a href="http://tarskitheme.com/">Tarski</a> theme. However, I didn&#8217;t like the default looks of the Tarski theme, so I made my own alternate style for the theme. You can see the CSS code for my theme below, thanks to the <a href="http://wordpress.org/extend/plugins/syntaxhighlighter/">SyntaxHighlighter Evolved</a> plugin.</p>
<pre class="brush: css; collapse: true; light: false; title: ; toolbar: true; notranslate">/*
avlmod.css
Alexander van Loon's style for the Tarski theme - http://tarskitheme.com/
Designed by Alexander van Loon, http://alexandervanloon.nl/
*/

/* Tables */

table {
    background: none repeat scroll 0 0 #F9F9F9;
    border: 1px solid #AAAAAA;
    border-collapse: collapse;
    margin: 1em 1em 1em 0;
}

table th, table td {
    border: 1px solid #AAAAAA;
    padding: 0.2em;
}

table th {
    background: none repeat scroll 0 0 #F2F2F2;
    text-align: center;
}

/* Body */

body {
    background: #F7F6F5;
}

/* Wrapper */

#wrapper {
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
    background: white;
}

/* Header Image */

#header-image {
    margin: 0 0 -50px 0;
}

/* Title */

#title {
    border-bottom: medium none;
    margin: 0 0 0 40px;
    position: relative;
    top: -70px;
}

/* Blog title */

#blog-title {
    color: white;
    font-family: &quot;Trebuchet MS&quot;,Verdana,Sans-Serif;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0.1em 0.1em 0.2em black;
}

#blog-title &gt; a:visited {
    color: white;
}

/* Tagline */

#tagline {
    color: white;
    font-family: &quot;Trebuchet MS&quot;,Verdana,Sans-Serif;
    font-size: 0.9em;
    font-style: normal;
    font-weight: bold;
    text-shadow: 0.1em 0.1em 0.2em black;
}

/* Navigation */

#navigation {
    border-top: 1px solid #CCCCCC;
    margin: 0;
}

/* Post title heading */

h2, h2 a, h2 a:visited {
    color: #444444 !important;
    font-family: &quot;Trebuchet MS&quot;,Verdana,Sans-Serif !important;
    font-size: 20px !important;
}</pre>
<p>Developing my own theme wasn&#8217;t easy, it took a lot of trial and error, searching and <a href="https://developer.mozilla.org/en/CSS">reading</a> to figure out how CSS works. Because there were some things I didn&#8217;t understand I posted a <a href="http://wordpress.org/support/topic/modifying-tarski-to-look-like-k2">topic</a> at the WordPress.org forum, while it didn&#8217;t provide me with the help I expected I did get the very good advice to use <a href="http://getfirebug.com/">Firebug</a>. Fortunately a nice <a href="http://hetkarakter.com/">colleague</a> at work helped me out.</p>
<p>Yet, I still have little idea of what I&#8217;m doing and if my code is any good or an ugly hack. Take the last paragraph of code for an example, it seems the <em>!important</em> is necessary to overrule some inheritance to make it work. I don&#8217;t think this is the right way and I&#8217;d like to know how to do it without using <em>!important</em>. Also the border above the navigation bar (with &#8220;Home&#8221; and &#8220;About&#8221;) is placed just below the header image in Firefox, but on Chrome (and other browsers using WebKit) the border is placed over the header image.</p>
<p>To make my theme I borrowed some CSS code of other websites I examined, to get an idea of how others do it. The table code is borrowed from Wikipedia and already features in the child theme (alternate style) I made for K2. The background color and the box shadow in the background were borrowed from <a href="http://www.omgubuntu.co.uk/">OMG! Ubuntu</a>. I like what I have now, while my original goal was to mimic K2 as close as possible I&#8217;ve made some different changes which I like. And even if I&#8217;m still  a newbie, I like the fact that I know a bit more about CSS now. What I&#8217;m still missing is K2 rolling archives slider bar, which also stays on top along with the search field as you scroll. Copying that to Tarski would probably involve quite some time and advanced skills, which I don&#8217;t have.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=1050</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everything is a Remix and politics</title>
		<link>http://alexandervanloon.nl/english/?p=1034</link>
		<comments>http://alexandervanloon.nl/english/?p=1034#comments</comments>
		<pubDate>Thu, 05 Apr 2012 13:18:41 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=1034</guid>
		<description><![CDATA[Today I watched the fourth and last part of Everything is a Remix. It is a brilliant video series which explains the problems of intellectual property and much more. It is very well made and effective in communicating its message. The fourth part explains how the rules of intellectual property no longer protect the inventions [...]]]></description>
			<content:encoded><![CDATA[<p>Today I watched the fourth and last part of <a href="http://www.everythingisaremix.info/watch-the-series/">Everything is a Remix</a>. It is a brilliant video series which explains the problems of intellectual property and much more. It is very well made and effective in communicating its message. The fourth part explains how the rules of intellectual property no longer protect the inventions of artists and inventors, but harm the common good. With that statement made, the fourth part ends, without any suggestions on how we could solve the problem. Maybe the creator of the series, Kirby Ferguson, didn&#8217;t have a desire to comment on solutions.</p>
<p>Recently we have witnessed the death of <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">SOPA</a> and <a href="http://en.wikipedia.org/wiki/Anti-Counterfeiting_Trade_Agreement">ACTA</a> being the subject of much criticism. I have already written a <a href="http://alexandervanloon.nl/nederlands/?p=589">post</a> about it on my Dutch weblog. I observed in that post that there are politicians who are willing to take action against these corporate attacks on the public domain. But even then, it seems we are merely defending ourselves and stopping the attack, but we don&#8217;t counterattack. While stricter intellectual property legislation may have been averted for now, it is still possible for film studios to cash in for eternity on films under their copyright, even if <a href="http://alexandervanloon.nl/english/?p=504">they</a> are more than half a century old.</p>
<p>But we do have the power to make change happen with our vote. We have the <a href="http://en.wikipedia.org/wiki/Pirate_Parties_International">Pirate Parties</a> for example. I have not studied the political program of the <a href="http://depiratenpartij.wordpress.com/">Dutch Pirate Party</a>, but if my own party the <a href="http://en.wikipedia.org/wiki/People%27s_Party_for_Freedom_and_Democracy">People&#8217;s Party for Freedom and Democracy</a> continues to tread on privacy and other parties don&#8217;t do enough I might be tempted to vote for them in <a href="http://en.wikipedia.org/wiki/Protest_vote">protest</a>.</p>
<p>By the way, a much longer documentary film on intellectual property I&#8217;d recommend is <a href="http://en.wikipedia.org/wiki/RiP!:_A_Remix_Manifesto">RiP!: A Remix Manifesto</a> which can be watched <a href="http://vimeo.com/8040182">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=1034</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why is there such a geographic variety in hospitality?</title>
		<link>http://alexandervanloon.nl/english/?p=1019</link>
		<comments>http://alexandervanloon.nl/english/?p=1019#comments</comments>
		<pubDate>Sun, 26 Feb 2012 16:57:47 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=1019</guid>
		<description><![CDATA[On the website of the Dutch travel TV program 3 op Reis I&#8217;ve recently started watching all the episodes I&#8217;ve missed since the start of the program. The program captured my interest since I zapped to it accidentally a few weeks ago. Right now I&#8217;m at episode fifteen of the first season, of five seasons [...]]]></description>
			<content:encoded><![CDATA[<p>On the website of the Dutch travel TV program <a href="http://3opreis.bnn.nl/">3 op Reis</a> I&#8217;ve recently started watching all the episodes I&#8217;ve missed since the start of the program. The program captured my interest since I zapped to it accidentally a few weeks ago. Right now I&#8217;m at episode fifteen of the first season, of five seasons with 110 episodes in total so far. In the first season the presenter Floortje Dessing makes a long journey from Amsterdam to Bhutan through Europe and Asia. When she leaves Europe and Asia I notice that the population is much more <a href="http://en.wikipedia.org/wiki/Hospitality">hospitable</a> to her. When she leaves Ukraine and arrives in Georgia, she is given breads for free by a baker. Later in Azerbaijan, Turkmenistan and and especially Iran she receives gifts and is invited for dinner or parties even more often. Of course I&#8217;ve merely seen fifteen episodes of the first season and a few more of the last season of only one travel program so far, but I detect a general tendency that some Asian cultures are much more hospitable than Western cultures. The question if that is indeed the case prompted me to write this post.</p>
<p>From my personal experience I remember when I was on <a href="http://alexandervanloon.nl/english/?p=473">vacation</a> with my family in the west of the USA, in <a href="http://en.wikipedia.org/wiki/Zion_National_Park">Zion National Park</a>. When we stopped our car along the road in the middle of nowhere to enjoy the scenery, two cars drove by. Both stopped, with one driver taking our photo because he noticed us taking photos and another driver because he was concerned our car might have broken down. But I&#8217;ve experienced generous hospitality even more in Nepal: I was invited to weddings and dinners often and I was even given a place to sleep for free in a private home by <a href="http://alexandervanloon.nl/english/?p=756">Uttam and Meena</a>. But, being such a rational person I&#8217;m not going to trust my and other&#8217;s anecdotal evidence alone, so I fired up Google Scholar. It was a bit difficult to find studies on the subject because unrefined and even more refined search terms return articles on the <a href="http://en.wikipedia.org/wiki/Hospitality_industry">hospitality industry</a>, but after filtering I read two interesting articles.</p>
<p>In a study of the hospitality of the Jordanian Balga Bedouin, Shryock (2004) writes that for these (formerly) nomadic people, hospitality was/is a means of public security. They are hospitable to strangers because they might one day be strangers themselves in need of hospitality when they have traveled for a long distance and are in need of food and a place to sleep. It is like a tax they voluntarily accept from each other, comparable to the Golden Rule they treat others how they would like to be treated themselves. Yet, the hospitality in its purest form is disappearing because now there is a government which imposes taxes and provides social security, among other influences of modernization. In the past hospitality served as a substitute for government (p. 48–51). But still, hospitality has it&#8217;s uses. Hospitality should impress your guests who will then spread the word about your hospitality, increasing your reputation (p. 36–37). A greater reputation gives you fame and influence. (p. 54-–55). While Shryock&#8217;s article is behind a paywall, you can read a shorter news <a href="http://ns.umich.edu/new/releases/20044-welcome-or-not-the-season-of-hospitality-is-coming">article</a> explaining his findings more briefly.</p>
<p>Lashley (2008) combines multiple social science perspectives to explain hospitality. He describes a common theme of religious and cultural factors as motives for hospitality (p. 71–72). In the studies he cites reciprocity is a red thread. What is very interesting is how people from a remote tribe in Indonesia invite tourists to their celebrations, even though the tourists are not able to offer reciprocal hospitality (because tourists stay for only a short time). They do not feel there is a lack of reciprocity however, because tourists bring news from the outside world and feel honored by the presence of tourists (p. 74). But there is also much discussion about what genuine hospitality is. Another scientist is cited who argues that genuine hospitality is fueled by altruism, which includes the following motives (p. 75):</p>
<ul>
<li>the desire to please others, stemming from general friendliness and benevolence or from affection for particular people; concern or compassion;</li>
<li>the desire to meet another’s need;</li>
<li>a desire to entertain one’s friends or to help those in trouble;</li>
<li>a desire to have company or to make friends, and the desire for the pleasures of entertaining – what we may call the wish to entertain as a pastime.</li>
</ul>
<p>The paper ends with a conclusion mentioning that cultural and religious obligations to be hospitable no longer have a weaker moral force in mature industrialized societies (p. 83).</p>
<p>I think the hospitality given to me by Uttam and Meena definitely falls in the category of genuine hospitality. Since then I&#8217;ve had a desire to offer them hospitality in return, but that&#8217;s not realistic because it&#8217;s unlikely I will meet them again in the near future. I probably have done something in return for their hospitality already by doing volunteer work in their country and helping Meena with teaching English. But if I can&#8217;t offer it to them, I can offer it to others. As soon as I&#8217;ll move out of my parent&#8217;s house (maybe this year or the next) and get my own place to live, I intend to sign up for <a href="http://en.wikipedia.org/wiki/CouchSurfing">CouchSurfing</a> so I can provide others with hospitality.</p>
<p>References:</p>
<p>Lashley, C. (2008). Studying hospitality: Insights from social sciences. <em>Scandinavian Journal of Hospitality and Tourism</em>, 8(1), 69–84.<br />
Shryock, A. (2004). The new Jordanian hospitality: House, host, and guest in the culture of public display. <em>Comparative Studies in Society and History</em>, 46(1), 35–62.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=1019</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Films seen in Januari and Februari 2012</title>
		<link>http://alexandervanloon.nl/english/?p=1011</link>
		<comments>http://alexandervanloon.nl/english/?p=1011#comments</comments>
		<pubDate>Sun, 26 Feb 2012 16:57:36 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[tv and film]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=1011</guid>
		<description><![CDATA[In these two months I&#8217;ve seen the following films, most from the DVD rental store but the last one in the cinema: The Expendables (2010) Howl&#8217;s Moving Castle (2004) Gegen die Wand/Head-On (2004) Todo sobre mi madre/All About My Mother (1999) Låt den rätte komma in/Let the Right One In (2008) Shame (2011) The Expendables [...]]]></description>
			<content:encoded><![CDATA[<p>In these two months I&#8217;ve seen the following films, most from the DVD rental store but the last one in the cinema:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/The_Expendables_%282010_film%29">The Expendables</a> (2010)</li>
<li><a href="http://en.wikipedia.org/wiki/Howl%27s_Moving_Castle_%28film%29">Howl&#8217;s Moving Castle</a> (2004)</li>
<li><a href="http://en.wikipedia.org/wiki/Head-On">Gegen die Wand</a>/Head-On (2004)</li>
<li><a href="http://en.wikipedia.org/wiki/All_About_My_Mother">Todo sobre mi madre</a>/All About My Mother (1999)</li>
<li><a href="http://en.wikipedia.org/wiki/Let_the_Right_One_In">Låt den rätte komma in</a>/Let the Right One In (2008)</li>
<li><a href="http://en.wikipedia.org/wiki/Shame_%282011_film%29">Shame</a> (2011)</li>
</ul>
<p><em>The Expendables</em> wasn&#8217;t meant to have the qualities of a good film, it&#8217;s an old school action film which aims at exciting it&#8217;s viewers with fighting, firearms and exorbitant explosions. It&#8217;s not as action packed as Stallone&#8217;s earlier work <a href="http://en.wikipedia.org/wiki/Rambo_%28film%29">Rambo</a> (2008) which probably shares the first place for the most violent film I&#8217;ve ever seen with <a href="http://en.wikipedia.org/wiki/The_Passion_of_the_Christ">The Passion of the Christ</a> (2004), but that&#8217;s no wonder given the excess of that film. It&#8217;s good to see an uncomplicated action film like this once in a while, but I was not impressed by the hand-to-hand combat. Other films manage to do that better, this brilliant <a href="http://www.youtube.com/watch?v=2hyuOErG7Sw">action scene</a> from the film <a href="http://en.wikipedia.org/wiki/Flash_Point_%28film%29">Flash Point </a>(2003) is one of the best examples of what an hand-to-hand combat action scene should be like.</p>
<p><em>Howl&#8217;s Moving Castle</em> is another one of <a href="http://en.wikipedia.org/wiki/Studio_Ghibli">Studio Ghibli</a>&#8216;s wonderful films. Some scenes in this film amaze me with their detail, and must have taken a lot of work to draw and animate. <a href="http://en.wikipedia.org/wiki/Spirited_Away">Spirited Away</a> (2001) is still my favourite however. I hope to see some of there more recent films, too. <em>Gegen die Wand</em> shows us the life of Cahit and Sibel, two Germans with a Turkish background being torn between two cultures, not feeling accepted by both. It shows themes such as honor killing and averted love becoming true love, but it ends with Sibel&#8217;s sense of loyalty or duty to her children and new husband winning over her love for Cahit. It&#8217;s an ending which is sad but justified at the same time. Having become a fan of its director Almodovar, <em>Todo sobre mi madre</em> didn&#8217;t disappoint me with it&#8217;s brilliant dialogues and script. <em>Låt den rätte komma in</em> is one of those rare good horror films, the gloomy snowy winters of Sweden make a great decor. I went to see <em>Shame</em> after having seen Steve R. McQueen&#8217;s previous film <a href="http://en.wikipedia.org/wiki/Hunger_%282008_film%29">Hunger</a> (2008). While it doesn&#8217;t surpass <em>Hunger</em>, <em>Shame</em> is another great film from his hand. As someone who has had to cope with serious procrastination issues, I think I can understand how Brandon is affected by his addiction. We see that he suffers, he desperately wants to change his life and lose his addiction, but he can&#8217;t because his will has no control over his addiction. I had a wtf-moment when Brandon was walking around New York at night and is then invited for a &#8216;lift&#8217; by a female in parked car who is is apparently preying on hot guys to pick up. I wish real life would be like that.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=1011</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My opinion on GNOME 3</title>
		<link>http://alexandervanloon.nl/english/?p=1014</link>
		<comments>http://alexandervanloon.nl/english/?p=1014#comments</comments>
		<pubDate>Sat, 25 Feb 2012 13:17:02 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=1014</guid>
		<description><![CDATA[After working for a few months with GNOME 3.2 on Fedora 16, on both my desktop and notebook, I think it&#8217;s time to give my informed opinion about it. To summarize, I like GNOME 3. Unlike KDE 4, the GNOME developers decided to think outside the box and to live with the criticism they received [...]]]></description>
			<content:encoded><![CDATA[<p>After working for a few months with GNOME 3.2 on Fedora 16, on both my desktop and notebook, I think it&#8217;s time to give my informed opinion about it. To summarize, I like GNOME 3. Unlike KDE 4, the GNOME developers decided to think outside the box and to live with the criticism they received for their unconventional choices. I don&#8217;t intend that as criticism of KDE 4, I still like using that too, but right now GNOME 3 impresses me more. Some of the most important changes include removing the <a href="http://en.wikipedia.org/wiki/Taskbar">taskbar</a> and removing the minimize button for windows. My experience was that regardless of these fundamental changes, it was relatively easy to adapt. Not only for me, but also for my mother who used KDE 4 and Windows previously.</p>
<p>If you want to switch windows, it&#8217;s easy to move the mouse pointer over to the Activities menu in the top left corner. This is a relatively small change, but very smart: you don&#8217;t even need to click (but you still can if you want) and you require almost no accuracy to reach the top left corner. Of course, it&#8217;s even easier to use the Windows key to show the Activities menu instantly, or to use the Alt + Tab key combination to switch windows. This and more advice to make working with GNOME Shell more productive can be read in the <a href="http://live.gnome.org/GnomeShell/CheatSheet">GNOME Shell Cheat Sheet</a>. With GNOME Shell I never use the minimize button because it makes no sense without a task bar, so I don&#8217;t miss it at all. I either have my windows maximized or tiled (see the Cheat Sheet) and in the rare case I do want to maximize or return windows to their previous size I double click the title bar.</p>
<p>The visual design of GNOME 3 is minimalistic yet beautiful. I guess GNOME 3 has also cut down on the amount of options and simplified them. When GNOME 3&#8242;s System Settings is compared to KDE&#8217;s System Settings you see they are as different as night is from day. KDE offers a lot more options which is nice if you want to control everything I guess, but there&#8217;s only very few options I miss in the GNOME System Settings. I only used GNOME Tweak Tool for two things: slightly decreasing the font size and changing the font. I didn&#8217;t install a different theme, but I imagine that if options for changing fonts and themes are added to System Settings nothing would be missing. As far as I know that is probably going to happen in the future because the designers didn&#8217;t have time for it yet.</p>
<p>Another interesting thing to note is that the designers and developers have a concept of <a href="http://live.gnome.org/Design/Apps">core applications</a> through which they intend to integrate important functionality into GNOME 3 itself. Most of these ideas are still <a href="http://afaikblog.wordpress.com/2011/11/10/gnome-design-update/">work</a> in <a href="http://afaikblog.wordpress.com/2012/02/10/a-new-approach-to-gnome-application-design/">progress</a>, but we can already see how well instant messaging is integrated in GNOME 3. Personally I haven&#8217;t been using instant messaging for a long time because it doesn&#8217;t really interest me any more, but the impression I have of the design is that it&#8217;s very ingenious, something which hasn&#8217;t been done by other operating systems and desktop environments as far as I know. I especially look forward to the <a href="https://live.gnome.org/Design/Apps/Music">Music</a> core application because Rhythmbox could use some improvement. It&#8217;s also very encouraging to see the amount of <a href="http://blogs.gnome.org/xan/2011/12/04/a-new-design-for-epiphany-web/">work</a> going into <a href="http://blogs.gnome.org/xan/2012/01/17/epiphany-marches-on/">Web</a>, the former Epiphany. What is great that they intend to save as much vertical space as possible, so they moved the <a href="https://live.gnome.org/ThreePointThree/Features/ApplicationMenu">Application Menu</a> and display the options contained in that menu through other means. This change is also on the menu for other applications. For me it&#8217;s essential to have as much vertical space as possible in this age of widescreen monitors.</p>
<p>To finish, what are my most important problems with GNOME 3? The problem with the first priority to fix should be the omission of the Power Off option in the user menu. It took me a while to find it, but you can read all about it in <a href="https://bugzilla.gnome.org/show_bug.cgi?id=643457">bug #643457</a>, which has over 100 comments. It surprises me that the developers and designers haven&#8217;t returned the Power Off option after all the outrage of the users. I&#8217;m not sure what their motivation is, maybe a desire to fix it properly? But all that doesn&#8217;t matter when the end result was that I had to use Google to figure out how I could shut down my PC with GNOME 3. Let alone my mother who wouldn&#8217;t have any clue without the <a href="https://extensions.gnome.org/extension/5/alternative-status-menu/">extension</a> to place the option back in the menu. Breaking with conventions can be a good idea, but breaking with this convention was a bridge too far. The fact that distributions such as openSUSE install such an extension by default shows there is a consensus against this decision. I hope this will be fixed in GNOME 3.4, the fact that it remains missing in GNOME 3.2 was something I didn&#8217;t expect. Another issue is that searching for applications after having opened the Activities menu gives a lag of a few seconds before it returns the search results, for example if I search for the Terminal application. As far as I know this has something to do with icon caching, but I can&#8217;t find a bug report or other explanations for this yet.</p>
<p>I&#8217;ll be using GNOME 3 as my primary desktop environment as much as possible from now on. I&#8217;m still having serious problems with Evolution, but I&#8217;ll save that for another post. At least Evolution does a better job than KMail at this moment. I&#8217;ll probably still check out KDE now and then. With all these upcoming improvements to GNOME 3 exciting times are ahead.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=1014</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adaptation to cold and winter swimming</title>
		<link>http://alexandervanloon.nl/english/?p=1003</link>
		<comments>http://alexandervanloon.nl/english/?p=1003#comments</comments>
		<pubDate>Fri, 10 Feb 2012 12:10:44 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=1003</guid>
		<description><![CDATA[Since I&#8217;ve seen a Dutch news report on Siberian winters last Friday I have been fascinated by how some (or many?) people in cold environments can adapt to very low temperatures. In the news report they cover ice fishing on the Ob river near Barnaul. Let me translate it for those who don&#8217;t know Dutch. [...]]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;ve seen a Dutch <a href="http://nos.nl/video/337177-ijsvissen-op-de-ob.html">news report</a> on Siberian winters last Friday I have been fascinated by how some (or many?) people in cold environments can adapt to very low temperatures. In the news report they cover ice fishing on the Ob river near <a href="http://en.wikipedia.org/wiki/Barnaul">Barnaul</a>. Let me translate it for those who don&#8217;t know Dutch.</p>
<blockquote><p>Reporter: it is -27 ℃, the ice one and half meters thick. But the Siberians here don&#8217;t think it&#8217;s cold at all, it is &#8216;just&#8217; -27 ℃, they say.</p>
<p>Siberian: what do you mean, cold? I don&#8217;t even have my jacket on. Are you making a joke? It is warm today, it&#8217;s not cold at all! We think it&#8217;s cold when it&#8217;s -42 ℃, -25 ℃ is warm and if it&#8217;s -15 ℃ it is so warm that it isn&#8217;t interesting to come any more. Then it&#8217;s like summer.</p>
<p>Reporter: tents provide some protection against the cold, but seasoned Siberians like Aleksandr don&#8217;t even need those.</p>
<p>Aleksandr: why would I need a tent? The sun shines! Today it&#8217;s extremely hot, it&#8217;s beautiful, it&#8217;s a delight to sit here.</p></blockquote>
<p>Both Siberians which are interviewed are ice fishing without any gloves on, with their bare hands. The comment about -27 ℃ being extremely hot seems like hyperbole to me, because the average high for Barnaul in July is 26,2 ℃ according to Wikipedia. But they&#8217;re not bragging if they have no qualms about exposing their bare hands in that low temperature. The Wikipedia article on <a href="http://en.wikipedia.org/wiki/Frostbite#Research">frostbite</a> mentions that some individuals and population groups are more resistant to frostbite because of their adaptation and exposure to very cold environments. Curious as I was, I decided to fire up Google Scholar to learn more.</p>
<p>A more recent article by Daanen (2003) which is cited often gives a review on cold-induced <a href="http://en.wikipedia.org/wiki/Vasodilation">vasodilation</a> (CIVD). I noticed this term doesn&#8217;t have an article on Wikipedia yet so I hope to write one in the near future myself. When the finger tips are exposed to cold CIVD usually occurs after five or ten minutes and is believed to reduce the risk of injuries from cold exposure. People who are often exposed to local cold such as fish filleters develop an increased CIVD response with an earlier onset, and race (along with many other factors) also plays a role with black people having the weakest CIVD response. Further on in the article adaptation and acclimatisation are elaborated on, with a large table showing the large differences in CIVD obtained from many prior experiments.</p>
<p>However, the notion that black people would have an inherently inferior CIVD response as the introduction of the article seems to indicate is put into perspective at that point. One experiment showed that tropical residents who lived in an Arctic region for seven weeks acclimatized and showed the same CIVD response as the Arctic natives. Caucasians had a lower CIVD response than Japanese, but when the Japanese were compared with Caucasians living in the same region in Japan there was no difference. Therefore the conclusion is that ambient factors such as acclimatisation and diet may be more important than ethnic differences. The article concludes that while it is difficult to distinguish between the effect of adaptation and acclimatisation, people born in cold regions and people who expose their hands to cold for a prolonged period of time have an increased CIVD response.</p>
<p>We had some very cold weather in the Netherlands for the last weeks, see this <a href="http://knmi.nl/klimatologie/maand_en_seizoensoverzichten/maand_260_grafiek.html">graph</a> with the grey line showing the normal average temperature for February and the blue and red line showing minimum and maximum temperature respectively. After witnessing the Siberians on the news I thought I should be able to handle the cold without gloves too, but it was not an easy ordeal. Let&#8217;s take last Monday for example, February the 6th. According to the graph the minimum temperature was -15 ℃ and the maximum -3 ℃. That day started with me going to the bus stop. Without gloves my hands felt cold and painful initially but after approximately ten minutes the pain went away and I regained the sensation in my fingers. However, later I had to wait at Utrecht Central Station and Rotterdam Central Station for delayed trains. As such, after my hands had warmed up in the bus they had to cool down again two times. These subsequent periods were much more painful for my hands and my CIVD response seemed to take a lot longer to kick in.</p>
<p>It seems like I still have a long way to go until I can compete with the Siberians, and right now it looks we&#8217;re going to see warmer weather in the Netherlands for the rest of the winter, without temperatures below freezing during the day. Not that I expected that increasing my acclimatisation would be easy. But even if the freezing temperatures are going away, there still is another solution, <a href="http://en.wikipedia.org/wiki/Winter_swimming">winter swimming</a>.</p>
<p>Yesterday I watched the short documentary <a href="http://www.youtube.com/watch?v=NAjt3qKc928">The Ice Tribe</a> on YouTube, which shows ordinary Finnish people enjoying ice swimming. That&#8217;s winter swimming in a hole in the ice, in this case with a water temperature of 0 ℃. There are more video&#8217;s on YouTube showing this, for example a Estonian women even <a href="http://www.youtube.com/watch?v=rXtAA8Djr_o">dives</a> under the ice without too much discomfort. These persons do seem to have some experience which enables them to endure the cold water for at least one minute, because other videos show inexperienced people <a href="http://www.youtube.com/watch?v=Pp0fmzPhm-g">quickly</a> <a href="http://www.youtube.com/watch?v=IHI3eXygBhY">leaving</a> the water within ten seconds. And I was thinking only supernatural persons like our <a href="http://en.wikipedia.org/wiki/Wim_Hof">Wim Hof</a>, the Dutch <a href="http://www.youtube.com/watch?v=XUQwFZ_xFdM">Iceman</a>, could pull off feats like that.</p>
<p>What is notable is that the ice swimmers in the documentary describe ice swimming as a great experience. Some scientific research has been done on the benefits of winter swimming, with the consensus being that it indeed provides physical and psychological benefits. In their introduction Siems, Brenke, Sommerburg and Grune (1999) argue that we have effectively become weaklings thanks to our modern Western society because we protect ourselves so well from cold and heat stresses with heating and air conditioning. This sounds very familiar to me, with my sister and brother who are eager to turn up the heating to 21 ℃ with the recent cold temperatures here.</p>
<p>This lack suggested to have led to a greater incidence of disease. These negative consequences can be partly prevented by exercise and body hardening, with cold exposure being a traditional example of hardening. They report that previous studies have revealed that winter swimmers contract infectious diseases much less often. They researched experienced winter swimmers who swim at least once per week in ice-cold water for about five, but not more than ten, minutes. Their research concludes that winter swimmers have a better defence system against <a href="http://en.wikipedia.org/wiki/Oxidative_stress">oxidative stress</a> than the Average Joe. Similarly, Huttunen, Kokko and Ylijukur (2004) also conclude from their experiment that winter swimming significantly improves general well-being.</p>
<p>So, if both anecdotal and scientific evidence says it&#8217;s good I want to start doing it too. There are several large bodies of water in my neighbourhood which are suitable for swimming, but I think it&#8217;s too much trouble to make a short trip to go winter swimming. I could fill the <a href="http://en.wikipedia.org/wiki/Hot_tub">hot tub</a> in the garden without heating it up, but this is also troublesome for me because a hot tub needs a lot of water before it&#8217;s filled and it needs to be cleaned because it&#8217;s exposed outside. What seems like a better idea to me are cold showers. This alternative is easy, saves water and saves gas for heating. With the current temperatures I like standing in the shower for a long time with very warm water. Today I&#8217;ve taken a shower with lukewarm water without any discomfort, and plan to lower the temperature each time for successive showers until the water doesn&#8217;t get heated at all. Unheated water from a water pipe is probably not 0 ℃ even in the winter here, but it should do. Maybe I&#8217;ll switch to hot water for a minute to finish off, but from now on I&#8217;ll be taking &#8216;winter&#8217; showers and doing myself, my father&#8217;s wallet and the environment a favour.</p>
<p>References:</p>
<p>Daanen, H.A.M. (2003). <a href="http://www.springerlink.com/content/uct5j49cyr5x4j5p/">Finger cold-induced vasodilation: A review</a>.  <em>European Journal of Applied Physiology</em>, <em>89</em>(5), 411–426.<br />
Huttunen, P., L. Kokko and V. Ylijukur (2004). <a href="http://ijch.fi/issues/632/632_Huttunen.pdf">Winter swimming improves general well-being</a>. <em>International Journal of Circumpolar Health</em>, <em>63</em>(2), 140–144.<br />
Siems, W.G., R. Brenke, O. Sommerburg and T. Grune (1999). <a href="http://qjmed.oxfordjournals.org/content/92/4/193">Improved antioxidative protection in winter swimmers</a>. <em>QJM: An International Journal of Medicine</em>, <em>92</em>(4), 193–198.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=1003</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why you should not watch The Girl with the Dragon Tattoo</title>
		<link>http://alexandervanloon.nl/english/?p=999</link>
		<comments>http://alexandervanloon.nl/english/?p=999#comments</comments>
		<pubDate>Sun, 22 Jan 2012 21:47:55 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[tv and film]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=999</guid>
		<description><![CDATA[There is advertising for this film everywhere, so I couldn&#8217;t ignore this issue anymore. Not that I would have been silent on this otherwise, but now I want to convince people even more not to see this film in order to counter the marketing offensive. The film I&#8217;m talking about is the English version from [...]]]></description>
			<content:encoded><![CDATA[<p>There is advertising for this film everywhere, so I couldn&#8217;t ignore this issue anymore. Not that I would have been silent on this otherwise, but now I want to convince people even more not to see this film in order to counter the marketing offensive. The film I&#8217;m talking about is the English version from <a href="http://en.wikipedia.org/wiki/The_Girl_with_the_Dragon_Tattoo_%282011_film%29">2011</a> of <em>The Girl with the Dragon Tattoo</em>; there also is a Swedish version made in <a href="http://en.wikipedia.org/wiki/The_Girl_with_the_Dragon_Tattoo_%282009_film%29">2009</a>.</p>
<p>On the one hand, remakes can be worthwhile. For example, I like both <a href="http://en.wikipedia.org/wiki/Infernal_Affairs">Infernal Affairs</a> and <a href="http://en.wikipedia.org/wiki/The_Departed">The Departed</a>. I think <em>The Departed</em> contributed something substantial over the original from Hong Kong. Also, more unfortunately a remake seemed to be justified because Infernal Affairs was barely known in the West. On the other hand, while I must admit that I have not seen the English version of 2011, let me point at the scores at Metacritic. The Swedish original scores <a href="http://www.metacritic.com/movie/the-girl-with-the-dragon-tattoo">76</a> and the English remake scores <a href="http://www.metacritic.com/movie/the-girl-with-the-dragon-tattoo-2011">71</a>. And that&#8217;s with a $13 million budget for the former and a $90 million budget for the latter. The Swedish original was not obscure, in fact it was broadcast by a Dutch public broadcaster a few weeks ago. There is merely a gap of two years between the release of the two films. So when the quality, age or availability of the Swedish original is taken into account, there is no reason to see the remake. This is yet another effort of Hollywood to steal foreign films so they can make easy cash off fools who can&#8217;t be bothered to read the English subtitles when they see the Swedish original.</p>
<p>So, unless a remake makes a significant contribution in comparison to the original, let&#8217;s refuse to reward the filmmakers for remakes like this. Vote with your wallet so Hollywood learns to be more creative instead of promoting the production of shameless copies. The English remake is on the same level as counterfeit clothes.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=999</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why Obama should not be reelected</title>
		<link>http://alexandervanloon.nl/english/?p=992</link>
		<comments>http://alexandervanloon.nl/english/?p=992#comments</comments>
		<pubDate>Tue, 03 Jan 2012 17:01:58 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=992</guid>
		<description><![CDATA[It was a bit hard to figure out what Obama did most recently because two articles on my favorite Dutch news website (but other Dutch news outlets are also guilty of this) merely mention that Obama signed &#8216;a law&#8217;. Because the stupid Dutch news didn&#8217;t bother to mention which law it concerns I had to [...]]]></description>
			<content:encoded><![CDATA[<p>It was a bit hard to figure out what Obama did most recently because <a href="http://nos.nl/artikel/322454-huis-vs-voor-omstreden-defensiewet.html">two</a> <a href="http://nos.nl/artikel/326797-obama-tekent-omstreden-defensiewet.html">articles</a> on my favorite Dutch news website (but other Dutch news outlets are also guilty of this) merely mention that Obama signed &#8216;a law&#8217;. Because the stupid Dutch news didn&#8217;t bother to mention which law it concerns I had to do a bit of searching myself, and I figured out that it is the <a href="http://en.wikipedia.org/wiki/National_Defense_Authorization_Act_for_Fiscal_Year_2012">National Defense Authorization Act</a> (NDAA) (you have to love these cool names they give to their laws in the USA, we should have that in the Netherlands too). We already knew that Obama wasn&#8217;t living up to his promise to close <a href="http://en.wikipedia.org/wiki/Guantanamo_Bay_detention_camp">Guantanamo Bay</a>, but this is the nail in the coffin for the promise, which has been reneged on by Obama completely now. Maybe Obama felt himself <a href="http://www.dailymail.co.uk/news/article-2074576/President-Obama-signs-law-detain-terror-suspects-indefinitely.html">cornered</a> by the Republicans when he <a href="http://www.theatlanticwire.com/politics/2011/12/obama-makes-it-official-suspected-terrorists-can-be-indefinitely-detained-without-trial/46818/">signed</a> the NDAA, but the idea that he can use <a href="http://www.washingtonpost.com/politics/obama-signs-defense-bill-pledges-to-maintain-legal-rights-of-terror-suspects/2011/12/31/gIQATzbkSP_story.html">discretion</a> in applying the Act to prevent the harm to civil liberties is not at all convincing because the damage has already been done. Sure, the NDAA was necessary because the defense forces need funding, but when these highly objectionable provisions for which you threatened to veto the Act are still in and you sign it &#8216;with reservations&#8217; you lack spine.</p>
<p>According to the article in The Washington Post funding was going to expire on Monday 2 January, so Obama signed it on Saturday 31 December after last-minute modifications were made by Congress at the request of the White House. Seems to me like they had better done it a few months in advance instead of waiting for the last minute if you ask me, procrastinating is supposed to be something what university students like me do, not presidents. So Obama had his hands tied because the funding was about to expire, but in that case why did you wait so long? Did (Obama allow) the House of Representatives with its Republican majority stonewall the process so they could force Obama&#8217;s hand when the deadline for new funding came?</p>
<p>If Obama has so much difficulty with closing Guantanamo, maybe the Cubans can kick the USA off their territory? They would have <a href="http://en.wikipedia.org/wiki/Cuban%E2%80%93American_Treaty">good</a> reasons to do so. At least <a href="http://en.wikipedia.org/wiki/Ron_Paul">Ron Paul</a> (among others, of course) has a mind of his own and realizes the value of civil liberties with his <a href="http://thehill.com/blogs/ballot-box/gop-presidential-primary/201335-rep-paul-says-defense-bill-assures-descent-into-totalitarianism">opposition</a> to the NDAA  Unfortunately I find many of his other ideas such as those on abortion, climate change and higher taxes objectionable, so I wouldn&#8217;t want him to be the next president.</p>
<p>Yes, of course Obama has also achieved change for the better, such as the <a href="http://en.wikipedia.org/wiki/Patient_Protection_and_Affordable_Care_Act">Patient Protection and Affordable Care Act</a> (PPACA). But then again, it doesn&#8217;t make up for this unforgivable mistake he made with the NDAA. But there&#8217;s more. There&#8217;s the upcoming <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">Stop Online Piracy Act</a> (SOPA) which is another great <a href="http://wayofthemonkey.com/?date=2011-12-17">danger</a> to freedom, but it&#8217;s <a href="http://www.techdirt.com/articles/20111226/23082117192/would-obama-veto-sopa-extremely-doubtful.shtml">unlikely</a> Obama would veto it. While <a href="http://en.wikipedia.org/wiki/Bradley_Manning">Bradley Manning</a> rots in jail, he thinks the treatment he gets is <a href="http://www.techdirt.com/articles/20111226/23082117192/would-obama-veto-sopa-extremely-doubtful.shtml">appropriate</a>. He might have the intention to raise taxes for the rich with the Republicans preventing him from doing so, but as I wrote earlier his government is still too friendly towards Wall Street.</p>
<p>Concluding, I think the Democrats and Republicans which have been controlling the government in the USA for such a long time are what we would call &#8220;regent&#8217;s parties&#8221; in the Netherlands. Meaning, they have become so used to governing that they don&#8217;t represent the people of the USA properly anymore and care more about their own position. But in the USA it&#8217;s much worse than in the Netherlands where some of the parties who were accused of being regent&#8217;s parties have been punished by the electorate. Almost <a href="http://www.politico.com/news/stories/1109/29235.html">half</a> of Congress consists of millionaires who are in the pocket of the special interests. I hope <a href="http://en.wikipedia.org/wiki/Americans_Elect">Americans Elect</a> would have the power to break this duopoly of the Democrats and Republicans.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=992</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Films seen in December 2011</title>
		<link>http://alexandervanloon.nl/english/?p=982</link>
		<comments>http://alexandervanloon.nl/english/?p=982#comments</comments>
		<pubDate>Sat, 31 Dec 2011 22:18:04 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[tv and film]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=982</guid>
		<description><![CDATA[First off, fuck you WordPress! When I wanted to publish this post WordPress ate over half an hour of writing! This is the first time this ever happened, maybe because I left a tab with the WordPress &#8216;Add New Post&#8217; window open in Firefox for too long. Did that make WordPress lose a connection or [...]]]></description>
			<content:encoded><![CDATA[<p>First off, fuck you WordPress! When I wanted to publish this post WordPress ate over half an hour of writing! This is the first time this ever happened, maybe because I left a tab with the WordPress &#8216;Add New Post&#8217; window open in Firefox for too long. Did that make WordPress lose a connection or something? Whatever it is, you should have allowed me to save my work, WordPress.</p>
<p>Now that I&#8217;ve calmed down after striking my fist at my desk a few times, let me tell you that I&#8217;ve seen two films this month, <a href="http://en.wikipedia.org/wiki/The_Skin_I_Live_In">La piel que habito</a> (2011), also known in English as <em>The Skin I Live In</em> and <a href="http://en.wikipedia.org/wiki/Drive_(2011_film)">Drive</a> (2011). This is the second film from the hand of Pedro Almodóvar I&#8217;ve seen, the first being <a href="http://en.wikipedia.org/wiki/Volver">Volver</a> (2006). After seeing another film directed by him I can say I&#8217;ve become a fan of this man&#8217;s work. The subjects of his movies are unconventional. His last work contains some murder and rape which makes for tougher subject matter than <em>Volver</em>. Because <em>La piel que habito</em> is a film which is as least as surprising as <a href="http://en.wikipedia.org/wiki/The_Sixth_Sense">The Sixth Sense</a>, I can&#8217;t reveal too much about it because otherwise I would spoil the surprise. If you are going to see this, which I certainly recommend, refrain from reading the plot summary in the Wikipedia article. Or I should probably say, refrain from reading the Wikipedia article at all. Reading spoilers against my will happened to me recently when I read a summary of the sixth season of <a href="http://en.wikipedia.org/wiki/Dexter_%28TV_series%29">Dexter</a>. Before I was even realizing I was reading spoilers I shouldn&#8217;t be reading I had already given in to my curiosity and the temptation to read on. I could bang my head against the wall after reading them because it spoiled the fun for me. Returning to the film, I wonder if the encounter between Vicente and Norma could be considered rape? I thought that the end of the encounter certainly amounted to that, but strangely a woman with who I was watching the film as part of our date thought otherwise, she blamed Norma for freaking out. Almodóvar is on my side and made sure that what comes around goes around for Vicente, who is punished in a most fitting manner.</p>
<p><em>Drive</em> is a great film which didn&#8217;t deserve to be overlooked by the wider audience. It&#8217;s got Ryan Gosling, the beautiful Christina Hendricks and a few car chases. Most importantly it has the ingredients to appeal to both the mass audience and the art film audience. The Wikipedia article says that the film was initially planned to be released as a blockbuster, but that it was finally released as an independent film. But I don&#8217;t understand why? Because the director is Danish? As a consequence I had to see this film in an art house cinema, but I think that if the release wasn&#8217;t limited (it certainly was very limited in the Netherlands) and the popular cinema&#8217;s also showed it, it would have grossed a lot more. Because of the limited release the wider audience has missed it mostly, but it&#8217;s their loss if they only get Hollywood productions shoved through their eyes and ears. The film&#8217;s opening scene works wonders with suspense, similar to having a hard time with evading the cops in car chases in the <a href="http://en.wikipedia.org/wiki/Grand_Theft_Auto_%28series%29">GTA</a> games, but two scenes later in the film do it even better. What I didn&#8217;t like about the film was the protagonist playing shy and mute most of the time. Like <em>La piel que habito</em> it&#8217;s also violent, the scene with the depiction of catching buckshot to the head is justified because it&#8217;s realistic. But a violent scene close to the finale left me wondering what kind of message the director wanted to convey, just shock? Critics have frequently placed this film on their lists of best films of 2011, which is well deserved.</p>
<p>Something else which I&#8217;d highly recommend for viewing (for free) are the film reviews done by <a href="http://redlettermedia.com/plinkett/">Plinkett</a>. Especially his reviews on the Star Wars prequel trilogy are great to watch and frequently got me gasping for breath after I rolled over the floor laughing. I already thought that the prequels didn&#8217;t compare well to the original, but he manages to articulate so well and in so much detail what is wrong with these films, unlike other reviewers.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=982</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I don&#8217;t like about Shogun 2: Total War</title>
		<link>http://alexandervanloon.nl/english/?p=978</link>
		<comments>http://alexandervanloon.nl/english/?p=978#comments</comments>
		<pubDate>Fri, 30 Dec 2011 13:24:32 +0000</pubDate>
		<dc:creator>Alexander van Loon</dc:creator>
				<category><![CDATA[gaming]]></category>

		<guid isPermaLink="false">http://alexandervanloon.nl/english/?p=978</guid>
		<description><![CDATA[Compared to Empire: Total War it&#8217;s now more difficult to get a substantial growth rate for towns. I struggle with the financial situation when I play the more difficult clans and can only sporadically recruit samurai for my armies. But some other AI clans who should have comparable financial difficulties based on their territorial possessions [...]]]></description>
			<content:encoded><![CDATA[<p>Compared to Empire: Total War it&#8217;s now more difficult to get a substantial growth rate for towns. I struggle with the financial situation when I play the more difficult clans and can only sporadically recruit samurai for my armies. But some other AI clans who should have comparable financial difficulties based on their territorial possessions can sometimes afford to field all-samurai armies (fortunately they were all yari samurai who died like flies when they assaulted my stronghold, but the AI is still a cheat)! The AI is eager to assault my castle towns at the first turn of a siege, but they horribly overestimate their chances of success, possibly because the auto resolve option for battles favors the attackers in such a situation. But if I choose to defend myself, I can easily inflict a crushing defeat on the attacking party even if they seriously outnumber me.</p>
<p>The game still has the telepathic ranged units, like in Rome: Total War and Medieval 2: Total War; archers outside the walls can fire at enemies within the walls who they can&#8217;t even see. And this time they can also inflict heavy casualties at archers defending the walls, which is incredulous given the very good defensive position on the walls. What changed for the better is that defenders who are climbing the walls can now expect to get riddled by arrows while they do so. In the previous games archers on walls would fire at approaching besiegers, but once they had ladders up the wall they would be out of harm&#8217;s way for a moment until they reached the top of the wall.</p>
<p>Even worse is that my bow ashigaru standing on a notable hill don&#8217;t have a greater range than the enemy bow ashigaru not standing on a hill. I still remember playing Medieval 2: Total War as the French and placing my Scot&#8217;s Guard (or any other faction or any other units which have &#8216;long range missiles&#8217;) on the slope of a very high mountain. That was possible if you attack or get attacked by an enemy force near mountains. In extreme cases if you were placed on a much higher elevation and the enemy at a much lower elevation, your ranged units had a very extreme range of maybe one-third of the battlefield. While the enemies would tire themselves with moving uphill they would meet a hail of arrows or crossbow bolts and they would be dead before they could even get close.</p>
<p>Like in previous Total War games (with the exception of Empire, where it didn&#8217;t bother me) units are still marked with the very bright color of their faction to identify them, which makes them look silly and unrealistic. It&#8217;s not necessary at all to identify which units are yours and which are enemy, Europa Barbarorum and other mods don&#8217;t do it and there it never caused problems. Again a mod is needed to fix it I guess. While researching technologies in Empire made sense because that game is situated in the 18th century, the &#8216;Mastery of the Arts&#8217; stuff which is essentially the same in Shogun 2 does not because the Sengoku period did not have such technological and intellectual advances. The peasant foot soldiers, the ashigaru, are cannon fodder for the samurai in this game, even though Wikipedia <a href="http://en.wikipedia.org/wiki/Ashigaru">tells</a> us that they could vary from having no armor to very heavy armor. The developers must have some kind of obsession for snow, when the winter season arrives the whole of Japan looks like Siberia. But in reality snow cover only lasts in northern Japan and higher altitudes. In <a href="http://en.wikipedia.org/wiki/Tokyo#Climate">Tokyo</a> &#8216;snowfall is sporadic, but does occur almost annually&#8217;: with the average high and low in January being respectively 9,9 °C and 2,5 °C it should melt quickly. Glad I paid no more than € 15 for this game.</p>
]]></content:encoded>
			<wfw:commentRss>http://alexandervanloon.nl/english/?feed=rss2&#038;p=978</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

