<?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>blog.robtarr.net</title>
	<atom:link href="http://blog.robtarr.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.robtarr.net</link>
	<description>.family.life.church.web development. ...that&#039;s what i think about.</description>
	<lastBuildDate>Fri, 30 Jul 2010 01:09:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Lost in CSS3</title>
		<link>http://blog.robtarr.net/technology/lost-in-css3/</link>
		<comments>http://blog.robtarr.net/technology/lost-in-css3/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 00:49:46 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=80</guid>
		<description><![CDATA[No, I&#8217;m not lost in the new CSS properties &#8211; I&#8217;m experimenting with them. About a month and a half ago somebody tweeted something (I tihnk it might have been Cameron Moll) about wanting to see a CSS3 version of the LOST intro. This sounding appealing to me, so I threw together some code one [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-86" title="lost-css" src="http://blog.robtarr.net/wp-content/uploads/lost-css-300x178.png" alt="" width="300" height="178" />No, I&#8217;m not lost in the new CSS properties &#8211; I&#8217;m experimenting with them. About a month and a half ago somebody tweeted something (I tihnk it might have been <a title="Cameron Moll's Twitter page" href="http://twitter.com/cameronmoll">Cameron Moll</a>) about wanting to see a CSS3 version of the LOST intro.</p>
<p>This sounding appealing to me, so I threw together some code one afternoon, but never really got the finishing polish on it. Frankly, I kind of forgot about it until something made me think about it just now. So, here it is, in it&#8217;s unpolished, ready to be criticized and improved.</p>
<p><a href="http://demo.robtarr.net/lost.html">Check out the DEMO</a> (Currently only works in Safari &#038; Chrome)</p>
<p>The HTML is pretty simple:</p>
<pre name="code" class="html">
<div id="container">
	<span id="lost">Lost</span>
</div>
</pre>
<p>The CSS really isn&#8217;t that bad either:</p>
<p>A little something to set the stage.</p>
<pre name="code" class="html">
html, body {
	background: #000;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
}</pre>
<p>I used a white text shadow to blur the text and then rotated it to the starting position.</p>
<pre name="code" class="html">
#lost {
	text-shadow: 0px 0px .42em #fff;
	color: rgba(255, 255, 255, 0);
	display: block;
	font-family: Futura, Helvetica, Arial, sans-serif;
	font-size: 4em;
	letter-spacing: .1em;
	position: relative;
	text-transform: uppercase;
	top: 35%;
	-webkit-transform: rotate(-20deg);
}
</pre>
<p>This is just to get the container into the right position.</p>
<pre name="code" class="html">
#container {
	height: 100%;
	margin: 0 0 0 -150%;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 400%;
}
</pre>
<p>On hover it uses the CSS transition to gradually change the text shadow from the blur effect to the 3D block effect.</p>
<pre name="code" class="html">
#container:hover #lost {
	color: rgba(255, 255, 255, .7);
	font-size: 85em;
	letter-spacing: .13em;
	text-shadow: 1px 1px 0 #777, 2px 2px 0 #777, 3px 3px 0 #777,
		4px 4px 0 #777, 5px 5px 0 #777, 6px 6px 0 #777,
		7px 7px 0 #777, 8px 8px 0 #777, 9px 9px 0 #777,
		10px 10px 0 #777, 11px 11px 0 #777, 12px 12px 0 #777;
	-webkit-transform: rotate(20deg);

	/* transition */
	-webkit-transition-property: color, font-size, letter-spacing, text-shadow, -webkit-transform;
	-webkit-transition-duration: 8s, 9s, 9s, 5s, 7s;
	-webkit-transition-timing-function: ease-in;
}
</pre>
<p><a href="http://demo.robtarr.net/lost.html">Check out the DEMO</a> and let me know what you think, and how you would do it differently.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/technology/lost-in-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bamboo Bike</title>
		<link>http://blog.robtarr.net/biking/bamboo-bike/</link>
		<comments>http://blog.robtarr.net/biking/bamboo-bike/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 04:27:43 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Bamboo Bike]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=75</guid>
		<description><![CDATA[It&#8217;s been about a year since something prompted me to build a bamboo bike. I really don&#8217;t even remember what it was. After seeing guys like Craig Calfee and BME, I was convinced that it could be done. The question now was where to get all of the parts I needed? Oddly enough, the bamboo [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been about a year since something prompted me to build a bamboo bike. I really don&#8217;t even remember what it was. After seeing guys like <a href="http://www.calfeedesign.com/bamboo.htm">Craig Calfee</a> and <a href="http://www.bmeres.com/bamboobike2.htm">BME</a>, I was convinced that it could be done. The question now was where to get all of the parts I needed?</p>
<p>Oddly enough, the bamboo was the easiest thing to get. we have a friend who works at a zoo where they happen to grow a lot of bamboo. She told me they had set some aside, and I just needed to come pick it up. Little did I know, that they set aside approximately 300 feet of bamboo. I think there should be enough in there to a build a bike, or four.</p>
<p>I&#8217;ve managed to scrounge up some parts and a donor frame (for the bottom bracket, head tube, and dropouts) from craigslist. Special thanks to Alexis and Colin for picking up my out-of-town purchases.</p>
<p>So, afte rI get the frame from Colin last weekend I should have most of the parts I need to get going. So I started working on the bamboo tonight. I cut a small piece, put it on the grill, and took a heat gun to it &#8211; experimenting with the best ways to heat treat the bamboo. It seems like it should work pretty well.</p>
<p>It was too dark for pictures, I&#8217;ll take some when I start treating actual bike parts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/biking/bamboo-bike/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Job</title>
		<link>http://blog.robtarr.net/dayton/new-job/</link>
		<comments>http://blog.robtarr.net/dayton/new-job/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 23:38:07 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Dayton]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=68</guid>
		<description><![CDATA[So, here&#8217;s the story of getting my new job: A few months ago I came across @bencallahan while looking for some info on less css. His name caught my eye because I don&#8217;t often come across local web developers on Twitter, so I started following him (on Twitter, I&#8217;m not a stalker). This led me [...]]]></description>
			<content:encoded><![CDATA[<p>So, here&#8217;s the story of getting my new job:</p>
<p>A few months ago I came across <a href="http://twitter.com/bencallahan">@bencallahan</a> while looking for some info on <a href="http://lesscss.org/">less css</a>. His name caught my eye because I don&#8217;t often come across local web developers on Twitter, so I started following him (on Twitter, I&#8217;m not a stalker). This led me to find out about his company &#8211; <a href="http://forgeideas.com">FORGE</a>.  FORGE is the kind of place that I have wanted to work at since I left full-time church work. The more I read about the company and saw the kinds of things that they do, the more I wanted to work there. The question then, became how to get a job there, not even knowing if they wanted to hire anybody.  While trying to figure out the best way to ask for a job, I came across <a href="http://www.cnn.com/2010/TECH/05/14/google.job/index.html">this</a>. This started making me think, and after deliberating, and talking it over with Deb, I decided that the I would create a simple site to send to the guys at FORGE.</p>
<p><a href="http://blog.robtarr.net/wp-content/uploads/Screen-shot-2010-07-15-at-7.40.31-PM.png"><img class="alignright size-medium wp-image-73" title="heyforgepleasehireme.com" src="http://blog.robtarr.net/wp-content/uploads/Screen-shot-2010-07-15-at-7.40.31-PM-300x222.png" alt="heyforgepleasehireme.com" width="300" height="222" /></a>I went ahead and purchased <a href="http://heyforgepleasehireme.com">heyforgepleasehireme.com</a>, and started to lay out what would be on the page. After about a week of fitting in some time around an already busy schedule, I had a site that I was pretty proud of &#8211; making use of the new HTML5 tags and a smattering of CSS3 for good measure.  All that was left was the delivery mechanism. While I was hoping I could come up with a way for FORGE to simply stumble across my new site, that didn&#8217;t seem reliable, and I had no idea how long it would take. After losing another possible job because a company I had a contact with had just hired somebody, I didn&#8217;t want to wait around too long. I decided to simply send the URL in a tweet to <a href="http://twitter.com/forgeideas">@forgeideas</a>. It felt like such a significant tweet, I was hesitant. I was talking to Debbie and Dane about it on IM when Debbie typed, &#8220;Just send it!&#8221; So I <a href="http://twitter.com/robtarr/status/17886808556">did</a>. An hour later, I got a message back from FORGE asking me to come have lunch and talk.</p>
<p>The rest, as they say, is history&#8230;</p>
<p>Lesson learned: it can pay to be creative when searching for a job. I could have easily sent a resume with a nice cover letter, but that wouldn&#8217;t have conveyed how much I wanted to work at FORGE. If you want something, go after it whole hog. When I first walked into FORGE, I was introduced as the guy who made the website</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/dayton/new-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helpful CSS Info</title>
		<link>http://blog.robtarr.net/web-development/helpful-css-info/</link>
		<comments>http://blog.robtarr.net/web-development/helpful-css-info/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 20:47:43 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=56</guid>
		<description><![CDATA[Over the past several years I have learned many things about CSS and web design. Some of this information has come from colleagues, some has been pure trial and error, and some (probably the majority) has come from useful resources on the web. Recently, I was asked to share some info on design to some [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-58" title="css_is_awesome_mug" src="http://blog.robtarr.net/wp-content/uploads/css_is_awesome_mug.jpg" alt="css_is_awesome_mug" width="318" height="296" />Over the past several years I have learned many things about CSS and web design. Some of this information has come from colleagues, some has been pure trial and error, and some (probably the majority) has come from useful resources on the web. Recently, I was asked to share some info on design to some of my fellow students at <a href="http://www.wright.edu">Wright State</a>, and I told them I would give them a list of useful CSS info. So, I decided to simply share that info here.</p>
<p>Here is a list of pages that about CSS and learning CSS. Some of these are things that I have used, some just seem like good information for those starting to learn CSS:</p>
<ul>
<li>A good starting point for the basics:<br/><a href="http://www.w3schools.com/Css/css_intro.asp">http://www.w3schools.com/Css/css_intro.asp</a></li>
<li>Useful article on positioning a footer at the bottom of a page without javascript:<br/><a href="http://themaninblue.com/writing/perspective/2005/08/29/">http://themaninblue.com/writing/perspective/2005/08/29/</a></li>
<li>This page has a good list of web standards, and some good info on CSS:<br/><a href="http://www.opera.com/company/education/curriculum/">http://www.opera.com/company/education/curriculum/</a></li>
<li>Everything at <a href="http://meyerweb.com">http://meyerweb.com</a>, especially <a href="http://meyerweb.com/eric/tools/css/reset/">http://meyerweb.com/eric/tools/css/reset/</a> (useful for creating cross-browser friendly sites)</li>
<li>A great site for debugging crazy IE CSS issues:<br/><a href="http://www.positioniseverything.net/">http://www.positioniseverything.net/</a></li>
<li>Always make sure your <a href="http://validator.w3.org/">HTML</a> and <a href="http://jigsaw.w3.org/css-validator/">CSS</a> are valid.</li>
</ul>
<p>That&#8217;s probably good for now. I&#8217;ll may post some more later. Also, these and other CSS/HTML related links can be found on my <a href="http://delicious.com/robtarr/css">delicious bookmarks page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/web-development/helpful-css-info/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ethics agreement</title>
		<link>http://blog.robtarr.net/school/ethics-agreement/</link>
		<comments>http://blog.robtarr.net/school/ethics-agreement/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 03:07:53 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[ethics]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=27</guid>
		<description><![CDATA[I&#8217;m taking an Internet security class at school this quarter. So, in order to know how to make things secure, we are learning about ways to exploit computers and computer networks. Because the things that we are using could be &#8220;used for evil,&#8221; we were asked to sign an ethics statement if we wanted to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-43 alignright" title="zane_hacking_shirt" src="http://blog.robtarr.net/wp-content/uploads/zane_hacking_shirt.jpg" alt="zane_hacking_shirt" width="300" height="225" />I&#8217;m taking an Internet security class at school this quarter. So, in order to know how to make things secure, we are learning about ways to exploit computers and computer networks. Because the things that we are using could be &#8220;used for evil,&#8221; we were asked to sign an ethics statement if we wanted to take the class.</p>
<p>Really, I have no problem with this &#8211; I don&#8217;t intend to use this knowledge to do harm. The funny thing about it to me, is that it&#8217;s nothing more than a signature saying that we aren&#8217;t going to use this knowledge to hack into a computer network. My first thought is, that if you are the type of person that intends to hack into a computer network for some sort of personal gain, are you going to care if you signed something that said you wouldn&#8217;t do it?</p>
<p>If your ethics, or lack there of, would allow you to hack a computer with malicious intentions, would you really feel bad about ignoring the agreement you signed at school? seriously&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/school/ethics-agreement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>97bottles.com</title>
		<link>http://blog.robtarr.net/beer/97bottlescom/</link>
		<comments>http://blog.robtarr.net/beer/97bottlescom/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 04:07:43 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Beer]]></category>
		<category><![CDATA[97bottles.com]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=29</guid>
		<description><![CDATA[So, one of the things that I wanted to do now that I am blogging here, was to write about beer. I think the first time I had a beer was one a trip up to Idaho with Mike. One of his friends made it his mission to find me a beer that I would [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-31 alignleft" title="beer" src="http://blog.robtarr.net/wp-content/uploads/beer.jpg" alt="beer" width="300" height="208" /></p>
<p>So, one of the things that I wanted to do now that I am blogging here, was to write about beer. I think the first time I had a beer was one a trip up to Idaho with <a href="http://sirjunkerjorg.blogspot.com/">Mike</a>. One of his friends made it his mission to find me a beer that I would like.</p>
<p>While I do enjoy a few beers, there are a lot that I do not. We found this <a href="http://www.culinarycompanyonline.com/">cool shop</a> recently that sells all sorts of different beers, and you can mix and match 6-packs so you don&#8217;t get stuck with 5 beers you don&#8217;t like. So, we bought a few different beers, and I started to think that it would be good to keep track of which ones I liked/disliked and why&#8230; and what better place than on my blog &#8211; well, maybe <a href="http://97bottles.com">here</a>.</p>
<p>I came acros this website today on accident, but I think it&#8217;s great, so I&#8217;m going to use it as a way to explore a few new beers, and share my thoughts, and I&#8217;ll figure out a good way to link that and the blog together. So, go to <a href="http://97bottles.com">97bottles.com</a>, sign up and connect with <a href="http://97bottles.com/people/robtarr">me</a>, maybe we can go grab a beer together.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/beer/97bottlescom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Baby crib</title>
		<link>http://blog.robtarr.net/family/baby-crib/</link>
		<comments>http://blog.robtarr.net/family/baby-crib/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 03:22:18 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Xander]]></category>
		<category><![CDATA[Zane]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=23</guid>
		<description><![CDATA[We sold Zane &#038; Xander&#8217;s baby crib today &#8211; it&#8217;s kind of sad. It&#8217;s sad to me to think that our boys are growing up so fast. Zane is 4, and he&#8217;s freaking&#8217; hilarious. Maybe it&#8217;s just me, because he&#8217;s my kid&#8230; but I don&#8217;t think so. When I started moving the crib out by [...]]]></description>
			<content:encoded><![CDATA[<p>We sold Zane &#038; Xander&#8217;s baby crib today &#8211; it&#8217;s kind of sad. It&#8217;s sad to me to think that our boys are growing up so fast. Zane is 4, and he&#8217;s freaking&#8217; hilarious. Maybe it&#8217;s just me, because he&#8217;s my kid&#8230; but I don&#8217;t think so. When I started moving the crib out by the front door today, we had this conversation:</p>
<p>Zane: &#8220;Why are you moving this?&#8221;<br />
Me: &#8220;We&#8217;re selling this crib to a family that needs it, because you guys don&#8217;t use it anymore.&#8221;<br />
Zane: &#8220;This isn&#8217;t a selling house.&#8221;<br />
Me: &#8220;What?!&#8221;<br />
Zane: &#8220;We don&#8217;t sell baby cribs here.&#8221;</p>
<p>But I digress, the baby crib is the first major thing that we&#8217;ve gotten rid of from them being babies. Sure, we&#8217;ve gotten rid clothes, and toys (countless toys), but this feels different. Maybe I just have a weird connection to furniture. It just feels like a part of their childhood is gone. They&#8217;ve moved on to big boy beds, bunk beds at that. I feel like I&#8217;ll wake up tomorrow and they&#8217;ll be asking to borrow the car&#8230; Which I suppose will be OK, as long as I wake up and they&#8217;re in their own big boy beds. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/family/baby-crib/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A good friend</title>
		<link>http://blog.robtarr.net/family/a-good-friend/</link>
		<comments>http://blog.robtarr.net/family/a-good-friend/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 19:18:36 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[friends]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=14</guid>
		<description><![CDATA[When I graduated from college (the first time) in &#8217;99, I moved to Dayton, OH to take my first position as a youth pastor. In lieu of upping my salary to cover the cost of a place to live, the church arranged for me to live with a family at the church. Up for just [...]]]></description>
			<content:encoded><![CDATA[<p>When I graduated from college (the first time) in &#8217;99, I moved to Dayton, OH to take my first position as a youth pastor. In lieu of upping my salary to cover the cost of a place to live, the church arranged for me to live with a family at the church. Up for just about anything at that time, I was on board &#8211; moving across the country to a place where I knew practically no one, to live with people that I had never met.</p>
<p>I still remember pulling up to the house after church &#8211; everything I owned in my Toyota pickup and a small Uhaul trailer. We moved all of my stuff in, and I settled in to life with a family that I didn&#8217;t know. I spent that night watching Rush Hour and eating frozen waffles with Cheryl (their daughter) and Kate (her friend).<br />
Over the next year we became great friends, they are an extension of my family. They were all involved in our wedding, I got the chance to be part of Cheryl&#8217;s wedding. Whenever Brad breaks his phone we have a replacement for him. They&#8217;ve walked with us through difficult times, watched our kids, cleaned up after me, supported a pretty hefty frozen waffle addiction &#8211; they truly are part of our family.</p>
<p>All of this is why seeing this video on YouTube last night was so difficult.</p>
<div style="text-align:center"><object width="425" height="344" data="http://www.youtube.com/v/GGlGDfhHFY0&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/GGlGDfhHFY0&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/family/a-good-friend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>House Hunting&#8230;</title>
		<link>http://blog.robtarr.net/dayton/house-hunting/</link>
		<comments>http://blog.robtarr.net/dayton/house-hunting/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 18:16:44 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Dayton]]></category>
		<category><![CDATA[home]]></category>

		<guid isPermaLink="false">http://blog.robtarr.net/?p=10</guid>
		<description><![CDATA[So, for the last 2 years we have been living with Deb&#8217;s parents as we tried to ride out the housing crisis&#8230; well we are out from underneath the Phoenix house and the time has come for us to find our own place to rent. So, the search for an affordable house, in a decent [...]]]></description>
			<content:encoded><![CDATA[<p>So, for the last 2 years we have been living with Deb&#8217;s parents as we tried to ride out the housing crisis&#8230; well we are out from underneath the Phoenix house and the time has come for us to find our own place to rent. So, the search for an affordable house, in a decent part of town, that will take our dogs, that has enough room for the 4 of us has begun.</p>
<p>We started looking around real estate sites on the Internet, and <a title="craigslist.org" href="http://dayton.craigslist.org/apa/" target="_blank">Craigslist.org</a>; but most sites didn&#8217;t have a lot of rentals, and Craigslist is over-saturated with apartment complexes who apparently are paying people to post their openings every other hour.</p>
<p>So, we ended up just driving around a couple of neighborhoods (old school style) writing down numbers on for rent signs (I&#8217;m suppose to be calling them right now). Ironically, we ended up in the neighborhood of some people we know that Deb just started to reconnect with the other day.</p>
<p>All that to say that, The Tarr&#8217;s are MOVING OUT! If you know anyplace in the Dayton area for rent, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robtarr.net/dayton/house-hunting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
