<?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>Project Blog!</title>
	<atom:link href="http://www.travislynn.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.travislynn.com/blog</link>
	<description>Sharing Attempts.</description>
	<lastBuildDate>Fri, 11 Mar 2011 07:07:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Digitial Die</title>
		<link>http://www.travislynn.com/blog/?p=50</link>
		<comments>http://www.travislynn.com/blog/?p=50#comments</comments>
		<pubDate>Fri, 11 Mar 2011 07:07:54 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=50</guid>
		<description><![CDATA[So, not too long ago, my wife picked up a &#8220;Big Bad Wolf&#8221; kids card game.  I&#8217;m not having any luck finding information about it on the internet for a link, so suffice it to say that it&#8217;s a mix between Go Fish &#38; Memory.  That description misses some of the actual game mechanics, as [...]]]></description>
			<content:encoded><![CDATA[<p>So, not too long ago, my wife picked up a &#8220;Big Bad Wolf&#8221; kids card game.  I&#8217;m not having any luck finding information about it on the internet for a link, so suffice it to say that it&#8217;s a mix between Go Fish &amp; Memory.  That description misses some of the actual game mechanics, as it relies rather heavily upon a six-sided die.  This die has six different colors on it, rather than the standard dots-for-number scheme, and it indicates which card you&#8217;re supposed to draw from the spread of cards whose faces are hidden and only colored dots are visible.  Again, for the sake of this post, the key is the requirement that one has the six-sided colored die.</p>
<p>We did not.</p>
<p>Instead, we made do with a set of Candyland cards, which, conveniently use the same color set.  However, as we played the game more frequently, the process of getting a three and then four-year-old to draw a card at random grew tiresome.  Soon, my engineering brain began to tick and I started to code a solution.  Sure, it&#8217;s crude.  Sure, it uses Processing.  Nevertheless, the does the job and it runs on the NES DVR, showing up on the big television screen.</p>
<p>If you find yourself in the same situation&#8211;needing a random six-colored digital die&#8211;here&#8217;s the source code I used in Processing: (note: the program runs full screen &amp; the code isn&#8217;t perfectly clean but it should run just fine although you might need to comment out the font choice or the counter entirely. )</p>
<blockquote><p>//The idea behind this program is to provide a digital replacement<br />
//for the die that belongs to the kid&#8217;s Big Bad Wolf game.<br />
//It&#8217;s a typical six-sided die with each side a different color:<br />
//Red, Yellow, Green, Orange, Blue &amp; Violet.</p>
<p>color value = color(0);<br />
int counter = 0;<br />
int rotAngle = 0;<br />
int angleChange = 2;</p>
<p>void setup()<br />
{<br />
//size(400,400);<br />
size(screen.width,screen.height);<br />
fill(0);<br />
PFont font;<br />
font = loadFont(&#8220;HelveticaNeue-48.vlw&#8221;);<br />
textFont(font);<br />
}</p>
<p>void draw()<br />
{</p>
<p>background(value);</p>
<p>if(counter == 0)<br />
{<br />
drawDieFaces(6);<br />
}</p>
<p>//  if(counter &gt; 0)<br />
//  {<br />
//    drawDieFaces(6);<br />
//  }<br />
//Output a small counter to track the number of rolls</p>
<p>text(counter,0,height &#8211; 50);</p>
<p>}</p>
<p>void keyPressed()<br />
{</p>
<p>for (int ii = 0; ii &lt; 5; ii++)<br />
{<br />
value = colorVal( int(random(6)) );<br />
}</p>
<p>//For tracking purposes<br />
counter++;<br />
println(counter);</p>
<p>}</p>
<p>void mouseClicked()<br />
{<br />
for (int ii = 0; ii &lt; 5; ii++)<br />
{<br />
value = colorVal( int(random(6)) );<br />
}</p>
<p>//For tracking purposes<br />
counter++;<br />
println(counter);</p>
<p>}</p>
<p>//Draws a single die face of the color specified<br />
void dieSquare( int cx, int cy, int colorCode )<br />
{<br />
rectMode(CENTER);<br />
noStroke();<br />
fill(colorVal(colorCode));<br />
rect(cx,cy,40,40);<br />
}</p>
<p>void drawDieFaces( int toDraw )<br />
{<br />
for (int i = 0; i &lt;= toDraw; i++)<br />
{<br />
if(i &lt;= 2)<br />
dieSquare((i*width/3 + width/6),(height/4),i);<br />
if(i &gt; 2)<br />
dieSquare(((i-3)*width/3 + width/6),(height/2 + height/4),i);<br />
}<br />
}</p>
<p>//This is a specific function for this program.  The colorCode<br />
//parameter is 0=Red, 1=Orange , 2=Yellow, 3=Green, 4=Blue, 5= Violet<br />
color colorVal(int cval)<br />
{<br />
color colorCode = 0;</p>
<p>switch(cval)<br />
{<br />
case 0:<br />
colorCode = color(255,0,0);<br />
break;</p>
<p>case 1:<br />
colorCode = color(255,170,0);<br />
break;</p>
<p>case 2:<br />
colorCode = color(255,255,0);<br />
break;</p>
<p>case 3:<br />
colorCode = color(0,255,0);<br />
break;</p>
<p>case 4:<br />
colorCode = color(0,0,255);<br />
break;</p>
<p>case 5:<br />
colorCode = color(229,3,255);<br />
break;<br />
}<br />
return colorCode;<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=50</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wort Chiller</title>
		<link>http://www.travislynn.com/blog/?p=43</link>
		<comments>http://www.travislynn.com/blog/?p=43#comments</comments>
		<pubDate>Wed, 02 Jun 2010 06:13:31 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=43</guid>
		<description><![CDATA[As I&#8217;m catching up on some of my long delayed blogging, many of these coming posts will be out of order, to be reordered through the magic of post-date editing.  Plus, as I&#8217;ve not been blogging regularly, I&#8217;m out of practice at writing things like this and will tend to ramble incoherently from entry to [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m catching up on some of my long delayed blogging, many of these coming posts will be out of order, to be reordered through the magic of post-date editing.  Plus, as I&#8217;ve not been blogging regularly, I&#8217;m out of practice at writing things like this and will tend to ramble incoherently from entry to entry.  Read it if you wish, ask questions if you want, make of it what you will.</p>
<p>I made my own wort chiller.  It was an experience that I enjoyed, however, I know that my wort chiller is probably a little inferior to the one I could have picked up at the local <a href="http://www.homebeerwinecheese.com/">HWBC</a> and it was certainly more expensive.  I went with 30&#8242; of 3/8&#8243; ID copper tubing, wrapped around something cylindrical.  I say &#8220;something&#8221; because I have no recollection of what it was.  The diameter of the chiller ended up being much smaller than the pot itself, but this was intentional; the smaller size enables me to gently stir the wort, to hasten the cooling process.</p>
<p>While it was helpful in its first usage, cooling wort to 80 from around 200 in 20 minutes or so, it still used too much water.  After some more research, I figured out a rather common sense way to use as little water as possible, namely monitoring the temperature of the water coming out of the chiller.  As I&#8217;m trying to conserve as much water as possible, this was a great aid.  I went from using an unknown amount of water running full blast through the tubes in its first run to a closely tweaked, near trickle of water in the second batch.  Additionally, I utilized an ice-cream maker to hold water for pre-chilling of the input water.  It&#8217;s a bit abstract to just talk about, so here&#8217;s what it all looks like.</p>
<p><a href="http://www.travislynn.com/blog/wp-content/uploads/2010/06/photo.jpg"><img class="alignnone size-medium wp-image-45" title="Wort Chiller" src="http://www.travislynn.com/blog/wp-content/uploads/2010/06/photo-300x225.jpg" alt="Dunkelweisen gets down (in temperature, that is)" width="300" height="225" /></a></p>
<p>The white thing to the right, with the ice pack in it, is the ice cream maker.  That little bucket is filled with some weird freezing compound that easily turned about an inch of the surrounding water into ice.  Had I started the cooling with it, I probably would have had to wait for it to thaw to remove the PVC pipe.  Also, I was able to catch about 3/4 of the water I used for cooling in a 3 gallon pot I had sitting on the floor.  Since the water was pretty warm, it worked excellently to mix with vinegar and use for cleaning.  Water not wasted!  Still, I know I can do better, but more on that in another entry.  Furthermore, with the monitoring technique, even with a much lower flow rate, the cooling time was the same, if not less (because of the ice bucket.</p>
<p>In conclusion, if you want a wort chiller but are interested in saving a little money, buy an already made wort chiller.  Unless you have a hookup in the copper tubing industry, you&#8217;ll likely end up paying more to build your own since you&#8217;re probably not going to get bulk discounts.  However, if you go the DIY route, I guarantee you&#8217;ll have more fun, and fun is what this is all about, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=43</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Usefulness!</title>
		<link>http://www.travislynn.com/blog/?p=38</link>
		<comments>http://www.travislynn.com/blog/?p=38#comments</comments>
		<pubDate>Thu, 22 Apr 2010 00:40:47 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=38</guid>
		<description><![CDATA[Finally, I found something good with Office Macros: http://ist.uwaterloo.ca/ec/equations/equation2007.html The problem? I&#8217;m using Office 2008 at home so it won&#8217;t work.]]></description>
			<content:encoded><![CDATA[<p>Finally, I found something good with Office Macros: http://ist.uwaterloo.ca/ec/equations/equation2007.html</p>
<p>The problem?  I&#8217;m using Office 2008 at home so it won&#8217;t work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First batch!</title>
		<link>http://www.travislynn.com/blog/?p=39</link>
		<comments>http://www.travislynn.com/blog/?p=39#comments</comments>
		<pubDate>Thu, 01 Apr 2010 19:14:01 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=39</guid>
		<description><![CDATA[I have found a new hobby: brewing beer at home. After several months of researching, chatting with microbrewers and reading some recommended books, I went to the nearby Home Wine, Beer, and Cheese shop and picked up their starter kit along with a boxed ingredient kit for their &#8220;Racous Red Ale&#8221;, a well hopped West-Coast [...]]]></description>
			<content:encoded><![CDATA[<p>I have found a new hobby: brewing beer at home. After several months of researching, chatting with microbrewers and reading some recommended books, I went to the nearby <a href="http://www.homebeerwinecheese.com/" target="_blank">Home Wine, Beer, and Cheese shop</a> and picked up their starter kit along with a boxed ingredient kit for their &#8220;Racous Red Ale&#8221;, a well hopped West-Coast style red beer. The tools then sat in my little (~12 ft^3) brewspace in my closet for a few days until I found myself staying at home with my three-year old who was just getting over pneumonia.  As the day wore on and cabin fever set in (at about 10:00 am) I announced to Adele that I wanted her help. Since we couldn&#8217;t go out for fear of a relapse, she and I read directions together and just as she helps me cook, she helped me brew that first batch of beer.</p>
<p>Due to no fault of the toddler assistance I ran into a few issues (In fact, a few minutes into the process she got bored and went to lie down and watch a movie) First in the line of issues, the recipe was a partial mash and I made the poor choice of using a plastic colander, covered with cheese cloth and propped above the brew pot. The weight of the wet grains along with their heat and the heat of the sparging water caused the colander to flex such that it fell into the brewpot, spilling all the grains into the wort. This was fixed through a drawn out process of straining the wort back and forth from the brewpot and the pot I&#8217;d used for the mashing and eventually all the grains were removed. The rest of the process went rather smoothly, although a boilover was just barely avoided during the first hop addition. The second issue of this batch came about after cooling, as the wort was to be transferred to the primary fermenter. Since I wasn&#8217;t entirely sure about how or when to take the inital gravity reading, I did so before topping off the primary fermenter to the 5 gallon mark. Thus, the gravity reading I took was way too high. As I was unsure how much water to add to get it too the desired graivity, I took a guess and added about 1 gallon. Fearing infection, I didn&#8217;t take another reading after that.  Yet, in spite of these challenges, I was so excited about making my first batch of beer that when I put the airlock into place (on my 5 gallon carboy) any stress melted away.</p>
<p>Let&#8217;s revisit that last comment, the one about the 5 gallon carboy. At the time, I disregarded the concern of having the intial fermentation possibly needing a blowoff tube for such a  relatively small primary fermenter. As I later discovered, if I&#8217;d actually made 5 gallons as intended, I would have had a very messy closet. But there&#8217;s another upshot to the small batch size of just under 19 22oz bottles rather than the expected ~24 bottles: the beer was strong!  I&#8217;ve still no idea how strong, but it&#8217;s delicious and doesn&#8217;t taste the slightest bit boozy. The biggest downside? It went away too fast. I&#8217;m now down to the last two bottles and am very hesitant to consume them.</p>
<p>Also, given the unexcpected variation from the procedure (not the recipie), I&#8217;ve taken the liberty of renaming the beer &#8220;Coot&#8217;s Eye&#8221;, in honor of the strangest red-eyed bird in our nearby lake.</p>
<p>Finally, in keeping with the rather jumbeled, rambling nature of my posts, here are a few notes from my first batch process:<br /> -Buy a metal strainer.<br /> -Fill the primary to the 5 gallon mark.<br /> -Don&#8217;t use a 5 gallon carboy as the primary for a 5 gallon batch of beer. (Unless you have a blowoff tube setup.)<br /> -Move the beer to a secondary fermenter. Until about a month after bottling the beer had a soapy taste that most likely resulted from sitting on the trub too long.<br /> -Relax!  Everything will be fine!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=39</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow! I&#8217;m Popular!</title>
		<link>http://www.travislynn.com/blog/?p=35</link>
		<comments>http://www.travislynn.com/blog/?p=35#comments</comments>
		<pubDate>Tue, 16 Mar 2010 07:04:39 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=35</guid>
		<description><![CDATA[A few weeks ago I noticed that several of my posts were garnering more and more attention in their comments.  Although I meant to respond to each personally, I&#8217;ve been really busy with school and, they just kept piling up!  In an attempt to makeup, while I have a few spare moments, I&#8217;d like to [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I noticed that several of my posts were garnering more and more attention in their comments.  Although I meant to respond to each personally, I&#8217;ve been really busy with school and, they just kept piling up!  In an attempt to makeup, while I have a few spare moments, I&#8217;d like to address some of your comments.</p>
<p>However, before I get started, some of these users have given me links and email addresses with which I am not familiar and, thus, cannot vouch for their goodness.</p>
<p>I&#8217;m going to start with a repeat commenter that goes by the name erectile dysfunction.  Now, I&#8217;m not a huge fan of the screen name, but their praises (about the same article) speak for themselves:</p>
<blockquote><p>I really like your blog and i respect your work. I’ll be a frequent visitor.</p>
</blockquote>
<p>and</p>
<blockquote><p>I read a few topics. I respect your work and added blog to favorites.</p>
</blockquote>
<p>Thanks, erectile dysfunction!  I&#8217;ll keep it up!</p>
<p>Next, there&#8217;s poor Luffie.</p>
<blockquote><p>I restored my computer and now i am not able to use programs i did before saying that i no longer have the system requirements and i lost connection to the internet on the computer and i think its because of a virus because it worked before Im using a different computer and i was wondering what do i have to do in order to make my computer have the system stuff it did before System Microsoft Windows XP Home Edition Version 2002 Service Pack 1 Manufactured and supported by Hewlett-Packard Pavilion Intel(R) Pentium(R) 4 CPU 2.80GHz 2.80GHz 504 MB of RAM I can’t even download Windows Live messenger<a rel="nofollow" href="http://gordoarsnaui.com/">santoramaa</a></p>
</blockquote>
<p>Again, I can claim no responsibility for what lies behind that link (read: don&#8217;t click).  I don&#8217;t know what to tell you, but I think that there&#8217;s a nice family in Israel that has a child (sex unspecified) that may be able to <a href="http://www.endless-t.com/blog/stories/i-♥-craigslist">help you.</a></p>
<p>There are just so many.  I&#8217;m going to approve you all and hope that more of your friends are about to return to encourage me; you haven&#8217;t done enough.</p>
<blockquote><p> </p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=35</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Project</title>
		<link>http://www.travislynn.com/blog/?p=34</link>
		<comments>http://www.travislynn.com/blog/?p=34#comments</comments>
		<pubDate>Mon, 15 Feb 2010 07:11:47 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=34</guid>
		<description><![CDATA[With the inspiration of Make: 5 and this website (http://www.briangreenstone.com/zipline/page5.html) I think I&#8217;ve got to build a zipline. Now I&#8217;ve just got to figure out where to do it.]]></description>
			<content:encoded><![CDATA[<p>With the inspiration of Make: 5 and this website (http://www.briangreenstone.com/zipline/page5.html) I think I&#8217;ve got to build a zipline.  Now I&#8217;ve just got to figure out where to do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=34</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Mythical System</title>
		<link>http://www.travislynn.com/blog/?p=26</link>
		<comments>http://www.travislynn.com/blog/?p=26#comments</comments>
		<pubDate>Thu, 10 Dec 2009 00:08:04 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Introduction]]></category>
		<category><![CDATA[MythBox]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=26</guid>
		<description><![CDATA[So I should totally be studying instead of writing this, but I&#8217;m just so proud of my virtual work that I had to share.  I&#8217;ve been obsessed with creating a DIY DVR for far too long and this is only one more step to making the obsession worse. Awhile ago I came across a few [...]]]></description>
			<content:encoded><![CDATA[
<a href='http://www.travislynn.com/blog/?attachment_id=27' title='Closed View'><img width="150" height="150" src="http://www.travislynn.com/blog/wp-content/uploads/2009/12/nintendocase1-150x150.jpg" class="attachment-thumbnail" alt="Closed View" title="Closed View" /></a>
<a href='http://www.travislynn.com/blog/?attachment_id=28' title='Open View'><img width="150" height="150" src="http://www.travislynn.com/blog/wp-content/uploads/2009/12/nintendocase2-150x150.jpg" class="attachment-thumbnail" alt="Open View" title="Open View" /></a>
<a href='http://www.travislynn.com/blog/?attachment_id=29' title='Closed, Rear View'><img width="150" height="150" src="http://www.travislynn.com/blog/wp-content/uploads/2009/12/nintendocase3-150x150.jpg" class="attachment-thumbnail" alt="Closed, Rear View" title="Closed, Rear View" /></a>

<p>So I should totally be studying instead of writing this, but I&#8217;m just so proud of my virtual work that I had to share.  I&#8217;ve been obsessed with creating a DIY DVR for far too long and this is only one more step to making the obsession worse.</p>
<p>Awhile ago I came across a few discarded and broken videogame systems, an NES amongst them.  With all the rage of casemodded PCs out there, I figured I&#8217;d get in on it too.  However, unlike some of the setups I&#8217;ve seen I really want mine to look as good as an unmodified system and to work accordingly.  Now with the NVIDIA Ion systems out there it seems like the bones are there, now just to make the body to hold it all together.</p>
<p>The first step to making anything go as desired is planning.  After taking a class in mechanism design this quarter that included a design project, I&#8217;ve seen the power of 3-d computer modeling.  Now, I&#8217;ve played with Google Sketchup a little, and with the help of the <a href="http://scc.jezmckean.com/home">SketchUp Components Collection</a> and some careful rulering, I&#8217;ve been able to make something work.</p>
<p>There&#8217;s some more modeling work to be done.  I&#8217;ve got to figure out what to do with all the posts and non-flat bottom/top of the case as well as the flapping door.  Since I have access to a free license for Win7 x64, blu-ray is certainly an option I&#8217;m considering, but we&#8217;ll see.  Once I get the models to a stage where I feel better about them, I&#8217;ll post the SketchUp Files as well.</p>
<p>As a side note, here are the things I intend:</p>
<p>-Keep the original controller ports functioning<br />
-Hide an IR Reciever in there somewhere<br />
-Hide a TV tuner<br />
-Hide a receiver for wireless keyboard/mouse/controllers<br />
-Figure out something to keep the whole thing as silent as possible</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rolling Forward</title>
		<link>http://www.travislynn.com/blog/?p=22</link>
		<comments>http://www.travislynn.com/blog/?p=22#comments</comments>
		<pubDate>Thu, 26 Mar 2009 06:50:33 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Update]]></category>
		<category><![CDATA[ViolationTracker]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=22</guid>
		<description><![CDATA[Having finally gotten to spring break, I&#8217;ve had the time to read up on PHP and MySQL.  From what I&#8217;ve seen, it&#8217;s not going to be hard at all to throw together what I want for the parking database/website, however, security is a major concern.  I&#8217;ll be putting together a test version on a local [...]]]></description>
			<content:encoded><![CDATA[<p>Having finally gotten to spring break, I&#8217;ve had the time to read up on PHP and MySQL.  From what I&#8217;ve seen, it&#8217;s not going to be hard at all to throw together what I want for the parking database/website, however, security is a major concern.  I&#8217;ll be putting together a test version on a local computer that doesn&#8217;t have direct internet access and then go from there.</p>
<p>Along the way, I&#8217;ve been doing a lot of research into learning resources.  After considerable debate about paying for something, I&#8217;ve stumbled across this site: <a title="13 Vital PHP Skill For Every Novice PHP Developer &amp; Solutions" href="http://www.acomment.net/php-tutorials-utopia-13-vital-php-skills-for-every-novice-php-developer-and-solutions/378" target="_blank">http://www.acomment.net/php-tutorials-utopia-13-vital-php-skills-for-every-novice-php-developer-and-solutions/378</a>.  Within this collection of tutorials, though, they have linked a particularly excellent (albeit slightly dated) <a href="http://devzone.zend.com/article/627-PHP-101-PHP-For-the-Absolute-Beginner" target="_blank">set of introductory lessons</a> that are both informative and quite enjoyable.  While I understand that I have a great deal to learn in terms of style and security, based upon these lessons and my knowledge of C++ alone, it seems like I&#8217;ll be able to actually get my system up and running in a matter of weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Category = DEATH!</title>
		<link>http://www.travislynn.com/blog/?p=20</link>
		<comments>http://www.travislynn.com/blog/?p=20#comments</comments>
		<pubDate>Tue, 17 Mar 2009 04:52:18 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[DEATH]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=20</guid>
		<description><![CDATA[As with all things, some are simply not feasible.  Such is the case with the door notification system. Okay, it&#8217;s completely feasible and, save for time, it&#8217;d be done by now.  Darn you, school!  When you&#8217;re done and gone I&#8217;ll be on my way to endless hobby-style projects that serve no purpose other than my [...]]]></description>
			<content:encoded><![CDATA[<p>As with all things, some are simply not feasible.  Such is the case with the door notification system.</p>
<p>Okay, it&#8217;s completely feasible and, save for time, it&#8217;d be done by now.  Darn you, school!  When you&#8217;re done and gone I&#8217;ll be on my way to endless hobby-style projects that serve no purpose other than my own amusement (or laziness).</p>
<p>Until the, some things must pass.</p>
<p>Door Notification System, you&#8217;re done.  Thanks for the information, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Book/Audio</title>
		<link>http://www.travislynn.com/blog/?p=19</link>
		<comments>http://www.travislynn.com/blog/?p=19#comments</comments>
		<pubDate>Mon, 16 Mar 2009 04:36:41 +0000</pubDate>
		<dc:creator>endlesstee</dc:creator>
				<category><![CDATA[Finished!]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://www.travislynn.com/blog/?p=19</guid>
		<description><![CDATA[This is my second book project. In this case it was last year&#8217;s valentine&#8217;s gift. The intention was to have it play a song songs when it was opened, but I couldn&#8217;t find a good &#038; cheap mp3 player or the time to make a good control circuit. The end result: a cut paper piece [...]]]></description>
			<content:encoded><![CDATA[<p>This is my second book project. In this case it was last year&#8217;s valentine&#8217;s gift. The intention was to have it play a song songs when it was opened, but I couldn&#8217;t find a good &#038; cheap mp3 player or the time to make a good control circuit. The end result: a cut paper piece of art with hidden speakers.  </p>
<p><a href="http://www.travislynn.com/blog/wp-content/uploads/2009/03/p-640-480-b2f21c25-5b29-4873-9ea7-a7b93d25914c.jpeg"><img src="http://www.travislynn.com/blog/wp-content/uploads/2009/03/p-640-480-b2f21c25-5b29-4873-9ea7-a7b93d25914c.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://www.travislynn.com/blog/wp-content/uploads/2009/03/p-640-480-f2a27110-5c2f-4ed7-852d-b078aa81d133.jpeg"><img src="http://www.travislynn.com/blog/wp-content/uploads/2009/03/p-640-480-f2a27110-5c2f-4ed7-852d-b078aa81d133.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.travislynn.com/blog/?feed=rss2&#038;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

