<?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"
	>

<channel>
	<title>coldspeLL</title>
	<atom:link href="http://coldspell.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://coldspell.net</link>
	<description>Life is complex.....simplify.</description>
	<pubDate>Wed, 24 Sep 2008 21:22:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Merging my two blogs</title>
		<link>http://coldspell.net/2008/09/24/merging-my-two-blogs/</link>
		<comments>http://coldspell.net/2008/09/24/merging-my-two-blogs/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 21:22:22 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://coldspell.net/?p=66</guid>
		<description><![CDATA[I just don&#8217;t have the time to maintain two blogs, so I am merging coldspeLL with my main blog :skyecade online. See you there.
]]></description>
			<content:encoded><![CDATA[<p>I just don&#8217;t have the time to maintain two blogs, so I am merging coldspeLL with my main blog <a href="http://skyecade.net">:skyecade online</a>. See you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/09/24/merging-my-two-blogs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Morse code translator (take two)</title>
		<link>http://coldspell.net/2008/03/26/morse-code-translator-take-two/</link>
		<comments>http://coldspell.net/2008/03/26/morse-code-translator-take-two/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 14:27:27 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://coldspell.net/2008/03/26/morse-code-translator-take-two/</guid>
		<description><![CDATA[Thanks to Yoshi for pointing out some redundancies I had in my code. In the original code that I was posting, I was using a &#8220;for&#8221; loop along with a counter. I was aware that the &#8220;for&#8221; loop acted as a counter itself, but I wasn&#8217;t aware that it actually took on the variable it [...]]]></description>
			<content:encoded><![CDATA[<p><img class="left" src="http://farm3.static.flickr.com/2113/2236263075_0bf53ae3ef_s.jpg" alt="Python" />Thanks to Yoshi for pointing out some redundancies I had in my code. In the original code that I was posting, I was using a &#8220;for&#8221; loop along with a counter. I was aware that the &#8220;for&#8221; loop acted as a counter itself, but I wasn&#8217;t aware that it actually took on the variable it was counting. This bit of information explains a lot. Thanks again Yoshi.</p>
<p>This is a better version, and less code. </p>
<pre>
#Python morse code translator

morse_code = {'a':'.-','b':'-...','c':'-.-.','d':'-..','e':'.',
            'f':'..-.','g':'--.','h':'....','i':'..','j':'.---',
            'k':'-.-','l':'.-..','m':'--','n':'-.','o':'---',
            'p':'.--.','q':'--.-','r':'.-.','s':'...','t':'_',
            'u':'..-','v':'...-','w':'.--','x':'-..-','y':'-.--',
            'z':'--..','0':'-----','1':'.----','2':'..---',
            '3':'...--','4':'....-','5':'.....','6':'-.... ',
            '7':'--...','8':'---..','9':'----.',' ':' | '}

#Function to translate string to morse code

def translate(data):
    text = data.lower()
    #guardian code

    for i in text:
        print morse_code[i] + '  ',

to_translate = raw_input("Type in the text that you would like
                              to translate into Morse code. ")

translate(to_translate)</pre>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/03/26/morse-code-translator-take-two/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Morse code translator</title>
		<link>http://coldspell.net/2008/03/21/morse-code-translator/</link>
		<comments>http://coldspell.net/2008/03/21/morse-code-translator/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 10:10:51 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://coldspell.net/2008/03/21/morse-code-translator/</guid>
		<description><![CDATA[I finally got around to whipping this up. It&#8217;s crude, but it&#8217;s a start. The next thing I need to do is fix the code tags for coldspell. They&#8217;re not behaving like good little tags should.

#Python morse code translator

morse_code = {'a':'.-','b':'-...','c':'-.-.','d':'-..','e':'.',
           'f':'..-.','g':'--.','h':'....','i':'..','j':'.---',
    [...]]]></description>
			<content:encoded><![CDATA[<p><img class="left" src="http://farm3.static.flickr.com/2113/2236263075_0bf53ae3ef_s.jpg" alt="Python" />I finally got around to whipping this up. It&#8217;s crude, but it&#8217;s a start. The next thing I need to do is fix the <em><strong>code</strong></em> tags for coldspell. They&#8217;re not behaving like good little tags should.</p>
<pre>
#Python morse code translator

morse_code = {'a':'.-','b':'-...','c':'-.-.','d':'-..','e':'.',
           'f':'..-.','g':'--.','h':'....','i':'..','j':'.---',
           'k':'-.-','l':'.-..','m':'--','n':'-.','o':'---',
           'p':'.--.','q':'--.-','r':'.-.','s':'...','t':'_',
           'u':'..-','v':'...-','w':'.--','x':'-..-','y':'-.--',
           'z':'--..','0':'-----','1':'.----','2':'..---',
           '3':'...--','4':'....-','5':'.....','6':'-.... ',
           '7':'--...','8':'---..','9':'----.',' ':' | '}

#Function to translate string to morse code

def translate(data):
    text = data.lower()
    #guardian code

    count = 0
    for i in text:
        print morse_code[text[count]] + '  ',
        count += 1

to_translate = raw_input("Type in the text that you would like
                             to translate into Morse code.  ")

translate(to_translate)</pre>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/03/21/morse-code-translator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The green light</title>
		<link>http://coldspell.net/2008/02/10/the-green-light/</link>
		<comments>http://coldspell.net/2008/02/10/the-green-light/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 15:53:35 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[health]]></category>

		<guid isPermaLink="false">http://coldspell.net/2008/02/10/the-green-light/</guid>
		<description><![CDATA[ I got the green light to start running again, but I&#8217;m under strict orders to start off slowly. 1 to 2 miles for the first week or so, and on even, level ground. No hills. That&#8217;s fine with me, I&#8217;m just happy to be able to get out and run again. I tend to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="left" src="http://farm3.static.flickr.com/2062/2254447231_40310f3ba1_t.jpg" alt="Running" /> I got the green light to start running again, but I&#8217;m under strict orders to start off slowly. 1 to 2 miles for the first week or so, and on even, level ground. No hills. That&#8217;s fine with me, I&#8217;m just happy to be able to get out and run again. I tend to get a little stir crazy this time of year and I&#8217;ve been itching to get outside. </p>
<p>My hamstring is feeling a lot better, although it&#8217;s not quite 100% yet. The stretching and strengthening techniques I&#8217;ve been learning in physical therapy have been a great help. As long as keep that up, I&#8217;m pretty confident I will be completely healed in a few months. <em>Knock on wood.</em></p>
<p>I plan on testing the waters this afternoon. <em>Giddyup!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/02/10/the-green-light/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Python programs (someday/maybe)</title>
		<link>http://coldspell.net/2008/02/02/python-programs-somedaymaybe/</link>
		<comments>http://coldspell.net/2008/02/02/python-programs-somedaymaybe/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 17:14:47 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://coldspell.net/2008/02/02/python-programs-somedaymaybe/</guid>
		<description><![CDATA[Since I don&#8217;t write software for a living, and since I&#8217;m not in the IT business, per se, it can sometimes be hard for me to figure out what kinds of programs I should write. That&#8217;s why I&#8217;ve been slowly compiling a list of programs that might be interesting and fun to write. These should [...]]]></description>
			<content:encoded><![CDATA[<p><img class="left" src="http://farm3.static.flickr.com/2113/2236263075_0bf53ae3ef_t.jpg" alt="Python" />Since I don&#8217;t write software for a living, and since I&#8217;m not in the IT business, per se, it can sometimes be hard for me to figure out <em>what</em> kinds of programs I should write. That&#8217;s why I&#8217;ve been slowly compiling a list of programs that might be interesting and fun to write. These should all be attainable at my current skill level&#8230;<em>well, almost</em>. I&#8217;m not saying they&#8217;ll be pretty, but hopefully functional. Here is what I have so far.</p>
<ul>
<li><strong>A texted based RPG</strong> -  I love games. This would be a fun little project to tackle. It&#8217;s still a bit out of my reach though I think.</li>
<li><strong>A small program that contains a dictionary of foods and their equivalent nutritional information</strong> (possibly just calories to start). - This will help out when I want to track my nutritional intake.</li>
<li><strong>A math game for Cameron</strong> - I thought I could make a game to help my 10 year old daughter with her math lessons. Maybe even unlock a code if she does well that will get her some sort of prize. This would be fun to write and beneficial to her.
</li>
<li><strong>A program that modifies the Zip Lead sheets into lowercase letters.</strong> -  At work, I get something called a <em>Zip lead</em> on a daily basis. It&#8217;s a spreadsheet of all the homes that have sold in our area. I would like to write a program that traverses the text, converts it into a format which I like, and places it in another file to use as mailing address for a later time. This one may also be a little out of my league, but maybe not for long.</li>
<li><strong>A time line program.</strong> - Something basic at first, but maybe incorporate some flash or Ajax in the future. </li>
<li><strong>A Morse code translator.</strong> - As I mentioned in my last post, I am reading a book about the rise (and fall) of the telegraph, and of course, Morse code. I thought it would be fun to write a little program that translates text into Morse code (and vice versa).</li>
</ul>
<p>Those are some of the ideas I have right now. I&#8217;ll post more as I think of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/02/02/python-programs-somedaymaybe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back on the Horse</title>
		<link>http://coldspell.net/2008/01/29/back-on-the-horse/</link>
		<comments>http://coldspell.net/2008/01/29/back-on-the-horse/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 23:11:39 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[health]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[photo]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[russian]]></category>

		<category><![CDATA[writing]]></category>

		<category><![CDATA[zen mind]]></category>

		<guid isPermaLink="false">http://coldspell.net/2008/01/29/back-on-the-horse/</guid>
		<description><![CDATA[Things have been looking good. I&#8217;ve been going to physical therapy for my hamstring and I can already fell the  improvements. It will be some time before I get the go ahead to put my running shoes back on, so in the meantime, I&#8217;ve beefed up my weight training and added yoga to my [...]]]></description>
			<content:encoded><![CDATA[<p>Things have been looking good. I&#8217;ve been going to physical therapy for my hamstring and I can already fell the  improvements. It will be some time before I get the <em>go ahead</em> to put my running shoes back on, so in the meantime, I&#8217;ve beefed up my weight training and added yoga to my regiment. <em>Yeah, yoga.</em> Let&#8217;s talk about yoga for a minute. If you asked a year ago if I would ever consider trying yoga, I would have said &#8220;no way&#8221;. Here I am one year later all twisted up like a pretzel. And I&#8217;ll tell you another thing, I really like it. I honestly can say I feel incredible after a yoga session. Not only that, this particular routine I&#8217;m doing focuses heavily on meditation. Multiple positive anyone? Then again, all yoga may focus heavily on meditation for all I know. </p>
<p>My Russian has been improving steadily too. Not only have I been doing my lessons on a regular basis, but I&#8217;ve been finding ways to incorporate the language throughout my day. For example, I often answer my co-workers questions in Russian. <em>It only pisses them off a little.</em> I also only count in Russian. I&#8217;ll do this a lot when I&#8217;m working out, counting reps or tracking time. It&#8217;s a great way to keep my mind thinking Russian.</p>
<p>I may be getting a new Camera too. My 10D has had quite a bit of dust on the mirror for the last year and every attempt I&#8217;ve made to remedy this problem has failed. This includes spending $75 to send it to Canon directly. Well, I&#8217;ve decided to cut my losses and buy the new Rebel XSi (12.2mp) when it comes out in April. It&#8217;s about time I upgraded anyways. I&#8217;ll keep you posted, but hopefully I&#8217;ll start taking significantly more photos after I make the plunge. </p>
<p>I&#8217;ve been doing a lot of writing too. Actually, I never <em>really</em> stopped. I write in my journal at least once a week, but more often several times a week. These entries can range anywhere from day to day activities, thoughts and ideas, character development, random lists, just about anything that pops into my mind. It&#8217;s oddly liberating to get all your ideas out of you head and into written form. I highly recommend it.</p>
<p>Python and music are next on my list. I plan to do some coding tomorrow morning when I get up. In all fairness, a lot of my time has been spent reading lately. Currently I&#8217;m in the middle of two great books; <a href="http://www.amazon.com/Benjamin-Franklin-American-Walter-Isaacson/dp/074325807X/ref=pd_bbs_1?ie=UTF8&#038;s=books&#038;qid=1201573245&#038;sr=8-1">The Victorian Internet</a> and <a href="http://www.amazon.com/Benjamin-Franklin-American-Walter-Isaacson/dp/074325807X/ref=pd_bbs_1?ie=UTF8&#038;s=books&#038;qid=1201573245&#038;sr=8-1">Ben Franklin: An American Life</a>. Both are really fascinating.</p>
<p>I&#8217;ve also been watching some of the <a href="http://open.yale.edu/courses/">open courses Yale is offering</a>. Specifically, <a href="http://open.yale.edu/courses/philosophy/index.html">Professor Kagan&#8217;s Philosophy course on death</a>. This is what makes the Internet great, free knowledge. I&#8217;m not watching online courses made specifically for the net, but an actual Yale course, taught at Yale, by an actual Yale professor, in front of a real Yale class. Life is good. I even have homework. I have to read <a href="http://classics.mit.edu/Plato/phaedo.html">Plato&#8217;s Phaedo</a> before the next class. </p>
<p><em>Coincidentally enough, that link to Plato&#8217;s Phaedo takes you to M.I.T.&#8217;s site, another incredible organization that promotes free knowledge for everyone.</em></p>
<p>But now I&#8217;m just rambling, and I&#8217;m hungry, so it&#8217;s time to wrap this up.</p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/01/29/back-on-the-horse/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Winter recalibration!</title>
		<link>http://coldspell.net/2008/01/19/winter-recalibration/</link>
		<comments>http://coldspell.net/2008/01/19/winter-recalibration/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 15:40:39 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://coldspell.net/2008/01/19/winter-recalibration/</guid>
		<description><![CDATA[It&#8217;s been quiet here at coldspeLL lately. I&#8217;m not going to lie to you, I&#8217;m in a major rut. Alas, the point of this blog is not to chronicle just the good times, but the not-so-good times too. It&#8217;s important to understand your dips so you can learn how to claw your way out of [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quiet here at coldspeLL lately. I&#8217;m not going to lie to you, I&#8217;m in a major rut. Alas, the point of this blog is not to chronicle just the good times, but the not-so-good times too. It&#8217;s important to understand your dips so you can learn how to claw your way out of them. From April to October, I was a self-improving machine. I was highly focused and highly energized. Things started to fall apart right around November. I didn&#8217;t see it falling apart at the time..<em>you never do</em>..but looking back, I can see how my routine slowly decayed. That got me thinking about routines.. <em>and water for that matter.</em> Routines are a great tool to have, but the more rigid you make them, the more fragile they become. That&#8217;s what I think happened to me. The next routine I conjure up will be a lot less rigid and a lot more fluid..<em>like water</em>. I want to be able to change up my routine any time I have to with out throwing the entire process out of <em>balance</em>. Now I just have to figure out how to do that.</p>
<p>So what did happen? Where did it all go wrong for me? I think it really started when the cold weather set in. It&#8217;s very hard to get up at five in the morning when it&#8217;s two degrees out. It&#8217;s also pitch black until seven o&#8217;clock this time of year..<em>so depressing!</em> I found myself not getting up so much, and since a good chunk of my daily routine involved me getting up at the crack of dawn, the whole process suffered as a result. </p>
<p>Then, sometime in October I injured my hamstring. It wasn&#8217;t so bad that I couldn&#8217;t run on it, or at least that&#8217;s what I thought. I&#8217;m not, what one might call, an athletic person. I don&#8217;t have much knowledge of muscles and muscle groups and other such things. As my hamstring got worse, I would take a week off from running here and there. It never seemed to get better though. Then December came around and I decided not to run at all and see if it would eventually heal. It hasn&#8217;t.</p>
<p>Then came the holidays. My daily routine wasn&#8217;t very compatible with the holiday season. Especially the eating healthy foods part. Blah! The rest of my goals just fell apart after that. I all but stopped getting up early, which lead to less Python lessons and less meditation. Lack of running coupled with eating junk has taken a toll on my energy levels. Lack of energy had me opting to watch TV rather than read or study Russian. It was a nasty domino effect. </p>
<p>It&#8217;s not over yet, though. I&#8217;ve been reading a lot of the entries I made into my journal. Trying to remember what I did, how I felt, etc&#8230; It&#8217;s like getting advice from my past self. Then I remembered why everything worked for me. I started small. I need to get back to the basics. Back when I started all this I kept telling myself that anything was better than nothing. If I didn&#8217;t feel like exercising, I would just repeat <em>that quote</em> and commit to something lite, like ten push-ups. Ten isn&#8217;t much, but it was better than nothing. I used the same philosophy with my studies. Instead of studying a full section in my Python book, I might read a few Python blogs, or browse the Python forums. It&#8217;s not much, but it was better than nothing. This also helps to build confidence. Instead of giving in and not exercising at all, I would just lower the task and complete it. A completed task is a victory, at least on a subconscious level.</p>
<p>I also love Nike&#8217;s &#8220;Just Do It&#8221; slogan. Those three words have motivated me more than any other three words I can think of. &#8220;Just Do It&#8221;. So I did. And I kept on doing it.</p>
<p>Now I just have to do it again. Stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2008/01/19/winter-recalibration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Run log</title>
		<link>http://coldspell.net/2007/11/30/run-log-2/</link>
		<comments>http://coldspell.net/2007/11/30/run-log-2/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 16:22:51 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[health]]></category>

		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://coldspell.net/2007/11/30/run-log-2/</guid>
		<description><![CDATA[3 miles in 30:38:84
Not my best run. My hamstring has been kicking my butt lately. I think it&#8217;s because I&#8217;ve been slacking off when it comes to stretching after every run. Oops! Now I&#8217;m paying for it.
]]></description>
			<content:encoded><![CDATA[<p>3 miles in 30:38:84</p>
<p>Not my best run. My hamstring has been kicking my butt lately. I think it&#8217;s because I&#8217;ve been slacking off when it comes to stretching after every run. Oops! Now I&#8217;m paying for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2007/11/30/run-log-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Run log</title>
		<link>http://coldspell.net/2007/11/29/run-log/</link>
		<comments>http://coldspell.net/2007/11/29/run-log/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 20:22:58 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[health]]></category>

		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://coldspell.net/2007/11/29/run-log/</guid>
		<description><![CDATA[2.2 miles in 17:20:32. 
]]></description>
			<content:encoded><![CDATA[<p>2.2 miles in 17:20:32. </p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2007/11/29/run-log/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Has anyone seen Federico?</title>
		<link>http://coldspell.net/2007/11/15/has-anyone-seen-federico/</link>
		<comments>http://coldspell.net/2007/11/15/has-anyone-seen-federico/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 14:12:46 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
		
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://coldspell.net/2007/11/15/has-anyone-seen-federico/</guid>
		<description><![CDATA[Who is Federico? Federico is the name I gave to my motivation. You see, motivation is like a good friend who stands behind you whispering words of encouragement as you engage in some sort of activity that you would normally tend to avoid. Your own personal pep talker, if you will.  Unfortunately, Federico hasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Who is Federico? Federico is the name I gave to my <em>motivation</em>. You see, <em>motivation</em> is like a good friend who stands behind you whispering words of encouragement as you engage in some sort of activity that you would normally tend to avoid. Your own personal pep talker, if you will.<span class="Apple-converted-space">  </span>Unfortunately, Federico hasn&#8217;t been around for the last two weeks. I can&#8217;t find him anywhere! Without him,&#8230; lifting weights, running, programming, eating healthy&#8230; just about everything I set out to do doesn&#8217;t seem quite so exciting.<span class="Apple-converted-space"> </span></p>
<p>Then there is Jack. Jack is my <em>self discipline</em>. Jack is more like a drill sergeant, constantly yelling at me, telling me to do this or that. Jack&#8217;s not as subtle as Federico and he can be downright mean at times. When Jack is around, he gets the job done. The thing is, I think Jack left with Federico. <em>Where can they be?</em></p>
<p>So now I&#8217;m forced to hang out with Daryl and Seth. Daryl is my <em>procrastination</em> and Seth is my <em>laziness</em>. Seth just sits around all day doing nothing. He pisses me off. Daryl is good friends with Seth. He never wants to do anything now, always later. He says things like, &#8220;we can just do it tomorrow&#8221; or &#8220;we might as well start fresh next week&#8221; or &#8220;I&#8217;m to tired right now, maybe later&#8221;. He pisses me off too, especially when I take his advice.<span class="Apple-converted-space"> </span></p>
<p>I think it&#8217;s time for Seth and Daryl to take their leave. They&#8217;ve been hanging around too much lately. I&#8217;m going to confront them today and tell them they are not welcome here anymore. It&#8217;s going to be awkward. Wish me luck&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://coldspell.net/2007/11/15/has-anyone-seen-federico/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
