<?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>Gogognome.nl</title>
	<atom:link href="http://gogognome.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://gogognome.nl</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 19:56:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Plus sign does not work in grep</title>
		<link>http://gogognome.nl/2012/04/plus-sign-does-not-work-in-grep/</link>
		<comments>http://gogognome.nl/2012/04/plus-sign-does-not-work-in-grep/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 12:36:21 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=195</guid>
		<description><![CDATA[In a bash shell under cygwin I used grep like this: grep [0-9]+[.][0-9]+ &#60;filename&#62; I expected a line like &#8220;&#8230;&#62;2.49&#60;&#8230;&#8221; to match. Unfortunately, this was not the case. It turns out that the plus sign is part of the extended regular expression syntax. To let grep use the extended regular expression syntax, use this: grep <a href='http://gogognome.nl/2012/04/plus-sign-does-not-work-in-grep/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>In a bash shell under cygwin I used grep like this:</p>
<pre>grep [0-9]+[.][0-9]+ &lt;filename&gt;</pre>
<p>I expected a line like &#8220;&#8230;&gt;2.49&lt;&#8230;&#8221; to match. Unfortunately, this was not the case.</p>
<p>It turns out that the plus sign is part of the extended regular expression syntax.</p>
<p>To let grep use the extended regular expression syntax, use this:</p>
<pre>grep -E [0-9]+[.][0-9]+ &lt;filename&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/04/plus-sign-does-not-work-in-grep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Svn+ssh with Subclipse</title>
		<link>http://gogognome.nl/2012/04/svnssh-with-subclipse/</link>
		<comments>http://gogognome.nl/2012/04/svnssh-with-subclipse/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 19:25:50 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=191</guid>
		<description><![CDATA[Subversion supports several protocols: http, https, svn and svn+ssh. I don&#8217;t like using http for Subversion, since the user name and password are transmitted as plain text. Getting https to work, you need to get a certificate from a Certificate Authority. This takes time and costs money. The svn+ssh alternative can be quickly set up <a href='http://gogognome.nl/2012/04/svnssh-with-subclipse/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Subversion supports several protocols: http, https, svn and svn+ssh. I  don&#8217;t like using http for Subversion, since the user name and password  are transmitted as plain text. Getting https to work, you need to get a  certificate from a Certificate Authority. This takes time and costs  money. The svn+ssh alternative can be quickly set up and is for free. The application svnserve allows access to your Subversion repositories using the svn protocol.</p>
<p>I installed Subversion on my Ubuntu server. An excellent description on how to do this is available <a title="Subversion on Ubuntu" href="https://help.ubuntu.com/8.04/serverguide/C/subversion.html" target="_blank">here</a>. To make the svnserve start on system start up I used the following commands from <a title="Howto start Subversion at boot on Ubuntu" href="http://benrobb.com/2007/01/15/howto-start-subversion-at-boot-on-ubuntu/" target="_blank">this site</a>:</p>
<p><code>cd /etc/init.d/<br />
sudo touch svnserve<br />
sudo vi svnserve<br />
svnserve -d -r /usr/local/svn/repository_name</code></p>
<p>The only thing left is to get Subclipse to work with your Subversion repository. All I had to do was to go to Windows -&gt; Preferences -&gt; SVN and change the client to SVNKit (Pure Java).</p>
<p>On the Internet I found another way to get JavaHL work with svn+ssh. However, I experienced that configuring a private key was much easier with SVNKit than with JavaHL. So I will stick to SVNKit.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/04/svnssh-with-subclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logging in on Samba server fails in Windows 7</title>
		<link>http://gogognome.nl/2012/03/logging-in-on-samba-server-fails-in-windows-7/</link>
		<comments>http://gogognome.nl/2012/03/logging-in-on-samba-server-fails-in-windows-7/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 13:33:42 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=188</guid>
		<description><![CDATA[Adding the following registry settings in Windows 7 solved this problem for me: HKLM\System\CCS\Services\LanmanWorkstation\Parameters DWORD DomainCompatibilityMode = 1 DWORD DNSNameResolutionRequired = 0 I found this solution at http://wiki.samba.org/index.php/Windows7.]]></description>
			<content:encoded><![CDATA[<p>Adding the following registry settings in Windows 7 solved this problem for me:</p>
<pre>        HKLM\System\CCS\Services\LanmanWorkstation\Parameters
            DWORD  DomainCompatibilityMode = 1
            DWORD  DNSNameResolutionRequired = 0</pre>
<p>I found this solution at <a href="http://wiki.samba.org/index.php/Windows7">http://wiki.samba.org/index.php/Windows7</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/03/logging-in-on-samba-server-fails-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dennis achter de computer</title>
		<link>http://gogognome.nl/2012/02/dennis-achter-de-computer/</link>
		<comments>http://gogognome.nl/2012/02/dennis-achter-de-computer/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 20:05:19 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=182</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 658px"><img title="Dennis achter de computer" src="http://www.gogognome.nl/wp/wp-content/uploads/2012/02/DSCN0676.JPG" alt="Dennis achter de computer" width="648" height="486" /><p class="wp-caption-text">Dennis achter de computer</p></div>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/02/dennis-achter-de-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Julia</title>
		<link>http://gogognome.nl/2012/02/julia/</link>
		<comments>http://gogognome.nl/2012/02/julia/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 20:03:45 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Foto]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=179</guid>
		<description><![CDATA[&#160;]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 1198px"><img class=" " title="Julia, februari 2012" src="http://www.gogognome.nl/wp/wp-content/uploads/2012/02/P1060001.JPG" alt="Julia, februari 2012" width="1188" height="984" /><p class="wp-caption-text">Julia, februari 2012</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/02/julia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dennis in peuterspeelzaal</title>
		<link>http://gogognome.nl/2012/02/dennis-in-peuterspeelzaal/</link>
		<comments>http://gogognome.nl/2012/02/dennis-in-peuterspeelzaal/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 20:31:44 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Foto]]></category>
		<category><![CDATA[Dennis]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=168</guid>
		<description><![CDATA[Januari 2012: Een foto van Dennis gemaakt op de peuterspeelzaal. Hij heeft het altijd naar zijn zin op de peuterspeelzaal.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="dennis-peuterspeelzaal" src="http://www.gogognome.nl/wp/wp-content/uploads/2012/01/dennis-peuterspeelzaal.jpg" alt="Dennis bij de peuterspeelzaal" width="367" height="367" /></p>
<p>Januari 2012: Een foto van Dennis gemaakt op de peuterspeelzaal. Hij heeft het altijd naar zijn zin op de peuterspeelzaal.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/02/dennis-in-peuterspeelzaal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opbouw files van Magic Music Module Professional</title>
		<link>http://gogognome.nl/2012/01/mmm-pro-filestructuur/</link>
		<comments>http://gogognome.nl/2012/01/mmm-pro-filestructuur/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 14:55:37 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Magic Music Module Professional]]></category>
		<category><![CDATA[MSX]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=164</guid>
		<description><![CDATA[Bij het opruimen van een oude klapper op zolder vond ik een document dat ik in 1993 heb geschreven. Het beschrijft de structuur van bestanden van het programma Magic Music Module Professional.  Dit programma is een step-time muziekeditor voor de MSX-computer. Ik heb dat programma tijdens mijn schooltijd geschreven. Mocht iemand nog de behoefte hebben <a href='http://gogognome.nl/2012/01/mmm-pro-filestructuur/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Bij het opruimen van een oude klapper op zolder vond ik een document dat ik in 1993 heb geschreven. Het beschrijft de structuur van bestanden van het programma Magic Music Module Professional.  Dit programma is een step-time muziekeditor voor de MSX-computer. Ik heb dat programma tijdens mijn schooltijd geschreven.</p>
<p>Mocht iemand nog de behoefte hebben om muziekbestanden van Magic Music Module Professional in te lezen, bijvoorbeeld om ze om te zetten naar MIDI-bestanden, dan is dit document handig om te hebben.</p>
<p><a title="Opbouw files van Magic Music Module Professional" href="http://www.gogognome.nl/downloads/mmm-pro-filestructuur.pdf" target="_blank">Klik hier</a> om het document te downloaden.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/01/mmm-pro-filestructuur/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable button click triggered by enter in Compact Framework 2.0</title>
		<link>http://gogognome.nl/2012/01/disable-button-click-triggered-by-enter-in-compact-framework-2-0/</link>
		<comments>http://gogognome.nl/2012/01/disable-button-click-triggered-by-enter-in-compact-framework-2-0/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 12:39:57 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[.NET/C#]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=157</guid>
		<description><![CDATA[Mobile devices do not have mouse. When the user uses the touch screen to click on a button, then this click is translated to mouse events. This way existing software can still be used on a mobile device without mouse. When the mobile device has a barcode reader, then when a barcode is scanned, this <a href='http://gogognome.nl/2012/01/disable-button-click-triggered-by-enter-in-compact-framework-2-0/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Mobile devices do not have mouse. When the user uses the touch screen to click on a button, then this click is translated to mouse events. This way existing software can still be used on a mobile device without mouse.</p>
<p>When the mobile device has a barcode reader, then when a barcode is scanned, this barcode is offered to the application as if it was typed on a keyboard. And typically a key press for the enter key is added after the barcode.</p>
<p>But what happens if the user accidently moved the focus from a text box to a button? If the user then scans a barcode, the key presses for the barcode are ignored, but the key press for the enter will cause a button click!</p>
<p>It turns out that preventing this button click is difficult in Compact Framework.</p>
<p>I finally found a solution in <a title="Subclassing a TextBos using Native Callbacks" href="http://www.codeproject.com/KB/cs/TextBox_subclassing.aspx" target="_blank">the article &#8220;SubClassing a Control Using Native Callbacks” at codeproject.com</a>. Compact Framework offer the possibility for native code (like the Button class) to call managed code using a callback delegate. The article describes how to implement a callback delegate that is called when the mouse button is pressed or released.</p>
<p>The solution I came up with is to create a subclass of Button. When the mouse button is pressed a flag is set. The method OnClick() only handles the click if the flag is set and then clears the flag.</p>
<p>One minor problem was that pressing enter on the mobile device actually sent two mouse press events. The second event always has wparam = 0 and lparam = 0. When such an event is received I also clear the flag so that the following call to OnClick() does not handle the click.</p>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2012/01/disable-button-click-triggered-by-enter-in-compact-framework-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UNetbootin</title>
		<link>http://gogognome.nl/2011/12/unetbootin/</link>
		<comments>http://gogognome.nl/2011/12/unetbootin/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 19:35:16 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://gogognome.nl/?p=136</guid>
		<description><![CDATA[I decided to try a new Linux distribution. Last time I installed Linux I installed it from a USB stick. I remember I needed some special software to make the USB stick bootable. Now I discovered UNetbootin. This tool copies a Linux distribution to a USB stick and makes it bootable. It can even download <a href='http://gogognome.nl/2011/12/unetbootin/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I decided to try a new Linux distribution. Last time I installed Linux I installed it from a USB stick. I remember I needed some special software to make the USB stick bootable.</p>
<p>Now I discovered <a title="UNetbootin" href="http://unetbootin.sourceforge.net/" target="_blank">UNetbootin</a>. This tool copies a Linux distribution to a USB stick and makes it bootable. It can even download any of the popular distributions for you.</p>
<p>UNetbootin is available for Linux, Windows and Mac OS X.</p>
<div id="_mcePaste" class="mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">http://unetbootin.sourceforge.net/</div>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2011/12/unetbootin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leuk dat het kan, maar daar zit ik niet op te wachten</title>
		<link>http://gogognome.nl/2011/12/leuk_dat_het_kan/</link>
		<comments>http://gogognome.nl/2011/12/leuk_dat_het_kan/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 13:41:28 +0000</pubDate>
		<dc:creator>sanderk</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://gogognome.nl/wp/?p=105</guid>
		<description><![CDATA[Technologisch gezien kunnen we nu ontzettend veel. Wie begin twintigste eeuw had gezegd dat binnen honderd jaar een mens op de maan zou lopen werd voor gek verklaard. Inmiddels is het al weer veertig jaar sinds de eerste mens op de maan is geweest. Ook niet voor te stellen aan het begin van de twintigste <a href='http://gogognome.nl/2011/12/leuk_dat_het_kan/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<div id="main">
<p>Technologisch gezien kunnen we nu ontzettend veel. Wie begin twintigste eeuw       had gezegd dat binnen honderd jaar een mens op de maan zou lopen werd voor gek verklaard.       Inmiddels is het al weer veertig jaar sinds de eerste mens op de maan is geweest.</p>
<p>Ook niet voor te stellen aan het begin van de twintigste eeuw was het Internet.       Het Internet heeft zich sinds de jaren negentig sterk ontwikkeld. Het Internet wordt       steeds vaker gebruikt om bestaande media als radio, TV en kranten aan te vullen       of zelfs te vervangen.</p>
<p>Maar zijn al deze ontwikkelingen nou allemaal even wenselijk? Mensen die mij       al langer kennen, zullen de volgende uitspraak van mij inmiddels ook kennen:       Leuk dat het kan, maar daar zit ik niet op te wachten.</p>
<p>Neem nou eens het bericht        <a href="http://www.nu.nl/internet/2284157/techniek-onderzocht-voedingsinfo-gsm-lezen.html" target="_blank">Techniek onderzocht om voedingsinfo op gsm te lezen</a> dat op 3 juli          te lezen was op de nieuwspagina <a href="http://www.gogognome.nl/nl/nu.nl" target="_blank">nu.nl</a>.       In dit bericht oppert Herman Koëter van de        <a href="http://www.orange--house.eu/" target="_blank">Orange House Partnership</a> om voedingsinformatie van allerlei producten te tonen op de mobiele telefoon.       Als een klant in de winkel voedingsinformatie van een potje pindakaas wil krijgen hoeft hij       niet het etiket te lezen, maar moet hij zijn mobieltje richten op de streepjescode       van het potje. Vervolgens verschijnt de voedingsinformatie op zijn mobieltje.</p>
<p>Het is leuk dat dit technisch mogelijk is, maar wie zit hier nou op te wachten?       Veel consumenten doen slechs eens per week boodschappen. Ze kopen dan altijd hetzelfde merk       pindakaas, frisdrank, melk enzovoort. Ze gaan echt niet iedere week de voedingsinformatie       van deze producten bekijken op hun mobieltje.</p>
<p>Naast tonen van productinformatie stelt Koëter ook voor dat voor mensen met       overgewicht een &#8220;rood alarm&#8221; krijgen voor slechte producten. Dit is echter een onpraktisch idee.        Binnen een gezin is het meestal dezelfde persoon die de boodschappen doet voor        het gehele gezin. Het mobieltje kan moeilijk bepalen voor welk gezinslid het potje pindakaas       bedoeld is en of pindakaas ongezond is voor dat gezinslid. En geeft het systeem ook een       alarm als iemand in het gezin allergisch is voor pinda&#8217;s?</p>
<p>Mensen die echt op hun voeding moeten letten vanwege een dieet verdiepen zich       in de materie. Dit doen ze niet in de winkel, maar thuis. Verder doen ze dat niet       met hun mobieltje maar met boeken       of webpagina&#8217;s. Er zijn al talloze boeken en webpagina&#8217;s beschikbaar met gedetailleerde       voedingsinformatie van alle producten.       Dus de mensen op wie het nieuwe systeem gericht is kunnen prima uit de voeten       met de huidige informatiebronnen.</p>
<p>Tot slot vrees ik dat een dergelijk complex systeem zeer duur is om te ontwikkelen.       Ten eerste zijn er techinsche uitdagingen om een mobieltje een streepjescode te laten lezen       en informatie op te laten zoeken op Internet. Ten tweede zal het een gigantische klus zijn om       alle voedselproducenten ter wereld hun etiketinformatie digitaal te laten aanleveren.</p>
<p>Het moge duidelijk zijn dat het voorgestelde systeem moeilijk en duur is om te realiseren.       Verder is het een technologische oplossing voor een probleem dat al opgelost is met       eenvoudigere middelen. Voor mij geldt dus: leuk dat het kan, maar daar zit ik niet op te wachten.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://gogognome.nl/2011/12/leuk_dat_het_kan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

