<?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>Sentiment</title>
	<atom:link href="http://wouter.shush.com/feed" rel="self" type="application/rss+xml" />
	<link>http://wouter.shush.com</link>
	<description>About Life, the Universe, and Everything...</description>
	<lastBuildDate>Thu, 19 Jan 2012 10:55:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to get AutoFill to work on Wifi logins in iOS 5</title>
		<link>http://wouter.shush.com/2011/11/how-to-get-autofill-to-work-on-wifi-logins-in-ios-5?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-get-autofill-to-work-on-wifi-logins-in-ios-5</link>
		<comments>http://wouter.shush.com/2011/11/how-to-get-autofill-to-work-on-wifi-logins-in-ios-5#comments</comments>
		<pubDate>Fri, 25 Nov 2011 13:57:41 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Ipod]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AutoFill]]></category>
		<category><![CDATA[Autologon]]></category>
		<category><![CDATA[Wifi]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=396</guid>
		<description><![CDATA[I noticed that when I replaced my iPhone 3GS with a 4S, it forgot my logon usernames and passwords when it came to Wifi logins. I&#8217;d get the popup screen, but the account name and password were not available under the AutoFill button. The problem is that AutoFill will only ask to remember account information [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I noticed that when I replaced my iPhone 3GS with a 4S, it forgot my logon usernames and passwords when it came to Wifi logins. I&#8217;d get the popup screen, but the account name and password were not available under the AutoFill button.</p>
<p>The problem is that AutoFill will only ask to remember account information if it is enabled in Settings -&gt; Safari, and if you visit the login site in Safari itself instead of the logon screen (which is obviously also Safari, but not advertised as such).</p>
<p>The trick is then to trick your Wifi in not triggering in showing the logon form, but have the Wifi connected and surf to any site to get the logon screen working.</p>
<p><!--:--><span id="more-396"></span><!--:en-->You can do it by disabling Auto-logon on your Wifi:</p>
<ol>
<li>Disable Auto-Login in WiFi settings for given network
<ul>
<li>go to Settings app</li>
<li>select &#8220;Wi-Fi&#8221;</li>
<li>tap on the blue &#8220;&gt;&#8221; icon to the right of your network</li>
<li>disable &#8220;Auto-Login&#8221;</li>
</ul>
</li>
<li>Start Safari and surf to any site. The Wifi authentication page should pop up. Log in manually. If AutoFill is enabled including &#8220;Names &amp; Password&#8221;, logging in prompts you to remember the login.</li>
<li>Re-enable Auto-Login for your network (same as step 1, but enabling &#8220;Auto-Login&#8221;)</li>
</ol>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/11/how-to-get-autofill-to-work-on-wifi-logins-in-ios-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gather IIS logs from your IIS servers</title>
		<link>http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gather-iis-logs-from-your-iis-servers</link>
		<comments>http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers#comments</comments>
		<pubDate>Wed, 16 Nov 2011 12:54:48 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Internet Information Server]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Logfiles]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=389</guid>
		<description><![CDATA[I needed a quick way to gather all IIS logfile locations in several SharePoint farms. IIS has a nasty way to reference to numbers instead of names in their logging directory structure, so you need to watch the Advanced Settings panel in IIS to figure out which logging directory is for which website. This could [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I needed a quick way to gather all IIS logfile locations in several SharePoint farms. IIS has a nasty way to reference to numbers instead of names in their logging directory structure, so you need to watch the Advanced Settings panel in IIS to figure out which logging directory is for which website.</p>
<p>This could be done easier, I thought. And so thought many before me.</p>
<p><!--:--><span id="more-389"></span><!--:en-->This is a slight modification of <a href="http://www.indented.co.uk/index.php/2010/01/12/powershell-iis-and-log-settings/" target="_blank">the script by Chris Dent</a>, because I needed different results to link site name (which <em>IISWebServerSetting</em> saves as <em>ServerComment</em>) to the specific logfile directory (which is a mishmash of <em>LogFileDirectory</em> and <em>Name</em>).</p>
<pre>Function Get-IISLogSetting {
    param(
       [String[]]$Servers = $Env:Computername
    );

    $Servers | %{
        $Server = $_ ;
        Write-Progress "Scaning" $Server;
        $WMI = New-Object Management.ManagementScope("\\$Server\root\MicrosoftIISv2");
        $WMI.Options.Authentication = "PacketPrivacy";
        $Query = New-Object Management.ObjectQuery("SELECT Name, ServerComment, LogFileDirectory, LogFileTruncateSize, LogType, LogFilePeriod FROM IIsWebServerSetting");
        $Searcher = New-Object Management.ManagementObjectSearcher($WMI, $Query);
        Trap [UnauthorizedAccessException] {
              Write-Error "$($Server): Unable to connect or Access is denied";
              continue;
        }
        $result = $Searcher.Get();
        #$Host.EnterNestedPrompt();
        $result | Select-Object @{
            n = 'Server';
            e = { $Server; }
        }, @{
            n = 'Website';
            e = { $_.ServerComment; }
        }, @{
            n = 'Log Path';
            e = { "{0}\{1}" -f $_.LogFileDirectory, $_.Name.Replace("/",""); }
        }
    }
}</pre>
<p>Usage:</p>
<pre>Get-IISLogSetting [-servers server1,server2,server3,...]</pre>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4S, Siri and the Garmin Zumo 660</title>
		<link>http://wouter.shush.com/2011/11/iphone-4s-siri-and-the-garmin-zumo-660?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-4s-siri-and-the-garmin-zumo-660</link>
		<comments>http://wouter.shush.com/2011/11/iphone-4s-siri-and-the-garmin-zumo-660#comments</comments>
		<pubDate>Sun, 06 Nov 2011 22:01:31 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[660]]></category>
		<category><![CDATA[Garmin]]></category>
		<category><![CDATA[Siri]]></category>
		<category><![CDATA[Zumo]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=369</guid>
		<description><![CDATA[So I just received my iPhone 4S. I love it. One of the new features is Siri, an AI assistant which uses voice to interact with me as an user, and the backend of what is my iPhone: reminders, my calendar, my contacts, and the internet. Now, interacting with voice is not something entirely new. [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en--><img class="alignleft" title="iPhone 4S" src="http://www6.pcmag.com/media/images/321566-iphone-siri.jpg?thumb=y" alt="" width="275" height="275" />So I just received my <a title="Apple iPhone" href="http://www.apple.com/iphone/" target="_blank">iPhone 4S</a>. I love it.</p>
<p>One of the new features is <a title="Apple iPhone feature: Siri" href="http://www.apple.com/iphone/features/siri.html" target="_blank">Siri</a>, an AI assistant which uses voice to interact with me as an user, and the backend of what is my iPhone: reminders, my calendar, my contacts, and the internet.</p>
<p>Now, interacting with voice is not something entirely new. My car&#8217;s hifi and satnav system supports a basic level of voice commands to call people from my contact list, and even my <a title="Garmin Zumo 660" href="https://buy.garmin.com/shop/shop.do?cID=135&amp;pID=15000" target="_blank">Garmin Zumo 660</a> which I use on my motorcycle supports it.</p>
<p>Whereas in my car the voice commands are processed by the car, however, Garmin&#8217;s Zumo 660 uses the voice support of my phone. So if I had a phone which did not support voice commands, I&#8217;d be out of luck. But Garmin&#8217;s Zumo 660 specifies in the documentation that this voice is only limited to calling people: you shout their name in the microphone, and your phone should know what to do: call the contact who&#8217;s name you shouted.</p>
<p><img class="aligncenter" title="Garmin Zumo 660" src="http://www.sportouring.com/SPpageimages/garmin/garmin-zumo660.jpg" alt="" width="620" height="502" />It all goes a bit haywire on the iPhone 4S though: instead of simple voice commands, the speech button on the Garmin Zumo 660 starts up Siri on the iPhone and Siri will accept voice commands.</p>
<p>That&#8217;s the good bit. The bad bit is that if you&#8217;re not quick enough giving your voice command and receiving an answer from Siri, the Zumo will end the voice dialing phase with an error saying that the phone does not support it, breaking off your dialogue with Siri.</p>
<p>So the basic premise is: Yes, Siri can work for you on your motorcycle, but Garmin needs to modify their firmware to recognize and treat Siri differently than any other voice dialer system.<!--:--><!--:nl-->So I just received my iPhone 4S. I love it.</p>
<p>One of the new features is Siri, an AI assistant which uses voice to interact with me as an user, and the backend of what is my iPhone: reminders, my calendar, my contacts, and the internet.</p>
<p>Now, interacting with voice is not something entirely new. My car&#8217;s hifi and satnav system supports a basic level of voice commands to call people from my contact list, and even my Garmin Zumo 660 which I use on my motorcycle supports it.</p>
<p>Whereas in my car the voice commands are processed by the car, however, Garmin&#8217;s Zumo 660 uses the voice support of my phone. So if I had a phone which did not support voice commands, I&#8217;d be out of luck. But Garmin&#8217;s Zumo 660 specifies in the documentation that this voice is only limited to calling people: you shout their name in the microphone, and your phone should know what to do: call the contact who&#8217;s name you shouted.</p>
<p>It all goes a bit haywire on the iPhone 4S though: instead of simple voice commands, the <!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/11/iphone-4s-siri-and-the-garmin-zumo-660/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Driving back to Toronto</title>
		<link>http://wouter.shush.com/2011/09/driving-back-to-toronto?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=driving-back-to-toronto</link>
		<comments>http://wouter.shush.com/2011/09/driving-back-to-toronto#comments</comments>
		<pubDate>Wed, 14 Sep 2011 15:22:34 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Shorts]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[GoPro Hero HD]]></category>
		<category><![CDATA[Moncton]]></category>
		<category><![CDATA[Montreal]]></category>
		<category><![CDATA[New Brunswick]]></category>
		<category><![CDATA[Quebec]]></category>
		<category><![CDATA[Timelapse]]></category>
		<category><![CDATA[Toronto]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=381</guid>
		<description><![CDATA[After a week of living the East Coast life, we headed back to Lake Ontario&#8217;s Toronto.]]></description>
			<content:encoded><![CDATA[<p><!--:en-->After a week of living the East Coast life, we headed back to Lake Ontario&#8217;s Toronto.</p>
<p><p><a href="http://wouter.shush.com/2011/09/driving-back-to-toronto"><em>Click here to view the embedded video.</em></a></p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/driving-back-to-toronto/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My paperless office</title>
		<link>http://wouter.shush.com/2011/09/my-paperless-office?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-paperless-office</link>
		<comments>http://wouter.shush.com/2011/09/my-paperless-office#comments</comments>
		<pubDate>Tue, 13 Sep 2011 12:37:15 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Processes & Procedures]]></category>
		<category><![CDATA[brother]]></category>
		<category><![CDATA[mfc]]></category>
		<category><![CDATA[paperless office]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=372</guid>
		<description><![CDATA[Since 2008, I try to live with a nearly paperless office. Sure, I get letters and invoices on paper, but I scan them all in and keep the digital copies as archive, while the paper copies are kept by my accountant. I also shy away from automatic payments, and believe that to be in charge [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en--><a href="http://wouter.shush.com/wordpress/wp-content/uploads/Colour-Laser-MFC.jpg"><img class="alignleft size-medium wp-image-373" title="Colour Laser MFC" src="http://wouter.shush.com/wordpress/wp-content/uploads/Colour-Laser-MFC-300x222.jpg" alt="" width="300" height="222" /></a>Since 2008, I try to live with a nearly paperless office. Sure, I get letters and invoices on paper, but I scan them all in and keep the digital copies as archive, while the paper copies are kept by my accountant.</p>
<p><!--:--><span id="more-372"></span><!--:en--></p>
<p>I also shy away from automatic payments, and believe that to be in charge of your budget, you cannot have utility companies snipping away from your account on any random date, certainly if you only have a promise or not even a vague clue on how much that snipping would be.</p>
<p>But this requires a good filing system.</p>
<h2>Scanning</h2>
<p>Anyway. The daily cycle is that my wife empties the snail mailbox and dumps envelopes on my desk. I open every envelope, decide if its scan-worthy (invoices, obviously, but sometimes even normal letters. But anything official is a good reason to scan it), place it on the document feeder of the ugly MFC I have in a corner and forget about it.</p>
<h2>Archiving</h2>
<p>What I should do then (but procrastinate, and you shouldn&#8217;t) is fire up Adobe Acrobat and scan the papers in the document feeder double-sided at 150dpi and OCR them. Then, I catalogue each document.</p>
<p>I use Adobe Acrobat because it supports network scanners and can OCR documents. Scanning with Apple&#8217;s Preview gave me documents of 3 MB a page, while Acrobat spits out files of 300kb. And contents of the latter is searchable through Spotlight. Imagine trying to find an invoice based on how much I paid someone. I can.</p>
<p><a href="http://wouter.shush.com/wordpress/wp-content/uploads/archiving.png"><img class="aligncenter size-full wp-image-374" title="Archiving" src="http://wouter.shush.com/wordpress/wp-content/uploads/archiving.png" alt="" width="1290" height="461" /></a>As you can see, I have developed a basic folder structure which I replicate for every fiscal year. The &#8220;clients&#8221; and &#8220;suppliers&#8221; are the busiest folders, and I save each scanned document in the format &#8220;YYYYMMDD &lt;client/supplier name&gt; &lt;Document number&gt;&#8221;.pdf.</p>
<p>Finder automatically arranges files by name, so the files are ordered from january to december. If I need to find invoices of a certain supplier, I just search them using Spotlight. Same goes for invoice numbers.</p>
<p>I use the colored labels within the context menu of Finder to make clear which documents are paid (=green), not paid (= no color) or documents with issues (contested invoices, etc, in red).</p>
<h2>Paying</h2>
<p>Of course, be mindful of paying your invoices. This you can do on a weekly basis, just go through the documents which do not have a color and pay them. Or not.</p>
<h2>The Accountant</h2>
<p>He still likes paper versions of all my documents, so he gets the stack that builds up every month at the paper tray of the scanner.</p>
<p>What I cannot forget is print out my invoices. Sometimes, I&#8217;m not around my printer to do so, so I created a folder &#8220;to print&#8221; on my desktop where I drag files which I have filed and need to print for my accountant. This is something which is particularly important with suppliers and yourself if you are sending out electronic invoices.</p>
<h2>E-invoicing</h2>
<p>Honestly, I love sending PDF&#8217;s to my clients. Saves me a trip to the mailbox, buying stamps, &#8230; But I have found for myself that receiving electronic invoices can be a pain in the neck.</p>
<p>First of all, you risk like me to forget to print out these electronic invoices. So that means sending them by email to my accountant afterwards. Worse is if I forget to file them after receiving an email with an electronic invoice. Next time you will hear about it is through a (hopefully) paper reminder. I try to scan these reminders too if I don&#8217;t pay them right away, since history has proven that even these paper reminders can disappear into the void and my subconscious self.</p>
<p>It turned out that I was quite bad at filing these electronic invoices. The Shell e-invoicing I can handle because they come in batches and are easily downloaded and printed. You can perfectly forget about them for 3 months and then start filing away. But Belgian banks are nowadays offering e-invoicing through Zoomit, which in hindsight is a terror to use. You do get an email when you get a new document, but since the document is behind a pin-code you never bother filing the invoice after receiving the mail. At home you forget about it, and when you do remember, you notice you cannot download all unfiled invoices in a batch. And if you then manage to download them, you&#8217;ll notice the PDF&#8217;s are protected, so you cannot even copy the invoice number to use in your filing system.</p>
<p>Since then, I&#8217;ve cancelled all my e-invoicing. I need to have my invoices on paper anyways for my accountant, so why should I worry about printing my invoices, or having to pay reminder costs because an invoice was left open in Zoomit?</p>
<p>With that in mind, I might even start invoicing clients again by paper invoices.<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/my-paperless-office/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming a Kenwood TK-3101 on a too quick machine</title>
		<link>http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=programming-a-kenwood-tk-3101-on-a-too-quick-machine</link>
		<comments>http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine#comments</comments>
		<pubDate>Mon, 12 Sep 2011 15:24:38 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Kenwood]]></category>
		<category><![CDATA[KPG-22]]></category>
		<category><![CDATA[KPG48D]]></category>
		<category><![CDATA[KPG54D]]></category>
		<category><![CDATA[PMR]]></category>
		<category><![CDATA[TK-3101]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=361</guid>
		<description><![CDATA[I have managed to get the typical Kenwood software KPG54D and KPG48D for their TK-3101 transceiver on one of the fastest Apple MacBook Pro&#8216;s currently on the market, running OSX Lion, using VMWare Fusion, Windows XP and DOSBox. This might also work on any other virtualization environment, such as Parallels or VirtualBox, and even natively [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en--><a href="http://wouter.shush.com/wordpress/wp-content/uploads/2568533.jpg"><img class="alignleft size-full wp-image-363" title="Kenwood TK-3101" src="http://wouter.shush.com/wordpress/wp-content/uploads/2568533.jpg" alt="" width="200" height="200" /></a>I have managed to get the typical Kenwood software KPG54D and KPG48D for their TK-3101 transceiver on one of the fastest <a title="Apple MacBook Pro" href="http://www.apple.com/macbookpro/" target="_blank">Apple MacBook Pro</a>&#8216;s currently on the market, running OSX Lion, using <a title="VMWare Fusion" href="http://www.vmware.com/products/fusion/overview.html" target="_blank">VMWare Fusion</a>, Windows XP and <a title="DOSBox" href="http://www.dosbox.com/" target="_blank">DOSBox</a>. This might also work on any other virtualization environment, such as <a title="Parallels" href="http://www.parallels.com/" target="_blank">Parallels</a> or <a title="VirtualBox" href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>, and even natively on other Windows versions.</p>
<p><!--:--><span id="more-361"></span><!--:en--></p>
<p>For years now, I have had a Kenwood TK-3101 mobile radio which is tuned in to PMR446 frequencies. PMR446 is in Europe a way to use radio communication without the need for a license. If the weather is not to crazy and you are in the open, you should be able to receive PMR46-transmissions from up to 5 kilometer away.</p>
<p>I did not have much use for the radio until I started motorcycling. Riding along, PMR&#8217;s distance of a few kilometer apart is more interesting than the few meters you get out of bluetooth of the few dozens of meters out of a wireless helmet kit. Nice to talk to the person behind you on the buddy seat, but not enough to talk to a fellow rider riding in front or behind you.</p>
<p>My brother started riding too and I bought/won a few Kenwood TK-3101&#8242;s from eBay, intended to using them while riding. I also bought an aftermarket USB serial cable which the seller claimed would work with TK-3101&#8242;s.</p>
<p>Now, everyone on the internet claims 2 things:</p>
<ul>
<li>You need a slow machine to run KPG48D or KPG54D, since newer, faster machines are too quick for the radio to respond in the same speed the software on your fast computer is expecting data;</li>
<li>KPG48D and KPG54D, both native DOS applications, need a pure connection to the serial COM port. USB won&#8217;t cut it.</li>
</ul>
<p>Well, it turns out the above is only partial true.</p>
<p><strong>VMWare Fusion, Windows XP</strong></p>
<p>For starters, I needed something that could understand DOS. I had already VMWare Fusion installed, and set up a 32bit Windows XP Professional installation. Both come right out of the box, so you don&#8217;t have to modify anything here.</p>
<h2>Serial Adapter</h2>
<p><a href="http://wouter.shush.com/wordpress/wp-content/uploads/thumb.php_.jpeg"><img class="alignleft size-full wp-image-362" title="USB to Kenwood serial cable" src="http://wouter.shush.com/wordpress/wp-content/uploads/thumb.php_.jpeg" alt="" width="99" height="99" /></a>The USB to serial adapter I have turns out to be the popular Prolific PL-2030 USB to serial adapter, but in my case it ends in a mini- and microjack connector for Kenwood. Install the driver on the virtual Windows XP, connect the USB cable to your Mac and VMWare Fusion asks you to which machine it should connect the USB adapter. The obvious choice for us is the virtualized Windows XP.</p>
<p>The Kenwood software KPG48D and KPG54D only know of COM1 and COM2 so you need to make sure your USB serial adapter impersonates one of these two ports. Dive into the Windows XP Device Manager to disable one of two COM ports, and set the COM port your USB adapter impersonates to the COM port you just disabled.</p>
<p>The Prolific port will be set at 9500 bps, and this will work.</p>
<h2>Installing DOSBox</h2>
<p>After that, install <a title="DOSBox" href="http://www.dosbox.com/" target="_blank">DOXBox</a>. It is a DOS emulator, which looks just like your regular DOS window, but it isn&#8217;t. For starters, it allows you to slow any program ran in it down on the go.</p>
<p>After installation, you should look in your Start menu to change the Options of DOSBox. This link will open the configuration file of DOSBox. Scroll down to [serial] and make sure that the COM-port you are going to use is set to &#8216;direct&#8217;.</p>
<p>In my case, I was using COM2 so modified the following line:</p>
<blockquote><p>serial2=directserial realport:COM2</p></blockquote>
<p>This instructs DOSBox to let any communication from or to the COM2 port in the DOSBox emulator straight to the COM2 port of Windows XP, which in our case is through a virtualized and physical USB port.</p>
<h2>Making it all work</h2>
<p>Right. Your virtual machine is in place, your COM-port defined and DOSBox installed.</p>
<p>Make sure you have the KPG54D and KPG48D software set up on a easy to reach folder on your Windows XP virtual machine, preferably something like C:\KENWOOD. The reason is that when you start DOSBox, it does not know anything about your C:-drive. You need to mount the directory you wish to use to the emulated C:-drive in the emulator.</p>
<blockquote><p>mount c: c:\kenwood</p></blockquote>
<p>Once you have done this, DOSBox will tell you drive C is mounted to the specified directory. Change to the C: drive and start up KPG54D.</p>
<p>KPG54D will show up. Use the Alt key to activate the menu, and use the arrow keys to navigate to <strong>Setup</strong> where you make sure you have selected the right COM port.</p>
<p>Now we can slow down the emulated version of DOS. Type in<strong> Ctrl+F11</strong> to decrease and <strong>Ctrl+F12</strong> to increase the Cpu speed cycles which are displayed in the Title bar of DOSBox. Once you reach about 190 cycles, you can navigate to the <strong>Program</strong> menu, hook up your Kenwood TK-3101, turn it on and read all channel information from your radio.</p>
<p>UPDATED: Even at 3000 cycles, I managed to read all data.</p>
<h2><a href="http://wouter.shush.com/wordpress/wp-content/uploads/DOSBox-KPG54D.png"><img class="aligncenter size-full wp-image-367" title="DOSBox KPG54D" src="http://wouter.shush.com/wordpress/wp-content/uploads/DOSBox-KPG54D.png" alt="" width="643" height="430" /></a>Troubleshooting</h2>
<p>If for some reason you still get read errors, try to change the CPU cycles or COM port settings in Windows. It should work out of the box at 9500 bps and 3000 cpu cycles, but sometimes you need to power cycle the transceiver and change the speed of COM port or emulated DOS box to get it to work.</p>
<h2>Thoughts</h2>
<p>It&#8217;s probably possible to skip VMWare Fusion and Windows XP with the OSX version of DOSBox, but I will still have to look into that. At least I found a way that allows me to use 1999 technology with 2011 fastest consumer hardware.<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tierpark Alsdorf</title>
		<link>http://wouter.shush.com/2011/09/tierpark-alsdorf?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tierpark-alsdorf</link>
		<comments>http://wouter.shush.com/2011/09/tierpark-alsdorf#comments</comments>
		<pubDate>Sun, 04 Sep 2011 02:43:21 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Shorts]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=359</guid>
		<description><![CDATA[<!--:en-->Zacuto, Manfrotto, monopod, Canon 5D MkII, Z-Finder, DeadCat, VideoMic, 561BHDV<!--:-->]]></description>
			<content:encoded><![CDATA[<p><!--:en-->A trip to an animal farm and petting zoo was a perfect excuse to test out how the Dead Cat wind blocker would perform on the <a href="http://www.rodemic.com/mics/videomic" target="_blank">RODE VideoMic</a>, and the <a href="http://www.manfrotto.com/product/8709.76909.76924.0.0/561BHDV/_/Fluid_Video_Monopod_with_Head" target="_blank">Manfrotto 561BHDV</a> Monopod as support compared to the Zacuto pieces.</p>
<p><a href="http://wouter.shush.com/2011/09/tierpark-alsdorf"><em>Click here to view the embedded video.</em></a></p>
<p>It&#8217;s a bit sad to say, but the 250€ monopod gave better results than 700€ worth of <a title="Z-Finder" href="http://store.zacuto.com/Z-Finder.html" target="_blank">Zacuto ZFinder Pro</a> and <a title="Zacuto Target Shooter" href="http://store.zacuto.com/Target-Shooter.html" target="_blank">Target Shooter</a>. The monopod gives so much extra stability and makes the whole trip even lighter because you can put the weight of the camera down at every shot compared to keeping the weight in your arms or hanging around your shoulder. And oddly enough, I felt the bigger black monopod would be less intrusive than the Fast Draw rigging. Mainly because I feel like a monopod can still scream &#8220;i&#8217;m taking a photo here&#8221; instead of the Fast Draw&#8217;s &#8220;I&#8217;m making a movie here&#8221;. I might get the EVF to mount onto the camera for better focusing and optional use with the ZFinder, because you don&#8217;t want to use the ZFinder on the camera because you then start to transmit shaking through a quite stable setup, but it is hard to get focusing right on a 5D using the back LCD display, even in low light situations. A sharper EVF might work there, and the Zacuto EVF with flip-up makes it possible to use it as a monitor or EVF whenever you like.</p>
<p>The <a href="http://www.rodemic.com/accessories/deadcat" target="_blank">RODE Dead Cat</a> wind blocker was a nice and necessary addition to make the <a href="http://www.rodemic.com/mics/videomic" target="_blank">VideoMic</a> really work well.<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/tierpark-alsdorf/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daytrip to PEI</title>
		<link>http://wouter.shush.com/2011/09/daytrip-to-pei?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=daytrip-to-pei</link>
		<comments>http://wouter.shush.com/2011/09/daytrip-to-pei#comments</comments>
		<pubDate>Sat, 03 Sep 2011 09:53:07 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=357</guid>
		<description><![CDATA[This is a bit of a mishmash between my time-lapse I did driving to and through PEI, and footage shot looking around the island. Prince Edward Island, or shorter called PEI, is the smallest province of Canada and only connected to the mainland with a few ferry lines and the relatively recently built Confederation Bridge.]]></description>
			<content:encoded><![CDATA[<p><!--:en-->This is a bit of a mishmash between my time-lapse I did driving to and through PEI, and footage shot looking around the island. Prince Edward Island, or shorter called PEI, is the smallest province of Canada and only connected to the mainland with a few ferry lines and the relatively recently built Confederation Bridge.</p>
<p><p><a href="http://wouter.shush.com/2011/09/daytrip-to-pei"><em>Click here to view the embedded video.</em></a></p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/daytrip-to-pei/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timelapse: Toronto to Moncton</title>
		<link>http://wouter.shush.com/2011/09/timelapse-toronto-to-moncton?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=timelapse-toronto-to-moncton</link>
		<comments>http://wouter.shush.com/2011/09/timelapse-toronto-to-moncton#comments</comments>
		<pubDate>Thu, 01 Sep 2011 10:38:50 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=355</guid>
		<description><![CDATA[OK, it technically is Brampton, ON to Shediac, ON, but only Canadians would realize what trip this is then. We traveled in 2 days, with a stop in Kingston, ON for burgers. We stayed overnight in Four Points by Sheraton in Lévis, near Quebec City, and drove on to Shediac, NB with stops at the [...]]]></description>
			<content:encoded><![CDATA[<p><!--:en-->OK, it technically is Brampton, ON to Shediac, ON, but only Canadians would realize what trip this is then.</p>
<p><a href="http://wouter.shush.com/2011/09/timelapse-toronto-to-moncton"><em>Click here to view the embedded video.</em></a></p>
<p>We traveled in 2 days, with a stop in Kingston, ON for burgers. We stayed overnight in <a title="Four Points by Sheraton" href="http://www.starwoodhotels.com/fourpoints/property/overview/index.html?propertyID=1775" target="_blank">Four Points by Sheraton in Lévis</a>, near Quebec City, and drove on to Shediac, NB with stops at the visitor&#8217;s centre on the QB-NB border and Pirate de la Mer fish restaurant in Edmunston, NB, a few kilometers past the border.<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/timelapse-toronto-to-moncton/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kingston, Ontario</title>
		<link>http://wouter.shush.com/2011/08/kingston-ontario?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kingston-ontario</link>
		<comments>http://wouter.shush.com/2011/08/kingston-ontario#comments</comments>
		<pubDate>Tue, 30 Aug 2011 18:13:37 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Shorts]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Canon 5D MkII]]></category>
		<category><![CDATA[Kingston]]></category>
		<category><![CDATA[Ontario]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=353</guid>
		<description><![CDATA[While in Canada, we stayed a few days in Kingston, Ontario. The first day, we took the ferry to Wolfe Island and back.]]></description>
			<content:encoded><![CDATA[<p><!--:en-->While in Canada, we stayed a few days in Kingston, Ontario. The first day, we took the ferry to Wolfe Island and back.</p>
<p><p><a href="http://wouter.shush.com/2011/08/kingston-ontario"><em>Click here to view the embedded video.</em></a></p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/08/kingston-ontario/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: wouter.shush.com @ 2012-02-05 16:02:36 -->
