<?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>Flock of Cats &#187; Computers</title>
	<atom:link href="http://www.flockofcats.com/tag/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flockofcats.com</link>
	<description>Politics, Video Games, Japan, Random Stuff, Etc</description>
	<lastBuildDate>Tue, 28 Sep 2010 17:16:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Deal cards</title>
		<link>http://www.flockofcats.com/sneaky/stuff/deal-cards/</link>
		<comments>http://www.flockofcats.com/sneaky/stuff/deal-cards/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 14:16:48 +0000</pubDate>
		<dc:creator>sneaky</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://www.flockofcats.com/?p=877</guid>
		<description><![CDATA[Here is some more C++, I am just posting it here to dump it somewhere to show it to someone with 1337 hacks. Please disregard if this sort of thing bores or confuses you. ^_^


#include &#60;iostream&#62;
#include &#60;string&#62;
#include &#60;cstdlib&#62;
#include &#60;ctime&#62;
using namespace std;
 
struct cards {
string face;
string suit;
int value;
bool dealt;
};
string face_choice[13] = {"A", "2", "3", "4", "5", [...]]]></description>
			<content:encoded><![CDATA[<p>Here is some more C++, I am just posting it here to dump it somewhere to show it to someone with 1337 hacks. Please disregard if this sort of thing bores or confuses you. ^_^</p>
<p><span id="more-877"></span><br />
<code><br />
#include &lt;iostream&gt;<br />
#include &lt;string&gt;<br />
#include &lt;cstdlib&gt;<br />
#include &lt;ctime&gt;</code></p>
<p><code>using namespace std;</code></p>
<p><code> </code></p>
<p><code>struct cards {<br />
string face;<br />
string suit;<br />
int value;<br />
bool dealt;<br />
};</p>
<p>string face_choice[13] = {"A", "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K"};<br />
int value_choice[13] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10};</p>
<p>cards deck[52];<br />
cards your_card[52];</p>
<p>void initial_deck()<br />
{<br />
int  n(0);</p>
<p>for (n=0; n&lt;52; n++)<br />
{<br />
deck[n].dealt=0;<br />
if ((n/13) == 0)<br />
{	deck[n].suit="Hearts";<br />
deck[n].face=face_choice[n];<br />
deck[n].value=value_choice[n];}</p>
<p>if ((n/13) == 1)<br />
{	deck[n].suit="Diamonds";<br />
deck[n].face=face_choice[n-13];<br />
deck[n].value=value_choice[n-13];<span style="background-color: #ffffff; ">}</span></p>
<p>if ((n/13) == 2)<br />
{	deck[n].suit="Clubs";<br />
deck[n].face=face_choice[n-26];<br />
deck[n].value=value_choice[n-26];}<br />
if ((n/13) == 3)<br />
{	deck[n].suit="Spades";<br />
deck[n].face=face_choice[n-39];<br />
deck[n].value=value_choice[n-39];}<br />
}<br />
}</p>
<p>void deal (int d_num)<br />
{<br />
int n (0);</p>
<p>srand((unsigned)time(0));<br />
int random_integer(0);<br />
int lowest=0, highest=51;<br />
int range=(highest-lowest)+1;</p>
<p>cout &lt;&lt; "Here are your card(s): " &lt;<br />
for ( n=0; n &lt; d_num; n++)<br />
{ random_integer = lowest+int(range*rand()/(RAND_MAX + 1.0));</p>
<p>if (deck[random_integer].dealt != 1)<br />
{your_card[n]=deck[random_integer];<br />
cout&lt;&lt; endl &lt;&lt; your_card[n].face &lt;&lt; " of " &lt;&lt;  your_card[n].suit &lt;&lt; " which is worth " &lt;&lt;  your_card[n].value;<br />
deck[random_integer].dealt=1;}</p>
<p><span style="background-color: #ffffff; ">} </span></p>
<p>}</p>
<p>int main ()<br />
{</p>
<p>int deal_number;</p>
<p>initial_deck();</p>
<p>cout &lt;&lt; "How many cards do you want? (0-52)" &lt;&lt; endl; cin &gt;&gt; deal_number;</p>
<p>if ((deal_number &gt; 52) || (deal_number &lt; 0)){<br />
cout &lt;&lt; "Sorry, there aren't that many cards in the deck!" &lt;&lt; endl;}<br />
else if (deal_number == 0)<br />
cout &lt;&lt; "That's cool, I didn't want to give you cards anyway!" &lt;&lt; endl;<br />
else<br />
deal(deal_number);</p>
<p>return 0;</p>
<p></code></p>
<p><code>}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flockofcats.com/sneaky/stuff/deal-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Staring at a Computer All Day</title>
		<link>http://www.flockofcats.com/yulzopolis/work/staring-at-a-computer-all-day-2/</link>
		<comments>http://www.flockofcats.com/yulzopolis/work/staring-at-a-computer-all-day-2/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 22:03:45 +0000</pubDate>
		<dc:creator>Yulzopolis</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.flockofcats.com/yulzopolis/email-updates/staring-at-a-computer-all-day-2/</guid>
		<description><![CDATA[It is hard to sit at work looking at a monitor all day.  And in some
ways it is harder when I have less work to do.  When I&#8217;m being
productive, I look at pieces of paper, make phone calls, type in MS
Word, and go back and forth to the printer.  On days like [...]]]></description>
			<content:encoded><![CDATA[<p>It is hard to sit at work looking at a monitor all day.  And in some<br />
ways it is harder when I have less work to do.  When I&#8217;m being<br />
productive, I look at pieces of paper, make phone calls, type in MS<br />
Word, and go back and forth to the printer.  On days like today when I<br />
have nothing to do, I just sit here and read the news and check my<br />
email.  It&#8217;s mind numbing and makes my eyes hurt.  But what else can I<br />
do?  I can only talk to coworkers for so long before attracting<br />
unwanted attention.  And I can only go walk around outside for a few<br />
minutes before my absence becomes conspicuous.</p>
<p>Oh!  The trials and tribulations of an office worker!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flockofcats.com/yulzopolis/work/staring-at-a-computer-all-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overclocking my i7 920 on an evga x58 SLI motherboard</title>
		<link>http://www.flockofcats.com/sneaky/video-games/mother-board-evga-x58-x3-sli/</link>
		<comments>http://www.flockofcats.com/sneaky/video-games/mother-board-evga-x58-x3-sli/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 01:22:09 +0000</pubDate>
		<dc:creator>sneaky</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[overclocking]]></category>
		<category><![CDATA[Sneaky's New Computer]]></category>

		<guid isPermaLink="false">http://www.flockofcats.com/?p=597</guid>
		<description><![CDATA[For the last few days, I&#8217;ve been playing with overclocking my computer.   Now, I think I&#8217;ve found stable settings that will boost my CPU from the stock speed of 2.67 GHz to 3.84 GHz.  These settings were stable for 7 hours of overnight Prime95 testing, so they are looking pretty good.
(Prime95 is a program [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few days, I&#8217;ve been playing with overclocking my computer.   Now, I think I&#8217;ve found stable settings that will boost my CPU from the stock speed of 2.67 GHz to 3.84 GHz.  These settings were stable for 7 hours of overnight Prime95 testing, so they are looking pretty good.</p>
<p>(Prime95 is a program that stresses the CPU by performing prime number calculations.  This runs the CPU at 100% and heats it up. The program compares the computer&#8217;s calculations against known answers in order to check for errors).</p>
<p>For my computer at stock speeds, idle temps usually are about 38-42 C, and under a full load, the temps go up to around 65-70.</p>
<p>Overclocked, I get temperatures of 43-46 C idle and 77-81 C under load.  These temperatures are considered safe for my chip and motherboard, so assuming everything stays stable, these will probably be my final settings.  Though I might try to lower some of the voltages in the bios to see if I can cool it down a little, while maintaining stability.</p>
<p>For geeks curious about the settings, at stock speeds my computer has a clock speed of 133 MHz and a multiplier of 20. Thus, 133&#215;20=2.67 GHz.  The chip also has &#8220;Turbo mode&#8221;.  The multiplier for the chip is capped at 20x, but turbo mode will boost it to 21x.</p>
<p>Now I have my computer set to 183&#215;20, with turbo mode enabled.  This results in a speed of 183&#215;21= 3.84 GHz.</p>
<p>In the next few days, I&#8217;ll run some benchmarks to see if this results in a noticeable improvements in the computers performance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flockofcats.com/sneaky/video-games/mother-board-evga-x58-x3-sli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desk Upgrade</title>
		<link>http://www.flockofcats.com/sneaky/stuff/desk-upgrade/</link>
		<comments>http://www.flockofcats.com/sneaky/stuff/desk-upgrade/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 08:37:14 +0000</pubDate>
		<dc:creator>sneaky</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[desk]]></category>
		<category><![CDATA[Sneaky's New Computer]]></category>

		<guid isPermaLink="false">http://www.flockofcats.com/?p=516</guid>
		<description><![CDATA[
Today I upgraded my desk&#8230;now  it has a cup holder!  
This is to protect my new computer from my cat.  The new computer is going to sit on the floor to the right side of the desk and the top of the case has a fan.  This could be very dangerous since my cat has [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.com/lh/photo/IbEjYcFOuugbyrGVtSld4g?feat=directlink"><img class="alignnone" title="Cup Holder" src="http://lh3.ggpht.com/_3AVFfxDIRs8/SWr6_3tRBCI/AAAAAAAABWY/MnoMFkdW0L4/s400/090112_1706~01.jpg" alt="" width="320" height="240" /></a></p>
<p>Today I upgraded my desk&#8230;now  it has a cup holder!  </p>
<p>This is to protect my new computer from my cat.  The new computer is going to sit on the floor to the right side of the desk and the top of the case has a fan.  This could be very dangerous since my cat has a habit of knocking over cups full of liquid.  If he knocked over a drink on the right side of my desk, it could easily spill into the fan grating and ruin my whole system.  </p>
<p>At first I thought I&#8217;d simply refrain from putting beverages on my desk, but that  isn&#8217;t realistic; there&#8217;s no way I could stick with it.  Setting cups on the left side of the desk away from the computer could work, but it is still a little risky.  If I forget once, it could be disaster.</p>
<p>So I bought a cup holder with a sticky bottom for use in cars, and stuck it on my desk.  This should be sturdy enough to keep the cat from spilling stuff.  As an added benefit, it will aways be there reminding me of the proper place to put my beverages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flockofcats.com/sneaky/stuff/desk-upgrade/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Benchmarking the Old Computer</title>
		<link>http://www.flockofcats.com/sneaky/video-games/benchmarking-the-old-computer/</link>
		<comments>http://www.flockofcats.com/sneaky/video-games/benchmarking-the-old-computer/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 14:31:27 +0000</pubDate>
		<dc:creator>sneaky</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[benchmarking]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Sneaky's New Computer]]></category>

		<guid isPermaLink="false">http://www.flockofcats.com/?p=463</guid>
		<description><![CDATA[Tonight, I decided to run some benchmarks on my old computer so that I can compare the new one once I get it built.  Here are my old computer&#8217;s stats:

AMD Athlon64 3000+ (Winchester, 90 nm, 1800 MHz, 512 KB L2 cache)
Asus A8V Deluxe motherboard (Rev. 1, American Megatrends 1018.001 BIOS)
2&#215;1 GB Dual Channel OCZ [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-464 alignright" title="athlon64" src="http://www.flockofcats.com/blog/wp-content/uploads/2009/01/athlon64.gif" alt="athlon64" width="160" height="181" />Tonight, I decided to run some benchmarks on my old computer so that I can compare the new one once I get it built.  Here are my old computer&#8217;s stats:</p>
<ul>
<li>AMD Athlon64 3000+ (Winchester, 90 nm, 1800 MHz, 512 KB L2 cache)</li>
<li>Asus A8V Deluxe motherboard (Rev. 1, American Megatrends 1018.001 BIOS)</li>
<li>2&#215;1 GB Dual Channel OCZ Platinum DDR3200 RAM</li>
<li>Radeon x850 AGP graphics card</li>
<li>75 GB system drive / 500 GB storage drive, SATA</li>
</ul>
<p>I ran tests of file compression, system boot time, image processing, Firefox load time, mp3 ripping, file copying, and 3Dmark05. Here are the results:</p>
<p><strong>File Compression</strong> &#8211; Using 7-Zip, I created an archive of a 314 MB file. This took 5 min 40 s at an average rate of about 900 KB/s.</p>
<p><strong>System Boot Time</strong> &#8211; The time it took from powering up to the windows loading screen was 39 s.  From there, it took 29 s for Windows to load to the user selection screen.  After logging it, it took 56 s for all the startup programs and processes to run.  The grand total: 2 min 4 s.</p>
<p><strong>Image Processing</strong> &#8211; To test image processing, I used the Gimp to do a Gaussian blur on a 1920&#215;1200, 172 KB JPEG image. I then scaled the original image 400% and ran the Gaussian blur filter again.  I then made a copy of the enlarged image and ran the Gaussian blur filter on the two large images simultaneously.</p>
<p>Gaussian Blur (1920&#215;1000): 7 s<br />
Scale 400%: 33 s<br />
Gaussian Blur (7680&#215;4800): 45 s<br />
Gaussian Blur x 2 (7680&#215;4800) 1 min 30 s</p>
<p>Interestingly, using the filter on two images simultaneously resulted in an exact doubling of the processing time.  The CPU was at 100% the whole time, so clearly this is a CPU-limited function.  I&#8217;ll be interested to see what the i7 chip will do for this test.</p>
<p><strong>Firefox Load Time</strong> &#8211; After rebooting, Firefox took 13 s to load for the first time following a reboot.</p>
<p><strong>MP3 Ripping</strong> &#8211; Ripping an audio CD (Uta Baka by Ken Harai, Disk 1) took 4 m 10 s using my DVD-ROM drive and 4 m 50 s using my DVD burner.  Next, I ripped the CD using the DVD-ROM drive while playing &#8220;Portal&#8221; at the same time.  This bumped the time up to 7 m 40 s.</p>
<p><strong>File Copying</strong> &#8211; Copying 2.54 GB of Battlestar Galactica Season 2 from my storage drive to my system drive took 2 m 10 s.  Then, when I made copies from the system drive to the system drive, it took 3 m 20 s.</p>
<p><strong>3Dmark05</strong> Lastly, I ran the free version of 3Dmark05.  This gave me a 3Dmark05 score of 4474 and a CPU score of 1001.</p>
<p>Once I get the new computer up and running, I&#8217;ll run these tests again using the new rig and compare the results. Since my new processor has multiple cores, I&#8217;m interested in seeing the results of the the Portal/mp3 test and the 2x image processing test.  Will the mp3&#8217;s rip just as fast as if I wasn&#8217;t playing portal? Will I be able to process the two images in roughly the same time as one?  Copying files within the system drive should speed up since I&#8217;m getting a VelociRaptor drive, though I&#8217;m curious if there will be any improvement copying from the storage drive to the system drive (if the speed of my 500 GB drive is the limiting factor, the improvement may be small).</p>
<p><strong>**Update:</strong></p>
<p><strong> Portal FPS</strong></p>
<p><span style="-webkit-text-decorations-in-effect: underline; text-decoration: underline;">Normal Settings (default, 1920&#215;1200)</span><br />
Min: 37<br />
Max: 189<br />
Avg: 113<br />
<span style="-webkit-text-decorations-in-effect: underline; text-decoration: underline;">High Settings (AA: 4x, AF:4x, most other settings maxed, 1920&#215;1200)</span><br />
Min: 37<br />
Max: 157<br />
Avg: 102.66</p>
<p>This probably isn&#8217;t the best test since I only tested the very beginning of the game, and Portal isn&#8217;t the most taxing game on a system.   Also, if I set  the AA/AF above 4x, the game crashed and wouldn&#8217;t load when I restarted.  Although the results for the high settings listed above aren&#8217;t bad, at those settings, my system was totally incapable of rendering portals.  Possibly a major problem for a game called &#8220;Portal&#8221;.  The fps dropped to 1 whenever a portal came onto the screen.</p>
<p>Maybe tomorrow I&#8217;ll test another game.  In the comments, Naft recommended F.E.A.R.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flockofcats.com/sneaky/video-games/benchmarking-the-old-computer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New Computer</title>
		<link>http://www.flockofcats.com/sneaky/video-games/new-computer/</link>
		<comments>http://www.flockofcats.com/sneaky/video-games/new-computer/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 06:49:07 +0000</pubDate>
		<dc:creator>sneaky</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Sneaky's New Computer]]></category>

		<guid isPermaLink="false">http://www.flockofcats.com/?p=434</guid>
		<description><![CDATA[I just bought parts to build a new computer system.  I spent way too much money on it, but I think it should be pretty nice.  Also, the system should have a lot of room for upgrades in the future.
The system has the following parts:
Intel i7 920 2.66 GHz Processor  I was thinking about going with [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-435" title="cm_haf932-1" src="http://www.flockofcats.com/blog/wp-content/uploads/2009/01/cm_haf932-1-209x300.jpg" alt="cm_haf932-1" width="209" height="300" />I just bought parts to build a new computer system.  I spent way too much money on it, but I think it should be pretty nice.  Also, the system should have a lot of room for upgrades in the future.</p>
<p>The system has the following parts:</p>
<p><a href="http://www.compusa.com/applications/SearchTools/item-details.asp?EdpNo=4240166&amp;CatId=4074">Intel i7 920 2.66 GHz Processor</a>  I was thinking about going with a Quad core processor since I could save money on the CPU, motherboard, and RAM, but I decided to splurge on the new architecture since it is supposed to perform well and I&#8217;ll be able to upgrade the CPU later without having to get a new motherboard.  Also, this CPU apparently can do a decent overclock under air cooling &#8211; probably up to 3.5-3.8 GHz without much trouble.</p>
<p><a href="http://www.compusa.com/applications/searchtools/item-Details.asp?EdpNo=4146085&amp;sku=C283-1187&amp;srkey=HAF%20932">Cooler Master HAF 932 Case</a> I probably could have saved money on the case, but I thought this one looked cool. It should give good air flow to keep the components cool.</p>
<p><a href="http://www.clevery.co.jp/eshop/g/g4571225043616/">Scythe Mugen 2 Cooler</a> Most components in Japan are super expensive, but this looks like a nice CPU cooler that was cheaper than what I could get in America.  Right now, the selection isn&#8217;t great for LGA 1366 socket coolers, but maybe I got lucky ordering in Japan for this one.  And I hope it fits in my system.</p>
<p><a href="http://www.compusa.com/applications/SearchTools/item-details.asp?EdpNo=3905589&amp;CatId=2458">Western Digital VelociRaptor 300 GB Hard Drive</a> I&#8217;m gonna move a 500 GB drive from my old computer for storage and a 75 GB drive to use for Ubuntu, so I thought I&#8217;d buy this fast drive for my windows drive.  </p>
<p><a href="http://www.compusa.com/applications/searchtools/item-details.asp?EdpNo=4151773&amp;cm_mmc">BFG GTX 260 MaxCore OC2</a> Only one video card for now.  This one comes with a factory overclock (630 MHz vs. 576 MHz for the reference design). Hopefully,  I can bump it up a little more.</p>
<p><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16824001294&amp;nm_mc=OTC-C173T&amp;cm_mmc=OTC-C173T-_-Monitors+-+LCD+Flat+Panel-_-SAMSUNG-_-24001294">Samsung 2443BW 24 inch LCD Monitor</a> Got this from Amazon.co.jp where it was only $300 bucks and shipped over night for like 2 dollars.  Seems like a good deal for a pretty big monitor. </p>
<p><a href="http://www.compusa.com/applications/searchtools/item-details.asp?EdpNo=3985032&amp;cm_mmc">Corsair 1000HX Power Supply</a> I probably spent too much on the power supply, but it&#8217;ll be good for future upgrades.  If I want, I could add 2 more video cards to run in Tri-SLI.  Also, everywhere I read said not to buy an off-brand power supply.</p>
<p><a href="http://www.compusa.com/applications/searchtools/item-details.asp?EdpNo=4282862&amp;cm_mmc">6 GB (3&#215;2 GB) Patriot Viper 1600 MHz DDR3 RAM</a> Hopefully this is more RAM than I&#8217;ll ever need.  I also got the 64-bit version of Windows Vista so that the system can recognize more than 4 GB of memory.  But if I ever want more RAM when the prices go down, my motherboard has 3 more slots where I could put in another 6 GB.  I got 1600 MHz instead of 1333 MHz to give more head room for overclocking.</p>
<p><a href="http://www.compusa.com/applications/searchtools/item-details.asp?EdpNo=4303020&amp;cm_mmc">EVGA x58 SLI Motherboard</a> This can accomodate up to 3 graphics cards and 12 GB of RAM and can handle overclocking.  Of course it has networking, sound, USB onboard.  </p>
<p><a href="http://bto.goodwill.jp/goods/detail.php?ngds_no=210123">LG Blu-ray Burner</a> Not sure if I&#8217;ll need a blu-ray burner, but I thought it would be nice to have.  And since I&#8217;ll have an HD monitor, I thought it would be good to be able to play HD media.</p>
<p>The total for the system was about $2100 plus $300 for the monitor and $170 for Vista 64.  And I&#8217;ll probably have to pay about $100 for my brother to ship all the stuff to me from America.  Hopefully I can start putting this badboy together in a couple weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flockofcats.com/sneaky/video-games/new-computer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

