<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Light dude's site</title>
        <link>http://www.byond.com/members/Lightdude</link>
        <description></description>
        <lastBuildDate>Sat, 11 Feb 2012 03:28:31 +0000</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Javascript Problem</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=278378</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=278378</guid>
            <pubDate>Sun, 17 Oct 2010 14:19:48 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=278378#comments</comments>
            
            <description>&lt;div class=&quot;dmcode&quot;&gt;
&lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;pre class=&quot;dmcode&quot;&gt;
&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; a = 0;&lt;br&gt;function checkName()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.fname.value ==&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&amp;quot;&lt;/span&gt; || document.Form.lname.value ==&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;&amp;quot;&lt;/span&gt;)&lt;br&gt;    {&lt;br&gt;        alert(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Please enter your first and last name.&amp;quot;&lt;/span&gt;);&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;    }&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; true;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function checkFirstQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; chosenA = -1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; w=0; w &amp;lt;= 1; w++)&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_1[w].checked)&lt;br&gt;            chosenA = 1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(chosenA == -1)&lt;br&gt;    {&lt;br&gt;        alert(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Question 1 remains unanswered.&amp;quot;&lt;/span&gt;);&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;    }&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; true;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function answerSecondQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_1.AnsA1.checked)&lt;br&gt;        a++;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        a;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function checkSecondQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; chosenB = -1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; x=0; x&amp;lt;=1; x++)&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_2[x].checked)&lt;br&gt;            chosenB = 1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(chosenB == -1)&lt;br&gt;    {&lt;br&gt;        alert(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Question 2 remains unanswered.&amp;quot;&lt;/span&gt;);&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;    }&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; true;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function answerSecondQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_2.AnsC2.checked)&lt;br&gt;        a++;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        a;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function checkThirdQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; chosenC = -1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; y=0; y&amp;lt;=1; y++)&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_3[y].checked)&lt;br&gt;            chosenC = 1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(chosenC == -1)&lt;br&gt;    {&lt;br&gt;        alert(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Question 3 remains unanswered.&amp;quot;&lt;/span&gt;);&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;    }&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; true;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function answerThirdQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_3.AnsD3.checked)&lt;br&gt;        a++;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        a;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function checkForthQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; chosenD = -1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;for&lt;/span&gt;(&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt; z=0; z&amp;lt;=1; z++)&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_4[z].checked)&lt;br&gt;            chosenD = 1;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(chosenD == -1)&lt;br&gt;    {&lt;br&gt;        alert(&lt;span class=&quot;dmstring&quot;&gt;&amp;quot;Question 4 remains unanswered.&amp;quot;&lt;/span&gt;);&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;    }&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; true;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function answerForthQuestion()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(document.Form.Answer_4.AnsB4.checked)&lt;br&gt;        a++;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        a;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function checkForm()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;( !checkName())&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(!checkFirstQuestion())&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;        &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(!checkSecondQuestion())&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;            &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; (!checkThirdQuestion())&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;                &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; (!checkForthQuestion())&lt;br&gt;                                &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; false;&lt;br&gt;                    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;                        &lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; true;&lt;br&gt;}&lt;br&gt;&lt;br&gt;function displayAnswer()&lt;br&gt;{&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(checkForm() == true &amp;amp;&amp;amp; a == 4)&lt;br&gt;        document.Form.Score.value == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;100%&amp;quot;&lt;/span&gt;;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(checkForm() == true &amp;amp;&amp;amp; a == 3)&lt;br&gt;        document.Form.Score.value == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;75%&amp;quot;&lt;/span&gt;;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(checkForm() == true &amp;amp;&amp;amp; a == 2)&lt;br&gt;        document.Form.Score.value == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;50%&amp;quot;&lt;/span&gt;;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(checkForm() == true &amp;amp;&amp;amp; a == 1)&lt;br&gt;        document.Form.Score.value == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;25%&amp;quot;&lt;/span&gt;;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(checkForm() == true &amp;amp;&amp;amp; a == 0)&lt;br&gt;        document.Form.Score.value == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;0%&amp;quot;&lt;/span&gt;;&lt;br&gt;    &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt;&lt;br&gt;        document.Form.Score.value == &lt;span class=&quot;dmstring&quot;&gt;&amp;quot;404: File Not Found&amp;quot;&lt;/span&gt;;&lt;br&gt;}
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
Here's my situation: I'm trying to make a 4-question test. The checkQuestion() functions check to see if the respective question was unanswered. The answerQuestion(), which is where I'm having my problems, is supposed to check if the answer is the correct answer; if it is, add one to a variable called 'a'. The displayAnswer() is supposed to display an answer in a textbox that says how many answers they got right. When I run it and answer all the correct answers though, it displays that Question 2 is unanswered. So how would I make it work?</description>
        </item>
                <item>
            <title>PSP = Rotter</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=99809</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=99809</guid>
            <pubDate>Wed, 04 Aug 2010 21:03:49 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=99809#comments</comments>
            
            <description>To me, video game consoles fit into one of two categories: the fermenters and the rotters. The fermenters are the ones that have the best games that are even fun years after its release (like the SNES and N64). However, the rotters are the ones that are soon to be forgotten and get low sales, only to escape the minds of people in future generations. A newer example exemplifies this: the PSP.&lt;br&gt;
&lt;br&gt;
The PSP, in terms of hardware, is quite possibly the most powerful handheld on the market today. It has the capacity to display movies at an acceptable quality and frame rate, and can display video games near to what the Playstation 2 has. The reason why it's put in the rotters is because Sony didn't do anything with it. Until recently, where big-hit games finally got onto the console (Soulcalibur, Metal Gear Solid, LittleBigPlanet), there wasn't any games that made people &lt;i&gt;want&lt;/i&gt; to run out to buy one. Hell, Sony went as far as to say &lt;a href=&quot;http://kotaku.com/5546731/the-fall-of-the-psp-in-america-due-to-piracy-says-sony&quot;&gt;piracy killed the PSP&lt;/a&gt;*. On the other side of the coin for that argument, the Nintendo DS has a higher rate of piracy, yet Nintendo has sold over &lt;a href=&quot;http://www.vgchartz.com/&quot;&gt;130 million&lt;/a&gt; of them. In real numbers, that's 130,000,000+. You know why? Because of the laundry list of amazing and awesome games that were released for it. Sure, there was a decent game every now and then for the PSP, but still, there was literally nothing to attract people into buying Sony's gadget.&lt;br&gt;
&lt;br&gt;
Yes, games have that much of an impact of hardware sales. It's how humans are with video games: go for the console that has the best games. Tell you what, Sony. The next time you sit down to make an all-new handheld console, support it with awesome games. You would be amazed of how many people would buy your console.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
*like some of the comments state in the article, like everyone else, I can download physical hardware to my computer. Because of that, I would refer Sony to &lt;a href=&quot;http://www.downloadmoreram.com/&quot;&gt;this site&lt;/a&gt;.</description>
        </item>
                <item>
            <title>Xbox 360 Slim Still Needs to be Fixed</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=97542</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=97542</guid>
            <pubDate>Sun, 27 Jun 2010 00:58:03 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=97542#comments</comments>
            
            <description>So the new 360 Slim is out, yet basic, rudimentary stuff that was broken with the regular 360 is still prevalent in the Slim. For example, the whole &lt;a href=&quot;http://www.youtube.com/watch?v=qblBGTtMMhY&quot;&gt;disc fiasco&lt;/a&gt;. If the 360 is moved in a particular way while it's running, it carves a neat circle around your disc. Yes, you are probably wondering why someone would move it in the first place while it's running. Nonetheless, this is a pretty big sized problem, that the console is carving circles in the discs, and probably needed to be addressed before releasing new models.&lt;br&gt;
&lt;br&gt;
The RRoD was also prevalent in the previous model, and it happened when the hardware would overheat so much it would die. Apparently, to prevent the console from cooking its own guts on a skillet, it now has the ability to &lt;a href=&quot;http://www.lazygamer.co.za/xbox-360/new-xbox-360-slim-shuts-itself-down-if-it-overheats/&quot;&gt;shut itself off&lt;/a&gt; if a hardware failure is imminent. Yet again, some of you are probably wondering why someone would have the 360 in an enclosed space. Even so, it still runs pretty hot, compared to the original fatty PS3's and their obnoxiously loud fans. One thing I could suggest is a better fan; preferably, one that cools the guts of the 360 to approximately room temperature and &lt;b&gt;does its job&lt;/b&gt;. Is that really hard?&lt;br&gt;
&lt;br&gt;
Microsoft, I like your OS line, yet you severely screwed up with the 360. Hopefully your next console will be better and will have all of the kinks and problems ironed out.</description>
        </item>
                <item>
            <title>Once Again...</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=97478</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=97478</guid>
            <pubDate>Fri, 25 Jun 2010 23:09:14 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=97478#comments</comments>
            
            <description>Yet again, thank you Teka123 for buying me a sub. If you guise ever get a chance to talk to him, be sure to thank him for donating so much to BYOND.</description>
        </item>
                <item>
            <title>Gamestop Defense</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=87534</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=87534</guid>
            <pubDate>Thu, 17 Dec 2009 00:17:17 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=87534#comments</comments>
            
            <description>Earlier today, a few of us in Chatters got into an argument about Gamestop's trade-in prices. So might as well share my opinion with whoever missed it.&lt;br&gt;
&lt;br&gt;
If you haven't taken a business or economics class, there is one thing a business needs to stay afloat: profit. Profit is when you are making more money than you are spending, which puts you in the black (and is how Black Friday got its name: businesses mark profit with black marker and losses with red marker). Like any business, Gamestop also needs profit. How they make their profit is by buying your game at a low price and selling your game at a higher price. To get the price, they put it in the following guidelines:&lt;br&gt;
&lt;br&gt;
1. How long the game has been out&lt;br&gt;
2. Popularity&lt;br&gt;
3. Profit&lt;br&gt;
4. Current price the game is being sold at&lt;br&gt;
5. Stock&lt;br&gt;
&lt;br&gt;
All of this blends to make a good profit. What do they do with the profit? Easy: they pay their workers, they pay the rent, and they pay the corporation, as a whole.&lt;br&gt;
&lt;br&gt;
Going back to buying your games low, they purchase them low in order to make a good profit. Don't complain that they buy your game for so low and sell it for so high. They cannot purchase it from you at a high price. Why? Consider the following:&lt;br&gt;
&lt;br&gt;
1. How do they know that someone will purchase this copy of the game?&lt;br&gt;
2. How much are they selling other copies of the game?&lt;br&gt;
3. Is the price you want for it match or exceed the price of the other used copies currently being sold there?&lt;br&gt;
&lt;br&gt;
Of course, this also factors into the price. And if you still don't agree with the money they'll give you, sell it on eBay or Amazon.com if you think your game has that monetary worth. So don't complain that you sold your copy of a certain game when you got so many options at your disposal.&lt;br&gt;
&lt;br&gt;
To wrap this blog post up, think of this when you go to Gamestop to sell your game(s): when you first bought it, did you get your monetary worth out of the game?</description>
        </item>
                <item>
            <title>Spike TV's Video Game Awards</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=87366</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=87366</guid>
            <pubDate>Sun, 13 Dec 2009 20:45:12 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=87366#comments</comments>
            
            <description>So last night Spike TV had their annual Video Game Awards. I didn't watch all of it (I turned to bits and pieces throughout the night), but as the night drew on and on, it got more pathetic (mainly due to the abundance of shitty bands they got and how lousy it was). What has happened to video games that have led to this?&lt;br&gt;
&lt;br&gt;
Nowadays, it seems that every other game that is released is another FPS. Sure, back in the day there was FPS's, but the ones that sucked horribly never made it to a sequel. The better games actually spawned sequels which were as amazing as the last and improved on some other things. It's like they have an ice cream machine that just spits out FPS's in one of two flavours:&lt;br&gt;
&lt;br&gt;
1.) Yet another generic futuristic space game with aliens&lt;br&gt;
2.) Yet another generic war video game&lt;br&gt;
&lt;br&gt;
It seems that video games that are innovative and define a genre are dwindling in place for FPS's. Don't get me wrong, there are great FPS's now (L4D for instance). But then we get more, and more, and more. To be quite frank: ease up on the FPS's and make a more variety of games.&lt;br&gt;
&lt;br&gt;
The quality of video games in general is starting to really dwindle, as well. Instead of video game companies busting their asses off in order to make a successful sequel, they do a Copy+Paste maneuver with the previous game in order to make the next game. So on the shelf of any Gamestop (or video game store) is a line of mediocre games and a small section of great and innovative video games.&lt;br&gt;
&lt;br&gt;
The main problem is that video game companies like Sony and Microsoft are focusing more on the graphics of the game rather than the gameplay aspect. So what you get is a 360 that spins the disk so loud it sounds like a jet taking off and a PS3 that has to do huge installs on the hard drive to bring it just under a level that completely cripples the console. That is why Sony and Microsoft are coming out with their own interactive accessories: Nintendo focused more on the gameplay aspect rather than the graphical aspect. And you can see it &lt;a href=&quot;http://www.vgchartz.com/&quot;&gt;payed off&lt;/a&gt;. The sales for the Wii have surpassed those of the 360's and the PS3's sales.&lt;br&gt;
&lt;br&gt;
I don't know. Maybe it's just that after 14 years of playing video games, new video games have become, how you should say, stale.</description>
        </item>
                <item>
            <title>Just a Quick Question</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=84829</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=84829</guid>
            <pubDate>Sat, 31 Oct 2009 01:21:39 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=84829#comments</comments>
            
            <description>At the college I'm attending, we're using iMac's running Boot Camp. This brings me to a question:&lt;br&gt;
&lt;br&gt;
&lt;img src=&quot;http://upload.wikimedia.org/wikipedia/commons/d/da/Mighty_Mouse.jpg&quot;&gt;&lt;br&gt;
&lt;br&gt;
Who the fuck invented this shit? It's like holding a potato.</description>
        </item>
                <item>
            <title>New Computer</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=74661</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=74661</guid>
            <pubDate>Mon, 29 Jun 2009 14:15:25 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=74661#comments</comments>
            
            <description>So last Monday I got a new computer. Here are the specs (from my Xfire account):&lt;br&gt;
&lt;br&gt;
Processor: AMD Athlon(tm) Dual Core Processor 4450e (2 CPUs), ~2.3GHz&lt;br&gt;
Memory: 3072MB RAM&lt;br&gt;
Hard Drive: 250 GB&lt;br&gt;
Video Card: NVIDIA GeForce 6150SE nForce 430&lt;br&gt;
Sound Card: Speakers (Realtek High Definition Audio)&lt;br&gt;
Speakers/Headphones: Platinum UBL Series&lt;br&gt;
&lt;br&gt;
It did come with Windows Vista Home Premium. So far, nothing has gone wrong with it, which brings me to a question: why do people think it sucks?</description>
        </item>
                <item>
            <title>A Reason Not to Buy A Macbook Air</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=66325</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=66325</guid>
            <pubDate>Sun, 26 Apr 2009 14:52:36 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=66325#comments</comments>
            
            <description>Both from Best Buy&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.bestbuy.com/site/olspage.jsp?skuId=9119759&amp;st=Macbook+air&amp;lp=3&amp;type=product&amp;cp=1&amp;id=1218026347675&quot;&gt;Macbook Air&lt;/a&gt;&lt;br&gt;
Display: 13.3&quot;&lt;br&gt;
Intel Core 2 Duo mobile processor: 1.86GHz&lt;br&gt;
2GB DDR3 SDRAM&lt;br&gt;
128GB Hard Drive&lt;br&gt;
NVIDIA GeForce 9400M graphics&lt;br&gt;
1 2.0 USB Port&lt;br&gt;
Price: $2,499.99&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.bestbuy.com/site/olspage.jsp?skuId=9172511&amp;type=product&amp;id=1218043606827&quot;&gt;Gateway - FX Edition Laptop with Intel® Centrino® 2 Processor Technology&lt;/a&gt;&lt;br&gt;
Display: 17&quot;&lt;br&gt;
Intel® Centrino® 2 processor technology with interrelated Intel® Core2 Duo processor P8400&lt;br&gt;
4GB DDR3 RAM&lt;br&gt;
320GB Hard Drive&lt;br&gt;
NVIDIA GeForce 9800M GTS graphics&lt;br&gt;
4 2.0 USB Ports&lt;br&gt;
Price: $1,149.99&lt;br&gt;
&lt;br&gt;
Suck it, Apple</description>
        </item>
                <item>
            <title>BYOND Membership... Oh Word?</title>
            <link>http://www.byond.com/members/Lightdude?command=view_post&amp;post=64881</link>
            <guid>http://www.byond.com/members/Lightdude?command=view_post&amp;post=64881</guid>
            <pubDate>Mon, 20 Apr 2009 20:39:33 +0000</pubDate>
            
            <comments>http://www.byond.com/members/Lightdude?command=view_comments&amp;post=64881#comments</comments>
            
            <description>So &lt;a href=&quot;http://www.byond.com/members/teka123&amp;quot;&amp;quot;&quot;&gt;Teka123&lt;/a&gt; bought me a membership. I never had one before, so this is a new experience. So if you are reading this post, tell him he's awesome. And Teka123, thanks man.</description>
        </item>
            
    </channel>
</rss>


