<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>igorbrejc.net</title>
	<atom:link href="http://igorbrejc.net/feed" rel="self" type="application/rss+xml" />
	<link>http://igorbrejc.net</link>
	<description>Just another developer's weblog</description>
	<lastBuildDate>Thu, 02 Sep 2010 13:00:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Fresh Catch For September 2nd</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-september-2nd</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-september-2nd#comments</comments>
		<pubDate>Thu, 02 Sep 2010 13:00:25 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/?p=1249</guid>
		<description><![CDATA[These are my new delicious links for September 2nd: How I Learned to Stop Worrying and Love the New Axis of Evil (Oracle) &#124; Lessons of Failure Rugged(er) Android Units On The Way &#124; AndroGeoid Number of humans who have ever lived &#8211; Wikipedia, the free encyclopedia Captured: America in Color from 1939-1943 &#8211; Plog [...]]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for September 2nd:</p>

<ul>
<li><a href="http://www.lessonsoffailure.com/companies/how-i-learned-to-love-new-evil-empire-oracle/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+LessonsOfFailure+%28Lessons+of+Failure%29" target="_blank">How I Learned to Stop Worrying and Love the New Axis of Evil (Oracle) | Lessons of Failure</a> <br /><em></em> </li>
<li><a href="http://androgeoid.com/2010/09/ruggeder-android-units-on-the-way/" target="_blank">Rugged(er) Android Units On The Way | AndroGeoid</a> <br /><em></em> </li>
<li><a href="http://en.wikipedia.org/wiki/World_population#Number_of_humans_who_have_ever_lived" target="_blank">Number of humans who have ever lived &#8211; Wikipedia, the free encyclopedia</a> <br /><em></em> </li>
<li><a href="http://blogs.denverpost.com/captured/2010/07/26/captured-america-in-color-from-1939-1943/" target="_blank">Captured: America in Color from 1939-1943 &ndash; Plog Photo Blog</a> <br /><em>great photos, via The Endeavour</em> </li>
<li><a href="http://www.darkroastedblend.com/2010/08/dwellers-in-abyss-ugly-monstrous-fish.html" target="_blank">Dark Roasted Blend: Dwellers In The Abyss: Ugly, Monstrous Fish</a> <br /><em>via The Endeavour</em> </li>
<li><a href="http://www.youtube.com/watch?v=t8g-iYGHpEA" target="_blank">YouTube &#8211; What different sorting algorithms sound like</a> <br /><em>via The Endeavour</em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-september-2nd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Windsor Castle: Strange Resolving Behavior</title>
		<link>http://igorbrejc.net/development/c/windsor-castle-strange-resolving-behavior</link>
		<comments>http://igorbrejc.net/development/c/windsor-castle-strange-resolving-behavior#comments</comments>
		<pubDate>Tue, 24 Aug 2010 05:43:38 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[IoC]]></category>
		<category><![CDATA[Windsor Castle]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/?p=1250</guid>
		<description><![CDATA[A user reported a bug in Maperitive – it throws Castle.MicroKernel.Resolvers.DependencyResolverException: Could not resolve non-optional dependency for &#8216;Karta.DataSources.OsmFileMapDataSource&#8217; (Karta.DataSources.OsmFileMapDataSource). Parameter &#8216;fileName&#8217; type &#8216;System.String&#8217; I tried to reproduce this behavior using a simple unit test, but I couldn’t, so I’m posting the actual code. This is where the exception occurs: return windsorContainer.Resolve&#60;OsmFileMapDataSource&#62;(); And this is how [...]]]></description>
			<content:encoded><![CDATA[<p>A user reported a bug in Maperitive – it throws </p>

<blockquote>   <p>Castle.MicroKernel.Resolvers.DependencyResolverException: Could not resolve non-optional dependency for &#8216;Karta.DataSources.OsmFileMapDataSource&#8217; (Karta.DataSources.OsmFileMapDataSource). Parameter &#8216;fileName&#8217; type &#8216;System.String&#8217;</p> </blockquote>

<p><font color="#666666">I tried to reproduce this behavior using a simple unit test, but I couldn’t, so I’m posting the actual code. This is where the exception occurs:</font></p>

<p>
<pre class="brush: csharp;">return windsorContainer.Resolve&lt;OsmFileMapDataSource&gt;();</pre></p>

<p><font color="#666666">And this is how <strong>OsmFileMapDataSource</strong> constructors look like:</font></p>

<p><pre class="brush: csharp;">
        public OsmFileMapDataSource(
            string fileName,
            IFileSystem fileSystem,
            IMapDataLayerFactory layerFactory)
        {
            ...
        }

        public OsmFileMapDataSource(IMapDataLayerFactory layerFactory)
        {
           ...
        }
</pre></p>

<p><font color="#666666">Needless to say, both <strong>IFileSystem</strong> and <strong>IMapDataLayerFactory</strong> are registered in the container (<strong>IMapDataLayerFactory</strong> is registered as a typed factory, by the way). <strong>OsmFileMapDataSource</strong> is also registered as an implementation of itself. And I’m using version 2.1.0.6655 of the library.</font></p>

<p><font color="#666666">What’s strange about this is that <strong>if I move the second constructor in front of the first one, the component is resolved without problems</strong>. I’m not sure if this is intended behavior, but I doubt the order of constructors should be a determining factor on how components are resolved.</font></p>

<p><font color="#666666">But as I said, I couldn’t reproduce this behavior using a simplified test code, so I guess I should start debugging it instead.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/development/c/windsor-castle-strange-resolving-behavior/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
	</item>
		<item>
		<title>Fresh Catch For August 20th</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-august-20th</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-august-20th#comments</comments>
		<pubDate>Fri, 20 Aug 2010 11:00:18 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>
		<category><![CDATA[monotouch]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/?p=1246</guid>
		<description><![CDATA[These are my new delicious links for August 20th: Simplicity vs. Choice &#8211; Joel on Software Getting Started with MonoTouch &#8211; Marcus The Blog (by MarcusTheBold) &#8211; Los Techies : Blogs about software and anything tech! The First Thing You Should Do With Facebook Places: Don&#8217;t Let Other People Tag You Twitter Data &#8211; A [...]]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for August 20th:</p>

<ul>
<li><a href="http://www.joelonsoftware.com/items/2010/08/19.html" target="_blank">Simplicity vs. Choice &#8211; Joel on Software</a> <br /><em></em> </li>
<li><a href="http://www.lostechies.com/blogs/marcus_bratton/archive/2010/08/13/getting-started-with-monotouch.aspx?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+LosTechies+%28LosTechies%29" target="_blank">Getting Started with MonoTouch &#8211; Marcus The Blog (by MarcusTheBold) &#8211; Los Techies : Blogs about software and anything tech!</a> <br /><em></em> </li>
<li><a href="http://gawker.com/5616329/the-first-thing-you-should-do-with-facebook-places-dont-let-other-people-tag-you" target="_blank">The First Thing You Should Do With Facebook Places: Don&#8217;t Let Other People Tag You</a> <br /><em></em> </li>
<li><a href="http://twitterdata.org/" target="_blank">Twitter Data &#8211; A simple, open proposal for embedding data in Twitter messages &#8211; Home</a> <br /><em></em> </li>
<li><a href="http://freegeographytools.com/2010/new-android-related-website-androgeoid" target="_blank">New Android-Related Website: AndroGeoid</a> <br /><em></em> </li>
<li><a href="http://freegeographytools.com/2010/android-the-future-of-consumer-gps-part-i" target="_blank">Android: The Future Of Consumer GPS &ndash; Part I</a> <br /><em></em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-august-20th/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Fresh Catch For August 18th</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-august-18th</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-august-18th#comments</comments>
		<pubDate>Wed, 18 Aug 2010 16:00:00 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/freshcatch/fresh-catch-for-august-18th</guid>
		<description><![CDATA[These are my new delicious links for August 18th: Wikipedia&#8217;s Lamest Edit Wars paper.li &#8211; read Twitter as a daily newspaper Apple&#8217;s rechargeable AA batteries are rebranded Sanyo Eneloops? &#8212; Engadget How Oracle might kill Google&#8217;s Android and software patents all at once &#8212; RoughlyDrafted Magazine The Map Room: Map Watches Fuel efficiency in transportation [...]]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for August 18th:</p>

<ul>
<li><a href="http://www.informationisbeautiful.net/visualizations/wikipedia-lamest-edit-wars/" target="_blank">Wikipedia&rsquo;s Lamest Edit Wars</a> <br /><em></em> </li>
<li><a href="http://paper.li/" target="_blank">paper.li &ndash; read Twitter as a daily newspaper</a> <br /><em></em> </li>
<li><a href="http://www.engadget.com/2010/08/12/apples-rechargeable-aa-batteries-are-rebranded-sanyo-eneloops/" target="_blank">Apple&#8217;s rechargeable AA batteries are rebranded Sanyo Eneloops? &#8212; Engadget</a> <br /><em></em> </li>
<li><a href="http://www.roughlydrafted.com/2010/08/14/how-oracle-might-kill-googles-android-and-software-patents-all-at-once/" target="_blank">How Oracle might kill Google&rsquo;s Android and software patents all at once &mdash; RoughlyDrafted Magazine</a> <br /><em></em> </li>
<li><a href="http://www.mcwetboy.net/maproom/2010/08/map_watches.php" target="_blank">The Map Room: Map Watches</a> <br /><em></em> </li>
<li><a href="http://en.wikipedia.org/wiki/Fuel_efficiency_in_transportation#Transportation_modes" target="_blank">Fuel efficiency in transportation &#8211; Wikipedia, the free encyclopedia</a> <br /><em></em> </li>
<li><a href="http://tirania.org/blog/archive/2010/Aug-13.html" target="_blank">Initial Thoughts on Oracle vs Google Patent Lawsuit &#8211; Miguel de Icaza</a> <br /><em></em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-august-18th/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Fresh Catch For August 15th</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-august-15th</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-august-15th#comments</comments>
		<pubDate>Sun, 15 Aug 2010 20:00:11 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/?p=1240</guid>
		<description><![CDATA[These are my new delicious links for August 15th: YouTube &#8211; How Open Source Projects Survive Poisonous People (And&#8230; List of OSM based Services &#8211; OpenStreetMap Wiki OSM Ticker shows you OSM map edits live. Quite nice! The Map Scroll: Russia&#8217;s Portentous Summer Google Streetview without People &#124; Geospatial Talk Flattr Designs &#124; jQuery Mobile [...]]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for August 15th:</p>

<ul>
<li><a href="http://www.youtube.com/watch?v=ZSFDm3UYkeE" target="_blank">YouTube &#8211; How Open Source Projects Survive Poisonous People (And&#8230;</a> <br /><em></em> </li>
<li><a href="http://wiki.openstreetmap.org/wiki/List_of_OSM_based_Services" target="_blank">List of OSM based Services &#8211; OpenStreetMap Wiki</a> <br /><em></em> </li>
<li><a href="http://www.khtml.org/osm/v0.76/index.php" target="_blank">OSM Ticker</a> <br /><em>shows you OSM map edits live. Quite nice!</em> </li>
<li><a href="http://mapscroll.blogspot.com/2010/08/russias-portentous-summer.html" target="_blank">The Map Scroll: Russia&#8217;s Portentous Summer</a> <br /><em></em> </li>
<li><a href="http://joesonic.com/blog/2010/08/08/google-streetview-without-people/" target="_blank">Google Streetview without People | Geospatial Talk</a> <br /><em></em> </li>
<li><a href="http://flattr.com/" target="_blank">Flattr</a> <br /><em></em> </li>
<li><a href="http://jquerymobile.com/designs/" target="_blank">Designs | jQuery Mobile</a> <br /><em></em> </li>
<li><a href="http://www.lessonsoffailure.com/developers/avoid-asshole-architect/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+LessonsOfFailure+%28Lessons+of+Failure%29" target="_blank">How to Avoid Being the Asshole Architect | Lessons of Failure</a> <br /><em></em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-august-15th/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Maperitive: Enhanced Usability &amp; Scripting Support</title>
		<link>http://igorbrejc.net/development/c/maperitive-enhanced-usability-scripting-support</link>
		<comments>http://igorbrejc.net/development/c/maperitive-enhanced-usability-scripting-support#comments</comments>
		<pubDate>Fri, 06 Aug 2010 19:10:43 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Maperitive]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/development/c/maperitive-enhanced-usability-scripting-support</guid>
		<description><![CDATA[For the last week or so I’ve been busting my fingers with one of the harder things to implement in a desktop GUI: application responsiveness when executing longer-running tasks. By longer-running I mean something that takes more than a couple of seconds. Simple desktop applications tend to run everything synchronously: when the user presses a [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Maperitive running scripts" href="http://www.flickr.com/photos/28786233@N03/4866209357/"><img border="0" alt="Maperitive running scripts" src="http://farm5.static.flickr.com/4122/4866209357_b95edd0f2e_b.jpg" width="659" height="453" /></a></p>

<p>For the last week or so I’ve been busting my fingers with one of the harder things to implement in a desktop GUI: application responsiveness when executing longer-running tasks. By longer-running I mean something that takes more than a couple of seconds.</p>

<p>Simple desktop applications tend to run everything synchronously: when the user presses a button, the action gets run. After the action finishes, the control is given back to the user. Simple, but totally crappy. The problem is that the action gets run on the same thread that services the GUI, so until the action finishes, the application will not be able even to refresh itself or respond in any meaningful way to user clicks or key presses. And since there is no refresh, you cannot show any progress indicators to the user. I know I wouldn’t want to wait half an hour for something to finish without some reassurance that the application is still alive and not waiting for the electricity to run out.</p>

<p>Maperitive already had a lot of responsiveness code implemented, but it was still an “under the construction” design. The additional complication was the fact I want Maperitive to have a good script runner and scripts can take a very long time (downloading OSM data, generating tiles etc.). After a lot of trials and errors I finally managed to implement the whole thing in a consistent package. And believe me when I say it was not easy.</p>

<p>So what is new:</p>

<ul>   <li>When running scripts (or longer tasks), Maperitive draws an indicator on the map (see the screenshot above) and launches a “sort of <a href="http://en.wikipedia.org/wiki/Modal_window">modal</a>” mode – most of GUI controls are disabled so the script doesn’t get confused by some inadvertent user action. However, the application is still responsive: you can view the progress of the script in the command log.</li>    <li>Aborting scripts: as the indicator says, you can press the <a href="http://en.wikipedia.org/wiki/Esc_key">escape key</a> to abort the script. If you prefer torturing your mouse instead of your keyboard, there’s an “Abort task” button in the bottom right corner which does the same thing.</li> </ul>

<p>Not all of running tasks have been switched to the new system. Loading OSM files is one example of a task that will still block the GUI, but I will gradually improve these things.</p>

<p>You can download the latest release at <a href="http://maperitive.net/download/">http://maperitive.net/download/</a></p>

<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/development/c/maperitive-enhanced-usability-scripting-support/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://farm5.static.flickr.com/4122/4866209357_b95edd0f2e_b.jpg" />
		<media:content url="http://farm5.static.flickr.com/4122/4866209357_b95edd0f2e_b.jpg" medium="image">
			<media:title type="html">Maperitive running scripts</media:title>
		</media:content>
	</item>
		<item>
		<title>Fresh Catch For August 5th</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-august-5th</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-august-5th#comments</comments>
		<pubDate>Thu, 05 Aug 2010 16:00:00 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/freshcatch/fresh-catch-for-august-5th</guid>
		<description><![CDATA[These are my new delicious links for August 5th: YouTube &#8211; Robots with a mind of their own Package management for .NET: Nu Current Packages &#8211; nu-net &#124; Google Groups MF Bliki: UtilityVsStrategicDichotomy &#60;angular/&#62;: A Radically Different Way of Building AJAX Apps]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for August 5th:</p>

<ul>
<li><a href="http://www.youtube.com/watch?v=SkvpEfAPXn4&amp;NR=1&amp;feature=fvwp" target="_blank">YouTube &#8211; Robots with a mind of their own</a> <br /><em></em> </li>
<li><a href="http://ayende.com/Blog/archive/2010/08/01/package-management-for-.net-nu.aspx?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+AyendeRahien+%28Ayende+%40+Rahien%29" target="_blank">Package management for .NET: Nu</a> <br /><em></em> </li>
<li><a href="http://groups.google.com/group/nu-net/web/current-packages" target="_blank">Current Packages &#8211; nu-net | Google Groups</a> <br /><em></em> </li>
<li><a href="http://martinfowler.com/bliki/UtilityVsStrategicDichotomy.html" target="_blank">MF Bliki: UtilityVsStrategicDichotomy</a> <br /><em></em> </li>
<li><a href="http://misko.hevery.com/2010/07/29/a-radically-different-way-of-building-ajax-apps/" target="_blank">&lt;angular/&gt;: A Radically Different Way of Building AJAX Apps</a> <br /><em></em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-august-5th/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Fresh Catch For July 31st</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-july-31st</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-july-31st#comments</comments>
		<pubDate>Sat, 31 Jul 2010 20:00:11 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/?p=1234</guid>
		<description><![CDATA[These are my new delicious links for July 31st: NASA &#8211; First-of-its-Kind Map Depicts Global Forest Heights Continuous Delivery is Now Out Vodafone distributes Mariposa botnet &#124; Panda Research Blog Degrees of reality in sample code &#8211; Jon Skeet: Coding Blog Amiga: 25 Years Later]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for July 31st:</p>

<ul>
<li><a href="http://www.nasa.gov/topics/earth/features/forest-height-map.html" target="_blank">NASA &#8211; First-of-its-Kind Map Depicts Global Forest Heights</a> <br /><em></em> </li>
<li><a href="http://martinfowler.com/snips/201007301801.html" target="_blank">Continuous Delivery is Now Out</a> <br /><em></em> </li>
<li><a href="http://research.pandasecurity.com/vodafone-distributes-mariposa/" target="_blank">Vodafone distributes Mariposa botnet | Panda Research Blog</a> <br /><em></em> </li>
<li><a href="http://msmvps.com/blogs/jon_skeet/archive/2010/07/25/degrees-of-reality-in-sample-code.aspx" target="_blank">Degrees of reality in sample code &#8211; Jon Skeet: Coding Blog</a> <br /><em></em> </li>
<li><a href="http://technologizer.com/2010/07/23/amiga/" target="_blank">Amiga: 25 Years Later</a> <br /><em></em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-july-31st/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
		<item>
		<title>Maperitive: Tile Generator</title>
		<link>http://igorbrejc.net/openstreetmap/maperitive-tile-generator</link>
		<comments>http://igorbrejc.net/openstreetmap/maperitive-tile-generator#comments</comments>
		<pubDate>Sun, 25 Jul 2010 18:32:51 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Maperitive]]></category>
		<category><![CDATA[OpenStreetMap]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/openstreetmap/maperitive-tile-generator</guid>
		<description><![CDATA[I’ve just released Maperitive build 924 which has two new commands: generate-tiles: http://maperitive.net/docs/manual/Commands/GenerateTiles.html generate-hypsometric: http://maperitive.net/docs/manual/Commands/GenerateHypsometric.html]]></description>
			<content:encoded><![CDATA[<p><a title="Maperitive Tile Generator" href="http://www.flickr.com/photos/28786233@N03/4827224955/"><img border="0" alt="Maperitive Tile Generator" src="http://farm5.static.flickr.com/4123/4827224955_ee7e22d762_b.jpg" width="635" height="281" /></a></p>

<p>I’ve just released <a href="http://maperitive.net/download/Maperitive-924.zip" target="_blank">Maperitive build 924</a> which has two new commands:</p>

<ul>   <li>generate-tiles: <a href="http://maperitive.net/docs/manual/Commands/GenerateTiles.html">http://maperitive.net/docs/manual/Commands/GenerateTiles.html</a></li>    <li>generate-hypsometric: <a href="http://maperitive.net/docs/manual/Commands/GenerateHypsometric.html">http://maperitive.net/docs/manual/Commands/GenerateHypsometric.html</a></li> </ul>

<p><a title="Eastern Alps" href="http://www.flickr.com/photos/28786233@N03/4794474306/"><img border="0" alt="Eastern Alps" src="http://farm5.static.flickr.com/4097/4794474306_35280bb84f.jpg" width="641" height="381" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/openstreetmap/maperitive-tile-generator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://farm5.static.flickr.com/4123/4827224955_ee7e22d762_b.jpg" />
		<media:content url="http://farm5.static.flickr.com/4123/4827224955_ee7e22d762_b.jpg" medium="image">
			<media:title type="html">Maperitive Tile Generator</media:title>
		</media:content>
		<media:content url="http://farm5.static.flickr.com/4097/4794474306_35280bb84f.jpg" medium="image">
			<media:title type="html">Eastern Alps</media:title>
		</media:content>
	</item>
		<item>
		<title>Fresh Catch For July 23rd</title>
		<link>http://igorbrejc.net/freshcatch/fresh-catch-for-july-23rd</link>
		<comments>http://igorbrejc.net/freshcatch/fresh-catch-for-july-23rd#comments</comments>
		<pubDate>Fri, 23 Jul 2010 13:00:15 +0000</pubDate>
		<dc:creator>breki</dc:creator>
				<category><![CDATA[Fresh Catch]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[system:filetype:jpg]]></category>
		<category><![CDATA[system:media:image]]></category>

		<guid isPermaLink="false">http://igorbrejc.net/?p=1228</guid>
		<description><![CDATA[These are my new delicious links for July 23rd: e-book formats &#8212; The Endeavour Leonardo da Vinci&#8217;s Resume Damn Cool Pics: The 40 Most Bizarre Google Earth Images RIM, HTC, Nokia want no part of Apple&#8217;s &#34;self-made debacle&#34; The 5 Most Impractical Aspects of Superhero Costumes &#124; Cracked.com Coding Horror: Groundhog Day, or, the Problem [...]]]></description>
			<content:encoded><![CDATA[<p>These are my new delicious links for July 23rd:</p>

<ul>
<li><a href="http://www.johndcook.com/blog/2010/07/20/e-book-formats/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+TheEndeavour+%28The+Endeavour%29" target="_blank">e-book formats &mdash; The Endeavour</a> <br /><em></em> </li>
<li><a href="http://www.cenedella.com/job-search/leonardo-da-vincis-resume/" target="_blank">Leonardo da Vinci&rsquo;s Resume</a> <br /><em></em> </li>
<li><a href="http://damncoolpics.blogspot.com/2010/07/40-most-bizarre-google-earth-images.html" target="_blank">Damn Cool Pics: The 40 Most Bizarre Google Earth Images</a> <br /><em></em> </li>
<li><a href="http://arstechnica.com/apple/news/2010/07/rim-htc-nokia-want-no-part-of-apples-self-made-debacle.ars" target="_blank">RIM, HTC, Nokia want no part of Apple&#8217;s &quot;self-made debacle&quot;</a> <br /><em></em> </li>
<li><a href="http://www.cracked.com/article_18591_the-5-most-impractical-aspects-superhero-costumes.html" target="_blank">The 5 Most Impractical Aspects of Superhero Costumes | Cracked.com</a> <br /><em></em> </li>
<li><a href="http://www.codinghorror.com/blog/2010/07/groundhog-day-or-the-problem-with-ab-testing.html" target="_blank">Coding Horror: Groundhog Day, or, the Problem with A/B Testing</a> <br /><em></em> </li>
<li><a href="http://news.ycombinator.com/item?id=1086527" target="_blank">If it worked for Leonardo da Vinci, maybe it could work for me.</a> <br /><em></em> </li>
<li><a href="http://en.wikipedia.org/wiki/File:Tartan_Ribbon.jpg" target="_blank">File:Tartan Ribbon.jpg &#8211; Wikipedia, the free encyclopedia</a> <br /><em>Tartan Ribbon, photograph taken by James Clerk Maxwell in 1861. Considered the first color photograph</em> </li>
<li><a href="http://cooking.stackexchange.com/" target="_blank">Food and Cooking &#8211; Stack Exchange</a> <br /><em></em> </li>
<li><a href="http://www.washingtonmonthly.com/features/2010/1007.gravois.html" target="_blank">The Agnostic Cartographer &#8211; John Gravois</a> <br /><em></em> </li>

</ul>

<p><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://igorbrejc.net/freshcatch/fresh-catch-for-july-23rd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
	</item>
	</channel>
</rss>
