<?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>Bryan&#039;s Blog</title>
	<atom:link href="http://themayesfamily.com/blogs/b/feed/" rel="self" type="application/rss+xml" />
	<link>http://themayesfamily.com/blogs/b</link>
	<description>A place to write stuff.</description>
	<lastBuildDate>Tue, 22 Nov 2011 02:07:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Mercurial and 404</title>
		<link>http://themayesfamily.com/blogs/b/2011/11/mercurial-and-404/</link>
		<comments>http://themayesfamily.com/blogs/b/2011/11/mercurial-and-404/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 02:06:48 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[Rambling]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=89</guid>
		<description><![CDATA[I just started working with Mercurial source control at my new job. So far so good. I moved from developing on my Mac to working on Ubuntu 10.04 LTS. I installed the default instance of Mercurial and got the out &#8230; <a href="http://themayesfamily.com/blogs/b/2011/11/mercurial-and-404/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just started working with Mercurial source control at my new job.  So far so good.  I moved from developing on my Mac to working on Ubuntu 10.04 LTS.  I installed the default instance of Mercurial and got the out of the box version 1.4 ( or there abouts ).  As I tried to clone a repo that cloned just fine on the Mac I kept on getting this error:</p>
<p>   <code>abort: HTTP Error 404: Not Found</code></p>
<p>I searched around a bit ( I still can&#8217;t bring myself to use the verb Googled  as I was a loyal Yahoo for 11 years ) and wasn&#8217;t able to find anything that directly solved my problem.  I compared the version I had running on Mac which was ~2.0.  I started to wonder if the version skew was the culprit.  I up&#8217;d my Ubuntu version using the instructions <a href="http://icephoenix.us/linuxunix/installing-mercurial-1-5-or-1-6-on-ubuntu-lucid-lynx-10-04/">here</a>: </p>
<ul>
<li>sudo add-apt-repository ppa:mercurial-ppa/releases</li>
<li>sudo apt-get update</li>
<li>sudo apt-get install mercurial</li>
</ul>
<p>I tried again and Viola&#8230; it worked.  Hope this helps others.</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2011/11/mercurial-and-404/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove .svn files recursively</title>
		<link>http://themayesfamily.com/blogs/b/2011/08/remove-svn-files-recursively/</link>
		<comments>http://themayesfamily.com/blogs/b/2011/08/remove-svn-files-recursively/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 18:29:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=82</guid>
		<description><![CDATA[I keep having to look this up again&#8230;.. find . -type f -name &#8220;*.svn&#8221; -exec rm &#8216;{}&#8217; \; -print Thanks to: http://blog.simongregory.com/12/recursively-remove-svn-files/]]></description>
			<content:encoded><![CDATA[<p>I keep having to look this up again&#8230;..</p>
<p>find . -type f -name &#8220;*.svn&#8221; -exec rm &#8216;{}&#8217; \; -print</p>
<p>Thanks to: http://blog.simongregory.com/12/recursively-remove-svn-files/</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2011/08/remove-svn-files-recursively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rest Client for Firefox &#8211; Sample POST Request</title>
		<link>http://themayesfamily.com/blogs/b/2011/05/rest-client-for-firefox-sample-post-request/</link>
		<comments>http://themayesfamily.com/blogs/b/2011/05/rest-client-for-firefox-sample-post-request/#comments</comments>
		<pubDate>Tue, 24 May 2011 00:40:40 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=73</guid>
		<description><![CDATA[I was having fits getting the REST Client for FIrefox to let me create a post body where PHP would recognize the parameters I was trying to post. I added them to the &#8220;request body&#8221; but my REST server wasn&#8217;t &#8230; <a href="http://themayesfamily.com/blogs/b/2011/05/rest-client-for-firefox-sample-post-request/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was having fits getting the REST Client for FIrefox to let me create a post body where PHP would recognize the parameters I was trying to post.  I added them to the &#8220;request body&#8221; but my REST server wasn&#8217;t showing that I was even posting anything.</p>
<p>I found out that you have to set the &#8220;request header&#8221; section of the Firefox plugin to have a &#8220;name&#8221; = &#8220;Content-Type&#8221; and &#8220;value&#8221; = &#8220;application/x-www-form-urlencoded&#8221;.  Then I was able to put something like &#8220;name=themayesfamily&#8221; in the &#8220;request body&#8221; and my server found a post variable with called &#8220;name&#8221; with the value I&#8217;d set.</p>
<p>Hope this helps some others. </p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2011/05/rest-client-for-firefox-sample-post-request/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setup Twiki with 1 and 1</title>
		<link>http://themayesfamily.com/blogs/b/2011/02/setup-twiki-with-1-and-1/</link>
		<comments>http://themayesfamily.com/blogs/b/2011/02/setup-twiki-with-1-and-1/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 21:10:23 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=64</guid>
		<description><![CDATA[Here&#8217;s a link to a twiki that describes how to setup a twiki http://twiki.org/cgi-bin/view/Codev/TWikiOnWebHost1and1 This is specific directions for setting up twiki 4.x on a 1and1 shared hosting account.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a link to a twiki that describes how to setup a twiki <img src='http://themayesfamily.com/blogs/b/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>http://twiki.org/cgi-bin/view/Codev/TWikiOnWebHost1and1</p>
<p>This is specific directions for setting up twiki 4.x on a 1and1 shared hosting account.</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2011/02/setup-twiki-with-1-and-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NFS Client For Windows 7</title>
		<link>http://themayesfamily.com/blogs/b/2010/11/nfs-client-for-windows-7/</link>
		<comments>http://themayesfamily.com/blogs/b/2010/11/nfs-client-for-windows-7/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 17:28:25 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=29</guid>
		<description><![CDATA[I was trying to enable NFS on my windows 7 machine. Seems like only Ultimate and Professional have it available. Luckily I fit the bill. Here&#8217;s where to find and enable it: This service is not installed by default and &#8230; <a href="http://themayesfamily.com/blogs/b/2010/11/nfs-client-for-windows-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was trying to enable NFS on my windows 7 machine.  Seems like only Ultimate and Professional have it available.  Luckily I fit the bill.  Here&#8217;s where to find and enable it:</p>
<p>This service is not installed by default and should not be installed on a &#8220;home&#8221; system. You can add or remove this service by heading to:</p>
<p>   1. Head to Start<br />
   2. Select Control Panel<br />
   3. Select Programs<br />
   4. Select Programs and Features<br />
   5. Select Turn Windows Features on or off<br />
   6. Find the section &#8220;Services for NFS&#8221;</p>
<p><strong>Default Path and Command Line Options</strong></p>
<p>C:\Windows\system32\nfsclnt.exe </p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2010/11/nfs-client-for-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up Port Forwarding in Ubuntu VMWare</title>
		<link>http://themayesfamily.com/blogs/b/2010/08/setting-up-port-forwarding-in-ubuntu-vmware/</link>
		<comments>http://themayesfamily.com/blogs/b/2010/08/setting-up-port-forwarding-in-ubuntu-vmware/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 15:37:08 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[port forwarding]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vmware]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=26</guid>
		<description><![CDATA[Found this great post as I&#8217;m trying to forward remote desktop connections to a Windows 7 guest OS. I&#8217;m using the NAT network type ( yes I thought of using bridged but there are network level complications out of my &#8230; <a href="http://themayesfamily.com/blogs/b/2010/08/setting-up-port-forwarding-in-ubuntu-vmware/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Found this great post as I&#8217;m trying to forward remote desktop connections to a Windows 7 guest OS.  I&#8217;m using the NAT network type ( yes I thought of using bridged but there are network level complications out of my control ).  Anyway this looked promising and I&#8217;m going to give it a shot:</p>
<p>http://ubuntuforums.org/showpost.php?p=4537013&#038;postcount=6</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2010/08/setting-up-port-forwarding-in-ubuntu-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fishing reports</title>
		<link>http://themayesfamily.com/blogs/b/2010/08/fishing-reports/</link>
		<comments>http://themayesfamily.com/blogs/b/2010/08/fishing-reports/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 22:36:45 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=25</guid>
		<description><![CDATA[Was looking for fishing reports here in CA so I figured I start to put a list together here: http://www.usafishing.com/klamath.html http://fishing.blogs.pressdemocrat.com/10355/extended-fishing-report-for-aug-23/]]></description>
			<content:encoded><![CDATA[<p>Was looking for fishing reports here in CA so I figured I start to put a list together here:</p>
<p>http://www.usafishing.com/klamath.html</p>
<p>http://fishing.blogs.pressdemocrat.com/10355/extended-fishing-report-for-aug-23/</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2010/08/fishing-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bizzare Foods w/ Andrew Zimmerman</title>
		<link>http://themayesfamily.com/blogs/b/2009/07/bizzare-foods-w-andrew-zimmerman/</link>
		<comments>http://themayesfamily.com/blogs/b/2009/07/bizzare-foods-w-andrew-zimmerman/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 20:17:36 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=24</guid>
		<description><![CDATA[I was watching the travel channel &#8220;Andrew Zimmerman Bizarre Foods&#8221; episode the other day with some friends. There was a section on eating the chicken version of Rocky Mountain Oysters. I couldn&#8217;t believe the size of the organ compared to &#8230; <a href="http://themayesfamily.com/blogs/b/2009/07/bizzare-foods-w-andrew-zimmerman/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.travelchannel.com/static_files/tc/imgs/show/bizarre/zimmern_ss_sing_007.jpg" alt="Andrew Zimmerman Singapore" /></p>
<p>I was watching the travel channel &#8220;Andrew Zimmerman Bizarre Foods&#8221; episode the other day with some friends.  There was a section on eating the chicken version of Rocky Mountain Oysters.  I couldn&#8217;t believe the size of the organ compared to the size of the animal ( I forgot I was applying mammalian standards ).  I went on a quest to find an anatomical diagram of a rooster somewhere on the web.  I searched all over and finally found something.  Sharing it here with everyone not that anyone else will every wonder about the same thing.  Crazy that in our digital Google age finding something like this can be so hard.</p>
<p>http://animalsciences.missouri.edu/reprod/AnatomyMale/poultry/index.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2009/07/bizzare-foods-w-andrew-zimmerman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tennessee Wedding</title>
		<link>http://themayesfamily.com/blogs/b/2009/02/tennessee-wedding/</link>
		<comments>http://themayesfamily.com/blogs/b/2009/02/tennessee-wedding/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 20:44:35 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=22</guid>
		<description><![CDATA[I&#8217;m getting married in Tennessee in the spring. Looking at what I needed to get a marriage license there I came across this wonderful tidbit: Cousin Marriages: Yes. A marriage to a first cousin is allowed.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting married in Tennessee in the spring.  Looking at what I needed to get a marriage license there I came across this wonderful tidbit:</p>
<p>Cousin Marriages:<br />
Yes. A marriage to a first cousin is allowed.</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2009/02/tennessee-wedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Dialog Popup EclipsePHP</title>
		<link>http://themayesfamily.com/blogs/b/2009/02/file-dialog-popup-eclipsephp/</link>
		<comments>http://themayesfamily.com/blogs/b/2009/02/file-dialog-popup-eclipsephp/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 03:09:06 +0000</pubDate>
		<dc:creator>Bryan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpeclipse]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://themayesfamily.com/blogs/b/?p=20</guid>
		<description><![CDATA[Eclipse PHP was giving me fits. Every time I switched between tabs of files the file open/save dialog kept popping up. I tried to change file associations since I thought that was the problem but the issue remained. I couldn&#8217;t &#8230; <a href="http://themayesfamily.com/blogs/b/2009/02/file-dialog-popup-eclipsephp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Eclipse PHP was giving me fits.  Every time I switched between tabs of files the file open/save dialog kept popping up.  I tried to change file associations since I thought that was the problem but the issue remained.  </p>
<p>I couldn&#8217;t find any posts on the web and then finally I found one.  It said something about stopping Eclipse from doing previews.  I searched through the options and couldn&#8217;t find anything right away.  I finally followed:</p>
<p>Window (menu option) -> PHPEclipse Web Development -> &#8220;Browser Preview Default&#8221;.</p>
<p>Un-Check both of the options.  After that the pop up went away.  </p>
<p>Hope it works for someone else.</p>
]]></content:encoded>
			<wfw:commentRss>http://themayesfamily.com/blogs/b/2009/02/file-dialog-popup-eclipsephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

