<?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>Fooling Around &#187; utility</title>
	<atom:link href="http://alax.info/blog/tag/utility/feed" rel="self" type="application/rss+xml" />
	<link>http://alax.info/blog</link>
	<description>// Software Production Line</description>
	<lastBuildDate>Wed, 02 May 2012 15:42:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Enumerating Binary Resource Languages</title>
		<link>http://alax.info/blog/1362</link>
		<comments>http://alax.info/blog/1362#comments</comments>
		<pubDate>Tue, 01 May 2012 17:05:35 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[.rc]]></category>
		<category><![CDATA[.res]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[Windows API]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1362</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1362" title="Enumerating Binary Resource Languages"></a>The small application is a goos sample and useful tool in the same time. It enumerates PE binary resources and counts languages used. Why? Normally you want single language of resources, however Visual Studio IDE does not show you languages &#8230;<p class="read-more"><a href="http://alax.info/blog/1362">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1362" title="Enumerating Binary Resource Languages"></a><p>The small application is a goos sample and useful tool in the same time. It enumerates PE binary resources and counts languages used. Why? Normally you want single language of resources, however Visual Studio IDE does not show you languages in a convenient way and it is so easy to make a language mess which does not bite you immediately but might bring you troubles later. Apart from this there was a suspicion that language mess might cause runtime bugs on <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms648049%28v=vs.85%29.aspx"><code>UpdateResource</code></a> API.</p>
<p>The application gets you a summary of languages used and returns with exit code (checkable using e.g. <code>errorlevel</code>) indicating number of languages.</p>
<p>Output is <code>TSV</code>: <code>LANGID</code>, Language Name, Resource Count:</p>
<pre style="color: #000000; background: #ffffff;"><span style="color: #e34adc;">C:</span>\<span style="color: #808030;">&gt;</span>ListResourceLanguages<span style="color: #808030;">.</span>exe C<span style="color: #800080;">:</span>\Windows\syswow64\shell32<span style="color: #808030;">.</span>dll
<span style="color: #008c00;">1049</span>    Russian <span style="color: #008c00;">545</span>
<span style="color: #008c00;">1033</span>    English <span style="color: #008c00;">3318</span></pre>
<p>Download links:</p>
<ul>
<li>Visual C++ .NET 2010 source code: <a href="http://alax.info/trac/public/browser/trunk/Utilities/ListResourceLanguages">Trac</a>, <a href="http://www.alax.info/svn/public/trunk/Utilities/ListResourceLanguages/">Subversion</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1362/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resource Tools: Custom Resource Types</title>
		<link>http://alax.info/blog/1361</link>
		<comments>http://alax.info/blog/1361#comments</comments>
		<pubDate>Mon, 30 Apr 2012 16:51:31 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[Resource Tools]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[.rc]]></category>
		<category><![CDATA[.res]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1361</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1361" title="Resource Tools: Custom Resource Types"></a>This update for Resource Tools adds an option to access custom resource types, such as FILE, TYPELIB, REGISTRY etc. It lets enumerate the resource, and load/save them. The COM interafce adds new Items property; the code snippet below accesses type &#8230;<p class="read-more"><a href="http://alax.info/blog/1361">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1361" title="Resource Tools: Custom Resource Types"></a><p>This update for <a href="http://alax.info/blog/352">Resource Tools</a> adds an option to access custom resource types, such as <code>FILE</code>, <code>TYPELIB</code>, <code>REGISTRY</code> etc. It lets enumerate the resource, and load/save them. The COM interafce adds new <code>Items</code> property; the code snippet below accesses type library of <code>image2.dll</code> and saves it into external tyle library file <code>image2.tlb</code>:</p>
<pre style="color: #000000; background: #ffffff;">image <span style="color: #808030;">=</span> <span style="color: #800000; font-weight: bold;">new</span> <span style="color: #797997;">ActiveXObject</span><span style="color: #808030;">(</span><span style="color: #800000;">"</span><span style="color: #0000e6;">AlaxInfo.ResourceTools.Image</span><span style="color: #800000;">"</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
image<span style="color: #808030;">.</span>Initialize<span style="color: #808030;">(</span><span style="color: #800000;">"</span><span style="color: #0000e6;">C:</span><span style="color: #0f69ff;">\\</span><span style="color: #0000e6;">Windows</span><span style="color: #0f69ff;">\\</span><span style="color: #0000e6;">syswow64</span><span style="color: #0f69ff;">\\</span><span style="color: #0000e6;">imapi2.dll</span><span style="color: #800000;">"</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
image<span style="color: #808030;">.</span>Items<span style="color: #808030;">(</span><span style="color: #800000;">"</span><span style="color: #0000e6;">TYPELIB</span><span style="color: #800000;">"</span><span style="color: #808030;">)</span><span style="color: #808030;">.</span>Item<span style="color: #808030;">(</span><span style="color: #008c00;">1</span><span style="color: #808030;">)</span><span style="color: #808030;">.</span>SaveToFile<span style="color: #808030;">(</span><span style="color: #0f4d75;">null</span><span style="color: #808030;">,</span> <span style="color: #800000;">"</span><span style="color: #0000e6;">imapi2.tlb</span><span style="color: #800000;">"</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span></pre>
<p>Additionally, <code>image.EndUpdate(false)</code> call makes the object close all references to the underlying file so that it can be available for other operations (e.g. overwrite), and the COM object might be further re-initialized and reused.</p>
<p>Download links:</p>
<ul>
<li>Title: Alax.Info Resource Tools</li>
<li>Version: 1.0.7</li>
<li>Download (32-bit, Win32): <a href="http://www.alax.info/svn/public/trunk/ResourceTools/ResourceToolsSetup.msi">ResourceToolsSetup.msi</a></li>
<li>Download (64-bit, x64): <a href="http://www.alax.info/svn/public/trunk/ResourceTools/ResourceToolsSetup-x64.msi">ResourceToolsSetup-x64.msi</a></li>
<li>License: This software is free to use</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1361/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LogProcessExceptions: Log Service Process Exceptions</title>
		<link>http://alax.info/blog/1359</link>
		<comments>http://alax.info/blog/1359#comments</comments>
		<pubDate>Sun, 29 Apr 2012 19:10:59 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Seriously]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[WTL]]></category>
		<category><![CDATA[.DMP]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[minidump]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1359</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1359" title="LogProcessExceptions: Log Service Process Exceptions"></a>One of the nasty issues with LogProcessExceptions utility was that it was unable to attach to service processes and track them to catch their exceptions. The actual problem was that the processes were not listed in first place, so there &#8230;<p class="read-more"><a href="http://alax.info/blog/1359">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1359" title="LogProcessExceptions: Log Service Process Exceptions"></a><p>One of the nasty issues with <a href="http://alax.info/blog/1211">LogProcessExceptions</a> utility was that it was unable to attach to service processes and track them to catch their exceptions.</p>
<p>The actual problem was that the processes were not listed in first place, so there was nothing to attach to. Access and security requirements necessary for a process to debug another process are listed in MSDN <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms679295%28v=vs.85%29.aspx"><code>DebugActiveProcess</code></a> article:</p>
<blockquote><p>The debugger must have appropriate access to the target process, and it must be able to open the process for <code>PROCESS_ALL_ACCESS</code>. <code>DebugActiveProcess</code> can fail if the target process is created with a security descriptor that grants the debugger anything less than full access. If the debugging process has the <code>SE_DEBUG_NAME</code> privilege granted and enabled, it can debug any process.</p></blockquote>
<p>The utility did enable the <code>SE_DEBUG_NAME</code> privilege, however it was doing it prior to starting debugging session and after the process of interest was already pointed to by user.</p>
<p>This was insufficient because <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms682629%28v=vs.85%29.aspx"><code>EnumProcesses</code></a> only lists service processes (not actually exactly services, but processes running in different security context) in case debug privilege is already enable by the time of the API call. The utility now enabled the privilege well in advance and list the services, so can be effectively applied to those.</p>
<p><img class="alignnone size-full wp-image-1360" title="LogProcessExceptions - Process List" src="http://alax.info/blog/wp-content/uploads/2012/04/Image0011.png" alt="" width="513" height="400" /></p>
<p>Download links:</p>
<ul>
<li>Partial Visual C++ .NET 2010 source code: <a href="http://www.alax.info/trac/public/browser/trunk/Utilities/LogProcessExceptions">Trac</a>, <a href="http://www.alax.info/svn/public/trunk/Utilities/LogProcessExceptions/">Subversion</a></li>
<li>Binaries: Win32 – <a href="http://www.alax.info/svn/public/trunk/Utilities/LogProcessExceptions/_Bin/Win32/Release/LogProcessExceptions.exe">LogProcessExceptions.exe</a>, x64 – <a href="http://www.alax.info/svn/public/trunk/Utilities/LogProcessExceptions/_Bin/x64/Release/LogProcessExceptions.exe">LogProcessExceptions.exe</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1359/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPS Location/Coordinate Converter: Multiple Locations at Once</title>
		<link>http://alax.info/blog/1313</link>
		<comments>http://alax.info/blog/1313#comments</comments>
		<pubDate>Mon, 14 Nov 2011 18:06:26 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[WTL]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[rally]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1313</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1313" title="GPS Location/Coordinate Converter: Multiple Locations at Once"></a>Today&#8217;s update lets you convert multiple locations at once with a single click. Here is the story behind the update and use case scenario. In rally raid sport events (so called baja), a team gets a road book for the &#8230;<p class="read-more"><a href="http://alax.info/blog/1313">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1313" title="GPS Location/Coordinate Converter: Multiple Locations at Once"></a><p>Today&#8217;s update lets you convert multiple locations at once with a single click. Here is the story behind the update and use case scenario.</p>
<p>In <a href="http://en.wikipedia.org/wiki/Rally_raid">rally raid</a> sport events (so called <em>baja</em>), a team gets a road book for the next competition day in a few hours before actual start. The GPS coordinates are printed on one of the pages of the roadbook and are not available in any electronic format.</p>
<p>There were just a few times when the organizer also uploaded a copy of a file with the coordinates and shared a link to download from, but this was rather an exception. Another alternate option was a dedicated person to upload the coordinates (they were earlier full tracks, but at some point tracks were no longer available at all) to pilots&#8217; hardware, but in a state of pre-start рфыеу and variety of GPS hardware, formats, cable etc. this created lines of people. The most one can rely on is a sheet of paper with GPS coordinates. The mistery does not end even here as you don&#8217;t know whether you are to get Degrees only, or Degrees and Minutes, or Degrees, Minutes and Seconds. Everything depends on software the organizer uses.</p>
<p><img class="alignnone size-full wp-image-1314" title="A Page with GPS Locations in Road Book " src="http://alax.info/blog/wp-content/uploads/2011/11/Scan1.jpg" alt="" width="480" height="307" /></p>
<p>As soon as you get a hard copy of this, the idea is to upload it into device as quickly as possible because there are other things to do and the time is normally 11 PM when the race is to start 7 AM next day tens of miles away from you. The time interval will be shared by uploading data, sleeping and transfer to start location.</p>
<p>The utility is here to grant extra sleep time. Since it is capable to accept various separators on the input, a convenient way is to quickly type in the text in Microsoft Excel, check the data against the hardcopy, and copy into clipboard to transfer to the utility.</p>
<p><img class="alignnone size-full wp-image-1315" title="GPS Coordinates in Microsoft Excel" src="http://alax.info/blog/wp-content/uploads/2011/11/Image001.png" alt="" width="558" height="472" /></p>
<p>A hotkey with conversion transfers data into format of interest, and single &#8220;Find and Replace&#8221; operation creates a good OziExplorer waypoint file which is good for upload onto portable navigation device.<img class="alignnone size-large wp-image-1316" title="Visual Studio with OziExplorer Waypoint Data" src="http://alax.info/blog/wp-content/uploads/2011/11/Image002-687x600.png" alt="" width="620" height="541" /></p>
<p>The whole thing take a few minutes to do with minimal routine typing in.</p>
<p>A binary [<a href="http://www.alax.info/svn/public/trunk/Utilities/GpsLocationConverter/_Bin/Release/GpsLocationConverter.exe">Win32</a>] and partial Visual C++ .NET 2010 <a href="http://www.alax.info/trac/public/browser/trunk/Utilities/GpsLocationConverter">partial source code</a> are available from SVN.</p>
<p>Bonus picture, rally raid Suzuki is on the way to score the victory and the rally promotional teaser:</p>
<p><a href="https://picasaweb.google.com/105209331201471192155/BajaPolygon4thRoundOfUkrainianCup2011InRallyRaidsNearNovomoskovskUkraine"><img class="alignnone" src="https://lh6.googleusercontent.com/--53JPr3B2Hw/TsD_WnIrE9I/AAAAAAAAFXo/PjmYMfS_WJI/s640/DSC04127a.jpg" alt="Rally Raid Suzuki Samurai on the Way" width="640" height="426" /></a></p>
<p><object width="640" height="360"><param name="movie" value="http://www.youtube.com/v/k-_-Re2PhQ8&#038;rel=0&#038;hl=en_US&#038;feature=player_embedded&#038;version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/k-_-Re2PhQ8&#038;rel=0&#038;hl=en_US&#038;feature=player_embedded&#038;version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="360"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1313/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPS Location/Coordinate Converter: Fractional Seconds, More Shortcuts</title>
		<link>http://alax.info/blog/1302</link>
		<comments>http://alax.info/blog/1302#comments</comments>
		<pubDate>Thu, 20 Oct 2011 17:48:42 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[WTL]]></category>
		<category><![CDATA[coordinate]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1302</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1302" title="GPS Location/Coordinate Converter: Fractional Seconds, More Shortcuts"></a>This adds a small update to the recently published GPS Location/Coordinate Converter utility: Seconds in Degrees, Minutes &#38; Seconds notation are shown and are accepted as floating point numbers More shortcuts to popular online map services (note that only Google &#8230;<p class="read-more"><a href="http://alax.info/blog/1302">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1302" title="GPS Location/Coordinate Converter: Fractional Seconds, More Shortcuts"></a><p>This adds a small update to the recently published <a title="Permalink to Utility Clearance: GPS Location/Coordinate Converter" href="../1297">GPS Location/Coordinate Converter</a> utility:</p>
<ul>
<li>Seconds in <em>Degrees, Minutes &amp; Seconds</em> notation are shown and are accepted as floating point numbers</li>
<li>More shortcuts to popular online map services (note that only Google Maps and Yandex Maps are still accepted as input via clipboard):</li>
<ul>
<li style="text-align: left;">Bing Maps</li>
<li style="text-align: left;">Yahoo Maps</li>
<li style="text-align: left;">Open Street Map</li>
<li style="text-align: left;">WikiMapia</li>
</ul>
</ul>
<p>The latter makes the tool an easy to use converted between the services for a GPS POI.</p>
<p><a href="http://alax.info/blog/wp-content/uploads/2011/10/Image0011.png"><img class="alignnone size-large wp-image-1303" title="GPS Location Converter" src="http://alax.info/blog/wp-content/uploads/2011/10/Image0011-800x316.png" alt="" width="620" height="244" /></a></p>
<p>A binary [<a href="http://www.alax.info/svn/public/trunk/Utilities/GpsLocationConverter/_Bin/Release/GpsLocationConverter.exe">Win32</a>] and partial Visual C++ .NET 2010 <a href="http://www.alax.info/trac/public/browser/trunk/Utilities/GpsLocationConverter">partial source code</a> are available from SVN.</p>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1302/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utility Clearance: GPS Location/Coordinate Converter</title>
		<link>http://alax.info/blog/1297</link>
		<comments>http://alax.info/blog/1297#comments</comments>
		<pubDate>Wed, 12 Oct 2011 21:20:40 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[WTL]]></category>
		<category><![CDATA[coordinate]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1297</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1297" title="Utility Clearance: GPS Location/Coordinate Converter"></a>This tool came up as a result of mess around GPS coordinate formatting and variety of popular formats and notations. Some use latitude and longitude degrees, some prefer degrees and minutes with fractional part. this does not take into account &#8230;<p class="read-more"><a href="http://alax.info/blog/1297">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1297" title="Utility Clearance: GPS Location/Coordinate Converter"></a><p>This tool came up as a result of mess around GPS coordinate formatting and variety of popular formats and notations. Some use latitude and longitude degrees, some prefer degrees and minutes with fractional part. this does not take into account choices for datum and file formats.</p>
<p>For instance, both <a href="http://maps.google.com">Google Maps</a> and <a href="http://maps.yandex.ru">Yandex Maps</a> accept latitude and longitude as <strong>ll=</strong> URL parameter with the value of latitude and longitude in degrees, however Google uses latitude coming first, while Yandex prefers the opposite.</p>
<p>Recently, a rally road book contained the following formatting of track points:</p>
<p><a href="http://alax.info/blog/wp-content/uploads/2011/10/Image001.png"><img class="alignnone size-large wp-image-1298" title="Rally Raid Service Book" src="http://alax.info/blog/wp-content/uploads/2011/10/Image001-800x418.png" alt="" width="620" height="323" /></a></p>
<p>Having to put a stop to the madness, this utility comes up as a handy assistant to convert and format GPS coordinates into reasonable presentation and separators.</p>
<p>The utility runs on background and monitors clipboard, and once it recognizes one of the following:</p>
<ul>
<li>GPS Point in Degrees</li>
<li>GPS Point in Degrees and Minutes</li>
<li>GPS Point in Degrees, Minutes and Seconds</li>
<li>Google Maps URL</li>
<li>Yandex Maps URL</li>
</ul>
<p>it flashes and updates its UI providing the choices of track point formatting:</p>
<p><a href="http://alax.info/blog/wp-content/uploads/2011/10/Image0021.png"><img class="alignnone size-full wp-image-1299" title="GPS Point Formatting and Options" src="http://alax.info/blog/wp-content/uploads/2011/10/Image0021.png" alt="" width="778" height="248" /></a></p>
<p>The utility is trying hard to accept various separators and formats, just one thing is important to keep in mind: if you are using minutes without seconds, the fractional part of minutes should be separated by decimal point (.).</p>
<p>The utility also responds to hotkeys <em>Ctrl+Shift+F1</em>, <em>Ctrl+Shift+F2</em> etc. and copies the formatted point location back into clipboard so that one could quickly re-format editable text in another application through clipboard updates. Alternatively, it is possible to click the formatted value and place it into clipboard.</p>
<p>The utility also provides clickable hyperlinks to open Google Maps and Yandex Maps into the point of interest.</p>
<p>A binary [<a href="http://www.alax.info/svn/public/trunk/Utilities/GpsLocationConverter/_Bin/Release/GpsLocationConverter.exe">Win32</a>] and partial Visual C++ .NET 2010 <a href="http://www.alax.info/trac/public/browser/trunk/Utilities/GpsLocationConverter">partial source code</a> are available from SVN.</p>
<p>Note: you might need to run the tool &#8220;As Administrator&#8221; elevating UAC privileges in Vista/7 operating systems.</p>
<p>Bonus links on the topic:</p>
<ul>
<li><a href="http://boulter.com/gps/">GPS Coordinate Converter, Maps and Info</a></li>
<li><a href="http://www.benichou-software.com/index.php?option=com_content&amp;view=article&amp;id=4&amp;Itemid=2&amp;lang=en">ITN Converter</a> &#8211; converts for route file formats</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1297/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NTFS Links: x64 build</title>
		<link>http://alax.info/blog/1294</link>
		<comments>http://alax.info/blog/1294#comments</comments>
		<pubDate>Wed, 12 Oct 2011 19:37:43 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[NTFS Links]]></category>
		<category><![CDATA[junction]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1294</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1294" title="NTFS Links: x64 build"></a>Per user request, here goes 64-bit version of NTFS Links utility, which provides shell UI for NTFS Junction Points. As 64-bit version of Windows operating systems provide two versions of shell explorer, and support both Win32 and x64 platform applications, &#8230;<p class="read-more"><a href="http://alax.info/blog/1294">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1294" title="NTFS Links: x64 build"></a><p>Per user request, here goes 64-bit version of <a href="http://alax.info/blog/ntfslinks">NTFS Links</a> utility, which provides shell UI for <a href="http://en.wikipedia.org/wiki/NTFS_junction_point">NTFS Junction Points</a>.</p>
<p>As 64-bit version of Windows operating systems provide two versions of shell explorer, and support both <em>Win32</em> and <em>x64</em> platform applications, it is typical to install both 32-bit and 64-bit versions of the utility to cover/extend applications of both platforms. Note that 32-bit (Win32) applications can only load and directly interact with 32-bit builds of libraries (DLLs), so 64-bit (x64) applications need a corresponding matching version of the shell extension available.</p>
<p>As the utility provides a shell extension for directory property pages, here comes a curiosity exercise: how Windows 7 uses junction points to cross-map directories under user profile directory, e.g. <strong>C:\Users\&lt;username&gt;\Local Settings</strong> directory is actually a shortcut to <strong>C:\Users\&lt;username&gt;\AppData\Local</strong>.</p>
<p><img class="alignnone size-full wp-image-1296" title="User Profile Junction Points" src="http://alax.info/blog/wp-content/uploads/2011/10/Image002.png" alt="" width="377" height="505" /></p>
<p>Current version of Alax.Info NTFS Links can be downloaded from:</p>
<ul>
<li><a title="Download from http://alax.info/" href="http://www.alax.info/svn/public/trunk/NtfsLinks/AlaxInfoNtfsLinksSetup.msi" target="_blank">AlaxInfoNtfsLinksSetup.msi</a> – Version 1.1.5, 32-bit</li>
<li><a title="Download from http://alax.info/" href="http://www.alax.info/svn/public/trunk/NtfsLinks/AlaxInfoNtfsLinksSetup-x64.msi" target="_blank">AlaxInfoNtfsLinksSetup-x64.msi</a> – Version 1.1.5, 64-bit (x64)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1294/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utility Clearance: Enumerate Audio &#8216;MMDevice&#8217;s</title>
		<link>http://alax.info/blog/1279</link>
		<comments>http://alax.info/blog/1279#comments</comments>
		<pubDate>Tue, 30 Aug 2011 17:14:24 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[WTL]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Core Audio]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[IMMDevice]]></category>
		<category><![CDATA[MMDevice]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[WASAPI]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1279</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1279" title="Utility Clearance: Enumerate Audio &#039;MMDevice&#039;s"></a>The utility and code does straightforward enumeration of MMDevices (Vista+, check MSDN for MMDevice API availability), which correspond to MMDevice API, WASAPI, Core Audio API. The code itself is straightforward, with a ready to use binary to quickly lookup data &#8230;<p class="read-more"><a href="http://alax.info/blog/1279">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1279" title="Utility Clearance: Enumerate Audio &#039;MMDevice&#039;s"></a><p>The utility and code does straightforward enumeration of MMDevices (Vista+, check MSDN for <a href="http://msdn.microsoft.com/en-us/library/dd371399%28v=vs.85%29.aspx">MMDevice API availability</a>), which correspond to MMDevice API, WASAPI, Core Audio API. The code itself is straightforward, with a ready to use binary to quickly lookup data of interest:</p>
<p><img class="alignnone size-full wp-image-1280" title="Enumerate Audio Devices in Action" src="http://alax.info/blog/wp-content/uploads/2011/08/Image0012.png" alt="" width="541" height="363" /></p>
<p>The data is detailed well and in Excel-friendly format (via Copy/Paste):</p>
<p><a href="http://alax.info/blog/wp-content/uploads/2011/08/Image002.png"><img class="alignnone size-large wp-image-1281" title="Enumerate Audio Device Output in Microsoft Excel" src="http://alax.info/blog/wp-content/uploads/2011/08/Image002-800x362.png" alt="" width="620" height="280" /></a></p>
<p>The code also automatically looks up for named Windows SDK constants, such as <a href="http://msdn.microsoft.com/en-us/library/dd316594%28v=vs.85%29.aspx">PKEY_Device_FriendlyName</a>:</p>
<pre>    Identifier    {0.0.1.00000000}.{4c1a7642-3f91-43e5-8fcf-b4b1e803d3f9}
    State    DEVICE_STATE_DISABLED    0x02
    Properties:
        {B3F8FA53-0004-438E-9003-51A46E139BFC}, 15    16 bytes of BLOB, DA 07 03 00 02 00 09 00 0E 00 39 00 16 00 C5 02    65
        PKEY_Device_DeviceDesc    Stereo Mix    31
        {B3F8FA53-0004-438E-9003-51A46E139BFC}, 6    Realtek High Definition Audio    31
        {B3F8FA53-0004-438E-9003-51A46E139BFC}, 2    {1}.HDAUDIO\FUNC_01&amp;VEN_10EC&amp;DEV_0888&amp;SUBSYS_80860034&amp;REV_1002\4&amp;37D44F2F&amp;0&amp;0201    31
        {83DA6326-97A6-4088-9453-A1923F573B29}, 3    oem29.inf:AzaliaManufacturerID.NTamd64.6.0:IntcAzAudModel:6.0.1.5964:hdaudio\func_01&amp;ven_10ec&amp;dev_0888    31
        PKEY_Device_BaseContainerId    {00000000-0000-0000-FFFF-FFFFFFFFFFFF}    72
        PKEY_Device_ContainerId    {00000000-0000-0000-FFFF-FFFFFFFFFFFF}    72
        PKEY_Device_EnumeratorName    HDAUDIO    31
        PKEY_AudioEndpoint_FormFactor    10    19
        PKEY_AudioEndpoint_JackSubType    {DFF21FE1-F70F-11D0-B917-00A0C9223196}    31
        PKEY_DeviceClass_IconPath    %windir%\system32\mmres.dll,-3018    31
        {840B8171-B0AD-410F-8581-CCCC0382CFEF}, 0    316 bytes of BLOB, 01 00 00 00 38 01 00 00 ... 00 00 00 00    65
        PKEY_AudioEndpoint_Association    {00000000-0000-0000-0000-000000000000}    31
        PKEY_AudioEndpoint_Supports_EventDriven_Mode    1    19
        {24DBB0FC-9311-4B3D-9CF0-18FF155639D4}, 3    0    11
        {24DBB0FC-9311-4B3D-9CF0-18FF155639D4}, 4    -1    11
        {9A82A7DB-3EBB-41B4-83BA-18B7311718FC}, 1    65536    19
        {233164C8-1B2C-4C7D-BC68-B671687A2567}, 1    {2}.\\?\hdaudio#func_01&amp;ven_10ec&amp;dev_0888&amp;subsys_80860034&amp;rev_1002#4&amp;37d44f2f&amp;0&amp;0201#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\rtstereomixwave    31
        {5A9125B7-F367-4924-ACE2-0803A4A3A471}, 0    1610612916    19
        {B3F8FA53-0004-438E-9003-51A46E139BFC}, 0    3    19
<span style="color: #3366ff;"><strong>        PKEY_Device_FriendlyName    Stereo Mix (Realtek High Definition Audio)    31</strong></span>
        PKEY_DeviceInterface_FriendlyName    Realtek High Definition Audio    31
        PKEY_AudioEndpoint_GUID    {4C1A7642-3F91-43E5-8FCF-B4B1E803D3F9}    31</pre>
<p>A binary [<a href="http://www.alax.info/svn/public/trunk/Utilities/EnumerateAudioDevices/_Bin/Win32/Release/EnumerateAudioDevices.exe">Win32</a>, <a href="http://www.alax.info/svn/public/trunk/Utilities/EnumerateAudioDevices/_Bin/x64/Release/EnumerateAudioDevices.exe">x64</a>] and partial Visual C++ .NET 2010 <a href="http://www.alax.info/trac/public/browser/trunk/Utilities/EnumerateAudioDevices">source code</a> are available from SVN.</p>
<p>See also:</p>
<ul>
<li><a href="http://blogs.msdn.com/b/matthew_van_eerde/archive/2011/06/13/how-to-enumerate-audio-endpoint-immdevice-properties-on-your-system.aspx">A similar tool with source code</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd371400%28v=VS.85%29.aspx">IMMDeviceEnumerator::EnumAudioEndpoints</a> on MSDN</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1279/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resource Tools: 64-bit build</title>
		<link>http://alax.info/blog/1278</link>
		<comments>http://alax.info/blog/1278#comments</comments>
		<pubDate>Tue, 30 Aug 2011 16:56:34 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[Resource Tools]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[.rc]]></category>
		<category><![CDATA[.res]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1278</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1278" title="Resource Tools: 64-bit build"></a>I rebuilt the Resource Tools utility in 64-bits to, supposedly, be able to be good with resources on 64-bit binaries (actually 32-bit code might be dealing with those fine also?). Anyway, the build is here and the tool available in &#8230;<p class="read-more"><a href="http://alax.info/blog/1278">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1278" title="Resource Tools: 64-bit build"></a><p>I rebuilt the <a href="http://alax.info/blog/352">Resource Tools</a> utility in 64-bits to, supposedly, be able to be good with resources on 64-bit binaries (actually 32-bit code might be dealing with those fine also?). Anyway, the build is here and the tool available in both 32-bit and 64-bit versions.</p>
<p>In particular, both 32-bit and 64-bit JavaScript scripts hosted by <a href="http://en.wikipedia.org/wiki/Windows_Script_Host">Windows Scripting Host</a> (respectively, 32-bit from C:\Windows\syswow64 or 64-bit from C:\Windows\system32 &#8211; in 64-bit Windows) can leverage the tool in file manipulation.</p>
<p>This utility is specifically helpful in automating steps which involve resource updates, such as to apply OEM branding, or resource-based file operations. The code snippet below archives a copy of DLL and PDB files for published release into a .7z archive named using current file version of the DLL itself (that is, it created a <em>ResourceTools.dll-1.0.6.296.7z</em> archive file out of <em>ResourceTools.dll</em> and corresponding <em>ResourceTools.pdb</em> files):</p>
<pre style="color: #000000; background: #ffffff;">image <span style="color: #808030;">=</span> <span style="color: #800000; font-weight: bold;">new</span> ActiveXObject<span style="color: #808030;">(</span><span style="color: #0000e6;">"AlaxInfo.ResourceTools.Image"</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
image<span style="color: #808030;">.</span>Initialize<span style="color: #808030;">(</span>inputDirectory <span style="color: #808030;">+</span> fileName<span style="color: #808030;">)</span><span style="color: #800080;">;</span>
productVersion <span style="color: #808030;">=</span> image<span style="color: #808030;">.</span>VersionInfo<span style="color: #808030;">.</span>ProductVersionString<span style="color: #800080;">;</span>
fileVersion <span style="color: #808030;">=</span> image<span style="color: #808030;">.</span>VersionInfo<span style="color: #808030;">.</span>FileVersionString<span style="color: #800080;">;</span>
WScript<span style="color: #808030;">.</span>Echo<span style="color: #808030;">(</span><span style="color: #0000e6;">" Product Version: "</span> <span style="color: #808030;">+</span> productVersion<span style="color: #808030;">)</span><span style="color: #800080;">;</span>
WScript<span style="color: #808030;">.</span>Echo<span style="color: #808030;">(</span><span style="color: #0000e6;">" File Version: "</span> <span style="color: #808030;">+</span> fileVersion<span style="color: #808030;">)</span><span style="color: #800080;">;</span>
shell <span style="color: #808030;">=</span> WScript<span style="color: #808030;">.</span>CreateObject<span style="color: #808030;">(</span><span style="color: #0000e6;">"WScript.Shell"</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
currentDirectory <span style="color: #808030;">=</span> shell<span style="color: #808030;">.</span>CurrentDirectory<span style="color: #800080;">;</span>
shell<span style="color: #808030;">.</span>CurrentDirectory <span style="color: #808030;">=</span> currentDirectory <span style="color: #808030;">+</span> <span style="color: #0000e6;">"</span><span style="color: #0f69ff;">\\</span><span style="color: #0000e6;">"</span> <span style="color: #808030;">+</span> inputDirectory<span style="color: #800080;">;</span>
<span style="color: #800000; font-weight: bold;">try</span> <span style="color: #800080;">{</span>
    shellExec <span style="color: #808030;">=</span> shell<span style="color: #808030;">.</span>Exec<span style="color: #808030;">(</span>
        <span style="color: #0000e6;">"</span><span style="color: #0f69ff;">\"</span><span style="color: #0000e6;">"</span> <span style="color: #808030;">+</span> toolDirectory <span style="color: #808030;">+</span> <span style="color: #0000e6;">"7z"</span> <span style="color: #808030;">+</span> <span style="color: #0000e6;">"</span><span style="color: #0f69ff;">\"</span><span style="color: #0000e6;"> "</span> <span style="color: #808030;">+</span>
        <span style="color: #0000e6;">"a -t7z "</span> <span style="color: #808030;">+</span>
        <span style="color: #0000e6;">"</span><span style="color: #0f69ff;">\"</span><span style="color: #0000e6;">"</span> <span style="color: #808030;">+</span> currentDirectory <span style="color: #808030;">+</span> <span style="color: #0000e6;">"</span><span style="color: #0f69ff;">\\</span><span style="color: #0000e6;">"</span> <span style="color: #808030;">+</span> outputDirectory <span style="color: #808030;">+</span> <span style="color: #0000e6;">"ResourceTools.dll-"</span> <span style="color: #808030;">+</span> fileVersion <span style="color: #808030;">+</span> <span style="color: #0000e6;">".7z"</span> <span style="color: #808030;">+</span> <span style="color: #0000e6;">"</span><span style="color: #0f69ff;">\"</span><span style="color: #0000e6;"> "</span> <span style="color: #808030;">+</span>
        <span style="color: #0000e6;">"ResourceTools.dll"</span> <span style="color: #808030;">+</span> <span style="color: #0000e6;">" "</span> <span style="color: #808030;">+</span>
        <span style="color: #0000e6;">"ResourceTools.pdb"</span> <span style="color: #808030;">+</span> <span style="color: #0000e6;">" "</span> <span style="color: #808030;">+</span>
        <span style="color: #0000e6;">""</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
    <span style="color: #800000; font-weight: bold;">while</span> <span style="color: #808030;">(</span>shellExec<span style="color: #808030;">.</span>Status <span style="color: #808030;">==</span> <span style="color: #008c00;">0</span><span style="color: #808030;">)</span>
        WScript<span style="color: #808030;">.</span>Sleep<span style="color: #808030;">(</span><span style="color: #008c00;">100</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
    <span style="color: #800000; font-weight: bold;">if</span> <span style="color: #808030;">(</span>shellExec<span style="color: #808030;">.</span>ExitCode <span style="color: #808030;">!=</span> <span style="color: #008c00;">0</span><span style="color: #808030;">)</span>
        <span style="color: #800000; font-weight: bold;">throw</span> <span style="color: #800000; font-weight: bold;">new</span> Error<span style="color: #808030;">(</span><span style="color: #0000e6;">"7-Zip Exec failed, .ExitCode "</span> <span style="color: #808030;">+</span> shellExec<span style="color: #808030;">.</span>ExitCode<span style="color: #808030;">.</span><span style="color: #800000; font-weight: bold;">toString</span><span style="color: #808030;">(</span><span style="color: #808030;">)</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
    WScript<span style="color: #808030;">.</span>Echo<span style="color: #808030;">(</span><span style="color: #0000e6;">" Output File: "</span> <span style="color: #808030;">+</span> <span style="color: #0000e6;">"ResourceTools-"</span> <span style="color: #808030;">+</span> fileVersion <span style="color: #808030;">+</span> <span style="color: #0000e6;">".7z"</span><span style="color: #808030;">)</span><span style="color: #800080;">;</span>
<span style="color: #800080;">}</span>
<span style="color: #800000; font-weight: bold;">finally</span> <span style="color: #800080;">{</span>
    shell<span style="color: #808030;">.</span>CurrentDirectory <span style="color: #808030;">=</span> currentDirectory<span style="color: #800080;">;</span>
<span style="color: #800080;">}</span></pre>
<p>Title: Alax.Info Resource Tools<br />
Version: 1.0.6<br />
Download Links: <a href="http://www.alax.info/svn/public/trunk/ResourceTools/ResourceToolsSetup.msi">ResourceToolsSetup.msi</a> (Win32, 32-bit) and <a href="http://www.alax.info/svn/public/trunk/ResourceTools/ResourceToolsSetup-x64.msi">ResourceToolsSetup-x64.msi</a> (x64, 64-bit)</p>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1278/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utility Clearance: Generate PCM .WAV File</title>
		<link>http://alax.info/blog/1274</link>
		<comments>http://alax.info/blog/1274#comments</comments>
		<pubDate>Thu, 25 Aug 2011 20:48:13 +0000</pubDate>
		<dc:creator>Roman</dc:creator>
				<category><![CDATA[ATL]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Source]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[.WAV]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[dB]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[Loudness]]></category>
		<category><![CDATA[PCM]]></category>
		<category><![CDATA[sine]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[wavdest]]></category>
		<category><![CDATA[waveform]]></category>

		<guid isPermaLink="false">http://alax.info/blog/?p=1274</guid>
		<description><![CDATA[<a href="http://alax.info/blog/1274" title="Utility Clearance: Generate PCM .WAV File"></a>GeneratePcmWavFile tool is generating PCM .WAV files with requested parameters, silent or with a sine wave data. The utility uses WavDest SDK Sample as a multiplexer, so it is expected to be available. It is possible to define the following &#8230;<p class="read-more"><a href="http://alax.info/blog/1274">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://alax.info/blog/1274" title="Utility Clearance: Generate PCM .WAV File"></a><p>GeneratePcmWavFile tool is generating PCM .WAV files with requested parameters, silent or with a sine wave data. The utility uses <a href="http://msdn.microsoft.com/en-us/library/dd390969%28v=vs.85%29.aspx">WavDest SDK Sample</a> as a multiplexer, so it is expected to be available.</p>
<p>It is possible to define the following audio data parameters:</p>
<ul>
<li>sampling frequency, number of samples per second, such as 44100 or 48000</li>
<li>number of channels; the utility does not constrain this to be stereo or 5.1, it will be able to create 64 or 128 channel audio data as well</li>
<li>8 or 16 bit audio samples</li>
<ul>
<li>16-bit PCM only: sine wave signal parameters, frequency in Hz and amplitude/loudness relative to full scale, that is 0 dB is maximal loudness, and an argument of 23 will result in -23 dB loud audio (such as -23 dbFS, also see <a href="http://tech.ebu.ch/loudness">EBU R128 Specification</a>, the signal depending on frequency may be used a reference source for normalized -23 LUFS audio)</li>
</ul>
<li>file duration in seconds</li>
</ul>
<pre>Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\&gt;GeneratePcmWavFile.exe
Syntax: GeneratePcmWavFile &lt;options&gt; &lt;output-path&gt;
  /s:N: Sampling Rate N, Hz
  /c:N: Channel Count N
  /b:N: Sample Bit Count N, 8 or 16
  /t:N: Length N, seconds
  /f:N: Sine Signal Frequency N, Hz
  /l:N: Sine Signal Loudness N, dB below full scale
  /n:N: Noise Signal Loudness N, dB below full scale</pre>
<p><a href="http://alax.info/blog/wp-content/uploads/2011/08/Image0011.png"><img class="alignnone size-medium wp-image-1275" title="-23 dBFS Generated Audio Playback" src="http://alax.info/blog/wp-content/uploads/2011/08/Image0011-320x248.png" alt="" width="320" height="248" /></a></p>
<p>A binary [<a href="http://alax.info/trac/public/browser/trunk/Utilities/GeneratePcmWavFile/Win32/Release/GeneratePcmWavFile.exe?format=raw">Win32</a>] and partial Visual C++ .NET 2010 <a href="http://alax.info/trac/public/browser/trunk/Utilities/GeneratePcmWavFile">source code</a> are available from SVN.</p>
<p>UPDATE: An extra /n parameter lets the application add random noise within provided loudness parameter.</p>
]]></content:encoded>
			<wfw:commentRss>http://alax.info/blog/1274/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

