<?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>Burobjorn.nl &#124; digitaal vakmanschap // digital craftsmanship</title>
	<atom:link href="http://www.burobjorn.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.burobjorn.nl</link>
	<description>Burobjorn houdt zich bezig met open source software en online media. Van advies tot concept. Van prototype tot implementatie.</description>
	<lastBuildDate>Thu, 05 Aug 2010 11:27:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Vrijdagen zijn voor de 20% tijd</title>
		<link>http://www.burobjorn.nl/blog/2010/08/05/vrijdagen-zijn-voor-de-20-tijd/</link>
		<comments>http://www.burobjorn.nl/blog/2010/08/05/vrijdagen-zijn-voor-de-20-tijd/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 11:25:48 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=751</guid>
		<description><![CDATA[
Lego photo by Oskay
Het is zover! Geïnspireerd door Google die al geruime tijd haar medewerkers 20% van de werktijd &#8216;cadeau&#8217; geeft om te experimenteren gaat Burobjorn vanaf nu op vrijdag lekker experimenteren, werken aan eigen projecten en spelen met nieuwe concepten. Bij Google heeft dat onder andere geleid tot de indrukwekkend browser gebaseerde applicatie Gmail. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.burobjorn.nl/blog/wp-content/uploads/2010/08/lego-cc-by-oskay.jpg"><img class="size-medium wp-image-752" title="Lego photo by Oskay (http://www.flickr.com/photos/oskay/2157682522) " src="http://www.burobjorn.nl/blog/wp-content/uploads/2010/08/lego-cc-by-oskay-300x225.jpg" alt="Lego photo by Oskay (http://www.flickr.com/photos/oskay/2157682522) " width="300" height="225" /></a><br />
<h5>Lego photo by <a href="http://www.flickr.com/photos/oskay/2157682522">Oskay</a></h5>
<p>Het is zover! Geïnspireerd door Google die al geruime tijd haar medewerkers <a href="http://www.pcmag.com/article2/0,2817,2340545,00.asp">20% van de werktijd &#8216;cadeau&#8217;</a> geeft om te experimenteren gaat Burobjorn vanaf nu op vrijdag lekker experimenteren, werken aan <a href="http://simuze.nl">eigen projecten</a> en spelen met nieuwe concepten. Bij Google heeft dat onder andere geleid tot de indrukwekkend browser gebaseerde applicatie <a href="http://gmail.com">Gmail</a>. Wie weet wat er bij Burobjorn uitkomt? Op maandag tot en met donderdag staat Burobjorn zoals altijd voor je gereed, maar de vrijdag is dus voortaan voor eigen werk!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/08/05/vrijdagen-zijn-voor-de-20-tijd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto remove ^M characters using vim</title>
		<link>http://www.burobjorn.nl/blog/2010/07/05/howto-remove-m-characters-using-vim/</link>
		<comments>http://www.burobjorn.nl/blog/2010/07/05/howto-remove-m-characters-using-vim/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 20:55:28 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=748</guid>
		<description><![CDATA[Thanks to this post on Tech recipes I can easily replace DOS/Windows line endings in files:

To remove the ^M characters at the end of all lines in vi, use:
:%s/^V^M//g
The ^v is a CONTROL-V character and ^m is a CONTROL-M. When you type this, it will look like this:
:%s/^M//g
In UNIX, you can escape a control character [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://www.tech-recipes.com/rx/150/remove-m-characters-at-end-of-lines-in-vi/">this post on Tech recipes</a> I can easily replace DOS/Windows line endings in files:</p>
<blockquote><p>
To remove the ^M characters at the end of all lines in vi, use:</p>
<p><code>:%s/^V^M//g</code></p>
<p>The ^v is a CONTROL-V character and ^m is a CONTROL-M. When you type this, it will look like this:</p>
<p><code>:%s/^M//g</code></p>
<p>In UNIX, you can escape a control character by preceeding it with a CONTROL-V. The :%s is a basic search and replace command in vi. It tells vi to replace the regular expression between the first and second slashes (^M) with the text between the second and third slashes (nothing in this case). The g at the end directs vi to search and replace globally (all occurrences).</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/07/05/howto-remove-m-characters-using-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix ssh &#8216;Too many authentication failures&#8217;</title>
		<link>http://www.burobjorn.nl/blog/2010/06/25/fix-ssh-too-many-authentication-failures/</link>
		<comments>http://www.burobjorn.nl/blog/2010/06/25/fix-ssh-too-many-authentication-failures/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:57:53 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=745</guid>
		<description><![CDATA[If you&#8217;re like me, you might have a lot of ssh keys installed and this might prevent you from logging into servers with the following message as a result: 
&#8220;Too many authentication failures&#8221;. 
As far as I understood this happens due to SSH trying each key on the client for logging and failing due to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you might have a lot of ssh keys installed and this might prevent you from logging into servers with the following message as a result: </p>
<p><em>&#8220;Too many authentication failures&#8221;. </em></p>
<p>As far as I understood this happens due to SSH trying each key on the client for logging and failing due to hitting the serverMaxAuthTries in the SSH server configuration. I use the following quick fix to work around this, by forcing SSH to use a password instead of a public key: </p>
<p><code>ssh -o PubkeyAuthentication=no username@hostname.com</code></p>
<p>I&#8217;m pretty sure there has to be a better, more durable solution for this issue, but the above fix allows you to at least gain access to your server again. Btw I use this on Linux (Ubuntu 10.04) with  OpenSSH_5.3p1 Debian-3ubuntu4. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/06/25/fix-ssh-too-many-authentication-failures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview bij Xpert CMKB</title>
		<link>http://www.burobjorn.nl/blog/2010/05/03/interview-bij-xpert-cmkb/</link>
		<comments>http://www.burobjorn.nl/blog/2010/05/03/interview-bij-xpert-cmkb/#comments</comments>
		<pubDate>Mon, 03 May 2010 11:34:06 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=742</guid>
		<description><![CDATA[Naar aanleiding van mijn deelname aan het door Xpert CMKB en Culturele Zondagen georganiseerde auteursrechten gesprek/debat staat er nu een interview met mij op de site van Xpert CMKB. Zie hier voor het interview: http://www.xpertcmkb.nl/?p=1618
]]></description>
			<content:encoded><![CDATA[<p>Naar aanleiding van <a href="http://www.burobjorn.nl/blog/2010/04/17/auteursrechtgesprek-zondag-18-april/">mijn deelname aan het door Xpert CMKB en Culturele Zondagen georganiseerde auteursrechten gesprek/debat</a> staat er nu een interview met mij op de site van <a href="http://www.xpertcmkb.nl/">Xpert CMKB</a>. Zie hier voor het interview: <a href="http://www.xpertcmkb.nl/?p=1618">http://www.xpertcmkb.nl/?p=1618</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/05/03/interview-bij-xpert-cmkb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presentation on Creative Commons at Linux Audio Conference online</title>
		<link>http://www.burobjorn.nl/blog/2010/05/02/presentation-on-creative-commons-at-linux-audio-conference-online/</link>
		<comments>http://www.burobjorn.nl/blog/2010/05/02/presentation-on-creative-commons-at-linux-audio-conference-online/#comments</comments>
		<pubDate>Sun, 02 May 2010 17:15:27 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=736</guid>
		<description><![CDATA[Update: The presentation was recorded and can be found here: http://lac.linuxaudio.org/2010/recordings/day2_1645_Open_Media_Creative_Commons.ogv
I&#8217;ve just came home from my presentation at the Linux Audio Conference in Utrecht. I got the impression it went pretty good. The audience participated and people asked me some pretty interesting and hard questions. All the presentations were also streamed and I presume the [...]]]></description>
			<content:encoded><![CDATA[<p>Update: The presentation was recorded and can be found here: <a href="http://lac.linuxaudio.org/2010/recordings/day2_1645_Open_Media_Creative_Commons.ogv">http://lac.linuxaudio.org/2010/recordings/day2_1645_Open_Media_Creative_Commons.ogv</a></p>
<p>I&#8217;ve just came home from my presentation at the <a href="http://lac.linuxaudio.org/2010/">Linux Audio Conference</a> in Utrecht. I got the impression it went pretty good. The audience participated and people asked me some pretty interesting and hard questions. All the presentations were also streamed and I presume the video will be made available online later on. </p>
<p>My presentation on Creative Commons can be downloaded here: <a href='http://www.burobjorn.nl/blog/wp-content/uploads/2010/05/2010-05-02-Bjorn-Wijers-Burobjorn-Linux-Audio-Conference.pdf'>2010-05-02-Bjorn-Wijers-Burobjorn-Linux-Audio-Conference (PDF file)</a></p>
<p>Ps: The Linux Audio Conference continues until the 4th of May. I will give <a href="http://lac.linuxaudio.org/2010/?page=program&#038;mode=table&#038;day=4">another talk/workshop</a> on Tuesday morning (4th of May) from 10:30 AM untill 12:00, in which I will look into more depth at openness (media, hardware etc) in general and not just Creative Commons.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/05/02/presentation-on-creative-commons-at-linux-audio-conference-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://lac.linuxaudio.org/2010/recordings/day2_1645_Open_Media_Creative_Commons.ogv" length="190318069" type="video/ogg" />
		</item>
		<item>
		<title>Auteursrechtgesprek zondag 18 april</title>
		<link>http://www.burobjorn.nl/blog/2010/04/17/auteursrechtgesprek-zondag-18-april/</link>
		<comments>http://www.burobjorn.nl/blog/2010/04/17/auteursrechtgesprek-zondag-18-april/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 20:23:11 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[creativecommons]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[rights-issues]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=734</guid>
		<description><![CDATA[Voor diegene die interesse hebben in cultuur en auteursrecht is er morgen een vertoning van RIP, a remix manifesto in het Louis Hartlooper Complex in Utrecht. 
Na afloop is er een gesprek/discussie over auteursrecht en muziekcultuur. Hierbij zal ik Paul Keller (Creative Commons Nederland) vervangen als moderator. Verdere deelnemers aan dit gesprek zijn Pitto (DJ, [...]]]></description>
			<content:encoded><![CDATA[<p>Voor diegene die interesse hebben in cultuur en auteursrecht is er morgen een vertoning van <a href="http://films.nfb.ca/rip-a-remix-manifesto/">RIP, a remix manifesto</a> in het <a href="http://www.louishartloopercomplex.nl/index.php?option=com_content&#038;view=article&#038;id=3269:rip-a-remix-manifesto-te-zien-tijdens-culturele-zondag&#038;catid=22:evenementen&#038;Itemid=60">Louis Hartlooper Complex</a> in Utrecht. </p>
<p>Na afloop is er een gesprek/discussie over auteursrecht en muziekcultuur. Hierbij zal ik <a href="http://creativecommons.nl">Paul Keller (Creative Commons Nederland)</a> vervangen als moderator. Verdere deelnemers aan dit gesprek zijn <a href="http://www.myspace.com/pittolive">Pitto</a> (DJ, winnaar Grote Prijs van Nederland in de categorie dance), <a href="http://www.degier-stam.nl/">Joost Gerritsen (De Gier | Stam &#038; Advocaten)</a> en <a href="http://www.mtschaefer.net/">Mirko Tobias Schaefer</a> (faculteit Geesteswetenschappen UU). Meer info is hier te vinden: <a href="http://www.xpertcmkb.nl/?p=1527">http://www.xpertcmkb.nl/?p=1527</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/04/17/auteursrechtgesprek-zondag-18-april/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rushkoff on programming literacy</title>
		<link>http://www.burobjorn.nl/blog/2010/03/31/rushkoff-on-programming-literacy/</link>
		<comments>http://www.burobjorn.nl/blog/2010/03/31/rushkoff-on-programming-literacy/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 22:14:04 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[sociology]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=731</guid>
		<description><![CDATA[Just saw this video by Douglas Rushkoff on what I would call &#8216;programming literacy&#8217; and it made me curious about his new book Life Inc. I really like this quote from the last part of this video: 

&#8220;If we don&#8217;t create a society, that at least knows there is a thing called programming, then we [...]]]></description>
			<content:encoded><![CDATA[<p>Just saw this video by <a href="http://rushkoff.com/">Douglas Rushkoff</a> on what I would call &#8216;programming literacy&#8217; and it made me curious about his new book Life Inc. I really like this quote from the last part of this video: </p>
<blockquote><p>
&#8220;If we don&#8217;t create a society, that at least knows there is a thing called programming, then we will end being <strong>not</strong> the programmers, but the users and worse: the used&#8221;</p></blockquote>
<p><span id="more-731"></span><br />
In my not so humble opinion everyone should at least learn the basics of programming so that every citizen at least knows our society is running on hardware and software. And I&#8217;m not just referring to the practical art of programming. Perhaps more people would understand the need for open, interoperable and transparent systems instead of black boxes of which we know little of the inner workings. Maybe more citizens would request society&#8217;s hard- and software to be built upon the philosophical views common among Free and Open Source software proponents regardless of their political colors.   </p>
<p>Check the video below, I will be ordering Rushkoff&#8217;s book.</p>
<p><object width="500" height="385"><param name="movie" value="http://www.youtube.com/v/imV3pPIUy1k&#038;rel=0&#038;color1=0x5d1719&#038;color2=0xcd311b&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/imV3pPIUy1k&#038;rel=0&#038;color1=0x5d1719&#038;color2=0xcd311b&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="500" height="385"></embed></object></p>
<p>Via: <a href="http://www.boingboing.net/2010/03/30/rushkoff-program-or.html">Boingboing.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/03/31/rushkoff-on-programming-literacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The future is here: RepRap &#8211; a 3D replication printer for personal use -</title>
		<link>http://www.burobjorn.nl/blog/2010/03/25/the-future-is-here-reprap-a-3d-replication-printer-for-personal-use/</link>
		<comments>http://www.burobjorn.nl/blog/2010/03/25/the-future-is-here-reprap-a-3d-replication-printer-for-personal-use/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:19:45 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=727</guid>
		<description><![CDATA[
&#8220;If RepRap is succesfull a number of changes may well happen in society. The principal one of them will be that we have the distribution of the
manufacture of goods. At the moment economics scale it means that it is sensible for goods to be manufactured in factories and then to be shipped to the individual [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
&#8220;If RepRap is succesfull a number of changes may well happen in society. The principal one of them will be that we have the distribution of the<br />
manufacture of goods. At the moment economics scale it means that it is sensible for goods to be manufactured in factories and then to be shipped to the individual people who wish to have these goods using a complicated transport system. If RepRap takes off and increases its abilities by evolution to manufacture more and more products, then people having these machines in their homes will be no longer a need, or no longer such a big need for factories to make the goods they want. When they want something it will simply be a question of downloading it from the web, in the way they currently do with music, a film or anything else. That downloaded file would then allow them to manufacture whatever object is was they wanted in their own home.[...]&#8221;
</p></blockquote>
<p>Check the embedded movie below by <a href="http://www.reprap.org/">RepRap.org</a> from which I took this quote (starts around 5:14) by <a href="http://en.wikipedia.org/wiki/Adrian_Bowyer">Adrian Bowyer</a> from. The RepRap raises a lot of interesting questions, such as is personal fabrication another nail in the coffin of intellectual property? Looking forward to this publication: &#8220;The Intellectual Property Implications Of Low-Cost 3D Printing by Simon Bradshaw, Adrian Bowyer and Patrick Haufe.&#8221; which as far as I can see will be available online <a href="http://www.law.ed.ac.uk/ahrc/script-ed/">here</a>, the 15th of April. </p>
<p><span id="more-727"></span><br />
<object width="400" height="320"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5202148&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5202148&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="320"></embed></object>
<p><a href="http://vimeo.com/5202148">RepRap</a> from <a href="http://vimeo.com/user403878">Adrian Bowyer</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/03/25/the-future-is-here-reprap-a-3d-replication-printer-for-personal-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto create a testfile of a given size?</title>
		<link>http://www.burobjorn.nl/blog/2010/03/22/howto-create-a-testfile-of-a-given-size/</link>
		<comments>http://www.burobjorn.nl/blog/2010/03/22/howto-create-a-testfile-of-a-given-size/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:28:34 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=723</guid>
		<description><![CDATA[I needed files of certain size so I could test an upload threshold. I used the dd command on Ubuntu Linux to create a file of 25MB.

dd if=/dev/zero of=test-size25M.bin bs=25000000 count=1
 
]]></description>
			<content:encoded><![CDATA[<p>I needed files of certain size so I could test an upload threshold. I used the <a href="http://en.wikipedia.org/wiki/Dd_%28Unix%29">dd</a> command on <a href="http://www.ubuntu.com">Ubuntu</a> <a href="http://en.wikipedia.org/wiki/Linux">Linux</a> to create a file of 25MB.</p>
<p><code><br />
dd if=/dev/zero of=test-size25M.bin bs=25000000 count=1<br />
</code> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/03/22/howto-create-a-testfile-of-a-given-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nederlandse vertaling voor Limit Login Attempts Wordpress plugin</title>
		<link>http://www.burobjorn.nl/blog/2010/03/19/nederlandse-vertaling-voor-limit-login-attempts-wordpress-plugin/</link>
		<comments>http://www.burobjorn.nl/blog/2010/03/19/nederlandse-vertaling-voor-limit-login-attempts-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 13:12:38 +0000</pubDate>
		<dc:creator>BjornW</dc:creator>
				<category><![CDATA[NL]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.burobjorn.nl/?p=718</guid>
		<description><![CDATA[Ik heb voor de Wordpress plugin Limit Login Attempts &#8211; ontwikkeld door Johan Eenfeldt &#8211; een Nederlandse vertaling gemaakt. Het is gebaseerd op versie 1.4.1 van de plugin. Schroom niet om contact op te nemen voor wijzigingen of op- en/of aanmerkingen op de Nederlandse vertaling.
De vertaling is hier te downloaden. 
Installatie: 

Gedownload zip bestand uitpakken.
Bestanden [...]]]></description>
			<content:encoded><![CDATA[<p>Ik heb voor de <a href="http://wordpress.org/">Wordpress</a> plugin <a href="http://wordpress.org/extend/plugins/limit-login-attempts/">Limit Login Attempts</a> &#8211; ontwikkeld door <a href="http://devel.kostdoktorn.se/limit-login-attempts">Johan Eenfeldt</a> &#8211; een Nederlandse vertaling gemaakt. Het is gebaseerd op versie 1.4.1 van de plugin. Schroom niet om contact op te nemen voor wijzigingen of op- en/of aanmerkingen op de Nederlandse vertaling.</p>
<p>De vertaling is <a href='http://www.burobjorn.nl/blog/wp-content/uploads/2010/03/limit-login-attempts-dutch-translations.zip'><strong>hier</strong></a> te downloaden. </p>
<p><strong>Installatie: </strong></p>
<ol>
<li>Gedownload zip bestand uitpakken.</li>
<li>Bestanden in Limit Login Attempts directory plaatsen</li>
<li>Wordpress op Nederlands als taal instellen</li>
</ol>
<p>ps: Ik heb Johan inmiddels ook <a href="http://devel.kostdoktorn.se/limit-login-attempts/comment-page-1#comment-52">op de hoogte gesteld van de Nederlandse vertaling</a> en ik hoop dat de vertaling zo spoedig mogelijk toegevoegd wordt aan de plugin zelf zodat je deze vertaling niet meer extra hoeft te downloaden.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.burobjorn.nl/blog/2010/03/19/nederlandse-vertaling-voor-limit-login-attempts-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
