<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Rick's Page</title>
        <link>http://www.byond.com/members/Sokkiejjj</link>
        <description>Wassup?</description>
        <lastBuildDate>Sat, 21 Nov 2009 17:36:40 GMT</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Soon to get a sexy gaming rig</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=49505</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=49505</guid>
            <pubDate>Sun, 19 Oct 2008 00:49:05 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=49505#comments</comments>
            
            <description>Tomorrow I'm building my gaming rig!&lt;br&gt;
The specs are going to be:&lt;br&gt;
&lt;br&gt;
- AMD Phenom X4 9950 2,6Ghgz OCing to 3,1Ghz stable&lt;br&gt;
- MSI DKA790GX Motherboard&lt;br&gt;
- Club3D ATI HD4870 X2 2GB-GDDR5&lt;br&gt;
- Corsair Dominator DDR2-1066 4GB memory&lt;br&gt;
- 2x Samsung F1 640Gb in RAID0&lt;br&gt;
&lt;br&gt;
I'm very happy with the setup I'm soon getting and will most probably run Vista x64 Ultimate. =D&lt;br&gt;
&lt;br&gt;
Rick</description>
        </item>
                <item>
            <title>Pixel movement, easy?</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=45888</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=45888</guid>
            <pubDate>Mon, 28 Jul 2008 08:35:48 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=45888#comments</comments>
            
            <description>I always thought Pixel Movement was some hard ass coding. But I think I figured it out, because it works perfectly at me.&lt;br&gt;
&lt;br&gt;
I'm not a expert at this kind of coding, and yes, you guys will probably will find flaws, and I will already apologize for the shitty code because I know you guys would've done it on a other way.&lt;br&gt;
&lt;br&gt;
But here is it anyway:&lt;br&gt;
&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;
client
    North(){usr.pixel_y++;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_y&amp;gt;=64){usr.y+=2;usr.pixel_y=0}}
    South(){usr.pixel_y--;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_y&amp;lt;=-64){usr.y-=2;usr.pixel_y=0}}
    West(){usr.pixel_x--;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_x&amp;lt;=-64){usr.x-=2;usr.pixel_x=0}}
    East(){usr.pixel_x++;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_x&amp;gt;=64){usr.x+=2;usr.pixel_x=0}}
    Northeast(){usr.pixel_y++;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_y&amp;gt;=64){usr.pixel_y=0;usr.y+=2};usr.pixel_x++;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_x&amp;gt;=64){usr.x+=2;usr.pixel_x=0}}
    Northwest(){usr.pixel_y++;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_y&amp;gt;=64){usr.pixel_y=0;usr.y+=2};usr.pixel_x--;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_x&amp;lt;=-64){usr.x-=2;usr.pixel_x=0}}
    Southeast(){usr.pixel_y--;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_y&amp;lt;=-64){usr.y-=2;usr.pixel_y=0};usr.pixel_x++;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_x&amp;gt;=64){usr.x+=2;usr.pixel_x=0}}
    Southwest(){usr.pixel_y--;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_y&amp;lt;=-64){usr.y-=2;usr.pixel_y=0};usr.pixel_x--;&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(usr.pixel_x&amp;lt;=-64){usr.x-=2;usr.pixel_x=0}}
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
I was also figuring why 64 pixels and 2 locs would work, but why 32 pixels and 1 loc change wouldn't work correctly, but I couldn't find that out, so I sticked to 64 and 2.&lt;br&gt;
&lt;br&gt;
Well yeah,&lt;br&gt;
&lt;br&gt;
It's probably shit, but I think it's worth it.&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
&lt;br&gt;
Rick</description>
        </item>
                <item>
            <title>Perfect screen sizes D:</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=45796</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=45796</guid>
            <pubDate>Sat, 26 Jul 2008 03:23:13 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=45796#comments</comments>
            
            <description>For a 1920x1200 resolution screen, 33x33 in terms of WxH in &lt;tt&gt;client.screen&lt;/tt&gt; is perfect.&lt;br&gt;
&lt;br&gt;
For a 1440x900 resolution screen, 23x23 in terms of WxH in &lt;tt&gt;client.screen&lt;/tt&gt; is perfect.&lt;br&gt;
&lt;br&gt;
But what I did notice is, that I get this at 66x66 WxH on icon size 16&amp;sup2;:&lt;br&gt;
&lt;a href=&quot;http://img179.imageshack.us/my.php?image=inkyshittyblackthingsyg1.png&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://img179.imageshack.us/img179/7374/inkyshittyblackthingsyg1.th.png&quot; border=&quot;0&quot; alt=&quot;Free Image Hosting at www.ImageShack.us&quot;&gt;&lt;/a&gt;&lt;br&gt;
Meh, it's weird...</description>
        </item>
                <item>
            <title>Getting an iMac or MacBook (Pro)...</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=43923</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=43923</guid>
            <pubDate>Mon, 09 Jun 2008 07:14:14 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=43923#comments</comments>
            
            <description>Well, first of all, I want to buy one of the two, and my best shot would be the 15&quot; MacBook Pro.&lt;br&gt;
&lt;br&gt;
But, I want to ask you guys a few questions before I buy it...&lt;br&gt;
&lt;br&gt;
- Is a Mac really worth the money?&lt;br&gt;
- If you've a Mac or a MacBook or anything from Apple aside iPods, what's your experience?&lt;br&gt;
- Is a Mac recommend, if so; what's the best for a &quot;Mac&quot; beginner for me? Should I buy the iMac or a MacBook or a MacBook Pro?&lt;br&gt;
- &lt;i&gt;Any more information I need to know before buying an Mac related product, please let me know...&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
my friend kept saying I should get an iMac or a MacBook (Pro), I have to admit they're nice looking things.&lt;br&gt;
My friend has an iMac 20&quot; and a MacBook 13,3&quot; white and they both work fine for him. And I love that I'm able to use XP/Vista on it (well, not Vista, but whatever).&lt;br&gt;
&lt;br&gt;
Well, you can see I want this to succeed the right way, and not come home with it that it's all stupid and stuff.&lt;br&gt;
&lt;br&gt;
Thanks for reading and hope you reply,&lt;br&gt;
&lt;br&gt;
Rick</description>
        </item>
                <item>
            <title>Best PC/Laptop Brand</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=43689</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=43689</guid>
            <pubDate>Mon, 02 Jun 2008 11:15:30 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=43689#comments</comments>
            
            <description>What's the best laptop/PC brand in your opinion?</description>
        </item>
                <item>
            <title>Boredom...</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=43646</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=43646</guid>
            <pubDate>Sun, 01 Jun 2008 13:32:36 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=43646#comments</comments>
            
            <description>What boredom made me do...&lt;br&gt;
I know I made a horrible spelling error at Parabolic, which should be Parabola or something. But whatever. Boredom rules.&lt;br&gt;
&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;
mob/&lt;span class=&quot;dmkeyword&quot;&gt;proc&lt;/span&gt;
    Linear(b,a,x){&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/Y=b+(a*x);&lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; Y}
    Expg(b,g,t){&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/H=b*g**t;&lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; H}
    Parabolic(a,b,c){&lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/Y=a*1**2+b*1+c;&lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt; Y}
    Parabolic2(a,b,c)
        src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[(a&amp;gt;1?&quot;[b]x&amp;sup2;&quot;:&quot;x&amp;sup2;&quot;)+(b&amp;gt;0?&quot;+[b]x&quot;:&quot;[b]x&quot;)+(c&amp;gt;0?&quot;+[c]&quot;:&quot;[c]&quot;)]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
        src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[a*1**2+b*1+c]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
        &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/top=-b/2*a
        &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/discriminant=b**2-4*a*c
        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(discriminant&amp;lt;=0){src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;zero point = 0; discriminant 0 or below&quot;&lt;/span&gt;;&lt;span class=&quot;dmkeyword&quot;&gt;return&lt;/span&gt;}
        &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/x1=(-b+sqrt(discriminant))/2*a
        &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/x2=(-b-sqrt(discriminant))/2*a
        src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;zero points: x = &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[((x1&amp;gt;0)?&quot;+[x1]&quot;:&quot;[x1]&quot;)]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt; or x = &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[((x2&amp;gt;0)?&quot;+[x2]&quot;:&quot;[x2]&quot;)]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
        src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;top f = &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[top]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
        src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;top d = &lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[(x1+x2)/2]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
    ParabolicX(x1,x2)
        &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt;(x1==x2)src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[((x1&amp;gt;0)?&quot;(x+[x1])&amp;sup2;&quot;:&quot;(x[x1])&amp;sup2;&quot;)]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
        &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[((x1&amp;gt;0)?&quot;(x+[x1])&quot;:&quot;(x[x1])&quot;)+((x2&amp;gt;0)?&quot;(x+[x2])&quot;:&quot;(x[x2])&quot;)]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
        &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/b=x1+x2
        &lt;span class=&quot;dmkeyword&quot;&gt;var&lt;/span&gt;/c=x1*x2
        src&amp;lt;&amp;lt;&lt;span class=&quot;dmstring&quot;&gt;&quot;x&amp;sup2;&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[((b&amp;gt;0)?&quot;+[b]x&quot;:&quot;[b]x&quot;)]&lt;/span&gt;&lt;span class=&quot;dmbrace&quot;&gt;[((c&amp;gt;0)?&quot;+[c]&quot;:&quot;[c]&quot;)]&lt;/span&gt;&lt;span class=&quot;dmstring&quot;&gt;&quot;&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;</description>
        </item>
                <item>
            <title>I am soooo stupid.....</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=42786</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=42786</guid>
            <pubDate>Sun, 11 May 2008 09:44:42 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=42786#comments</comments>
            
            <description>Well, read the title.&lt;br&gt;
I really am so fucking stupid, I still can't *imagine* how stupid I am after a hour...&lt;br&gt;
&lt;br&gt;
A perfect scenario for ruining a (sexy hot damn) laptop...&lt;br&gt;
&lt;br&gt;
Well, my mom brought me a cup of coffee. I was sitting behind my laptop, the HP Pavilion DV9760ed, she puts it down, &lt;i&gt;right next&lt;/i&gt; to my sexy laptop... I even said, &quot;Don't put it there&quot;...&lt;br&gt;
She just put it there, and I was so stupid not to replace it to the bottom of the table, well, I wanted to grab the cofee cup, but I missed, but I did hit the cup, making the coffee go over the right sight of my laptop! T_T&lt;br&gt;
&lt;br&gt;
Damn... Damn! DAMN!!!!!!&lt;br&gt;
&lt;br&gt;
Luckily, the laptop didn't go off when I spilled it, but damn, I was so fucking scared...&lt;br&gt;
&lt;br&gt;
I called my dad, and he saw what happened. Together with him I cleaned the keybaord and every other peace. We didn't open de laptop itself, but we used tissues to go undfer the keyboard to clean it.&lt;br&gt;
&lt;br&gt;
Worst part is, is also was going out at the battery place and the optical drive...&lt;br&gt;
The battery wasn't connected to the laptop, where I had it just connected to full power.&lt;br&gt;
&lt;br&gt;
That's why I'm so stupid, I really am the &lt;big&gt;&lt;big&gt;stupidiest &lt;small&gt;&lt;small&gt;fuck ever...&lt;br&gt;
&lt;br&gt;
One lucky thing, my dad's a technican, so if we really need to clean up everything, we'd just open it and clean it and with the hope of it's magical works.&lt;br&gt;
&lt;br&gt;
The fact that I am so down, is that laptop and what happened with it...&lt;br&gt;
&lt;br&gt;
&lt;big&gt;&lt;big&gt;&lt;b&gt;Specs:&lt;/b&gt;&lt;small&gt;&lt;small&gt;&lt;br&gt;
&lt;b&gt;CPU:&lt;/b&gt; AMD 64-bit Turion 2Ghz Dual-core&lt;br&gt;
&lt;b&gt;HDD:&lt;/b&gt; 2&amp;times; Samsung 160GB&lt;br&gt;
&lt;b&gt;Graphics:&lt;/b&gt; 256MB nVidia 8400M&lt;br&gt;
&lt;b&gt;Memory:&lt;/b&gt; 3072MB&lt;br&gt;
&lt;b&gt;Cost:&lt;/b&gt; ~ 1400$&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
&lt;br&gt;
The most stupidiest fuck ever... =*( *cries*&lt;/small&gt;&lt;/small&gt;&lt;/big&gt;&lt;/big&gt;&lt;/small&gt;&lt;/small&gt;&lt;/big&gt;&lt;/big&gt;</description>
        </item>
                <item>
            <title>Who's the best programmer on BYOND in your opinion?</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=42681</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=42681</guid>
            <pubDate>Thu, 08 May 2008 14:23:45 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=42681#comments</comments>
            
            <description>Another poll, but with no Lummox JR and with some different people. I hope this one gives a somewhat clearer view on each other opinions.</description>
        </item>
                <item>
            <title>Naruto Online</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=36152</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=36152</guid>
            <pubDate>Sat, 27 Oct 2007 06:29:40 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=36152#comments</comments>
            
            <description>CuriousNeptune continued with his Naruto Kireji Goukanzai under another BYOND key and another name. &lt;u&gt;&lt;b&gt;Saucepan man&lt;/b&gt;&lt;/u&gt; introducing &lt;i&gt;Naruto Online&lt;/i&gt;.&lt;br&gt;
&lt;a href=&quot;http://games.byond.com/hub/SaucepanMan/NarutoOnline&quot;&gt;Click here&lt;/a&gt; to go to CuriousNeptunes/Saucepan Man's game Naruto Kireji Goukanzai, revived as: Naruto Online.</description>
        </item>
                <item>
            <title>How will I die? :D</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=30399</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=30399</guid>
            <pubDate>Mon, 07 May 2007 22:32:50 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Sokkiejjj?command=view_comments&amp;post=30399#comments</comments>
            
            <description>&lt;table border='0' cellpadding='5' cellspacing='0' width='600'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img src=&quot;http://quizfarm.com/images/1111699916gravestone.gif&quot;&gt;&lt;/td&gt;
&lt;td&gt;You scored as &lt;b&gt;Natural Causes&lt;/b&gt;. Your death will be by natural causes, though not by any diseaese, because that is another option on this test. You will probably just silently pass away in the night from old age, and people you love won't realize until the next morning, when you are all purple and cold and icky. So be happy, you won't be murdered.&lt;br&gt;
&lt;br&gt;
&lt;table border='0' width='300' cellspacing='0' cellpadding='0'&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Natural Causes&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='67' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;67%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Bomb&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='53' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;53%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Poison&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='40' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;40%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Gunshot&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='33' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;33%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Disease&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='27' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;27%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Suicide&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='20' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;20%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Accident&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='20' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;20%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Eaten&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='20' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;20%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Stabbed&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='20' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;20%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Cut Throat&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='13' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;13%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Disappear&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='13' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;13%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Drowning&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='0' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;0%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;p&gt;&lt;font face='Arial' size='1'&gt;Suffocated&lt;/font&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;table border='1' cellpadding='0' cellspacing='0' width='0' bgcolor='#DDDDDD'&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;td&gt;&lt;font face='Arial' size='1'&gt;0%&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;br&gt;
&lt;a href='http://quizfarm.com/test.php?q_id=8960'&gt;How Will You Die??&lt;/a&gt;&lt;br&gt;
&lt;font face='Arial' size='1'&gt;created with &lt;a href='http://quizfarm.com'&gt;QuizFarm.com&lt;/a&gt;&lt;/font&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;</description>
        </item>
            
    </channel>
</rss>

