<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Eclectic Consciousness</title>
	<atom:link href="http://vlarsen.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vlarsen.wordpress.com</link>
	<description>Eddies in the River of Life</description>
	<lastBuildDate>Thu, 02 Jun 2011 20:35:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vlarsen.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Eclectic Consciousness</title>
		<link>http://vlarsen.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vlarsen.wordpress.com/osd.xml" title="Eclectic Consciousness" />
	<atom:link rel='hub' href='http://vlarsen.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Java Constructor Anti-Pattern</title>
		<link>http://vlarsen.wordpress.com/2011/05/09/java-constructor-anti-pattern/</link>
		<comments>http://vlarsen.wordpress.com/2011/05/09/java-constructor-anti-pattern/#comments</comments>
		<pubDate>Mon, 09 May 2011 15:13:32 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[scala]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=213</guid>
		<description><![CDATA[I have never liked the typical java way of creating constructors for a typical &#8220;bean&#8221; class. The preferred way, by many, is to have the constructor arguments directly map to the fields in the class, and assign each in turn to the &#8220;this.&#8221; prefixed name. I have always preferred to have the constructor arguments be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=213&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have never liked the typical java way of creating constructors for a typical &#8220;bean&#8221; class. The preferred way, by many, is to have the constructor arguments directly map to the fields in the class, and assign each in turn to the &#8220;this.&#8221; prefixed name.</p>
<p>I have always preferred to have the constructor arguments be short one-or-two-letter variables that you assign to the fields. This avoids the following problem I found today:</p>
<pre>
public class MetadataEntityDescriptor {
    private ContactPerson contactPerson;
    private IDPSSODescriptor idpSsoDescriptor;

    private MetadataEntityDescriptor(IDPSSODescriptor idpssoDescriptor,
                                     ContactPerson contactPerson) {
        this.idpSsoDescriptor = idpSsoDescriptor;
        this.contactPerson = contactPerson;
    }

    public static final class Builder {
        private IDPSSODescriptor idpssoDescriptor;
        private ContactPerson contactPerson;

        public Builder setIdpssoDescriptor(IDPSSODescriptor idpssoDescriptor) {
            this.idpssoDescriptor = idpssoDescriptor;
            return this;
        }

        public Builder setContactPerson(ContactPerson contactPerson) {
            this.contactPerson = contactPerson;
            return this;
        }

        public MetadataEntityDescriptor build() {
            return new MetadataEntityDescriptor(idpssoDescriptor, contactPerson);
        }
    }

    public Element asXml() {
        return new Element("EntityDescriptor", Constants.NAMESPACE_METADATA)
            .addContent(idpSsoDescriptor.asXml())
            .addContent(contactPerson.asXml());
    }
}
</pre>
<p>Why does the <code>asXml()</code> method here give a <code>NullPointerException</code>? The code looks good and even compiles. But notice the subtle capitalization bug in the first parameter of the constructor&#8230; In fact, the argument was never assigned to the field, and it thus stayed &#8220;null&#8221;. Fortunately my IDE caught it, but I did not see that until I had scratched my head a few times regarding the strange NPE.</p>
<p>Now, I will admit that an argument FOR having complete argument names is that it looks nicer in the IDE when you see the argument popup help. But to me that is not enough; I&#8217;d rather have shorter and less error prone code such as this:</p>
<pre>
public class MetadataEntityDescriptor {
    private ContactPerson contactPerson;
    private IDPSSODescriptor idpSsoDescriptor;

    private MetadataEntityDescriptor(IDPSSODescriptor isd,
                                     ContactPerson cp) {
        idpSsoDescriptor = isd;
        contactPerson = cp;
    }

    ...
}
</pre>
<p>And finally, this is of course a great argument for moving to Scala, where the equivalent, error proof code would be:</p>
<pre>
class MetadataEntityDescriptor(var contactPerson: ContactPerson,
                               var idpSsoDescriptor: IDPSSODescriptor) {
  def asXml = &lt;EntityDescriptor&gt;
      { idpSsoDescriptor.asXml }
      { contactPerson.asXml }
  &lt;/EntityDescriptor&gt;
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=213&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2011/05/09/java-constructor-anti-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>
	</item>
		<item>
		<title>Collaborative vs Destructive Cooperative Games</title>
		<link>http://vlarsen.wordpress.com/2011/02/22/collaborative-vs-destructive-cooperative-games/</link>
		<comments>http://vlarsen.wordpress.com/2011/02/22/collaborative-vs-destructive-cooperative-games/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 18:29:16 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=211</guid>
		<description><![CDATA[My conjecture is that most games of a competitive nature can be played out as either collaborative or destructive games. In the first case, both parties collaborate in a competitive environment to bring out the best in each other in creating a best possible game experience. While in the other case, each party sees as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=211&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My conjecture is that most games of a competitive nature can be played out as either collaborative or destructive games. In the first case, both parties collaborate in a competitive environment to bring out the best in each other in creating a best possible game experience. While in the other case, each party sees as its winning strategy to counter the opposition.</p>
<p>Both ways are valid, in the sense that both lead to a realization of the goal of winning the game. But in my experience, the collaborative approach is preferable in my enjoyment of the games.</p>
<p>In fact, one of my favourite games, the board game Go/weiqi, has a nickname of &#8220;hand dialogue&#8221;. A successful game has the feel of both players carving out the end position, much like a sculptor discovering the hidden statue in a block of marble. Even loosing such a game is a good feeling, as the process of getting to the end state has been productive and allowed the players to use their best abilities to construct a viable strategy, and a solid framework.</p>
<p>Playing against people using destructive tactics feels completely opposite. Every beautiful shape is destroyed, and the board ends up as a twisted mess of intertwined failures. In the end, the final state can not come soon enough to put me out of my misery.</p>
<p>I feel the same playing StarCraft 2 as well. At least in the Bronze League, where I dwell, the abundance of &#8220;cheese&#8221; is apparent, in that 6 pools, cannon rushes, and drone rushes are to be expected rather than being the exception. Having lost a number of games to these tactics, I of course become more adept at dealing with them. And overall my win-rate have improved dramatically when being able to counter these low-level destructive tactics.</p>
<p>But is it so that a beautiful strategy is always superior to a destructive one? Destruction is much easier, and as such should require less skill from the player. But a constructive strategy will have no more value than a pretty sunset, if it can not deal with the harsh realities of life.</p>
<p>So I guess in a sense there is a fluid continuum of strategies, and to be successful one has to find the right balance between constructive play and destructive play.</p>
<p>But I&#8217;m still stuck in the chivalrous ideal of honesty, truth and beauty, and will judge my oppositions performance based on those values. Even if I loose the game, I will not loose my pride.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=211&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2011/02/22/collaborative-vs-destructive-cooperative-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>
	</item>
		<item>
		<title>Akai LPD8 controller for Ableton Live 8</title>
		<link>http://vlarsen.wordpress.com/2010/08/25/akai-lpd8-controller-for-ableton-live-8/</link>
		<comments>http://vlarsen.wordpress.com/2010/08/25/akai-lpd8-controller-for-ableton-live-8/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 12:25:00 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=202</guid>
		<description><![CDATA[UPDATE: The following is a quote from the release notes for Ableton Live 8.2.2: 8.2.2 Release Notes. Improvements and feature changes: Added control surface support for Akai Professional LPD8. So finally the contents of this article is not relevant anymore The original article follows This is how to set up Ableton Live to use the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=202&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>UPDATE: The following is a quote from the release notes for Ableton Live 8.2.2:</p>
<blockquote><p>8.2.2 Release Notes. Improvements and feature changes: Added control surface support for Akai Professional LPD8.
</p></blockquote>
<p>So finally the contents of this article is not relevant anymore <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The original article follows</p>
<hr />
<p>This is how to set up <a href="http://www.ableton.com/suite-8">Ableton Live</a> to use the <a href="http://www.akaipro.com/lpd8">Akai LPD8</a> controller.</p>
<p>The Akai LPD8 is a ultra-portable pad controller. It has 8 sensitive trigger pads and 8 assignable knobs. It is plug&#8217;n'play for Windows and Mac, so in theory you can just connect it and start using it with your favourite music production software.</p>
<p><img src="http://www.akaipro.com/stuff/contentmgr/files/21/f0ec32fd6aee9df17c98daf09f47ad21/medium/lpd8_web_med_copy.png" alt="AKAI LPD8 MIDI pad controller" /></p>
<p>When you first connect the LPD8, it will show up in Live as a MIDI note input device enabled for triggering note events. So just load up a drum kit on a MIDI track, arm it, and start hitting those triggers. </p>
<p>There is no native support for the LPD8 knobs in Ableton Live, though. So a lot of the more powerful features of remote controllers, such as instant mapping and device locking, are not enabled by default.</p>
<p>To start using the LPD8 in &#8220;Manual Control Surface Setup&#8221; mode, you must go to the Preferences, MIDI Ports section, and enable the &#8220;Remote&#8221; button. Twiddling the knobs will now send MIDI data to Live, but nothing really happens just yet. The last step is to go to MIDI Learn mode, select the parameter you want to change, and move the corresponding knob to link the knob to the software control.</p>
<p>Now, the problem with the Manual Control and MIDI Learn mapping is that the link between the knob and the control is not context sensitive. This is the most interesting feature of natively supported controllers, because then you can use the same knobs to control all different instruments and sound parameters depending on what is currently selected.</p>
<p>So to get to this exalted level of controller support, we need to implement native support for the LPD8.</p>
<p>The official Ableton Live manual has nothing about how to do this, and searching around on the internet may lead you down a severely complicated path with multiple python scripts and internal APIs etc. But I found an easier way in an article called <a href="http://createdigitalmusic.com/2009/07/29/ableton-live-midi-remote-scripting-how-to-custom-korg-nanoseries-control/">Ableton Live MIDI Remote Scripting How To: Custom Korg nanoSERIES Control</a>. This tutorial was for setting up a similar (but inferiour&#8230;) controller, so I tweaked the scripts a little for the LPD8.</p>
<p>The key is to find the User Remote Scripts folder in your Preferences for Ableton Live. Here you will find actual instructions and a template for writing your own script. This script must be placed in a subfolder named after your controller.</p>
<p>So I created the folder <code>Library/Preferences/Ableton/Live 8.1.5/User Remote Scripts/AKAI LPD8/</code>. In this folder I put the following file, called <code>UserConfiguration.txt</code></p>
<pre>
# Config File for User-defined Instant Mappings

# We assume that the controls on your MIDI controller
# send CCs (except for pads). All controls that do not have
# an explicit channel setting are expected to use the
# global channel. CCs &amp; Notes are counted from 0-127
# and channels from 0-15.

[Globals]
# The channel that the controller should send on
GlobalChannel: 0
# If your controller is connected via USB, replace ControllerName
# with the name of the respective port. Live will then try to
# recognize the ports for you when you select your Instant-Mappings
InputName: LPD8
OutputName: LPD8
# If your controller has pads that send notes, you can use them to
# play the visible pads in your DrumRacks. Just replace the -1 for
# the note (and channel) of the respective pad. The arrangement of
# the pads in the DrumRacks is as follows:
#   1     2     3     4
#   5     6     7     8
#   9    10    11    12
#  13    14    15    16
# (If you leave the channel of a pad at -1, Live will assume that
#  the pad uses the global channel)
Pad1Note: -1
Pad2Note: -1
Pad3Note: -1
Pad4Note: -1
Pad5Note: -1
Pad6Note: -1
Pad7Note: -1
Pad8Note: -1
Pad9Note: 40
Pad10Note: 41
Pad11Note: 42
Pad12Note: 43
Pad13Note: 36
Pad14Note: 37
Pad15Note: 38
Pad16Note: 39
Pad1Channel: -1
Pad2Channel: -1
Pad3Channel: -1
Pad4Channel: -1
Pad5Channel: -1
Pad6Channel: -1
Pad7Channel: -1
Pad8Channel: -1
Pad9Channel: -1
Pad10Channel: -1
Pad11Channel: -1
Pad12Channel: -1
Pad13Channel: -1
Pad14Channel: -1
Pad15Channel: -1
Pad16Channel: -1

[DeviceControls]
# The Encoders will control the device parameters (you can also
# use knobs or sliders). Replace the -1's with the CCs sent by
# the respective controls on your controller. You can also set
# the channel for each controller if it differs from the global
# channel (if you leave the channel of an encoder at -1, Live
# will assume that the encoder uses the global channel).
Encoder1: 1
Encoder2: 2
Encoder3: 3
Encoder4: 4
Encoder5: 5
Encoder6: 6
Encoder7: 7
Encoder8: 8
EncoderChannel1: -1
EncoderChannel2: -1
EncoderChannel3: -1
EncoderChannel4: -1
EncoderChannel5: -1
EncoderChannel6: -1
EncoderChannel7: -1
EncoderChannel8: -1
# Enter the respective map mode for the encoders here. The following
# map modes are available:
# - Absolute
# - Absolute14Bit
# - LinearSignedBit
# - LinearSignedBit2
# - LinearTwoCompliment
# - LinearBinaryOffset
# - AccelSignedBit
# - AccelSignedBit2
# - AccelTwoCompliment
# - AccelBinaryOffset
# Consult the controller's documentation to find out which mode to use.
EncoderMapMode: Absolute
# Buttons used here are expected to not be toggles (i.e., sending
# value 0 every second time you press it).
Bank1Button: 9
Bank2Button: 10
Bank3Button: 11
Bank4Button: 12
Bank5Button: 13
Bank6Button: 14
Bank7Button: 15
Bank8Button: 16
NextBankButton: -1
PrevBankButton: -1
LockButton: -1

[MixerControls]
# Again enter the appropriate CCs for the respective controls.
# If all sliders use the global channel to send their data,
# you can leave the channels at -1. You can, of course, use
# encoders or knobs instead of sliders.
VolumeSlider1: -1
VolumeSlider2: -1
VolumeSlider3: -1
VolumeSlider4: -1
VolumeSlider5: -1
VolumeSlider6: -1
VolumeSlider7: -1
VolumeSlider8: -1
Slider1Channel: -1
Slider2Channel: -1
Slider3Channel: -1
Slider4Channel: -1
Slider5Channel: -1
Slider6Channel: -1
Slider7Channel: -1
Slider8Channel: -1
MasterVolumeSlider: -1
MasterSliderChannel: -1
Send1Knob1: -1
Send1Knob2: -1
Send1Knob3: -1
Send1Knob4: -1
Send1Knob5: -1
Send1Knob6: -1
Send1Knob7: -1
Send1Knob8: -1
Send2Knob1: -1
Send2Knob2: -1
Send2Knob3: -1
Send2Knob4: -1
Send2Knob5: -1
Send2Knob6: -1
Send2Knob7: -1
Send2Knob8: -1
TrackArmButton1: -1
TrackArmButton2: -1
TrackArmButton3: -1
TrackArmButton4: -1
TrackArmButton5: -1
TrackArmButton6: -1
TrackArmButton7: -1
TrackArmButton8: -1
VolumeMapMode: Absolute
SendsMapMode: Absolute

[TransportControls]
# The transport buttons are also expected not to be toggles.
StopButton: -1
PlayButton: -1
RecButton: -1
LoopButton: -1
RwdButton: -1
FfwdButton: -1
</pre>
<p>With this file in place, the next time you start Ableton Live, you will find AKAI LPD8 as a possible selection in the Preferences MIDI Control Surface drop-down box. Select this, and go back to your musical masterpiece.<br />
If you now try to click on an instrument rack control, you will get the blue hand icon, and your LPD8 will control the parameters. A typical instrument rack has 8 virtual knob controls, neatly mapping into the 8 physical knobs on the LPD8. </p>
<p>For more complex controls, such as the Operator synth, the knobs will control individual detailed parameters. When there are more than 8 parameters, they will be assigned different &#8220;banks&#8221;. To switch banks using the LPD8, push the &#8220;CC&#8221; button, and use the trigger pads to select bank 1 (pad 1) through bank 8 (pad 8). The status bar at the bottom of Live&#8217;s interface will show you the name of the bank, such as &#8220;Operator Bank : Oscillator B&#8221; for pad 2, or &#8220;Operator Bank : LFO&#8221; for pad 5, etc.</p>
<p>Now, you can finally enjoy detailed control of all Live parameters using the Akai LPD8 controller.</p>
<p>PS: Akai also makes the fabulous <a href="http://www.akaipro.com/lpk25">Akai LPK25</a> ultra-portable MIDI keyboard, in the same style as the LPD8. They go very well together, and I recommend getting both to have a complete on-the-road MIDI setup for your laptop.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=202&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2010/08/25/akai-lpd8-controller-for-ableton-live-8/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://www.akaipro.com/stuff/contentmgr/files/21/f0ec32fd6aee9df17c98daf09f47ad21/medium/lpd8_web_med_copy.png" medium="image">
			<media:title type="html">AKAI LPD8 MIDI pad controller</media:title>
		</media:content>
	</item>
		<item>
		<title>Rumours of Death</title>
		<link>http://vlarsen.wordpress.com/2009/05/14/rumours-of-death/</link>
		<comments>http://vlarsen.wordpress.com/2009/05/14/rumours-of-death/#comments</comments>
		<pubDate>Thu, 14 May 2009 09:02:43 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[bored]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[finished]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[tired]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=197</guid>
		<description><![CDATA[The rumours of this blogs death were slightly exaggerated, although justified. Consistently posting required a level of commitment, and time, was not compatible with my increased workload in studies and in the office, combined with my dwindling enthusiasm for acting like a tourist. So I have rather spent my time actually doing stuff, than writing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=197&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/mugley/2616297443/"><img src="http://vlarsen.files.wordpress.com/2009/05/death.jpg?w=450&#038;h=594" alt="Death" title="Death" width="450" height="594" class="alignnone size-full wp-image-198" /></a><br />
The rumours of this blogs death were slightly exaggerated, although justified. Consistently posting required a level of commitment, and time, was not compatible with my increased workload in studies and in the office, combined with my dwindling enthusiasm for acting like a tourist. So I have rather spent my time actually doing stuff, than writing about it&#8230;</p>
<p>I have just a few weeks left in Taipei now. It is a strange feeling, as most of my classmates are continuing on. They have started thinking about the next semester, while I already feel like I have finished. School does not end until 27th May, but the &#8220;big exam&#8221;, covering the first 8 chapters in the book, is on Monday 18th May. But common for all students, is a feeling of being tired, and also slightly fed up with Chinese (both the language and the people). A break/vacation will do us all good <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I have bought the rest of the textbooks, and will take them back with me to Norway to continue my studies at my own pace. But maybe not until after summer&#8230;</p>
<p>The coming two weeks will see me wrapping up a lot of stuff in different areas of my life here. I will finish studies, wrap up the close cooperation with the Taipei Yahoo! office, buy a lot of souvenirs/books/things, have my TKD yellow belt test, and spend some quality time with friends I&#8217;ve gotten to know here. The last days I will clean out my apartment, and mail as much as possible of my stuff back to Norway, to avoid having to overload my suitcase&#8230;</p>
<p>I have some random pictures from around Taipei I will share as well, but until Monday I will try to focus on preparing for the exam. So, see you later&#8230;</p>
<hr />
<A href="http://www.flickr.com/photos/mugley/2616297443/">Picture by mugley at Flickr</a>. CC-BY-SA-2.0</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=197&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/05/14/rumours-of-death/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/05/death.jpg" medium="image">
			<media:title type="html">Death</media:title>
		</media:content>
	</item>
		<item>
		<title>Taking a break</title>
		<link>http://vlarsen.wordpress.com/2009/04/12/taking-a-break/</link>
		<comments>http://vlarsen.wordpress.com/2009/04/12/taking-a-break/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 10:38:13 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[band]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[cocktail]]></category>
		<category><![CDATA[fava bean]]></category>
		<category><![CDATA[haircut]]></category>
		<category><![CDATA[pub]]></category>
		<category><![CDATA[restaurant]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=181</guid>
		<description><![CDATA[This weekend has been both exiting and relaxing. After a focused week of studies, and a successful test, I allowed myself to enjoy some good experiences in good company. Studies can wait until next week . Friday I visited a rather stylish restaurant called &#8220;People&#8217;s&#8221;. It is located on the hip 安和路/ĀnHé road, down the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=181&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This weekend has been both exiting and relaxing. After a focused week of studies, and a successful test, I allowed myself to enjoy some good experiences in good company. Studies can wait until next week <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/04/img_0117.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0117.jpg?w=450&#038;h=600" alt="People&#39;s Restaurant" title="People&#39;s Restaurant" width="450" height="600" class="alignleft size-full wp-image-183" /></a>Friday I visited a rather stylish restaurant called &#8220;People&#8217;s&#8221;. It is located on the hip 安和路/ĀnHé road, down the street from Carnegie&#8217;s and right across from the Shangri-La hotel. The entrance area was calm and zen-like, with minimalist decor. The stairs leading down to the restaurant ended up in front of a huge, metal double door. To open the door, you have to put your hand into the mouth of a nearby lion statue&#8230;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/04/img_0118.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0118.jpg?w=72&#038;h=96" alt="Zen stairs" title="Zen stairs" width="72" height="96" class="alignleft size-thumbnail wp-image-184" /></a>The styling and serenity of the place continued once past the doors. Spacious rooms with concrete walls, with dimly lit tables and small pools of water. The restaurant is divided into a dining area, and a lounge area, so all tastes and uses are catered for. The presentation and quality of the food was excellent, and the small portions enabled us to order several small courses, building an eclectic meal. Due to the dim lighting and the calmness of the place, though, I felt it inappropriate to take pictures once inside&#8230;</p>
<p>After dinner, we went to a small restaurant/pub called <a href="http://mangotango-taipei.blogspot.com/">Mango Tango</a>. My friend knew the owner and many of the regulars, so it was a fun and friendly place to be. I&#8217;m not much of a cocktail person, but this night was perfect for trying out some of the local specialities, and also a few classics. We started out with the local favourite Mango Mojito, and I also got to try a rather delicious Long Island Ice Tea, before moving onto the Peron Tequila&#8230;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/04/img_0121.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0121.jpg?w=225&#038;h=300" alt="Hairdressers" title="Hairdressers" width="225" height="300" class="alignright size-medium wp-image-185" /></a>Naturally, Saturday started a bit late for me, but I managed to get to TKD training on time. After that I decided to have a quick haircut. I have been dreading the day I was going to get a haircut, having seen too many of the small corner-shop type shops with old men getting their hair done by another old man. Suffice to say, they are not really accustomed to western tradition and western language, so this could prove difficult. Fortunately, in the area of the MMA gym, there are also a lot of beauty shops and hairdressers. Exploring these for a bit, I found a place that looked like it had a more western flavour to it, so I decided to stop by. I was not prepared for how well taken care of I would be.<a href="http://vlarsen.files.wordpress.com/2009/04/img_01191.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_01191.jpg?w=72&#038;h=96" alt="Getting a haircut" title="Getting a haircut" width="72" height="96" class="alignright size-thumbnail wp-image-187" /></a> One and a half hour later, I emerged with my new haircut. It started with me relaxing in the chair with some magazines and a continuous stream of iced milk-tea. Then, a long session of shampooing+head massage in a dimly lit room with soothing music and beautiful and skillful girls doing their best. The hairdresser did a good job, and our combined knowledge of English and Chinese made for a mutual understanding sufficient to produce a great result. What surprised me a bit, in a good way, was that after the initial haircut, it was back in to the head massage room, for more washing and relaxing. Then it ended with styling and finishing touches. And for all this I payed less than what you pay for a child having a 10 minute haircut in Norway&#8230; I will definitively not wait long before my next haircut <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/04/img_0132.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0132.jpg?w=450&#038;h=600" alt="Singer" title="Singer" width="450" height="600" class="alignleft size-full wp-image-188" /></a><a href="http://vlarsen.files.wordpress.com/2009/04/img_0123.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0123.jpg?w=128&#038;h=96" alt="LED tambourine" title="LED tambourine" width="128" height="96" class="alignleft size-thumbnail wp-image-189" /></a><a href="http://vlarsen.files.wordpress.com/2009/04/img_0124.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0124.jpg?w=128&#038;h=96" alt="The Band" title="The Band" width="128" height="96" class="alignleft size-thumbnail wp-image-190" /></a>Saturday evening was approaching, and with that a visit to a pub in Taoyuan City. Marco from work, and his wife, picked me up for the 40 minutes drive from downtown Taipei. The band that was playing are friends of Marco, and he previously played with them as well. The place was small, but that seems common in Taiwan. We got to sit up close to the band, and before and between the sets they came over to chat. It was a friendly and fun atmosphere. The band played pop music with a jazzy flavour. And they also engaged the public in different ways, either by inviting them to the stage to sing or participate in some way, or by selecting material by request, or to suit the mood of the crowd. I had heard that people in Taiwan really like cha-cha, but this night there were mostly students. So only two cha-chas were performed, and I got to dance to one of them <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/04/img_0136.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0136.jpg?w=225&#038;h=300" alt="Marco playing" title="Marco playing" width="225" height="300" class="alignright size-medium wp-image-191" /></a>Towards the end of the last set, Marco got to try out the guitar, and while the guitar player relaxed with a beer, Marco performed a few songs with the band, including a passionate rendition of Hotel California. We left shortly after the band ended, since morning was fast approaching. Everybody was in a good mood, except perhaps the Budwiser Girl whom, wearing a skimpy outfit, tried to convince people to drink Bud. I tried one, but had to dissapoint her with going back to Heinikens&#8230;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/04/img_0125.jpg"><img src="http://vlarsen.files.wordpress.com/2009/04/img_0125.jpg?w=225&#038;h=300" alt="Fava bean" title="Fava bean" width="225" height="300" class="alignleft size-medium wp-image-192" /></a>On a culinary note, the beer in the pub was superbly accompagnied by a snack called 蠶豆/cándòu/fava bean. It was a kind of fried flat nut, that had a very thin shell. It was dryish and not fatty; it tasted closer to a nut like pistasio, than peanut. And it absolutly killed the artificually flavoured butter popcorn that was on offer.</p>
<p>Sunday will be short this weekend. A few hours of studies and dinner, maybe a few episodes of Lost. And then, trying to break my daily rythm back into coinciding with class and work <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Until next time, 再見!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=181&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/04/12/taking-a-break/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0117.jpg" medium="image">
			<media:title type="html">People&#39;s Restaurant</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0118.jpg?w=72" medium="image">
			<media:title type="html">Zen stairs</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0121.jpg?w=225" medium="image">
			<media:title type="html">Hairdressers</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_01191.jpg?w=72" medium="image">
			<media:title type="html">Getting a haircut</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0132.jpg" medium="image">
			<media:title type="html">Singer</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0123.jpg?w=128" medium="image">
			<media:title type="html">LED tambourine</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0124.jpg?w=128" medium="image">
			<media:title type="html">The Band</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0136.jpg?w=225" medium="image">
			<media:title type="html">Marco playing</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/04/img_0125.jpg?w=225" medium="image">
			<media:title type="html">Fava bean</media:title>
		</media:content>
	</item>
		<item>
		<title>Wine Prices</title>
		<link>http://vlarsen.wordpress.com/2009/03/27/wine-prices/</link>
		<comments>http://vlarsen.wordpress.com/2009/03/27/wine-prices/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 08:02:53 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Language]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[taipei]]></category>
		<category><![CDATA[vinmonopolet]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=162</guid>
		<description><![CDATA[Just bought a few bottles of wine. Given that the wine here is available in the local corner store, one might imagine that the price structure is different than provided by the government monopoly in Norway. One of the wines I bought, was a Mouton Cadet 2006. In Taipei, this cost NT$760, which is almost [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=162&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://vlarsen.files.wordpress.com/2009/03/img_0068.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/img_0068.jpg?w=72&#038;h=96" alt="Mouton Cadet 2006" title="Mouton Cadet 2006" width="72" height="96" class="alignleft size-thumbnail wp-image-163" /></a>Just bought a few bottles of wine. Given that the wine here is available in the local corner store, one might imagine that the price structure is different than provided by the government monopoly in Norway.</p>
<p>One of the wines I bought, was a Mouton Cadet 2006. In Taipei, this cost NT$760, which is almost exactly NOK 150. In Norway, this costs NOK 125. So it is actually cheaper. I looked at a few other bottles that I recognized from Norway:</p>
<table>
<tr>
<th>Name</th>
<th>Taiwan price</th>
<th>Norwegian Price</th>
</tr>
<tr>
<td>Mouton Cadet 2006</td>
<td>NT$760=NOK 150</td>
<td>NOK 125.00</td>
</tr>
<tr>
<td>Torres Coronas</td>
<td>NT$550=NOK 104.2</td>
<td>NOK 105.90</td>
</tr>
<tr>
<td>Gato Negro</td>
<td>NT$420=NOK 79.50</td>
<td>NOK 86</td>
</tr>
<tr>
<td>Yellow Tail Syrah</td>
<td>NT$399=NOK 75.6</td>
<td>NOK 99.90</td>
</tr>
<tr>
<td>Le Cardinal</td>
<td>NT$379=NOK 71.80</td>
<td>NOK 99.90</td>
</tr>
<tr>
<td>Casillero de Diablo</td>
<td>(discount) NT$265=NOK 50.20</td>
<td>NOK 99.90</td>
</tr>
</table>
<p>So I guess this hints towards a conclusion that, as is general knowledge, the Norwegian wines have a more shallow price curve than most markets; with cheaper wines being more expensive, and the better wines actually being more reasonably priced than in other markets.</p>
<p>Another factor to consider, of course, is the availability of different kinds of wines. The Mouton Cadet was the most expensive wine on offer, and the shelves are dominated by cheap and &#8220;own brand&#8221; bottles that obviously cater to the drinker, not the collector. With discounted items, you can get a wine for half the price in Norway, but would you really even consider buying that wine in Norway?</p>
<p>There is also spirits and beers on offer, but again focused on mass market consumption rather than the connoisseur&#8217;s palate. </p>
<p><strong><em>Ob-Chinese</em></strong>: Many words related to alcohol and drinking feature the character 酒/jiǔ, meaning (rice) wine, liquor, spirits, alcoholic beverage.</p>
<ul>
<li>&#8220;Wine&#8221; is 酒漿/jiǔ jiāng</li>
<li>&#8220;beer&#8221; is 啤酒/píjiǔ</li>
<li>&#8220;bar&#8221; 酒吧/jiǔ bā (by sound loan)</li>
<li>&#8220;food to accompany wine&#8221; 酒菜/jiǔ cài (lit. alcohol-food)</li>
<li>&#8220;a friend when wining and dining, i.e. when times are good&#8221; 酒肉朋友/jiǔròu péngyou (lit. alcohol-meat-friend)</li>
<li>&#8220;tipsy feeling&#8221; 酒意/jiǔ yì (lit. alcohol-thought)</li>
<li>&#8220;capacity for alcohol/ability to hold drink&#8221; 酒力/jiǔ lì (lit. alcohol-strength)</li>
</ul>
<p>As my Chinese Writing teacher would say (constantly):</p>
<blockquote><p>&#8220;It&#8217;s easy! But, be careful&#8230;&#8221;</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=162&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/03/27/wine-prices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/img_0068.jpg?w=72" medium="image">
			<media:title type="html">Mouton Cadet 2006</media:title>
		</media:content>
	</item>
		<item>
		<title>First essay</title>
		<link>http://vlarsen.wordpress.com/2009/03/25/first-essay/</link>
		<comments>http://vlarsen.wordpress.com/2009/03/25/first-essay/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 02:16:42 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Language]]></category>
		<category><![CDATA[chinese]]></category>
		<category><![CDATA[essay]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=166</guid>
		<description><![CDATA[We just had our first essay homework. I&#8217;m fairly pleased with the result, even though the language content is infantile and the writing is on a low amateur level. I even had a wrong stroke, changing the meaning of a character. We are progressing reasonably quickly, so my next essay will hopefully contain more words, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=166&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We just had our first essay homework. I&#8217;m fairly pleased with the result, even though the language content is infantile and the writing is on a low amateur level. I even had a wrong stroke, changing the meaning of a character. </p>
<p>We are progressing reasonably quickly, so my next essay will hopefully contain more words, and more mature grammatical structures. Next week I&#8217;m also starting calligraphy class, so the writing craftmanship will no doubt improve as well <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/essay.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/essay.jpg?w=450&#038;h=600" alt="First essay" title="First essay" width="450" height="600" class="aligncenter size-full wp-image-171" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=166&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/03/25/first-essay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/essay.jpg" medium="image">
			<media:title type="html">First essay</media:title>
		</media:content>
	</item>
		<item>
		<title>Taipei week 3+ &#8211; Getting to work</title>
		<link>http://vlarsen.wordpress.com/2009/03/22/taipei-week-3-getting-to-work/</link>
		<comments>http://vlarsen.wordpress.com/2009/03/22/taipei-week-3-getting-to-work/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 08:32:21 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Language]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[apartment]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[duckblood]]></category>
		<category><![CDATA[eslite]]></category>
		<category><![CDATA[IKEA]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=148</guid>
		<description><![CDATA[March 1st. The time finally arrived for me to move into my newly rented apartment. Having lived in a hotel for almost two weeks, I had gotten used to the easy life, and the friendly faces greeting me in the reception. Also to the fact that my basic needs where provided for. I arrived at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=148&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>March 1st. The time finally arrived for me to move into my newly rented apartment. Having lived in a hotel for almost two weeks, I had gotten used to the easy life, and the friendly faces greeting me in the reception. Also to the fact that my basic needs where provided for.</p>
<p>I arrived at the apartment at 5pm, getting my keys from the landlady. The first thing I noticed was that the cleaning left something to be desired; but that&#8217;s ok for me: one less thing to worry about when &#8220;checking out&#8221; in three months&#8230; Then the fact that the furnitured apartment was totally lacking in glasses, plates, chopsticks etc (as well as food and drink, of course). So a trip to the local &#8220;super&#8221; market becomes the next point on the agenda.</p>
<p>The last surprise of the evening is when I attempt to go to sleep. The bed (covered in a hideous sheet with actual pink flamingos), is like lying on a wooden board, but with steel springs popping up at random locations. This crosses the border from inconvenient to unusable, and the first night established the fact that my back would not last three months sleeping on this bed.</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/dscn3334.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/dscn3334.jpg?w=300&#038;h=225" alt="IKEA Taipei" title="IKEA Taipei" width="300" height="225" class="alignleft size-medium wp-image-150" /></a>Fortunately, one of my colleagues at work tipped me about IKEA having a store in Taipei. They used to go there all the time when they needed something for the home. I can imagine IKEA being seen as somewhat exotic here, although to me it was just like going back home to Norway. To make a long story short, after several trips to IKEA, I managed to put the apartment in proper working order, with both an extra matress for the bed and some less hippiey sheets, as well as some subtle decorations to humanize the place. And, no, I did not eat the kjöttbullar for dinner, but I did buy some knäckebröd for breakfast&#8230;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/dscn3345.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/dscn3345.jpg?w=72&#038;h=96" alt="Apartment bed" title="Apartment bed" width="72" height="96" class="alignnone size-thumbnail wp-image-151" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/dscn3378.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/dscn3378.jpg?w=72&#038;h=96" alt="Apartment TV" title="Apartment TV" width="72" height="96" class="alignnone size-thumbnail wp-image-154" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/dscn3353.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/dscn3353.jpg?w=128&#038;h=96" alt="Apartment kitchen top" title="Apartment kitchen top" width="128" height="96" class="alignnone size-thumbnail wp-image-152" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/dscn3354.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/dscn3354.jpg?w=72&#038;h=96" alt="Apartment bathroom" title="Apartment bathroom" width="72" height="96" class="alignnone size-thumbnail wp-image-153" /></a></p>
<p>This week also marked a radical shift in the weather. While February had been unusually hot (Hong Kong measuring the highest mean temperature in recorded history with 20.3℃), March saw temperature drop to the low teens, and rain and wind completing the unpleasantness. This, combined with my apartment fixing project and school starting, put a damper on my tourist activities. I will get back with more of this later <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/dsc00151.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/dsc00151.jpg?w=300&#038;h=225" alt="(most of) Class at MTC" title="(most of) Class at MTC" width="300" height="225" class="alignright size-medium wp-image-155" /></a>The apartment is just a 7 minutes walk from the office, and a further 15 minutes to the school. School started the 5th of March, with an orientation meeting the day before. Each class was 8-10 students. The first few days there were some leaving and joining classes, but our class settled down at nine people, hailing from Japan, France, Ireland, USA, Brazil, Belarus and Norway. Writing this post, I have just completed the first two full weeks of class.</p>
<p>We started by learning pronunciation. I (covertly) managed to convince the class that we should be focusing on learning <a href="http://en.wikipedia.org/wiki/Bopomofo">Bopomofo</a> (ㄅㄆㄇㄈ) for this, as I find the romanization of Pinyin to just be confusing and inconsistent. Bopomofo has a strong position in Taiwan, but not much outside. It is mainly a teaching aid, while pinyin in fact is being used to publish normal texts in mainland China. Using bopomofo, we where able to learn the subtle differences between some of the sounds in the language, as well as gaining a rudimentary starting vocabulary without having to learn the actual Chinese characters for those words. Parallell to this first week, there was, conveniently, a pronunciation class in the big auditorium as well. Here the focus was more on repeating, in unison, what the teacher said. It worked well as additional practice, though, and also provided more hours each day to get into the proper &#8220;mind set&#8221;.</p>
<p>The next week started by attacking lesson 1 in the textbook. Introducing yourself, asking the other persons name and nationality, etc. Here we started using proper characters, and started learning to write. And again, parallell to this, there was an introduction to writing class in the big auditorium.</p>
<p>Class is going great, the people in my class are fun and eager to learn, and the teacher is enthusiastic and attentive to each individual&#8217;s needs. I have firmly established myself as a &#8220;good student&#8221; by doing my homework, acing all the tests so far, and being focused and helpful in class. My biggest challenge is proper pronunciation, as I don&#8217;t have continuous opportunity to speak chinese. I find, though, that sounds and tones are not very difficult for Norwegians, compared to some of the other nationalities gathered in my class.</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/img_0053.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/img_0053.jpg?w=300&#038;h=225" alt="Eslite reading area" title="Eslite reading area" width="300" height="225" class="alignleft size-medium wp-image-156" /></a>I did spend a few afternoons walking around the city. One of my trips were to a big 24h bookstore called <a href="http://en.wikipedia.org/wiki/Eslite_Bookstore">Eslite</a>. The flagship store on 敦化南路/Dunhua South Road is big, and has gradually developed into a kind of mall; the focus is still on books, though. And being open around the clock provides a unique service to it&#8217;s patrons. All around the store, people were sitting down or standing up, reading books and taking a good time about it. Reading a book seemed not frowned upon, as is normal in my country, but rather encouraged, with even a special reading table set up for extended browsing. The amount of books on offer was impressive, although for me the Chinese language books are still somewhat outside my competence level. When I was there, the shop was full of people, but there was no real lines forming at the counter. I don&#8217;t really know how they stay in business, providing what looked to me more like a library than a bookstore focused on peddling books. But I guess filling the store with people is a good way to turn a profit on the percentage that actually buys some of the goods on offer.</p>
<p>After this post, I will turn my attention to specific events and topics, rather than trying to do a general diary of weeks. I imagine my time will be much focused on going to class, and studying the subject, and less time will be spent exploring the surroundings. For Spring Break though (April 2-3), I have signed up for a trip to Green Island, of the south east coast of Taiwan; I&#8217;m looking forward to that.</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/img_0037.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/img_0037.jpg?w=225&#038;h=300" alt="Rice in duck&#39;s blood" title="Rice in duck&#39;s blood" width="225" height="300" class="alignright size-medium wp-image-157" /></a>Until next time, I leave you with a snapshot from the local food store, of a produce I have not yet tried (again thanks to the clear labeling), &#8220;Rice in Duck&#8217;s Blood&#8221;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=148&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/03/22/taipei-week-3-getting-to-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/dscn3334.jpg?w=300" medium="image">
			<media:title type="html">IKEA Taipei</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/dscn3345.jpg?w=72" medium="image">
			<media:title type="html">Apartment bed</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/dscn3378.jpg?w=72" medium="image">
			<media:title type="html">Apartment TV</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/dscn3353.jpg?w=128" medium="image">
			<media:title type="html">Apartment kitchen top</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/dscn3354.jpg?w=72" medium="image">
			<media:title type="html">Apartment bathroom</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/dsc00151.jpg?w=300" medium="image">
			<media:title type="html">(most of) Class at MTC</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/img_0053.jpg?w=300" medium="image">
			<media:title type="html">Eslite reading area</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/img_0037.jpg?w=225" medium="image">
			<media:title type="html">Rice in duck&#39;s blood</media:title>
		</media:content>
	</item>
		<item>
		<title>Dance Movies of the 80s</title>
		<link>http://vlarsen.wordpress.com/2009/03/14/dance-movies-of-the-80s/</link>
		<comments>http://vlarsen.wordpress.com/2009/03/14/dance-movies-of-the-80s/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 16:21:20 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[80s]]></category>
		<category><![CDATA[dance]]></category>
		<category><![CDATA[movies]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=139</guid>
		<description><![CDATA[Something triggered me thinking the other day, about dance movies of the 80s. And to my shock, I found out that making this list made me realize that I actually enjoy the occational dance movie. I haven&#8217;t watched too many, though, so I may have left out some of your personal favourites. The following is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=139&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://vlarsen.files.wordpress.com/2009/03/snf.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/snf.jpg?w=210&#038;h=300" alt="Saturday Night Fever" title="Saturday Night Fever" width="210" height="300" class="alignleft size-medium wp-image-145" /></a>Something triggered me thinking the other day, about dance movies of the 80s. And to my shock, I found out that making this list made me realize that I actually enjoy the occational dance movie. I haven&#8217;t watched too many, though, so I may have left out some of your personal favourites.</p>
<p>The following is just a list of names and links to IMDB.com and youtube-clips. You will find all the information you need there. Beware, if you have not seen any of the movies, that both these sites may contain &#8220;spoilers&#8221;; but, hey, the 80s was a long time ago, so who hasn&#8217;t seen these movies by now&#8230; <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<ul>
<li>Saturday Night Fever (1977) <a href="http://www.imdb.com/title/tt0076666/">imdb</a> <a href="http://www.youtube.com/watch?v=GdPAkrgW1ko">youtube</a></li>
<li>Grease (1978) <a href="http://www.imdb.com/title/tt0077631/">imdb</a> <a href="http://www.youtube.com/watch?v=gyUWkQj0Q_U">youtube</a></li>
<li>Fame (1980) <a href="http://www.imdb.com/title/tt0080716/">imdb</a> <a href="http://www.youtube.com/watch?v=ptdFmEO4Md0">youtube</a> <a href="http://www.youtube.com/user/FameChannel">channel</a></li>
<li>Staying Alive (1983) <a href="http://www.imdb.com/title/tt0086361/">imdb</a> <a href="http://www.youtube.com/watch?v=f1cS3JtzRAc">youtube</a></li>
<li>Flashdance (1983) <a href="http://www.imdb.com/title/tt0085549/">imdb</a> <a href="http://www.youtube.com/watch?v=FeZ5R3C5bzs">youtube</a></li>
<li>Footloose (1984) <a href="http://www.imdb.com/title/tt0087277/">imdb</a> <a href="http://www.youtube.com/watch?v=bMB8vv18ehE">youtube</a> <a href="http://www.youtube.com/watch?v=yX38dNneIiU">youtube2</a></li>
<li>Dirty Dancing (1987) <a href="http://www.imdb.com/title/tt0092890/">imdb</a> <a href="http://www.youtube.com/watch?v=2SLWzZoDmhg">youtube</a></li>
<li>Strictly Ballroom (1992) <a href="http://www.imdb.com/title/tt0105488/">imdb</a> <a href="http://www.youtube.com/watch?v=y2sbUtPjLkA">youtube</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/139/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=139&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/03/14/dance-movies-of-the-80s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/snf.jpg?w=210" medium="image">
			<media:title type="html">Saturday Night Fever</media:title>
		</media:content>
	</item>
		<item>
		<title>Taipei week 2 &#8211; getting settled</title>
		<link>http://vlarsen.wordpress.com/2009/03/02/taipei-week-2-getting-settled/</link>
		<comments>http://vlarsen.wordpress.com/2009/03/02/taipei-week-2-getting-settled/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 12:26:38 +0000</pubDate>
		<dc:creator>Vidar</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[aeron]]></category>
		<category><![CDATA[ktv]]></category>
		<category><![CDATA[shark fin]]></category>
		<category><![CDATA[taipei]]></category>

		<guid isPermaLink="false">http://vlarsen.wordpress.com/?p=97</guid>
		<description><![CDATA[Week 2 started out with me determined to use the lazy Sunday to go looking at a few apartments for rent. I had a slow breakfast, and decided to spend a few minutes on the couch in my hotel room reading, waiting for my first appointment. Then, suddenly, a movement behind my magazine caught my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=97&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Week 2 started out with me determined to use the lazy Sunday to go looking at a few apartments for rent. I had a slow breakfast, and decided to spend a few minutes on the couch in my hotel room reading, waiting for my first appointment. Then, suddenly, a movement behind my magazine caught my eye. A fairly big RAT just jumped out from behind the TV, looked around, and scuttled back to where it came from. It was white and gray, and it looked mostly harmless (it was too fast for me to take pictures, though&#8230;). So I got up, hurried out the door, and went down to the front desk.</p>
<p>&#8220;Excuse me, there is rat in my room.&#8221;, &#8220;what, don&#8217;t understand, sir&#8221;, &#8220;rat&#8221;, &#8220;huh?&#8221; (me picking up my iPhone Chinese dictionary) &#8220;老鼠/lǎoshǔ&#8221;, &#8220;oh, I tell manager; do you want to change room, sir?&#8221;, &#8220;Yes, please <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8220;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/executive-bed.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/executive-bed.jpg?w=72&#038;h=96" alt="Executive Bed" title="Executive Bed" width="72" height="96" class="alignright size-thumbnail wp-image-99" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/executive-power-shower.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/executive-power-shower.jpg?w=72&#038;h=96" alt="Executive Power Shower" title="Executive Power Shower" width="72" height="96" class="alignright size-thumbnail wp-image-100" /></a>So, I changed rooms. To make a long story short, there was a big puddle/leak in the bathroom of my new room. Another complaint, and another room change lead to me being upgraded to the Master Executive Suite for the rest of the week.<br />
<a href="http://vlarsen.files.wordpress.com/2009/03/typical-hotel-breakfast.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/typical-hotel-breakfast.jpg?w=72&#038;h=96" alt="Typical Hotel Breakfast" title="Typical Hotel Breakfast" width="72" height="96" class="alignleft size-thumbnail wp-image-104" /></a>So I lived the happy life as an executive for a week. Bigger, softer bed; bigger, better tub; bigger, better minibar; even complementary condoms in the desk drawer (I wonder what kind of people normally inhabit these rooms&#8230;). The breakfast was the same, though. I played it safe, having a ham&#8217;n'egg sandwich, occationally tasting the chinese/japanese vegetables. No rat in there, as far as I could tell&#8230;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/taipei-city-hall.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/taipei-city-hall.jpg?w=128&#038;h=96" alt="Taipei City Hall" title="Taipei City Hall" width="128" height="96" class="alignright size-thumbnail wp-image-105" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/sogo-department-store.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/sogo-department-store.jpg?w=300&#038;h=225" alt="Sogo Department Store" title="Sogo Department Store" width="300" height="225" class="alignright size-medium wp-image-106" /></a>I eventually got to walking around town. I had looked at apartments in different parts of town, because I did not want to ignore a potential great place even though it was a bit far away from work. The MRT is fairly efficient at getting people around, so I could live with a short commute every day. I took a few pictures as well walking around, of different buildings and sights. For more of these, see my <a href="http://www.flickr.com/photos/monody/sets/72157614239683769/">flickr Taiwan 2009</a> set.</p>
<p>After having looked at a few apartments, I settled on one that looked nice, and was pretty close to the office. It was not in the best neighbourhood, and it was quite small. But I figured that it was good enough. And the decorations done to it, although mostly superficial, gave the impression of quality I needed to relax and stop thinking about rats <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I also liked the fact that having made the decision, I could just relax for the rest of the week, not having to spend every day hunting for a better place. More pictures and impression of the new apartment next week, when I&#8217;m moving in.</p>
<p>Tuesday I decided to go for a dinner outside the ordinary: Shark Fin Soup (魚翅湯/yú chì tāng). I asked the local &#8220;restaurant critic&#8221; about a good restaurant for such a dish. &#8220;It&#8217;s illegal&#8230; Besides, I though Western guy dont like the behavior that we kill shark&#8230;&#8221;, &#8220;We kill whales, you know&#8230;&#8221; Enough said <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . So there would be soup&#8230;</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/shark-fin-soup.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/shark-fin-soup.jpg?w=225&#038;h=300" alt="Shark Fin Soup" title="Shark Fin Soup" width="225" height="300" class="alignleft size-medium wp-image-111" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/abalone.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/abalone.jpg?w=128&#038;h=96" alt="Abalone" title="Abalone" width="128" height="96" class="alignleft size-thumbnail wp-image-112" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/lobster.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/lobster.jpg?w=128&#038;h=96" alt="Lobster" title="Lobster" width="128" height="96" class="alignleft size-thumbnail wp-image-113" /></a>The meal started out with some nice little vegetables and tea, followed by a boiling hot shark fin soup. The actual shark fin is dried and stored, and watered out before used in making the soup. In itself, it is almost tasteless, but by the treatment it receives it attains a magnificient spongelike texture (in a good way) that is excellent for attracting and delivering the taste from the soup. So there are many different variations on the shark fin soup theme, with different base and additions. My version was sauted in soy sauce, and had a simple set of vegetables. Tasty, pure and filling at the same time. The meal was by no means finished with the soup, though, as it was followed by a big abalone dish (cut into pieces in the picture, I&#8217;m afraid&#8230;) The size of this seashell is impressive, and the big muscle had a beeflike quality, while still remaining uniquely different. It did not taste like what I&#8217;ve come to expect from seafood, at least. The next dish was cooked lobster. Happily, the Chinese seem to not know about &#8220;dill&#8221;, so the taste of this lobster was not tainted by that nausea-inducing herb. I had to resort to using a fork for this one, though, as the chopsticks did not give enough control to pry loose the food while still allowing it to stay in the vicinity of my plate once loosened&#8230;</p>
<p>Such a great evening had to be finished in style. But I ended up on KTV instead <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  KTV is like what is more commonly known as karaoke, but instead of being in a public place, listening to strangers, and having to perform to a crowded room, you are basically in a hotel in your own room. Upon entering the establishment, you book a room at the front desk, and are assigned a number with a bellhop showing you the way. You enter the room, and order drinks, teas and throat medicine&#8230; Although it feels a bit strange being in a padded room with a couch and big-screen TV, it at least removes some of the inhibitions of us neophyte pop singers.<br />
<a href="http://vlarsen.files.wordpress.com/2009/03/my-way.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/my-way.jpg?w=225&#038;h=300" alt="My Way" title="My Way" width="225" height="300" class="alignleft size-medium wp-image-116" /></a>There were &#8220;over 9000&#8243; Chinese-language songs, and a limited selection of English songs as well. I seized the opportunity to do many of the classic karaoke killer hits; &#8220;My Way&#8221;, &#8220;Total Eclipse of the Heart&#8221;, &#8220;Up Where We Belong&#8221;, &#8220;Sound of Silence&#8221;, &#8220;Tears In Heaven&#8221;; I even got to do &#8220;Never Gonna Give You Up&#8221;. I think I did fairly well, actually; I just need to work on my range for some of the higher notes&#8230;<br />
Looking, and listening, to the Chinese songs, I made a startling discovery. Even with my limited reading ability (occasionally seeing a few characters I recognized), I was able to follow along pretty well, since each character is one syllable. And given the Chinese love for&#8230; well, love songs, the pace was pretty pedestrian. So I think KTV can actually be a good way to exercise structured speed-reading of Chinese. Given that YouTube is flush with KTV videos, I will be able to practice, so I&#8217;ve selected a song that I will try to learn; 屋頂/wūdǐng/roof. <span style="text-align:center; display: block;"><a href="http://vlarsen.wordpress.com/2009/03/02/taipei-week-2-getting-settled/"><img src="http://img.youtube.com/vi/5tOxfjHLK-A/2.jpg" alt="" /></a></span> Hopefully with 3 months studying I will have developed my reading skills, as well as my singing voice, to be able to pull this off <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/massage-guy.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/massage-guy.jpg?w=128&#038;h=96" alt="Massage Guy" title="Massage Guy" width="128" height="96" class="alignright size-thumbnail wp-image-122" /></a>My back has been killing me these last few days, threatening my training and even my being able to sit in the office chair. Not good. Back home, I have been going to a chiropractor on and off for many years, but here degrees in chiropractics are not recognized. So I opted for getting a deep body massage. Not wanting to end up in a sleezy back-alley place with a &#8220;happy ending&#8221;, I asked at the hotel. They confirmed that the local places were &#8220;不好/bù hǎo&#8221;, but recommended a place uptown, where the people even were fluent in English. For the reasonable charge of NT$1.000 (NOK 200,-) I got lavender tea, soft musicbox muzak, and 60 minutes total body massage. It started out hurting like hell, but eventually the muscles decramped, and the bones fell into place. I guess this will be part of my new relaxing regime, interleaved with visits to the hot springs <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/pear.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/pear.jpg?w=125&#038;h=96" alt="Pear" title="Pear" width="125" height="96" class="alignleft size-thumbnail wp-image-123" /></a>A few tidbits from the office this week. Fruit day entailed something familiar this time; pear/梨/lí. The tast was a bit different, though. Not as juicy and mushy as the ordinary Norwegian pear, but much more crunchy and dry. Actually quite similary to last weeks jujube. I sense a theme, here&#8230;<br />
<a href="http://vlarsen.files.wordpress.com/2009/03/y-14-years.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/y-14-years.jpg?w=72&#038;h=96" alt="Y! 14 Years" title="Y! 14 Years" width="72" height="96" class="alignright size-thumbnail wp-image-124" /></a><a href="http://vlarsen.files.wordpress.com/2009/03/yahoo-cupcake.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/yahoo-cupcake.jpg?w=300&#038;h=225" alt="Yahoo! Cupcake" title="Yahoo! Cupcake" width="300" height="225" class="alignright size-medium wp-image-125" /></a><br />
Yahoo! also celebrated its 14th birthday, conveniently placed on the last Friday of the month when there apparently always is some kind of cake/dessert to be had. So also this time; an overly sweet and spongy Y! cupcake, fortunately coupled with some pastry more reminiscent of spring rolls.</p>
<p>No update on my cubicle walls yet, although I am slowly getting there. It has just not passed the threshold of utilitarian into ridiculous yet&#8230; But I want to take the opportunity to highlight the excellent chairs we are all equipped with.<br />
<a href="http://vlarsen.files.wordpress.com/2009/03/aeron-chair.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/aeron-chair.jpg?w=225&#038;h=300" alt="Aeron Chair" title="Aeron Chair" width="225" height="300" class="aligncenter size-medium wp-image-126" /></a><br />
The <a href="http://en.wikipedia.org/wiki/Aeron_Chair">Aeron Chair</a> is widely recognized as a comfortable and highly desirable chair, having been inducted in modern art museums. Often seen as a symbol of the dot-com era, there is no denying the inherent qualities in the shape and material of this chair. If there is one thing I would want to bring back to Norway, it might just be this one.</p>
<p>I continued my Taekwon-Do training this week. After the initial introduction was last week, this weeks training was more traditional. I talked to the teacher about possibly graduating to yellow belt, and he said he would be honored to have me receive the Taiwan ITF diploma to take back to Norway. One month until graduation, and as I am the only 9 gup, I will get personal feedback on my skills in the weeks to come. In fact, when practicing patterns this week, I got to show my Chon-Ji (a pattern&#8230;) to the entire class. They were obviously impressed by my prowess, but I also got some specific feedback from the black belt teacher. I fully remembered all the techniques, and the execution was mostly good, but I was lacking in flow. This has not been a focus of the training in Norway, but it became more apparent when doing the pattern alone. I will focus on this in the weeks ahead, and hopefully master it to the level required for the yellow belt.</p>
<p><a href="http://vlarsen.files.wordpress.com/2009/03/almond-fish-snacks.jpg"><img src="http://vlarsen.files.wordpress.com/2009/03/almond-fish-snacks.jpg?w=225&#038;h=300" alt="Almond Fish snacks..." title="Almond Fish snacks..." width="225" height="300" class="alignright size-medium wp-image-130" /></a>So that pretty much sums up my week of getting settled. Looking forward to next week, with moving into my apartment, and starting school. I leave you with one item of food I did NOT try, even though the fish look happy: The Crunchy Almond Fish Snack. Fortunately clearly labeled in English&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vlarsen.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vlarsen.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vlarsen.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vlarsen.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vlarsen.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vlarsen.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vlarsen.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vlarsen.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlarsen.wordpress.com&amp;blog=3421725&amp;post=97&amp;subd=vlarsen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlarsen.wordpress.com/2009/03/02/taipei-week-2-getting-settled/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">沈唯達</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/executive-bed.jpg?w=72" medium="image">
			<media:title type="html">Executive Bed</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/executive-power-shower.jpg?w=72" medium="image">
			<media:title type="html">Executive Power Shower</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/typical-hotel-breakfast.jpg?w=72" medium="image">
			<media:title type="html">Typical Hotel Breakfast</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/taipei-city-hall.jpg?w=128" medium="image">
			<media:title type="html">Taipei City Hall</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/sogo-department-store.jpg?w=300" medium="image">
			<media:title type="html">Sogo Department Store</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/shark-fin-soup.jpg?w=225" medium="image">
			<media:title type="html">Shark Fin Soup</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/abalone.jpg?w=128" medium="image">
			<media:title type="html">Abalone</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/lobster.jpg?w=128" medium="image">
			<media:title type="html">Lobster</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/my-way.jpg?w=225" medium="image">
			<media:title type="html">My Way</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/massage-guy.jpg?w=128" medium="image">
			<media:title type="html">Massage Guy</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/pear.jpg?w=125" medium="image">
			<media:title type="html">Pear</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/y-14-years.jpg?w=72" medium="image">
			<media:title type="html">Y! 14 Years</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/yahoo-cupcake.jpg?w=300" medium="image">
			<media:title type="html">Yahoo! Cupcake</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/aeron-chair.jpg?w=225" medium="image">
			<media:title type="html">Aeron Chair</media:title>
		</media:content>

		<media:content url="http://vlarsen.files.wordpress.com/2009/03/almond-fish-snacks.jpg?w=225" medium="image">
			<media:title type="html">Almond Fish snacks...</media:title>
		</media:content>
	</item>
	</channel>
</rss>
