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

<channel>
	<title>Personal recordings</title>
	<atom:link href="http://kiesel.name/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://kiesel.name/blog</link>
	<description>Posts being published unregularly and without relation</description>
	<lastBuildDate>Sun, 06 Dec 2009 11:23:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Apple keyboard IV</title>
		<link>http://kiesel.name/blog/2009/12/apple-keyboard-iv/</link>
		<comments>http://kiesel.name/blog/2009/12/apple-keyboard-iv/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 11:23:16 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[keyboard]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=263</guid>
		<description><![CDATA[Ok, this is the last chapter from my experiments with Apple keyboards on a Windows PC. With the slim keyboard I never managed to reconfigure the &#8220;Fn&#8221; key to something useful &#8211; but that was just a side effect. The main problems I had were that the keyboard is too small. I am a developer [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, this is the last chapter from my experiments with Apple keyboards on a Windows PC. With the slim keyboard I never managed to reconfigure the &#8220;Fn&#8221; key to something useful &#8211; but that was just a side effect.</p>
<p>The main problems I had were that the keyboard is too small. I am a developer and heavy shortcut user, so I need to type all kinds of braces, dashes, dots and so on and also use Ctrl-Shift-PgUp and thelike. Using these key combinations is not easily manageable on the Apple keyboard.</p>
<p>The consequence? I have now invested 20 more €uros and bought the <a href="http://www.logitech.com/index.cfm/479/3524&amp;hub=1&amp;cl=de,de">Logitech UltraX</a> keyboard &#8211; which I have at work, too. This keyboard is much like a laptop keyboard, features a standard PC design and has a very nice layout and key press feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/12/apple-keyboard-iv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using git with cygwin on Windows</title>
		<link>http://kiesel.name/blog/2009/12/using-git-with-cygwin-on-windows/</link>
		<comments>http://kiesel.name/blog/2009/12/using-git-with-cygwin-on-windows/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 17:30:44 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=255</guid>
		<description><![CDATA[Despite having circumvented the problems caused by the new Windows Vista UAC &#8211; as described in an older blog entry of mine and found all around the internet, git sometimes still has problems. At work, my team collaborates with SVN and commits to our company svn server. I am using git as an SVN client, [...]]]></description>
			<content:encoded><![CDATA[<p>Despite having circumvented the problems caused by the new Windows Vista UAC &#8211; as described in an older blog entry of mine and found all around the internet, git sometimes still has problems.</p>
<p>At work, my team collaborates with SVN and commits to our company svn server. I am using git as an SVN client, because it is more convenient for me; with no problems on my Gentoo (dev) box, but I never managed to check out on my Windows laptop.</p>
<p><span id="more-255"></span>Sooner or later, the checkout would fail with an error message like this:</p>
<blockquote>
<pre style="margin: 0em;">2 [main] git 3624 C:\cygwin\bin\git.exe: *** fatal error - could not
load shell32, Win32 error 487
Hangup</pre>
</blockquote>
<p>I have had searched for advice on how to fix this and have found the &#8211; amongst cygwin developers quite known &#8211; /sbin/rebaseall command. This, however, does not work in this case. Upon my last inquiry on that subject, I stumbled about a <a href="http://cygwin.com/ml/cygwin/2009-10/msg00042.html">recent post</a> on the cygwin mailinglist, the problem was found related to checking out symlinks from an svn repository. This information is very important: the repository I am trying to check out makes heavy use of symlinks.</p>
<p>I checked the man pages for git and found there are some settings related to symlinks in general, and cygwin in special:</p>
<ul>
<li>core.symlinks<br />
With this setting configured to false, symlinks will not be checked out as actual symlink, but as regular files with special content managed by git, then</li>
<li>core.ignoreCygwinFSTricks<br />
With this setting configured to false, filesystem calls will use the cygwin calls, which are slower, but more more reliable in the context of a cygwin program.</li>
</ul>
<p>You can read the detailled description <a href="http://www.kernel.org/pub/software/scm/git/docs/git-config.html">here</a>. With these settings done, git should be more reliable. Another setting I have found to be useful is the following:</p>
<ul>
<li>core.filemode
<p>With this set to false, changes to file permissions will not be recorded by git and will not lead to diffs found in files. This has once rescued a checkout of mine which had been corrupted over the time.</li>
</ul>
<p>Concluding, this is an excerpt from my Windows box&#8217; ~/.gitconfig with the relevant settings:</p>
<blockquote>
<pre>[core]
 fileMode = false
 ignoreCygwinFSTricks = false
 symlinks = false</pre>
</blockquote>
<p>Hopefully, all problems are gone now <img src='http://kiesel.name/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/12/using-git-with-cygwin-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning the E chord</title>
		<link>http://kiesel.name/blog/2009/06/learning-the-e-chord/</link>
		<comments>http://kiesel.name/blog/2009/06/learning-the-e-chord/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 14:03:58 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Guitar Hero]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=244</guid>
		<description><![CDATA[Now, after some practice, I think switching between A, D and G works quite ok, I&#8217;m progressing to the next chapter. This introduces E, which is not hard to hold, but gives me some headaches when switching quickly from D &#8211; I guess I need to practice this a bit more. What&#8217;s harder is that [...]]]></description>
			<content:encoded><![CDATA[<p>Now, after some practice, I think switching between A, D and G works quite ok, I&#8217;m progressing to the next chapter. This introduces E, which is not hard to hold, but gives me some headaches when switching quickly from D &#8211; I guess I need to practice this a bit more.</p>
<p><span id="more-244"></span>What&#8217;s harder is that I have to play simple bass lines; playing bass lines basically seems to mean to play the most upper string with the thumb first and then the rest &#8211; but only those that would be hit normally as well.</p>
<p>Coordinating the left hand to press the correct strings while using your right hand thumb to hit the right string in the right way is too much for me right now; practicing slow first probably will give me the experience, but that&#8217;s not for the impatient. But who said I wouldn&#8217;t need patience after all&#8230;</p>
<p>I glanced a few pages further -next is H7; doesn&#8217;t look too simple, though. I&#8217;ll stay with this lesson, but am pausing, &#8217;cause my fingertips hurt now.</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/06/learning-the-e-chord/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning the basic chords: D, G &amp; A</title>
		<link>http://kiesel.name/blog/2009/06/learning-the-basic-chords-d-g-a/</link>
		<comments>http://kiesel.name/blog/2009/06/learning-the-basic-chords-d-g-a/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 13:12:22 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Guitar Hero]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=242</guid>
		<description><![CDATA[As every beginner, I have to learn the basics. So far, the book covers the chords D and A &#8211; both with three fingers down and a simple version of G where only the small finger presses the high e in the third section &#8211; I&#8217;ve already seen G is actually a bit more difficult, [...]]]></description>
			<content:encoded><![CDATA[<p>As every beginner, I have to learn the basics. So far, the book covers the chords D and A &#8211; both with three fingers down and a simple version of G where only the small finger presses the high e in the third section &#8211; I&#8217;ve already seen G is actually a bit more difficult, and at this point I&#8217;m glad about this simplification <img src='http://kiesel.name/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>The fingertips of my left hand now feels dazed all the day &#8211; but that will fade over the time. Next chord to learn is E; it&#8217;ll bring me new songs&#8230; Let&#8217;s go.</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/06/learning-the-basic-chords-d-g-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting all over</title>
		<link>http://kiesel.name/blog/2009/06/starting-all-over/</link>
		<comments>http://kiesel.name/blog/2009/06/starting-all-over/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 13:04:13 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Guitar Hero]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=237</guid>
		<description><![CDATA[I&#8217;ve tried to learn playing guitar more than a year ago. I borrowed a classic guitar from my brother, who also started to play, but never really learned it. The guitar was not being used, so I could use it:) My fate was the same.Now, more than one year after, I&#8217;ve again got the guitar [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve tried to learn playing guitar more than a year ago. I borrowed a classic guitar from my brother, who also started to play, but never really learned it. The guitar was not being used, so I could use it:)</p>
<p>My fate was the same.<span id="more-237"></span>Now, more than one year after, I&#8217;ve again got the guitar in my hands. I had it returned to my brother and again borrowed it. There&#8217;s a learning book with it and I&#8217;ve put the cd on my iPod, so I can listed to the demonstration songs while playing the songs at the same time.</p>
<p>After a week, when I was playing on the guitar for about half an hour every day, I was fetching the guitar from the case and had to notice the bold E string has ripped off.</p>
<p>I had a day off on Friday and went to the local Rock Shop to buy a new set of guitar strings &#8211; around 10€. I spent an hour getting the new strings mounted and around one and a half times as much to tune up the strings. Notice: the new strings expand when there&#8217;s tension on the strings and it just takes a minute until the guitar sounds out of tune.</p>
<p>The most important lesson learned here is that a guitar with new strings sounds waaay better than before&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/06/starting-all-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git under Windows Vista</title>
		<link>http://kiesel.name/blog/2009/01/git-under-windows-vista/</link>
		<comments>http://kiesel.name/blog/2009/01/git-under-windows-vista/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 11:23:50 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=171</guid>
		<description><![CDATA[There&#8217;s an update for the problem described here. As already suspected, Windows Vista applies some heuristics to mark files, so users need to elevate to administrator to be able to execute those programs. However, the &#8220;heuristics&#8221; that are applied seem to be rather simple: According to a discussion in an MSDN forum, Vista simply takes [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s an update for the problem described <a href="/archives/55-git-w-git-svn-on-Windows-Vista.html">here</a>. As already suspected, Windows Vista applies some heuristics to mark files, so users need to elevate to administrator to be able to execute those programs.</p>
<p>However, the &#8220;heuristics&#8221; that are applied seem to be rather simple:</p>
<p><span id="more-171"></span></p>
<p>According to a <a href="http://social.msdn.microsoft.com/Forums/en-US/windowssecurity/thread/73f86e9e-928f-40b7-8dd5-27e40db6997e/">discussion in an MSDN forum</a>, Vista simply takes files containing one of the words &#8220;setup&#8221;, &#8220;install&#8221;, &#8220;update&#8221; and some more as installer files, requiring administrator privileges. Pretty stupid.</p>
<p>A quick check reveals there is truth to this: the git programs which are blocked for me are git-format-patch, git-patch-id, git-update-index, git-update-ref and git-update-server-info&#8230;</p>
<p>Ok &#8211; then, is there a way to circumvent that behavious? Actually, I don&#8217;t need to run them with admin privileges, all I need is Vista not to try to elevate; I tried to create .manifest files for the applications but with no success. MSDN actually claims the directive:</p>
<pre>requestedExecutionLevel="asInvoker"</pre>
<p>would suffice. In my tests, the security shield icon was removed when I had created the manifest file, but the program still required the admin privs. At one point I finally gave up trying to find the elegant solution and deactivated UAC in Vista. I have to live with a red security icon in the system try now, but git works as expected&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/01/git-under-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting large svn repositories w/ git-svn</title>
		<link>http://kiesel.name/blog/2009/01/converting-large-svn-repositories-w-git-svn/</link>
		<comments>http://kiesel.name/blog/2009/01/converting-large-svn-repositories-w-git-svn/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 09:53:00 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=170</guid>
		<description><![CDATA[On my Gentoo Linux at work, I&#8217;ve trying out git in the subversion locally, while committing to an SVN server. I did have issues getting the inital clone done; the repository is around 1 GB svn checkout size and contains ~89&#8217;000 revisions. `git svn clone &#8230;` ran up to rev 30k, then stopped and needed [...]]]></description>
			<content:encoded><![CDATA[<p>On my Gentoo Linux at work, I&#8217;ve trying out git in the subversion locally, while committing to an SVN server. I did have issues getting the inital <tt>clone</tt> done; the repository is around 1 GB svn checkout size and contains ~89&#8217;000 revisions.<br />
<span id="more-170"></span>`git svn clone &#8230;` ran up to rev 30k, then stopped and needed to be re-started, continuing at the last imported revision but it would only process some thousand further revs. When it was finally done, it contained only one of the top-level directories of `trunk/`.</p>
<p>I `rm -rf`&#8217;ed all and started over. Now I see an endless loop at around rev 20-30k. Searching on google revealed some posts on the git mailinglist; for speed, it seems to be better to continue checking out the svn tree with </p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2009/01/converting-large-svn-repositories-w-git-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git w/ git-svn on Windows Vista</title>
		<link>http://kiesel.name/blog/2008/12/git-w-git-svn-on-windows-vista/</link>
		<comments>http://kiesel.name/blog/2008/12/git-w-git-svn-on-windows-vista/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 13:44:37 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=168</guid>
		<description><![CDATA[I currently try out git because of its ability to do full version control without access to the server (like when in traveller mode). While on Gentoo Linux it&#8217;s quite easy to get it working, on my laptop&#8217;s Windows Vista installation with cygwin, I&#8217;ve encountered problems that could yet only be worked around in a [...]]]></description>
			<content:encoded><![CDATA[<p>I currently try out git because of its ability to do full version control without access to the server (like when in traveller mode).</p>
<p>While on Gentoo Linux it&#8217;s quite easy to get it working, on my laptop&#8217;s Windows Vista installation with cygwin, I&#8217;ve encountered problems that could yet only be worked around in a bad manner.</p>
<p><span id="more-168"></span>First, there are several blog entries out there that explain how to get git on Windows with cygwin, so I won&#8217;t covert that. Actually, I got git running on itself, but in subversion client mode (that is: running git as an svn client), I encountered problems.</p>
<p>When doing an initial <tt>git svn clone -s git-server directory</tt> the checkout first runs for long time and then aborts when it tries to call <tt>git repack</tt>, also when calling it &#8220;by hand&#8221;:<br />
<tt>Alex@mobile ~/git/xp.public/trunk<br />
$ git repack<br />
Nothing new to pack.<br />
/usr/sbin/git-core//git-repack: line 139: /usr/sbin/git-core/git-update-server-info: Permission denied</tt></p>
<p>Since file permissions look good, I should actually be able to execute that file. However, in Windows Explorer, you can see that you need administrator privileges to execute it:</p>
<div class="serendipity_imageComment_center" style="width: 326px">
<div class="serendipity_imageComment_img"><!-- s9ymdb:6 --><img class="serendipity_image_center" width="326" height="156"  src="/uploads/Vista-UAC.png" alt="" /></div>
<div class="serendipity_imageComment_txt">View in the Explorer</div>
</div>
<p>These little icons indicate that you need admin privs to run it, and you can elevate yourself to administator mode, when running through the Explorer, but &#8211; of course &#8211; out of the cygwin environment, running that program does not really work.</p>
<p>As workaround, you can completely disable Windows User Access Control, but this is discouraged. So, currently, I&#8217;m stuck here and will try to continue to resolve this as I really need git mainly on my Windows laptop&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2008/12/git-w-git-svn-on-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Siege of Bangkok airports</title>
		<link>http://kiesel.name/blog/2008/12/siege-of-bangkok-airports/</link>
		<comments>http://kiesel.name/blog/2008/12/siege-of-bangkok-airports/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 17:14:09 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=167</guid>
		<description><![CDATA[We had just left Bangkok with Thai Airways heading to Surrat Thani, when Bangkok&#8217;s international airport has been taken off operation by some protesters. Since there was more than one week ahead before we needed to return there, Marie and me initially had no big concerns due to these events. In safe distance, in southern [...]]]></description>
			<content:encoded><![CDATA[<p>We had just left Bangkok with Thai Airways heading to Surrat Thani, when Bangkok&#8217;s international airport has been taken off operation by some protesters. Since there was more than one week ahead before we needed to return there, Marie and me initially had no big concerns due to these events.<br />
In safe distance, in southern Thailand, we followed progress on TV and the Internet. But, when after a whole week, there was no end in sight, we started to think about alternate ways to get back home again.<span id="more-167"></span>We had followed airlines instructions closely on their websites; mainly we visited www.emirates.de and www.airasia.com to get their latest messages which were not always straight and to the point.</p>
<p>Our original flight schedule was this:</p>
<ul>
<li>Sat, 6th December 2008: 15.45h &#8211; 17.05h: Krabi (KBV) &#8211; Bangkok (BKK) w/ AirAsia
</li>
<li>Sat, 6th December 2008: 20.25h &#8211; 23.55h: Bangkok (BKK) &#8211; Dubai (DXB) w/ Emirates <tt>EK373</tt>
</li>
<li>Sat, 7th December 2008: 08.40h &#8211; 12.45h: Dubai (DXB) &#8211; Frankfurt (FRA) w/ Emirates <tt>EK049</tt></li>
</ul>
<p>On December 2nd, the Thai main court sentenced the ruling party to dissolve, practically ending the airport&#8217;s occupation. The protesters went home, but then, the airport needed to be cleaned and searched before being declared safe again. Through this ongoing process, first AirAsia declared on their webite to move their flights back to Suvarnabhumi Airport, while Emirates still stated to have some replacement flights to Utapao, a military airport near Bangkok.<br />
At first glance, that was good news, but given our fligh schedule, we didn&#8217;t have time to get from one airport to the other. Luckily, after one more day of waiting (we were not really waiting as the main part of our doing, but hanging around at beaches, so no problem so far), Emirates also declared Suvarnabhumi Airport as safe again and stated to operate to and from there again:</p>
<blockquote><p>As Bangkok</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2008/12/siege-of-bangkok-airports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Keyboard III</title>
		<link>http://kiesel.name/blog/2008/04/apple-keyboard-iii/</link>
		<comments>http://kiesel.name/blog/2008/04/apple-keyboard-iii/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 19:22:33 +0000</pubDate>
		<dc:creator>Alex Kiesel</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://kiesel.name/blog/?p=165</guid>
		<description><![CDATA[Well, it seems, I only write blog entries to try out new keyboards So &#8211; I&#8217;ve bought yet another Apple keyboard, this time the new thing metal brushed keboard. This one&#8217;s especially nice &#8211; somthing I&#8217;ve though of the other one as well. First, let me say, it&#8217;s a normal USB keyboard and it works [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it seems, I only write blog entries to try out new keyboards <img src='http://kiesel.name/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  So &#8211; I&#8217;ve bought yet another Apple keyboard, this time the new thing metal brushed keboard.</p>
<p>This one&#8217;s especially nice &#8211; somthing I&#8217;ve though of the other one as well. First, let me say, it&#8217;s a normal USB keyboard and it works out of the box on a Windows machine &#8211; the guys from the Apple store weren&#8217;t sure about that, though.</p>
<p>I still need to use SharpKeys to remap Alt and Command keys, but that&#8217;s ok. One thing, however, is a bit sad: Apple placed a &#8220;fn&#8221; key right above the delete-key. On Un*x systems, one often uses the key Shift-Ins to copy thing from the clipboard to the current cursor position &#8211; the &#8220;fn&#8221; key is not remappable under Windows, as it seems (I&#8217;ve googled for this one but found no solution).</p>
<p>You&#8217;d probably need a software upgrade for the keyboard, so it would send the key with an own keycode&#8230; But anyway, it still feels great to type on this keyboard, so I can only recommend it.</p>
]]></content:encoded>
			<wfw:commentRss>http://kiesel.name/blog/2008/04/apple-keyboard-iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

