<?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>jim arnold &#187; Uncategorized</title>
	<atom:link href="http://jimarnold.net/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimarnold.net/blog</link>
	<description></description>
	<lastBuildDate>Fri, 27 Jan 2012 18:54:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Remove title from WordPress Home page</title>
		<link>http://jimarnold.net/blog/2011/12/remove-title-from-wordpress-home-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=remove-title-from-wordpress-home-page</link>
		<comments>http://jimarnold.net/blog/2011/12/remove-title-from-wordpress-home-page/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 06:00:58 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimarnold.net/blog/?p=1194</guid>
		<description><![CDATA[<p>To remove the page title in Twenty Eleven theme on front page only, add the following &#8216;if&#8217; code to file &#8216;content_page.php&#8217;:</p> <p>View the page in edit mode to see the code.</p> <p></p> <p></p> <p>Then on your front page you can make your own header title with the proper css style like this:</p> Welcome to my [...]]]></description>
			<content:encoded><![CDATA[<p>To remove the page title in Twenty Eleven theme on front page only, add the following &#8216;if&#8217; code to file &#8216;content_page.php&#8217;:</p>
<p>View the page in edit mode to see the code.</p>
<p><?php if ( !is_front_page () ) : ?></p>
<h1 class="entry-title"><?php the_title(); ?></h1>
<p><?php endif; ?></p>
<p>Then on your front page you can make your own header title with the proper css style like this:</p>
<h1 class="entry-title">Welcome to my homepage</h1>
<p>You should of course make a child theme with those changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/12/remove-title-from-wordpress-home-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kitchen help</title>
		<link>http://jimarnold.net/blog/2011/11/kitchen-help/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kitchen-help</link>
		<comments>http://jimarnold.net/blog/2011/11/kitchen-help/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 14:43:12 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimarnold.net/blog/?p=1169</guid>
		<description><![CDATA[<p style="text-align: center;"><a href="http://jimarnold.net/blog/wp-content/uploads/2011/11/IMG_7756.jpg"></a></p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://jimarnold.net/blog/wp-content/uploads/2011/11/IMG_7756.jpg"><img class="aligncenter size-large wp-image-1170" src="http://jimarnold.net/blog/wp-content/uploads/2011/11/IMG_7756-640x492.jpg" alt="" width="584" height="448" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/11/kitchen-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove &#8220;protected&#8221; from a protected post</title>
		<link>http://jimarnold.net/blog/2011/11/remove-protected-from-a-protected-post/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=remove-protected-from-a-protected-post</link>
		<comments>http://jimarnold.net/blog/2011/11/remove-protected-from-a-protected-post/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 06:34:03 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1134</guid>
		<description><![CDATA[<p>Add this code to functions.php</p> <p>function the_title_trim($title) {<br /> $title = attribute_escape($title);<br /> $findthese = array(<br /> &#8216;#Protected:#&#8217;,<br /> &#8216;#Private:#&#8217;<br /> );<br /> $replacewith = array(<br /> &#8221;, // What to replace &#8220;Protected:&#8221; with<br /> &#8221; // What to replace &#8220;Private:&#8221; with<br /> );<br /> $title = preg_replace($findthese, $replacewith, $title);<br /> return $title;<br /> }<br [...]]]></description>
			<content:encoded><![CDATA[<p>Add this code to functions.php</p>
<p>function the_title_trim($title) {<br />
	$title = attribute_escape($title);<br />
	$findthese = array(<br />
		&#8216;#Protected:#&#8217;,<br />
		&#8216;#Private:#&#8217;<br />
	);<br />
	$replacewith = array(<br />
		&#8221;, // What to replace &#8220;Protected:&#8221; with<br />
		&#8221; // What to replace &#8220;Private:&#8221; with<br />
	);<br />
	$title = preg_replace($findthese, $replacewith, $title);<br />
	return $title;<br />
}<br />
add_filter(&#8216;the_title&#8217;, &#8216;the_title_trim&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/11/remove-protected-from-a-protected-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Custom URL to your WordPress Gallery Images</title>
		<link>http://jimarnold.net/blog/2011/10/add-a-custom-url-to-your-wordpress-gallery-images/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-a-custom-url-to-your-wordpress-gallery-images</link>
		<comments>http://jimarnold.net/blog/2011/10/add-a-custom-url-to-your-wordpress-gallery-images/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 05:30:41 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1130</guid>
		<description><![CDATA[<p><a href="http://geekeemedia.com/wordpress/add-a-custom-url-to-your-wordpress-gallery-images/">Great hack</a></p> <p>add link=&#8221;custom_url&#8221; to the gallery code on the page.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://geekeemedia.com/wordpress/add-a-custom-url-to-your-wordpress-gallery-images/">Great hack</a></p>
<p>add link=&#8221;custom_url&#8221; to the gallery code on the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/10/add-a-custom-url-to-your-wordpress-gallery-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track a stolen laptop or cell phone with the Prey Project</title>
		<link>http://jimarnold.net/blog/2011/08/track-a-stolen-laptop-or-cell-phone-with-the-prey-project/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=track-a-stolen-laptop-or-cell-phone-with-the-prey-project</link>
		<comments>http://jimarnold.net/blog/2011/08/track-a-stolen-laptop-or-cell-phone-with-the-prey-project/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 04:40:41 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1111</guid>
		<description><![CDATA[<p>The <a href="http://preyproject.com/" target="_blank">Prey Project</a> software is insanely great. Once installed on a laptop or Android phone (iPhone and iPad is yet to come) you can track the device if it&#8217;s stolen. The service is free for registering up to three devices. For $5 a month a pro account will unlock more feature. Plans scale [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://preyproject.com/" target="_blank">Prey Project</a> software is insanely great. Once installed on a laptop or Android phone (iPhone and iPad is yet to come) you can track the device if it&#8217;s stolen. The service is free for registering up to three devices. For $5 a month a pro account will unlock more feature. Plans scale to $400 a month for tracking up to 500 devices.</p>
<p>To activate the service log into your control panel at the Prey site and mark the phone or laptop as missing. A SMS text to your phone with a phrase of your choosing will turn on the service.</p>
<p>I tested my phone and laptop by marking them as missing. The free account will keep the last ten reports, allowing the frequency interval to be set from 10 to 40 minutes between reports, before overwriting the oldest report. </p>
<p>Within a minute of activating the service on the phone I had an email with a link pinpointing my house on a Google map. The laptop report pinpointed the house two doors down, but it had information even more valuable: there I was captured by my own web camera along with the screen shot of what was on my computer screen at the time. That&#8217;s not all. The laptop report included the active connections, the wifi connection device and a complete traceroute to the computer.</p>
<p>Prey&#8217;s website is simple to use. The software is also open source and lightweight. On the Mac (and Linux) Prey doesn’t use any memory-resident agents so it uses no memory until the program is actually run. Windows requires around 5 megs of RAM. </p>
<p>Below is a short intro video. Watch it and then install Prey. It&#8217;s insanely great.</p>
<p><iframe src="http://player.vimeo.com/video/18728980?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0"></iframe>
<p><a href="http://vimeo.com/18728980">Prey Project introduction</a> from <a href="http://vimeo.com/user1821482">Carlos Yaconi</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/08/track-a-stolen-laptop-or-cell-phone-with-the-prey-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a Mac to configure a Alix Netgate firewall router running pfSense</title>
		<link>http://jimarnold.net/blog/2011/05/configure-a-pfsense-alix-netgate-firewall-router-with-a-mac/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=configure-a-pfsense-alix-netgate-firewall-router-with-a-mac</link>
		<comments>http://jimarnold.net/blog/2011/05/configure-a-pfsense-alix-netgate-firewall-router-with-a-mac/#comments</comments>
		<pubDate>Sun, 29 May 2011 04:45:18 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[pfsense]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1077</guid>
		<description><![CDATA[<p>A few years back I was running pfSense on an old PC and posted instruction on <a href="http://jimarnold.net/blog/2008/10/building-a-home-firewall-router-with-pfsense/">how to build your own machine</a>. We&#8217;ve since moved to a new house where a small, silent firewall/router was desired. I purchased a <a href="http://store.netgate.com/-P40.aspx">Netgate Alix.2D13 board, enclosure and power supply.</a> </p> <p>If you are running a Mac, [...]]]></description>
			<content:encoded><![CDATA[<p>A few years back I was running pfSense on an old PC and posted instruction on <a href="http://jimarnold.net/blog/2008/10/building-a-home-firewall-router-with-pfsense/">how to build your own machine</a>. We&#8217;ve since moved to a new house where a small, silent firewall/router was desired. I purchased a <a href="http://store.netgate.com/-P40.aspx">Netgate Alix.2D13 board, enclosure and power supply.</a> </p>
<p>If you are running a Mac, see the full post for details.</p>
<p><span id="more-1077"></span></p>
<p>First, you will need a compactflash card. I am running a 2GB Kingston 50X CompactFlash Elite Pro. When I recently upgraded to pfSense 2.0 I tried to use a Lexar 4GB 133x card thinking it might be faster. In this application the 50X, smaller Kingston was faster to load. Also note you must download the correct version to match the size of your card. Look for the 1G, 2G or 4G version to match your 1G, 2G or 4G compactflash card.</p>
<p>Download the correct version of pfSense to match the size of your card. Place the file on your desktop.</p>
<p>The Netgate Alix board and other embedded solutions will need to run over console mode. You will need a female to female null modem cable and something like the GUC232A <a href="http://www.google.com/search?hl=en-US&#038;q=guc232a&#038;rls=0.7.5&#038;client=stainless&#038;ie=UTF-8">USB to Serial RS-232 Adapter</a>. Also grab this <a href="http://sourceforge.net/projects/osx-pl2303/">pl2303 open source driver</a> for the adapter.</p>
<p>Plug your CF card into your mac via a card reader. Open Disk Utility and select the partition of the CF card what will allow you to unmount the card. Then unmount the card. It will now be grayed out. Select the main partition of the CF card and select the info button. Look for Disk Identifier. In my case it was disk7.</p>
<p>Open the terminal and cd to the desktop and run this command, substituting your file name and disk identifier:</p>
<p>gzcat pfSense-2.0-RC1-2g-i386-20110226-1633-nanobsd.img.gz | dd of=/dev/disk7 bs=16k</p>
<p>Depending on your card this could take up to 15 minutes. When the file has been exploded onto your card the terminal will report something like this:</p>
<p>244615+1 records in<br />
244615+1 records out<br />
4007775744 bytes transferred in 820.102123 secs (4886923 bytes/sec)</p>
<p>If the mac wants to initialize the card click ignore.</p>
<p>Insert the CF card into your Netgear Alix board, and plug in your WAN and LAN ethernet cables. Hook up your null modem and USB to serial cables, then power up the board.</p>
<p>Run ls -l /dev/tty* in the terminal and look for an entry that contains PL2303. Mine shows up as tty.PL2303-00002006</p>
<p>Run this command to connect to the firewall/router:</p>
<p><em>screen /dev/tty.PL2303-00002006 9600</em></p>
<p>You may need to enter in a few line returns to get things started. Now you should be able to configure your firewall/router.</p>
<p>To quit the screen app, type control-a, then control-.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/05/configure-a-pfsense-alix-netgate-firewall-router-with-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shrine and Portrait</title>
		<link>http://jimarnold.net/blog/2011/05/shrine-and-portrait/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shrine-and-portrait</link>
		<comments>http://jimarnold.net/blog/2011/05/shrine-and-portrait/#comments</comments>
		<pubDate>Sat, 28 May 2011 04:54:15 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fuji X100]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1073</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_1074" class="wp-caption aligncenter" style="width: 630px"><a href="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0483.jpg"><img src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0483-620x382.jpg" alt="" title="" width="620" height="382" class="size-large wp-image-1074" /></a><p class="wp-caption-text">Shrine and Portrait</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/05/shrine-and-portrait/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green House: Little Italy, Cleveland</title>
		<link>http://jimarnold.net/blog/2011/05/green-house-little-italy-cleveland/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=green-house-little-italy-cleveland</link>
		<comments>http://jimarnold.net/blog/2011/05/green-house-little-italy-cleveland/#comments</comments>
		<pubDate>Tue, 24 May 2011 01:45:39 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fuji X100]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1067</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_1068" class="wp-caption aligncenter" style="width: 410px"><a href="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0432.jpg"><img src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0432.jpg" alt="" title="" width="400" class="size-full wp-image-1068" /></a><p class="wp-caption-text">Green house. Little Italy, Cleveland. Click to enlarge.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/05/green-house-little-italy-cleveland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First images with the Fuji X100</title>
		<link>http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=first-images-with-the-fuji-x100</link>
		<comments>http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/#comments</comments>
		<pubDate>Wed, 11 May 2011 14:47:37 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fuji X100]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=1045</guid>
		<description><![CDATA[<p>Attended a first communion mass, using the Fuji X100 to document the kids getting their photos taken by the professional photographer. All the inside images (except the priest portrait, which was 800 iso) were taken at 1600 iso. The big photo below was shot at f2/1600iso. All images are RAW and converted with Lightroom.</p> <p>Some [...]]]></description>
			<content:encoded><![CDATA[<p>Attended a first communion mass, using the Fuji X100 to document the kids getting their photos taken by the professional photographer. All the inside images (except the priest portrait, which was 800 iso) were taken at 1600 iso. The big photo below was shot at f2/1600iso. All images are RAW and converted with Lightroom.</p>
<p>Some quirks with the camera to get used to. But the experience using the OVF is very Leica like, really freeing me up from the tunnel of a DSLR.</p>
<p><a href="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0116.jpg"><img src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0116-620x411.jpg" alt="" title="DSCF0116" width="620" height="411" class="aligncenter size-large wp-image-1047" /></a></p>

<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0213/' title='DSCF0213'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0213-150x150.jpg" class="attachment-thumbnail" alt="DSCF0213" title="DSCF0213" /></a>
<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0116/' title='DSCF0116'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0116-150x150.jpg" class="attachment-thumbnail" alt="DSCF0116" title="DSCF0116" /></a>
<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0177/' title='DSCF0177'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0177-150x150.jpg" class="attachment-thumbnail" alt="DSCF0177" title="DSCF0177" /></a>
<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0196/' title='DSCF0196'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0196-150x150.jpg" class="attachment-thumbnail" alt="DSCF0196" title="DSCF0196" /></a>
<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0226/' title='DSCF0226'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0226-150x150.jpg" class="attachment-thumbnail" alt="DSCF0226" title="DSCF0226" /></a>
<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0231/' title='DSCF0231'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0231-150x150.jpg" class="attachment-thumbnail" alt="DSCF0231" title="DSCF0231" /></a>
<a href='http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/dscf0187/' title='DSCF0187'><img width="150" height="150" src="http://jimarnold.net/blog/wp-content/uploads/2011/05/DSCF0187-150x150.jpg" class="attachment-thumbnail" alt="DSCF0187" title="DSCF0187" /></a>

]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/05/first-images-with-the-fuji-x100/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kentwood Restaurant &#8211; Kent, Ohio</title>
		<link>http://jimarnold.net/blog/2011/04/kentwood-restaurant-kent-ohio/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kentwood-restaurant-kent-ohio</link>
		<comments>http://jimarnold.net/blog/2011/04/kentwood-restaurant-kent-ohio/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 23:41:24 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jimarnold.org/blog/?p=989</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_990" class="wp-caption aligncenter" style="width: 630px"><a href="http://jimarnold.net/blog/wp-content/uploads/2011/04/IMG_7323.jpg"><img src="http://jimarnold.net/blog/wp-content/uploads/2011/04/IMG_7323.jpg" alt="" title="" width="620" height="414" class="size-full wp-image-990" /></a><p class="wp-caption-text">Image 7323</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jimarnold.net/blog/2011/04/kentwood-restaurant-kent-ohio/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/

Page Caching using disk: basic

Served from: www.jimarnold.org @ 2012-02-07 22:01:03 -->
