<?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>rigsb.net</title>
	<atom:link href="http://rigsb.net/feed" rel="self" type="application/rss+xml" />
	<link>http://rigsb.net</link>
	<description>News for our friends and family.</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:36:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AirPrint enable your legacy printer</title>
		<link>http://rigsb.net/2012/01/10/airprint-enable-your-legacy-printer</link>
		<comments>http://rigsb.net/2012/01/10/airprint-enable-your-legacy-printer#comments</comments>
		<pubDate>Tue, 10 Jan 2012 23:00:50 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[AirPrint]]></category>
		<category><![CDATA[AirPrint-ready]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple computer]]></category>
		<category><![CDATA[arstechnica]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[Bonjour]]></category>
		<category><![CDATA[bonjour service]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[Gutenprint]]></category>
		<category><![CDATA[hp laserjet 4]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[ipads]]></category>
		<category><![CDATA[iphones]]></category>
		<category><![CDATA[Lantronix]]></category>
		<category><![CDATA[LaserJet]]></category>
		<category><![CDATA[launchctl]]></category>
		<category><![CDATA[launchd]]></category>
		<category><![CDATA[LaunchDaemons]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac mini]]></category>
		<category><![CDATA[networked printer]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[office printer]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[print server]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=663</guid>
		<description><![CDATA[&#160; Objective Share our HP LaserJet 4 with our iPads and iPhones. Notes If you&#8217;re using iOS devices for any type of business you&#8217;ll probably have to print a document or two eventually. Unfortunately, in order to do so via &#8230; <a href="http://rigsb.net/2012/01/10/airprint-enable-your-legacy-printer">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 279px"><a href="http://rigsb.net/wp-content/uploads/2012/01/20120110-173746.jpg"><img title="My LaserJet 4 working on my iPhone" src="http://rigsb.net/wp-content/uploads/2012/01/20120110-173746.jpg" alt="My LaserJet 4 working on my iPhone" width="269" height="403" /></a><p class="wp-caption-text">My LaserJet 4 working on my iPhone</p></div>
<p>&nbsp;</p>
<h2>Objective</h2>
<p>Share our HP LaserJet 4 with our iPads and iPhones.</p>
<h2>Notes</h2>
<p>If you&#8217;re using iOS devices for any type of business you&#8217;ll probably have to print a document or two eventually. Unfortunately, in order to do so via conventional means, you&#8217;ll have to buy a new printer that is AirPrint-ready or $20 software.</p>
<p>Today, while reading arstechnica.com I came across some <a href="http://arstechnica.com/apple/news/2012/01/lantronix-xprintserver-makes-every-network-printer-airprint-ready.ars" target="_blank">news from CES that Lantronix was producing an AirPrint print server</a> to make any networked printer AirPrint-ready. It&#8217;s going to cost $149. That prompted me to share my method for making our perfectly good, networked LaserJet 4, AirPrint-ready.</p>
<p>You&#8217;ll need a Mac. I&#8217;m still running OS 10.6.8 on my Mac Mini. You also need to share your networked printer from your Mac.</p>
<ul>
<li>Create a bash script with the command to create a new Bonjour service that supports AirPrint: /somewhere/airprint-hack.sh</li>
</ul>
<pre>#!/bin/bash
dns-sd -R "airprint LaserJet 4 @ mini" _ipp._tcp.,_universal . 631 txtvers=1 qtotal=1 rp=printers/LaserJet_4 ty="HP LaserJet 4 - Gutenprint v5.2.3" note="Office" printer-state=3 printer-type=0x1016 Transparent=T Binary=T Fax=F Color=F Duplex=T Staple=F Copies=F Collate=F Punch=F pdl=application/pdf URF=none</pre>
<ul>
<li>Create a new plist file that executes the script at startup: /Library/LaunchDaemons/local.mini.airprint-hack.plist</li>
</ul>
<pre><!--?<span class="hiddenSpellError" pre=""-->&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0"&gt;
&lt;dict&gt;
        &lt;key&gt;Label&lt;/key&gt;
        &lt;string&gt;local.mini.airprint-hack&lt;/string&gt;
        &lt;key&gt;ProgramArguments&lt;/key&gt;
        &lt;array&gt;
                &lt;string&gt;/Library/LaunchDaemons/airprint-hack.sh&lt;/string&gt;
        &lt;/array&gt;
        &lt;key&gt;LowPriorityIO&lt;/key&gt;
        &lt;true/&gt;
        &lt;key&gt;Nice&lt;/key&gt;
        &lt;integer&gt;1&lt;/integer&gt;
        &lt;key&gt;UserName&lt;/key&gt;
        &lt;string&gt;root&lt;/string&gt;
        &lt;key&gt;RunAtLoad&lt;/key&gt;
        &lt;true/&gt;
        &lt;key&gt;Keeplive&lt;/key&gt;
        &lt;true/&gt;
&lt;/dict&gt;
&lt;/plist&gt;</pre>
<ul>
<li>Load the plist into launchd</li>
</ul>
<pre> sudo launchctl load /Library/LaunchDaemons/local.mini.airprint-hack.plist</pre>
<ul>
<li>It should load dynamically but I restarted to test that the printer was available via AirPrint at startup.</li>
</ul>
<h2>Hints</h2>
<ul>
<li>I used <a href="http://www.tildesoft.com/" target="_blank">Bonjour Browser</a> to figure out what the Bonjour service for my shared LaserJet 4 looks like. Then, created the dns-sd command to insert into the bash script based on the Bonjour Browser output.</li>
<li>Using this method, you&#8217;ll end up with two Bonjour services for the same printer. I&#8217;m not sure what the impact is since I only have the one Mac.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2012/01/10/airprint-enable-your-legacy-printer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas from the new house</title>
		<link>http://rigsb.net/2011/12/24/merry-christmas-from-the-new-house</link>
		<comments>http://rigsb.net/2011/12/24/merry-christmas-from-the-new-house#comments</comments>
		<pubDate>Sat, 24 Dec 2011 16:32:26 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Christmas Eve]]></category>
		<category><![CDATA[merry christmas]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=652</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0024_002.jpg.html" title="DSC_0024"><img src="http://rigsb.net/gallery/d/5529-2/DSC_0024_002.jpg" width="286" height="400" id="IFid2" class="ImageFrame_none" alt="DSC_0024"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/12/24/merry-christmas-from-the-new-house/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overdue Recognition</title>
		<link>http://rigsb.net/2011/08/07/overdue-recognition</link>
		<comments>http://rigsb.net/2011/08/07/overdue-recognition#comments</comments>
		<pubDate>Sun, 07 Aug 2011 18:00:51 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[bronze star]]></category>
		<category><![CDATA[family reunion]]></category>
		<category><![CDATA[granddaddy ollie]]></category>
		<category><![CDATA[new market]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[silvious]]></category>
		<category><![CDATA[silvious family reunion]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=641</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0077_003.jpg.html" title="DSC_0077"><img src="http://rigsb.net/gallery/d/5464-2/DSC_0077_003.jpg" width="286" height="400" id="IFid4" class="ImageFrame_none" alt="DSC_0077"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/08/07/overdue-recognition/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sunset in July</title>
		<link>http://rigsb.net/2011/08/07/sunset-in-july</link>
		<comments>http://rigsb.net/2011/08/07/sunset-in-july#comments</comments>
		<pubDate>Sun, 07 Aug 2011 16:55:17 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[311]]></category>
		<category><![CDATA[ocean city]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[sunset]]></category>
		<category><![CDATA[sunset in july]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=637</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0024_001.jpg.html" title="DSC_0024"><img src="http://rigsb.net/gallery/d/5479-2/DSC_0024_001.jpg" width="400" height="286" id="IFid6" class="ImageFrame_none" alt="DSC_0024"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/08/07/sunset-in-july/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OC Air Show 2011 Photos</title>
		<link>http://rigsb.net/2011/06/14/oc-air-show-2011-photos</link>
		<comments>http://rigsb.net/2011/06/14/oc-air-show-2011-photos#comments</comments>
		<pubDate>Wed, 15 Jun 2011 02:34:45 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Air]]></category>
		<category><![CDATA[oc air show]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Show]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=628</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0253.jpg.html" title="DSC_0253"><img src="http://rigsb.net/gallery/d/5378-2/DSC_0253.jpg" width="286" height="400" id="IFid8" class="ImageFrame_none" alt="DSC_0253"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/06/14/oc-air-show-2011-photos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday, Austiiiiiin Rigsby!</title>
		<link>http://rigsb.net/2011/03/30/happy-birthday-austiiiiiin-rigsby</link>
		<comments>http://rigsb.net/2011/03/30/happy-birthday-austiiiiiin-rigsby#comments</comments>
		<pubDate>Wed, 30 Mar 2011 16:54:05 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[happy birthday]]></category>
		<category><![CDATA[rigsb.net]]></category>
		<category><![CDATA[wes johnson]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=602</guid>
		<description><![CDATA[Happy Birthday, Austiiiiiin Rigsby! Thanks, Wes Johnson. Happy_BDay_Austin_WesJohnson-20110312-2159]]></description>
			<content:encoded><![CDATA[<p><a href="http://rigsb.net/wp-content/uploads/2011/03/Happy_BDay_Austin_WesJohnson-20110312-2159.m4v">Happy Birthday, Austiiiiiin Rigsby! Thanks, Wes Johnson.</a></p>
<p><a href="http://rigsb.net/wp-content/uploads/2011/03/Happy_BDay_Austin_WesJohnson-20110312-2159.ogv">Happy_BDay_Austin_WesJohnson-20110312-2159</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/03/30/happy-birthday-austiiiiiin-rigsby/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://rigsb.net/wp-content/uploads/2011/03/Happy_BDay_Austin_WesJohnson-20110312-2159.m4v" length="114746" type="video/mp4" />
<enclosure url="http://rigsb.net/wp-content/uploads/2011/03/Happy_BDay_Austin_WesJohnson-20110312-2159.ogv" length="3554934" type="video/ogg" />
		</item>
		<item>
		<title>Play ball! Austin&#8217;s 3rd Birthday Party</title>
		<link>http://rigsb.net/2011/03/27/play-ball-austins-3rd-birthday-party</link>
		<comments>http://rigsb.net/2011/03/27/play-ball-austins-3rd-birthday-party#comments</comments>
		<pubDate>Sun, 27 Mar 2011 18:30:11 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[birthday]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=597</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0019_005.jpg.html" title="DSC_0019"><img src="http://rigsb.net/gallery/d/5312-2/DSC_0019_005.jpg" width="400" height="286" id="IFid10" class="ImageFrame_none" alt="DSC_0019"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/03/27/play-ball-austins-3rd-birthday-party/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grilling in near blizzard conditions&#8230;</title>
		<link>http://rigsb.net/2011/01/26/grilling-in-near-blizzard-conditions</link>
		<comments>http://rigsb.net/2011/01/26/grilling-in-near-blizzard-conditions#comments</comments>
		<pubDate>Wed, 26 Jan 2011 23:58:31 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[blizzard]]></category>
		<category><![CDATA[Eric]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[frederick]]></category>
		<category><![CDATA[frederick md]]></category>
		<category><![CDATA[grill]]></category>
		<category><![CDATA[grilling]]></category>
		<category><![CDATA[steak]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=592</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0032_005.jpg.html" title="DSC_0032"><img src="http://rigsb.net/gallery/d/5291-2/DSC_0032_005.jpg" width="286" height="400" id="IFid12" class="ImageFrame_none" alt="DSC_0032"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2011/01/26/grilling-in-near-blizzard-conditions/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Merry Christmas</title>
		<link>http://rigsb.net/2010/12/25/merry-christmas</link>
		<comments>http://rigsb.net/2010/12/25/merry-christmas#comments</comments>
		<pubDate>Sat, 25 Dec 2010 18:08:27 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Christmas Day]]></category>
		<category><![CDATA[Christmas Eve]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=582</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0012_007.jpg.html" title="DSC_0012"><img src="http://rigsb.net/gallery/d/5171-2/DSC_0012_007.jpg" width="268" height="400" id="IFid14" class="ImageFrame_none" alt="DSC_0012"/></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2010/12/25/merry-christmas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NHL Alumni Game in Hagerstown</title>
		<link>http://rigsb.net/2010/09/27/nhl-alumni-game-in-hagerstown</link>
		<comments>http://rigsb.net/2010/09/27/nhl-alumni-game-in-hagerstown#comments</comments>
		<pubDate>Tue, 28 Sep 2010 02:48:45 +0000</pubDate>
		<dc:creator>Eric Rigsby</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[General Information]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Hagerstown]]></category>
		<category><![CDATA[Hagerstown Ice & Sports Complex]]></category>
		<category><![CDATA[Hockey]]></category>
		<category><![CDATA[Laura]]></category>
		<category><![CDATA[nhl]]></category>
		<category><![CDATA[nhl alumni]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://rigsb.net/?p=517</guid>
		<description><![CDATA[I featured some of the photos Laura took in my write up on my hockey blog, pucknhockey.com.]]></description>
			<content:encoded><![CDATA[<p>I featured some of the photos Laura took in <a href="http://pucknhockey.com/2010/09/27/nhl-alumni-game-recap/" target="_blank">my write up</a> on my hockey blog, <a href="http://pucknhockey.com" target="_blank">pucknhockey.com</a>.</p>
<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0014_012.jpg.html" title="DSC_0014"><img src="http://rigsb.net/gallery/d/5074-2/DSC_0014_012.jpg" width="268" height="400" id="IFid18" class="ImageFrame_none" alt="DSC_0014"/></a></div>
</div>
<div class="g2image_centered">
<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0069_002.jpg.html" title="DSC_0069"><img src="http://rigsb.net/gallery/d/5035-2/DSC_0069_002.jpg" width="400" height="268" id="IFid19" class="ImageFrame_none" alt="DSC_0069"/></a></div>
</div>
<div class="g2image_centered">
<div class="wpg2tag-image"><a href="http://rigsb.net/v/DSC_0266_001.jpg.html" title="DSC_0266"><img src="http://rigsb.net/gallery/d/4996-2/DSC_0266_001.jpg" width="400" height="268" id="IFid20" class="ImageFrame_none" alt="DSC_0266"/></a></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://rigsb.net/2010/09/27/nhl-alumni-game-in-hagerstown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

