<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for igorbrejc.net</title>
	<atom:link href="http://igorbrejc.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://igorbrejc.net</link>
	<description>Just another developer's weblog</description>
	<lastBuildDate>Tue, 14 May 2013 18:28:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on BrekiLabeller by Trip Wolfskehl</title>
		<link>http://igorbrejc.net/brekilabeller/comment-page-1#comment-155305</link>
		<dc:creator>Trip Wolfskehl</dc:creator>
		<pubDate>Tue, 14 May 2013 18:28:34 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/brekilabeller#comment-155305</guid>
		<description><![CDATA[&lt;p&gt;Hello!&lt;/p&gt;

&lt;p&gt;WE are looking for someone to create a vector overlay for OSM for our own licensed commercial use - do you know of anyone that can help us along with such a project? We would like to have our own &quot;look and feel&quot; to our maps so that would be a custom overlay, but using the existing OSM data.&lt;/p&gt;

&lt;p&gt;Please let me know - thank you!
-Trip&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Hello!</p>

<p>WE are looking for someone to create a vector overlay for OSM for our own licensed commercial use &#8211; do you know of anyone that can help us along with such a project? We would like to have our own &#8220;look and feel&#8221; to our maps so that would be a custom overlay, but using the existing OSM data.</p>

<p>Please let me know &#8211; thank you!
-Trip</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maperitive Build 1138 by Weekly OSM Summary #12 &#124; OpenStreetMap Blog</title>
		<link>http://igorbrejc.net/openstreetmap/maperitive-build-1138/comment-page-1#comment-154727</link>
		<dc:creator>Weekly OSM Summary #12 &#124; OpenStreetMap Blog</dc:creator>
		<pubDate>Tue, 07 May 2013 13:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/openstreetmap/maperitive-build-1138#comment-154727</guid>
		<description><![CDATA[&lt;p&gt;[...] new build of Maperitive supports SRTM1 and custom digital elevation models (DEMS) [...]&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>[...] new build of Maperitive supports SRTM1 and custom digital elevation models (DEMS) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kosmos Home by poldi</title>
		<link>http://igorbrejc.net/kosmoshome/comment-page-2#comment-145998</link>
		<dc:creator>poldi</dc:creator>
		<pubDate>Sat, 02 Feb 2013 12:36:11 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/kosmos#comment-145998</guid>
		<description><![CDATA[&lt;p&gt;Pozdravljeni, imam probleem z pisavami v Navigator free 12. Namre? imena mest, ulic... so v njihovem lokalnem jeziku (Gr?ija, Srbija ..). Videl sem , da se da z tag name:eng nekje nastaviti, naj bodo vsa imena v angleš?ini (oziroma ?itljiva), vendar ne vem kako bi to naredil. Za vašo pomo? vam bom zelo hvaležen.&lt;/p&gt;

&lt;p&gt;Poldi Ivanek, Gornja Radgona&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Pozdravljeni, imam probleem z pisavami v Navigator free 12. Namre? imena mest, ulic&#8230; so v njihovem lokalnem jeziku (Gr?ija, Srbija ..). Videl sem , da se da z tag name:eng nekje nastaviti, naj bodo vsa imena v angleš?ini (oziroma ?itljiva), vendar ne vem kako bi to naredil. Za vašo pomo? vam bom zelo hvaležen.</p>

<p>Poldi Ivanek, Gornja Radgona</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kerning Or How To Outfox GDI+ by headkaze</title>
		<link>http://igorbrejc.net/development/c/kerning-or-how-to-outfox-gdi/comment-page-1#comment-135058</link>
		<dc:creator>headkaze</dc:creator>
		<pubDate>Sun, 19 Aug 2012 08:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/development/c/kerning-or-how-to-outfox-gdi#comment-135058</guid>
		<description><![CDATA[&lt;p&gt;I couldn&#039;t get accurate kerning data using your idea and Graphics.MeasureString but using TextRenderer.MeasureText I&#039;ve had some success. Infact the results I&#039;m getting are the same as those output by AngleCode&#039;s Bitmap Font Generator which I know for a fact uses the GetKerningPairs GDI function.&lt;/p&gt;

&lt;p&gt;// Written by headkaze based on an idea by breki
// http://igorbrejc.net/development/c/kerning-or-how-to-outfox-gdi
private void CalculateKerningPairs(Graphics g, System.Drawing.Font font, char c)
{
    string sChar = c.ToString();
    Size charSize = TextRenderer.MeasureText(g, sChar, font, Size.Empty, TextFormatFlags.NoPrefix &#124; TextFormatFlags.NoPadding);&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;for (int i = 32; i &lt; 128; i++)
{
    string sOtherChar = ((char)i).ToString();
    Size otherCharSize = TextRenderer.MeasureText(g, sOtherChar, font, Size.Empty, TextFormatFlags.NoPrefix &#124; TextFormatFlags.NoPadding);
    int nonKernedPairWidth = charSize.Width + otherCharSize.Width;
    string sCharPair = sChar + (char)i;
    Size kernedPairSize = TextRenderer.MeasureText(g, sCharPair, font, Size.Empty, TextFormatFlags.NoPrefix &#124; TextFormatFlags.NoPadding);
    int kerningWidth = kernedPairSize.Width - nonKernedPairWidth;

    if (kerningWidth != 0)
    {
        Console.WriteLine(String.Format(&quot;kerning first={0} second={1} amount={2}&quot;, (int)c, i, kerningWidth));
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;}&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t get accurate kerning data using your idea and Graphics.MeasureString but using TextRenderer.MeasureText I&#8217;ve had some success. Infact the results I&#8217;m getting are the same as those output by AngleCode&#8217;s Bitmap Font Generator which I know for a fact uses the GetKerningPairs GDI function.</p>

<p>// Written by headkaze based on an idea by breki
// <a href="http://igorbrejc.net/development/c/kerning-or-how-to-outfox-gdi" rel="nofollow">http://igorbrejc.net/development/c/kerning-or-how-to-outfox-gdi</a>
private void CalculateKerningPairs(Graphics g, System.Drawing.Font font, char c)
{
    string sChar = c.ToString();
    Size charSize = TextRenderer.MeasureText(g, sChar, font, Size.Empty, TextFormatFlags.NoPrefix | TextFormatFlags.NoPadding);</p>

<pre><code>for (int i = 32; i &lt; 128; i++)
{
    string sOtherChar = ((char)i).ToString();
    Size otherCharSize = TextRenderer.MeasureText(g, sOtherChar, font, Size.Empty, TextFormatFlags.NoPrefix | TextFormatFlags.NoPadding);
    int nonKernedPairWidth = charSize.Width + otherCharSize.Width;
    string sCharPair = sChar + (char)i;
    Size kernedPairSize = TextRenderer.MeasureText(g, sCharPair, font, Size.Empty, TextFormatFlags.NoPrefix | TextFormatFlags.NoPadding);
    int kerningWidth = kernedPairSize.Width - nonKernedPairWidth;

    if (kerningWidth != 0)
    {
        Console.WriteLine(String.Format("kerning first={0} second={1} amount={2}", (int)c, i, kerningWidth));
    }
}
</code></pre>

<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# Source Code Search Engines For Internal Use by Woutercx</title>
		<link>http://igorbrejc.net/development/c/c-source-code-search-engines-for-internal-use/comment-page-1#comment-134910</link>
		<dc:creator>Woutercx</dc:creator>
		<pubDate>Thu, 02 Aug 2012 19:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/development/c/c-source-code-search-engines-for-internal-use#comment-134910</guid>
		<description><![CDATA[&lt;p&gt;Hi there, maybe you like the C# and VB.NET Code searcher I have written?
It&#039;s on CodeProject: 
http://www.codeproject.com/Articles/416472/Csharp-and-VB-NET-Code-Searcher-Using-Roslyn&lt;/p&gt;

&lt;p&gt;It&#039;s more &quot;intelligent&quot; with the sourcecode. For example, you can search for methods or properties with a certain name, or search in the method text, or search for calls to a certain method.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Hi there, maybe you like the C# and VB.NET Code searcher I have written?
It&#8217;s on CodeProject: 
<a href="http://www.codeproject.com/Articles/416472/Csharp-and-VB-NET-Code-Searcher-Using-Roslyn" rel="nofollow">http://www.codeproject.com/Articles/416472/Csharp-and-VB-NET-Code-Searcher-Using-Roslyn</a></p>

<p>It&#8217;s more &#8220;intelligent&#8221; with the sourcecode. For example, you can search for methods or properties with a certain name, or search in the method text, or search for calls to a certain method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kosmos Home by bart</title>
		<link>http://igorbrejc.net/kosmoshome/comment-page-2#comment-134872</link>
		<dc:creator>bart</dc:creator>
		<pubDate>Tue, 31 Jul 2012 21:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/kosmos#comment-134872</guid>
		<description><![CDATA[&lt;p&gt;I have a job for a programmer that I would like to run by you. I found you through the Flysight software you wrote or helped to write. I have a similar idea that I need developed. Please let me know if you are interested. Thanks.
Bart&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>I have a job for a programmer that I would like to run by you. I found you through the Flysight software you wrote or helped to write. I have a similar idea that I need developed. Please let me know if you are interested. Thanks.
Bart</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GroundTruth &#8211; A New Garmin Mapmaking Tool by Klaus Schneider-Grosch</title>
		<link>http://igorbrejc.net/openstreetmap/groundtruth-a-new-garmin-mapmaking-tool/comment-page-1#comment-134853</link>
		<dc:creator>Klaus Schneider-Grosch</dc:creator>
		<pubDate>Mon, 30 Jul 2012 15:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/openstreetmap/groundtruth-a-new-garmin-mapmaking-tool#comment-134853</guid>
		<description><![CDATA[&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;when running this command:
mono /home/sneier/bin/GroundTruth-1.8.740.17/GroundTruth.exe getdata --bu=&quot;http://www.openstreetmap.org/?lat=47.825&amp;lon=3.367&amp;zoom=10&amp;layers=M&quot; --nonwin&lt;/p&gt;

&lt;p&gt;I got that:
GroundTruth v1.8.740.17 by Igor Brejc
Generates Garmin maps from OpenStreetMap data
Licensed under GPL v3 license
Visit http://wiki.openstreetmap.org/wiki/GroundTruth for more info&lt;/p&gt;

&lt;p&gt;Read 0.0 B so far...          ERROR: System.Net.WebException: Error: ConnectFailure (Connection timed out) ---&gt; System.Net.Sockets.SocketException: Connection timed out
  at System.Net.Sockets.Socket.Connect (System.Net.EndPoint remoteEP) [0x00000] in :0 
  at System.Net.WebConnection.Connect (System.Net.HttpWebRequest request) [0x00000] in :0 
  --- End of inner exception stack trace ---
  at System.Net.HttpWebRequest.EndGetResponse (IAsyncResult asyncResult) [0x00000] in :0 
  at System.Net.HttpWebRequest.GetResponse () [0x00000] in :0 
  at Brejc.OsmLibrary.Osmxapi.OsmxapiClient.DownloadData (System.IO.Stream outputStream) [0x00000] in :0 
  at GroundTruth.DownloadOsmDataCommand.Execute (IEnumerable`1 args) [0x00000] in :0 
  at GroundTruth.ConsoleApp.Process () [0x00000] in :0&lt;/p&gt;

&lt;p&gt;Do you have an idea, what&#039;s wrong?&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>when running this command:
mono /home/sneier/bin/GroundTruth-1.8.740.17/GroundTruth.exe getdata &#8211;bu=&#8221;http://www.openstreetmap.org/?lat=47.825&amp;lon=3.367&amp;zoom=10&amp;layers=M&#8221; &#8211;nonwin</p>

<p>I got that:
GroundTruth v1.8.740.17 by Igor Brejc
Generates Garmin maps from OpenStreetMap data
Licensed under GPL v3 license
Visit <a href="http://wiki.openstreetmap.org/wiki/GroundTruth" rel="nofollow">http://wiki.openstreetmap.org/wiki/GroundTruth</a> for more info</p>

<p>Read 0.0 B so far&#8230;          ERROR: System.Net.WebException: Error: ConnectFailure (Connection timed out) &#8212;&gt; System.Net.Sockets.SocketException: Connection timed out
  at System.Net.Sockets.Socket.Connect (System.Net.EndPoint remoteEP) [0x00000] in :0 
  at System.Net.WebConnection.Connect (System.Net.HttpWebRequest request) [0x00000] in :0 
  &#8212; End of inner exception stack trace &#8212;
  at System.Net.HttpWebRequest.EndGetResponse (IAsyncResult asyncResult) [0x00000] in :0 
  at System.Net.HttpWebRequest.GetResponse () [0x00000] in :0 
  at Brejc.OsmLibrary.Osmxapi.OsmxapiClient.DownloadData (System.IO.Stream outputStream) [0x00000] in :0 
  at GroundTruth.DownloadOsmDataCommand.Execute (IEnumerable`1 args) [0x00000] in :0 
  at GroundTruth.ConsoleApp.Process () [0x00000] in :0</p>

<p>Do you have an idea, what&#8217;s wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenStreetMap 3D &#8211; Short Video by doug drown</title>
		<link>http://igorbrejc.net/openstreetmap/openstreetmap-3d-short-video/comment-page-1#comment-134704</link>
		<dc:creator>doug drown</dc:creator>
		<pubDate>Mon, 23 Jul 2012 17:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/openstreetmap/openstreetmap-3d-short-video#comment-134704</guid>
		<description><![CDATA[&lt;p&gt;Hi, I am trying to find someone to help  me make a 3D map of my community?&lt;/p&gt;

&lt;p&gt;Thanks
Doug Drown
Grand Lake Media&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Hi, I am trying to find someone to help  me make a 3D map of my community?</p>

<p>Thanks
Doug Drown
Grand Lake Media</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OpenStreetMap In 3D by Panos</title>
		<link>http://igorbrejc.net/openstreetmap/openstreetmap-in-3d/comment-page-1#comment-134631</link>
		<dc:creator>Panos</dc:creator>
		<pubDate>Sat, 14 Jul 2012 20:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/openstreetmap/openstreetmap-in-3d#comment-134631</guid>
		<description><![CDATA[&lt;p&gt;Dear Developer,&lt;/p&gt;

&lt;p&gt;I like the work that you have done. We are a small company and we require some maps and maybe you could help us on that. We need the openstreetmaps in 45 degree angle. Not relief, no SRTM data , just the plain osm in 45 degree angle to give 3d perspective when u place an object on it.  www.osm-3d.org have managed to do a good job on that.....even though they also used relief which i repeat we do not need. Yet they use java......and it makes it very &quot;heavy&quot; for our webpage.
Can it be done without directX or java???? If yes please contact me on my email. Maybe we could collaborate in a way.&lt;/p&gt;

&lt;p&gt;Thank you
Panos&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Dear Developer,</p>

<p>I like the work that you have done. We are a small company and we require some maps and maybe you could help us on that. We need the openstreetmaps in 45 degree angle. Not relief, no SRTM data , just the plain osm in 45 degree angle to give 3d perspective when u place an object on it.  <a href="http://www.osm-3d.org" rel="nofollow">http://www.osm-3d.org</a> have managed to do a good job on that&#8230;..even though they also used relief which i repeat we do not need. Yet they use java&#8230;&#8230;and it makes it very &#8220;heavy&#8221; for our webpage.
Can it be done without directX or java???? If yes please contact me on my email. Maybe we could collaborate in a way.</p>

<p>Thank you
Panos</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maperitive Build 1108 by Somenath</title>
		<link>http://igorbrejc.net/development/c/maperitive-build-1108/comment-page-1#comment-133514</link>
		<dc:creator>Somenath</dc:creator>
		<pubDate>Thu, 19 Apr 2012 12:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://igorbrejc.net/?p=1369#comment-133514</guid>
		<description><![CDATA[&lt;p&gt;Breki,&lt;/p&gt;

&lt;p&gt;Thank you for your prompt reply. i will definitely keep in touch with you.&lt;/p&gt;

&lt;p&gt;Som&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Breki,</p>

<p>Thank you for your prompt reply. i will definitely keep in touch with you.</p>

<p>Som</p>
]]></content:encoded>
	</item>
</channel>
</rss>
