<?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>The Nameless Site</title>
	<atom:link href="http://www.halkeye.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.halkeye.net</link>
	<description>Meow Meow Meow Meow</description>
	<lastBuildDate>Sat, 13 Feb 2010 05:52:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BATMAN</title>
		<link>http://www.halkeye.net/2010/02/12/batman/</link>
		<comments>http://www.halkeye.net/2010/02/12/batman/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 05:52:44 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.halkeye.net/2010/02/12/batman/</guid>
		<description><![CDATA[


BATMAN, originally uploaded by halkeye.


BATMANNNNNNNN
BATMAN WAS AT THE OLYMPICS!
]]></description>
			<content:encoded><![CDATA[<div style="text-align: left; padding: 3px;">
<a href="http://www.flickr.com/photos/halkeye/4353110560/" title="photo sharing"><img src="http://farm5.static.flickr.com/4046/4353110560_5f06134f08.jpg" style="border: solid 2px #000000;" alt="" /></a><br />
<br />
<span style="font-size: 0.8em; margin-top: 0px;"><a href="http://www.flickr.com/photos/halkeye/4353110560/">BATMAN</a>, originally uploaded by <a href="http://www.flickr.com/people/halkeye/">halkeye</a>.</span>
</div>
<p>
BATMANNNNNNNN</p>
<p>BATMAN WAS AT THE OLYMPICS!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2010/02/12/batman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;free laptop&#8221; facebook scam</title>
		<link>http://www.halkeye.net/2010/01/20/free-laptop-facebook-scam/</link>
		<comments>http://www.halkeye.net/2010/01/20/free-laptop-facebook-scam/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 08:11:52 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.halkeye.net/?p=374</guid>
		<description><![CDATA[Ah, the things that people believe on the internet. I&#8217;d like to believe its not work that is making me paranoid, but it mostly is. Plus I get paid to help try to find the flaws in things before the time is spent developing them.
The interesting about this thing, is when I first saw the <a href="http://www.halkeye.net/2010/01/20/free-laptop-facebook-scam/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Ah, the things that people believe on the internet. I&#8217;d like to believe its not work that is making me paranoid, but it mostly is. Plus I get paid to help try to find the flaws in things before the time is spent developing them.</p>
<p>The interesting about this thing, is when I first saw the title of the facebook group, I was sure that was odd, but I quickly ignored it and moved on. Then I saw it again tonight, and I started to do a bit of digging.</p>
<p>http://www.brain-thee.co.uk/2010/01/how-to-tell-a-scam-on-social-networking-sites/ manages to describe my thought process pretty well actually. But I went a few steps more. I got very weirded out by the fact they wanted me to use javascript to select all my friends for invite (I still can&#8217;t believe I immediately recognized that javascript the second I saw it.). So after I visited the page they said you could only visit after you invited your friends (look at that, I visited it fine).</p>
<p>Anyways, to make a long story short, I started to dig through the js on the page, found out its essentially a small page with a ad or something to c p a l e a d (dot com, I don&#8217;t want to link to it). That in itself isn&#8217;t that interesting, its the fact that it tries to detect firebug so you can disable whatever it does (video maybe? I run with noscript so I don&#8217;t see it).</p>
<p>I put the code up on pastebin @ http://pastebin.com/d40ea2d1c for anyone who is curious. Its simply the only javascript on the scammers page after I ran it through the reverse dean edwards packer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2010/01/20/free-laptop-facebook-scam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I get my own ugly code</title>
		<link>http://www.halkeye.net/2009/10/07/1007i_get_my_own_ugly_code/</link>
		<comments>http://www.halkeye.net/2009/10/07/1007i_get_my_own_ugly_code/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 07:47:34 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[
?View Code PERLsub rw &#123; my $word = &#34;$_[0]&#34;; $word =~ s/(.)/rc($1)/ge; $word;&#125;
sub rc &#123; return &#40;&#40;rand&#40;1&#41;*2+1&#41;%2&#41; ? lc&#40;$_&#91;0&#93;&#41;: uc&#40;$_&#91;0&#93;&#41;;    &#125;

(i don&#8217;t care about efficiency or whatnot, i was just creating a simple function for a unit test, it just looks like someone threw up some letters.
]]></description>
			<content:encoded><![CDATA[
<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p336code2'); return false;">View Code</a> PERL</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3362"><td class="code" id="p336code2"><pre class="perl" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">sub</span> rw <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">my</span> <span style="color: #0000ff;">$word</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;$_[0]&quot;</span><span style="color: #339933;">;</span> <span style="color: #0000ff;">$word</span> <span style="color: #339933;">=~</span> <span style="color: #009966; font-style: italic;">s/(.)/rc($1)/ge</span><span style="color: #339933;">;</span> <span style="color: #0000ff;">$word</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">sub</span> rc <span style="color: #009900;">&#123;</span> <span style="color: #000066;">return</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000066;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">%</span>2<span style="color: #009900;">&#41;</span> <span style="color: #339933;">?</span> <span style="color: #000066;">lc</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$_</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000066;">uc</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$_</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>    <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>(i don&#8217;t care about efficiency or whatnot, i was just creating a simple function for a unit test, it just looks like someone threw up some letters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2009/10/07/1007i_get_my_own_ugly_code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>osqdb has to be one of the worst peices of code I have seen in a while.</title>
		<link>http://www.halkeye.net/2008/05/19/osqdb_has_be_one_worst_peices_code_i_have_seen_while/</link>
		<comments>http://www.halkeye.net/2008/05/19/osqdb_has_be_one_worst_peices_code_i_have_seen_while/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Tonight I was trying to convert the old custom quote system I used for #arc to qdb just for fun. I was trying to find out the code used by qdb.us/bash.org but came across this peice of code called OSQDB.
Here&#8217;s an exerpt of code called whenever a new quote is added.

?View Code PHP$get = mysql_query&#40;&#34;SELECT <a href="http://www.halkeye.net/2008/05/19/osqdb_has_be_one_worst_peices_code_i_have_seen_while/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Tonight I was trying to convert the old custom quote system I used for #arc to qdb just for fun. I was trying to find out the code used by qdb.us/bash.org but came across this peice of code called OSQDB.</p>
<p>Here&#8217;s an exerpt of code called whenever a new quote is added.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p335code4'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3354"><td class="code" id="p335code4"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$get</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT * FROM quotes ORDER BY id DESC LIMIT 1&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$get</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$tempid</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$count</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;id&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">/* Increment the id */</span>
<span style="color: #000088;">$newid</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$tempid</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;INSERT INTO quotes SET id = '<span style="color: #006699; font-weight: bold;">$newid</span>'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;UPDATE quotes SET quote = '<span style="color: #006699; font-weight: bold;">$newquote</span>' WHERE id = '<span style="color: #006699; font-weight: bold;">$newid</span>'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;UPDATE quotes SET comment = '<span style="color: #006699; font-weight: bold;">$comment</span>' WHERE id = '<span style="color: #006699; font-weight: bold;">$newid</span>'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;UPDATE quotes SET ip = '<span style="color: #006699; font-weight: bold;">$ip</span>' WHERE id = '<span style="color: #006699; font-weight: bold;">$newid</span>'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>1) It loops through 1 entry trying to find the latest entry number (I&#8217;m sure max() is faster than order by and limit).<br />
2) Once its it found, it does one insert with the id being set. Then it does 3 more queries setting each field in its own query.</p>
<p>That sorta explains why the db doesn&#8217;t have auto_increment fields turned on, but its scary. I&#8217;m afraid of looking at much more of the code. Luckily I then found <A href="http://sourceforge.net/projects/rqms/">Rash Quote Management System</a>. I don&#8217;t like this one very much either.. but they are more personal reasons versus code issues.</p>
<p>I should clean up and submit patches (it doesn&#8217;t seem to have been updated since 2006) for rqms.<br />
<!--break--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2008/05/19/osqdb_has_be_one_worst_peices_code_i_have_seen_while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finished Naruto: Rise of a Ninja</title>
		<link>http://www.halkeye.net/2008/05/04/finished_naruto_rise_ninja/</link>
		<comments>http://www.halkeye.net/2008/05/04/finished_naruto_rise_ninja/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[xbox360]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have to say, I&#8217;m totally surprised at this game. I was told before hand it was a pretty decent game, and it did keep me entertained for the week I rented it.
Now the game, as the anime, is very repetitive. I didn&#8217;t find it too bad, but I ended up not finishing all the <a href="http://www.halkeye.net/2008/05/04/finished_naruto_rise_ninja/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>I have to say, I&#8217;m totally surprised at this game. I was told before hand it was a pretty decent game, and it did keep me entertained for the week I rented it.</p>
<p>Now the game, as the anime, is very repetitive. I didn&#8217;t find it too bad, but I ended up not finishing all the optional missions because I got tired of the racing missions. </p>
<p>The timed ones in general were not bad, but when you got 5-10 minute long races with traps that can easily delay you enough so you can&#8217;t get to the next checkpoint it gets really annoying. The worst was the last one I did. I got to one gate from the end, then got stuck behind a trap. It took forever to get that far.</p>
<p>I also found the jutsu really awkward to do in battles too. You had to knock the other guy away far enough to wait for the bar to fill up fully. Luckly you could do smaller powered ones quicker. I ended up mostly just doing rapid regular combat combos.</p>
<p>But as I said, the game was overall enjoyable, and I did manage to finish the game.. at least I think I did, I got the credits, but then i was thrown back into town, so I&#8217;m not sure.</p>
<p>Either way, I&#8217;m glad I rented it, It doesn&#8217;t have enough replayability to buy the game, but the one shot rental was kinda cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2008/05/04/finished_naruto_rise_ninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outside Free Comic Book Day @ Elfsar</title>
		<link>http://www.halkeye.net/2008/05/04/outside_free_comic_book_day_elfsar/</link>
		<comments>http://www.halkeye.net/2008/05/04/outside_free_comic_book_day_elfsar/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[
 
 
 
  Outside Free Comic Book Day @ Elfsar
  
  Originally uploaded by halkeye
 

Free comic book day yesterday was kinda cool. I got a bunch new books which will hopefully get me interested in comics (again). 
There were so many people there though, including a few in costume. I <a href="http://www.halkeye.net/2008/05/04/outside_free_comic_book_day_elfsar/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://www.flickr.com/photos/halkeye/2462993639/" title="photo sharing"><img src="http://farm3.static.flickr.com/2184/2462993639_ff05c2548e_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
 <br />
 <span style="font-size: 0.9em; margin-top: 0px;"><br />
  <a href="http://www.flickr.com/photos/halkeye/2462993639/">Outside Free Comic Book Day @ Elfsar</a><br />
  <br />
  Originally uploaded by <a href="http://www.flickr.com/people/halkeye/">halkeye</a><br />
 </span>
</div>
<p>Free comic book day yesterday was kinda cool. I got a bunch new books which will hopefully get me interested in comics (again). </p>
<p>There were so many people there though, including a few in costume. I wish I got a shot of supergirl and two face. Those are still awesome costumes, I&#8217;m totally impressed.<br />
<br clear="all" /><br />
<!--break--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2008/05/04/outside_free_comic_book_day_elfsar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Please people&#8230;learn to ask questions.</title>
		<link>http://www.halkeye.net/2008/04/04/please_people_learn_ask_questions/</link>
		<comments>http://www.halkeye.net/2008/04/04/please_people_learn_ask_questions/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;ve been playing around with some new jquery/javascript this week.. All has been going well, i&#8217;ve been learning just how bad UI is lately.. I wish interface worked still in the latest versions, UI is extremely slow, plus the documentation currently does not fully match the code (well actually they might, but we are using <a href="http://www.halkeye.net/2008/04/04/please_people_learn_ask_questions/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with some new <a href="http://www.jquery.com">jquery</a>/javascript this week.. All has been going well, i&#8217;ve been learning just how bad <a href="http://ui.jquery.com">UI</a> is lately.. I wish <a href="http://interface.eyecon.ro/">interface</a> worked still in the latest versions, <a href="http://ui.jquery.com">UI</a> is extremely slow, plus the documentation currently does not fully match the code (well actually they might, but we are using an older version of UI due to the fact that the new ones are less functional).</p>
<p>Anyways, lots of people pop in #jquery and ask questions.. which is good, &#8217;cause i learn about new plugins or ideas, etc. But there are a lot of people who just can&#8217;t figure out how to ask a question.</p>
<p>Examples of bad people:<br />
* &lt;yoav&gt; guys i&#8217;m stuck tryin&#8217; to get an ajax form to work with jquery and codeigniter &lt;yoav&gt;stuck as in it&#8217;s not working<br />
(i&#8217;m surprised i can&#8217;t find more in my recent logs)<br />
or my fav, and i can&#8217;t find an example from my current logs<br />
* &lt;someone&gt; Can I ask a question?<br />
* &lt;someone&gt; I have a question (in which the reply is no, thats a statement)</p>
<p>Between those and the people who know next to nothing about javascript, css and html, expecting that jquery will be really easy and needing to be hand held through every little step is really frustrating. </p>
<p>I gotta setup some irssi aliases now to point to http://reactor-core.org/irc-help.html (which I just found)..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2008/04/04/please_people_learn_ask_questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow at the skytrain</title>
		<link>http://www.halkeye.net/2008/03/29/snow_skytrain/</link>
		<comments>http://www.halkeye.net/2008/03/29/snow_skytrain/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[
 
 
 
  Snow at the skytrain
  
  Originally uploaded by halkeye
 

look at the awesome snow we had this morning
it so barely is noticeable.


]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://www.flickr.com/photos/halkeye/2370771978/" title="photo sharing"><img src="http://farm4.static.flickr.com/3202/2370771978_aa6707554b_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
 <br />
 <span style="font-size: 0.9em; margin-top: 0px;"><br />
  <a href="http://www.flickr.com/photos/halkeye/2370771978/">Snow at the skytrain</a><br />
  <br />
  Originally uploaded by <a href="http://www.flickr.com/people/halkeye/">halkeye</a><br />
 </span>
</div>
<p>look at the awesome snow we had this morning<br />
it so barely is noticeable.<br />
<br clear="all" /></p>
<p><!--break--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2008/03/29/snow_skytrain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xbox live cards</title>
		<link>http://www.halkeye.net/2008/01/06/xbox_live_cards/</link>
		<comments>http://www.halkeye.net/2008/01/06/xbox_live_cards/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[
 
 
 
  xbox live cards
  
  Originally uploaded by halkeye
 

Someone explain these to me. I mean I understand not wanting to give your credit card to xbox. I sure didn&#8217;t. There are so many stories of bad things with people being unable to un-associate cc#s and accounts, people racking <a href="http://www.halkeye.net/2008/01/06/xbox_live_cards/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://www.flickr.com/photos/halkeye/2174698014/" title="photo sharing"><img src="http://farm3.static.flickr.com/2033/2174698014_d91ee27a1f_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
 <br />
 <span style="font-size: 0.9em; margin-top: 0px;"><br />
  <a href="http://www.flickr.com/photos/halkeye/2174698014/">xbox live cards</a><br />
  <br />
  Originally uploaded by <a href="http://www.flickr.com/people/halkeye/">halkeye</a><br />
 </span>
</div>
<p>Someone explain these to me. I mean I understand not wanting to give your credit card to xbox. I sure didn&#8217;t. There are so many stories of bad things with people being unable to un-associate cc#s and accounts, people racking up bills, etc. Plus if your account gets hacked, they get access to your CC.</p>
<p>So I went out and bought the pre-paid cards. They are much easier to use, and I think safer. Except they are totally one time use, and after that.. they are done, you just toss them out. And they come in huge plastic cases too. I think this has to be like the biggest waste of packing i&#8217;ve had all year.</p>
<p>Sad.</p>
<p>Least now I can download games from live.<br />
<br clear="all" /><br />
<!--break--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2008/01/06/xbox_live_cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tin Man</title>
		<link>http://www.halkeye.net/2007/12/03/tin_man/</link>
		<comments>http://www.halkeye.net/2007/12/03/tin_man/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Gavin</dc:creator>
				<category><![CDATA[TV]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Wow, Tin Man is&#8230; well it has zooey&#8230;
Well I have met all the characters, dorthy, tin man, guy without a brain, and I&#8217;m sure the heart guy too.
It&#8217;s really .. out there.
Reminds me alot of the new Flash Gordon. I&#8217;m not really sure which is more..lamer..
It started off so bad, but its gotten a lot <a href="http://www.halkeye.net/2007/12/03/tin_man/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Wow, <a href="http://www.scifi.com/tinman/">Tin Man</a> is&#8230; well it has zooey&#8230;<br />
Well I have met all the characters, dorthy, tin man, guy without a brain, and I&#8217;m sure the heart guy too.</p>
<p>It&#8217;s really .. out there.<br />
Reminds me alot of the new Flash Gordon. I&#8217;m not really sure which is more..lamer..</p>
<p>It started off so bad, but its gotten a lot better, every time it starts to feel right and entertaining, something new and weird happening.</p>
<p>they keep talking about &#8220;The Oh.Zee.&#8221;, as in the outer zone, but it sounds very WB like. We&#8217;ll have to see what episode 2 is like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.halkeye.net/2007/12/03/tin_man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
