<?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>Ken Bantoft</title>
	<atom:link href="http://ken.bantoft.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://ken.bantoft.org</link>
	<description>I am here</description>
	<lastBuildDate>Sun, 08 Jan 2012 02:59:43 +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>SNMP on OSX</title>
		<link>http://ken.bantoft.org/2012/01/snmp-on-osx/</link>
		<comments>http://ken.bantoft.org/2012/01/snmp-on-osx/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 02:58:09 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Hackery]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=270</guid>
		<description><![CDATA[NetFunctional is about to release an SNMP based app, so I&#8217;ve been testing it against all sorts of various devices. Since OSX is Unix/BSD based, it can be an SNMP agent too, once you configure and enable it. Here&#8217;s how: Configure SNMP sudo vi /etc/snmp/snmpd.conf Find the line rocommunity public default .1.3.6.1.2.1.1.4 Replace it with [...]]]></description>
			<content:encoded><![CDATA[<p>NetFunctional is about to release an SNMP based app, so I&#8217;ve been testing it against all sorts of various devices.  Since OSX is Unix/BSD based, it can be an SNMP agent too, once you configure and enable it.  Here&#8217;s how:</p>
<ol>Configure SNMP</p>
<li>sudo vi /etc/snmp/snmpd.conf
<li>Find the line<br />
rocommunity  public default .1.3.6.1.2.1.1.4</p>
<li>Replace it with (note: you may wish to change &#8216;public&#8217; to something less default):<br />
rocommunity  public default </p>
<li>Save and exit
</ol>
<p>Then simply enable SNMP to be loaded all the time (this works on Snow Leopard and Lion)</p>
<pre>
sudo launchctl load -w /System/Library/LaunchDaemons/org.net-snmp.snmpd.plist
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2012/01/snmp-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Titanium &#8211; Vertical CoverFlows</title>
		<link>http://ken.bantoft.org/2011/01/titanium-vertical-coverflows/</link>
		<comments>http://ken.bantoft.org/2011/01/titanium-vertical-coverflows/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 00:03:48 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Hackery]]></category>
		<category><![CDATA[Titanium]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=232</guid>
		<description><![CDATA[Coverflows are great, but what if you want to do a vertical coverflow? So you can flip up &#038; down between images, or options, etc&#8230; This is insanely easy in Titanium &#8211; // Build your Cover Flow as usual... var images = ['option1.png','option2.png','option3.png','option4.png']; var view = Titanium.UI.createCoverFlowView({ images:images, right:400, left:0, top:70, height:678 // Remember - [...]]]></description>
			<content:encoded><![CDATA[<p>Coverflows are great, but what if you want to do a vertical coverflow?  So you can flip up &#038; down between images, or options, etc&#8230;</p>
<p>This is insanely easy in Titanium &#8211; </p>
<pre>
// Build your Cover Flow as usual... 

var images = ['option1.png','option2.png','option3.png','option4.png'];

var view = Titanium.UI.createCoverFlowView({
    images:images,
    right:400,
    left:0,
    top:70,
    height:678 // Remember - we're going to rorate 90 degrees, so this is actually width...
});

// Apply the transform.  90 to rotate Clockwise, -90 to rotate counter clockwise.
view.transform = Ti.UI.create2DMatrix().rotate(-90);

// Don't forget to add to the view...
win1.add(view);
</pre>
<p>And you&#8217;re all set.</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2011/01/titanium-vertical-coverflows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Cisco Phone Firmware without upgrading CME</title>
		<link>http://ken.bantoft.org/2010/12/upgrading-cisco-phone-firmware-without-upgrading-cme/</link>
		<comments>http://ken.bantoft.org/2010/12/upgrading-cisco-phone-firmware-without-upgrading-cme/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 05:23:13 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Hackery]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=224</guid>
		<description><![CDATA[Needed to reflash a 7961 from SIP Firmware (8.4.2) to SCCP (I snagged 8.5.3.  I know 9.x is out, but one thing at a time&#8230;). This took way longer than I thought&#8230; I&#8217;d forgotten than since I have nicely organized firmware files (eg: flash:/phone/MODEL/) that I needed to alias the tftp-server commands. So we ended [...]]]></description>
			<content:encoded><![CDATA[<p>Needed to reflash a 7961 from SIP Firmware (8.4.2) to SCCP (I snagged 8.5.3.  I know 9.x is out, but one thing at a time&#8230;).</p>
<p>This took way longer than I thought&#8230; I&#8217;d forgotten than since I have nicely organized firmware files (eg: flash:/phone/MODEL/) that I needed to alias the tftp-server commands.  So we ended up needing:<br />
<code><br />
 tftp-server flash:/phone/7941-7961/SCCP41.8-5-4S.loads alias SCCP41.8-5-4S.loads<br />
 tftp-server flash:/phone/7941-7961/apps41.8-5-4TH1-6.sbn alias apps41.8-5-4TH1-6.sbn<br />
 tftp-server flash:/phone/7941-7961/cnu41.8-5-4TH1-6.sbn alias cnu41.8-5-4TH1-6.sbn<br />
 tftp-server flash:/phone/7941-7961/cvm41sccp.8-5-4TH1-6.sbn alias cvm41sccp.8-5-4TH1-6.sbn<br />
 tftp-server flash:/phone/7941-7961/dsp41.8-5-4TH1-6.sbn alias dsp41.8-5-4TH1-6.sbn<br />
 tftp-server flash:/phone/7941-7961/jar41sccp.8-5-4TH1-6.sbn alias jar41sccp.8-5-4TH1-6.sbn<br />
 tftp-server flash:/phone/7941-7961/term41.default.loads alias term41.default.loads<br />
 tftp-server flash:/phone/7941-7961/term61.default.loads alias term61.default.loads</p>
<p>telephony-server<br />
load 7961 SCCP41.8-5-4S<br />
create cnf-files<br />
exit<br />
</code></p>
<p>And a few reboots later, happy phone on new firmware.</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/12/upgrading-cisco-phone-firmware-without-upgrading-cme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction, Part 8</title>
		<link>http://ken.bantoft.org/2010/12/construction-part-8/</link>
		<comments>http://ken.bantoft.org/2010/12/construction-part-8/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 02:15:21 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=212</guid>
		<description><![CDATA[And we&#8217;re done.  Well, nearly&#8230; just have some fine tuning on the Tunnel (see photos) and that&#8217;s about it.  I reassembled everything tonight, including the newly painted tunnel, and glued down the rest of the track + buildings.  My mother bought a few more sets, and once I saw the Airport set I had to [...]]]></description>
			<content:encoded><![CDATA[<p>And we&#8217;re done.  Well, nearly&#8230; just have some fine tuning on the Tunnel (see photos) and that&#8217;s about it.  I reassembled everything tonight, including the newly painted tunnel, and glued down the rest of the track + buildings.  My mother bought a few more sets, and once I saw the Airport set I had to add it, so those are now part of the layout.  So I&#8217;m 17 days early&#8230; not bad!</p>
<p>Some photos:</p>

<a href='http://ken.bantoft.org/2010/12/construction-part-8/layout-001/' title='The Layout and the Creator'><img width="150" height="150" src="http://ken.bantoft.org/wp-content/uploads/2010/12/layout-001-150x150.jpg" class="attachment-thumbnail" alt="To give you a sense of scale." title="The Layout and the Creator" /></a>
<a href='http://ken.bantoft.org/2010/12/construction-part-8/layout-002/' title='Completed'><img width="150" height="150" src="http://ken.bantoft.org/wp-content/uploads/2010/12/layout-002-150x150.jpg" class="attachment-thumbnail" alt="The completed layout" title="Completed" /></a>
<a href='http://ken.bantoft.org/2010/12/construction-part-8/layout-003/' title='Ken&#039;s Head Mountain'><img width="150" height="150" src="http://ken.bantoft.org/wp-content/uploads/2010/12/layout-003-150x150.jpg" class="attachment-thumbnail" alt="Ken&#039;s Head Mountain.  I moulded my face with wire mesh, and then filled it with &#039;Great Stuff&#039; spray foam." title="Ken&#039;s Head Mountain" /></a>
<a href='http://ken.bantoft.org/2010/12/construction-part-8/layout-004/' title='Knapford Station'><img width="150" height="150" src="http://ken.bantoft.org/wp-content/uploads/2010/12/layout-004-150x150.jpg" class="attachment-thumbnail" alt="Knapford Station" title="Knapford Station" /></a>
<a href='http://ken.bantoft.org/2010/12/construction-part-8/layout-005/' title='Captain'><img width="150" height="150" src="http://ken.bantoft.org/wp-content/uploads/2010/12/layout-005-150x150.jpg" class="attachment-thumbnail" alt="Captain has left the docks to look for Thomas" title="Captain" /></a>
<a href='http://ken.bantoft.org/2010/12/construction-part-8/layout-006/' title='Toplevel Right Side'><img width="150" height="150" src="http://ken.bantoft.org/wp-content/uploads/2010/12/layout-006-150x150.jpg" class="attachment-thumbnail" alt="Birds Eye view of the final module" title="Toplevel Right Side" /></a>

]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/12/construction-part-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction, Part 7</title>
		<link>http://ken.bantoft.org/2010/11/construction-part-7/</link>
		<comments>http://ken.bantoft.org/2010/11/construction-part-7/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 22:35:13 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=204</guid>
		<description><![CDATA[Time to make tracks.  Or at least, lay them out! I did the initial track layout this evening, spending a fair amount of time futzing around trying to get things right.  Van&#8217;s requirements were that all buildings/activity areas were as close to the edges as possible, and I managed to do that.  So after a [...]]]></description>
			<content:encoded><![CDATA[<p>Time to make tracks.  Or at least, lay them out!</p>
<p>I did the initial track layout this evening, spending a fair amount of time futzing around trying to get things right.  Van&#8217;s requirements were that all buildings/activity areas were as close to the edges as possible, and I managed to do that.  So after a sign off for approval, it&#8217;s time to glue things down.  I&#8217;ve got about 15% of it glued down &#8211; after the 10 pieces, I began thinking this would be faster with my nail gun.  Don&#8217;t laugh &#8211; I saw the Chuggington Train Table @ Mastermind today, and noticed that&#8217;s how they seemed to put it together&#8230;</p>
<p>But me for me, it&#8217;s No More Nails Panel + Trim Adhesive.</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/11/construction-part-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction, Part 6</title>
		<link>http://ken.bantoft.org/2010/11/construction-part-6/</link>
		<comments>http://ken.bantoft.org/2010/11/construction-part-6/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 22:30:25 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=198</guid>
		<description><![CDATA[After some slow progress, it was time to make mountains.  I finished up the mountain casting, and started painting. I used flat black spray paint to put a quick foundation coat in the areas where I wanted some definition. Next up was a few coats of clear coat to protect the mountain from small children. [...]]]></description>
			<content:encoded><![CDATA[<p>After some slow progress, it was time to make mountains.  I finished up the mountain casting, and started painting.</p>
<div id="attachment_199" class="wp-caption alignnone" style="width: 310px"><a href="http://ken.bantoft.org/wp-content/uploads/2010/11/layout11041.jpg"><img class="size-medium wp-image-199" title="Mountain - Foundation Coat" src="http://ken.bantoft.org/wp-content/uploads/2010/11/layout11041-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">Taped up and the initial black foundation coat applied.</p></div>
<p>I used flat black spray paint to put a quick foundation coat in the areas where I wanted some definition.</p>
<div id="attachment_200" class="wp-caption alignnone" style="width: 310px"><a href="http://ken.bantoft.org/wp-content/uploads/2010/11/layout11042.jpg"><img class="size-medium wp-image-200" title="Final Paint Job" src="http://ken.bantoft.org/wp-content/uploads/2010/11/layout11042-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">Finished painting... time for clear coats!</p></div>
<p>Next up was a few coats of clear coat to protect the mountain from small children.  I expect I&#8217;ll be doing repairs within 3 months, but hopefully not sooner.  The back of it will be against a wall, which should help keep things together a bit longer.</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/11/construction-part-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Update</title>
		<link>http://ken.bantoft.org/2010/10/quick-update/</link>
		<comments>http://ken.bantoft.org/2010/10/quick-update/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 20:46:22 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=191</guid>
		<description><![CDATA[Progress took a hit while I was effectively out of town for 2 weeks &#8211; however I did manage to finish all of the sanding, staining and painting. As well, all the track + buildings have shown up, sans 1 set of 8&#8243; track that won&#8217;t slow me down. I&#8217;ve built up the mountain backdrop, [...]]]></description>
			<content:encoded><![CDATA[<p>Progress took a hit while I was effectively out of town for 2 weeks &#8211; however I did manage to finish all of the sanding, staining and painting.  As well, all the track + buildings have shown up, sans 1 set of 8&#8243; track that won&#8217;t slow me down.</p>
<p>I&#8217;ve built up the mountain backdrop, and have started the slow process covering it with Claycrete.  The stuff takes at least 3 days to dry, and doesn&#8217;t cover a whole lot (I initially bought 2 pounds, but picked up 2 more today).  Grabbed spray paint so once it&#8217;s done I can spray them slate grey and then put on a few coats of clear coat.</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/10/quick-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction, Part 5</title>
		<link>http://ken.bantoft.org/2010/10/construction-part-5/</link>
		<comments>http://ken.bantoft.org/2010/10/construction-part-5/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 02:04:22 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/2010/10/construction-part-5/</guid>
		<description><![CDATA[Not much has changed, visually, however several coats of Minwax Polyacrylic have gone on the table tops. It&#8217;s a slow process, brush on, wait a few hours, lightly sand it, and then repeat. I&#8217;m hoping 3 coats will do the trick, but won&#8217;t know until tomorrow. Hit Mastermind again today to get a few Chuggington [...]]]></description>
			<content:encoded><![CDATA[<p>Not much has changed, visually, however several coats of Minwax Polyacrylic have gone on the table tops.  It&#8217;s a slow process, brush on, wait a few hours, lightly sand it, and then repeat.  I&#8217;m hoping 3 coats will do the trick, but won&#8217;t know until tomorrow.  </p>
<p>Hit Mastermind again today to get a few Chuggington pieces, as the height of the trains seems to be a bit taller than the Thomas steamers.  Need to compare the Over/Under kit i picked up for clearance against the Thomas ramps and make sure everything will fit.  Also completed the boys Christmas shopping while I was there <img src='http://ken.bantoft.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/10/construction-part-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction, Part 4</title>
		<link>http://ken.bantoft.org/2010/10/construction-part-4/</link>
		<comments>http://ken.bantoft.org/2010/10/construction-part-4/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 01:44:50 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=186</guid>
		<description><![CDATA[Chapters shipping part of my order&#8230; however I now feel I should open a Thomas store.  Mastermind started selling the Chuggington Woodend Railway line today (Toys R&#8217; Us has the incompatible Die-cast version), so Van took Preston as promised, and they came home with the Roundhouse and Brewster.  So now I need to integrate that [...]]]></description>
			<content:encoded><![CDATA[<p>Chapters shipping part of my order&#8230; however I now feel I should open a Thomas store.  <a href="http://www.mastermind.ca">Mastermind</a> started selling the Chuggington Woodend Railway line today (Toys R&#8217; Us has the incompatible Die-cast version), so Van took Preston as promised, and they came home with the Roundhouse and Brewster.  So now I need to integrate that into the track planning &#8211; good thing it was now vs. 2 weeks when I&#8217;d have all the track glued down!</p>
<div id="attachment_187" class="wp-caption alignnone" style="width: 210px"><a href="http://ken.bantoft.org/wp-content/uploads/2010/10/layout09301.jpg"><img class="size-medium wp-image-187" title="Sandy Beaches?" src="http://ken.bantoft.org/wp-content/uploads/2010/10/layout09301-200x300.jpg" alt="" width="200" height="300" /></a><p class="wp-caption-text">The Beach... </p></div>
<p>On the scenery front, I finished putting down the &#8216;sand&#8217;, and then Polyurathaning that too, so it doesn&#8217;t flake off as easy.  I also bought a few cans of Minwax Polycrylic &#8211; so I think I&#8217;ll give the tops a few coats of that in an attempt to protect them from the food and drink that&#8217;s surely going to end up on top of this.  Maybe I need to build in cup holders? Hmm&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/10/construction-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Construction, Part 3</title>
		<link>http://ken.bantoft.org/2010/09/construction-part-3/</link>
		<comments>http://ken.bantoft.org/2010/09/construction-part-3/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 23:39:56 +0000</pubDate>
		<dc:creator>ken</dc:creator>
				<category><![CDATA[Trains]]></category>

		<guid isPermaLink="false">http://ken.bantoft.org/?p=179</guid>
		<description><![CDATA[Painting continued today with rapid progress.  However, I did make one mistake &#8211; the sample size paints from Home Depot, which covered about 25 sq feet on drywall, only covered about 16 sq feet on the MDF.  MDF seems to like to suck up that 1st coat of paint.  So off to HD to grab [...]]]></description>
			<content:encoded><![CDATA[<p>Painting continued today with rapid progress.  However, I did make one mistake &#8211; the sample size paints from Home Depot, which covered about 25 sq feet on drywall, only covered about 16 sq feet on the MDF.  MDF seems to like to suck up that 1st coat of paint.  So off to HD to grab a quart, of which I&#8217;m now 1/2 through.  I&#8217;ve finished 2 coats on everything, and 3 coats on the top with the &#8216;water&#8217;.</p>
<div id="attachment_180" class="wp-caption alignnone" style="width: 310px"><a href="http://ken.bantoft.org/wp-content/uploads/2010/09/layout-1.jpg"><img class="size-medium wp-image-180" title="Layout - Painted" src="http://ken.bantoft.org/wp-content/uploads/2010/09/layout-1-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">1st piece of the puzzle - all painted up!</p></div>
<p>I still need to sand + stain the other parts, but I&#8217;ll put the 3rd coat on them tomorrow.  Chapters shows that my track won&#8217;t arrive until Oct 11th, so I&#8217;ve got lots of time to finish the paint + stain, and then final assembly of the pieces.  Next up, the 4&#8242; bridge piece.  Part of me wants to scratch build it from balsa wood, but the realist in me suspects that&#8217;ll last all of 2 minutes before one of the boys breaks it.  I suppose steel would be a good choice, and then I&#8217;d have an excuse to get lots of new tools&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ken.bantoft.org/2010/09/construction-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

