<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>Rabid Family Blog</title>
        <link>http://www.byond.com/members/Kunark</link>
        <description>Where Bunchies go to die violently....</description>
        <lastBuildDate>Sun, 22 Nov 2009 13:42:16 GMT</lastBuildDate>
        <language>en-us</language>
    
                <item>
            <title>Good ol' Microsoft</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=74357</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=74357</guid>
            <pubDate>Fri, 26 Jun 2009 19:28:51 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=74357#comments</comments>
            
            <description>The new ad on Messenger is &quot;Download Internet Explorer 8 and we'll donate 8 meals to Feeding America!&quot;&lt;br&gt;
&lt;br&gt;
That's pretty desperate, I wonder if they ever thought about making their browser not suck instead?</description>
        </item>
                <item>
            <title>Dungeon Diver open-source</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=61112</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=61112</guid>
            <pubDate>Sat, 04 Apr 2009 12:28:00 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=61112#comments</comments>
            
            <description>Come 'n get it -&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.byond.com/games/Kunark/DungeonDiver&quot;&gt;http://www.byond.com/games/Kunark/DungeonDiver&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Be sure to thank Shades for allowing it.</description>
        </item>
                <item>
            <title>Thanks for the membership!</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=57820</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=57820</guid>
            <pubDate>Sun, 29 Mar 2009 11:56:09 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=57820#comments</comments>
            
            <description>Well, somebody anonymously donated to me a membership. Not sure why they would want to, but thanks!&lt;br&gt;
&lt;br&gt;
So what do I post about? Might as well show off my new monitor setup as of yesterday:&lt;br&gt;
&lt;br&gt;
&lt;img src=&quot;http://img5.imageshack.us/img5/9982/sspx0282.jpg&quot;&gt;&lt;br&gt;
&lt;br&gt;
Dual 23&quot; Dell monitors, along with a new dual DVI output NVidia card. Woot! They barely fit on my desk.</description>
        </item>
                <item>
            <title>Detecting Chrome vs. Safari in JavaScript</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=53727</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=53727</guid>
            <pubDate>Sat, 31 Jan 2009 13:33:55 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=53727#comments</comments>
            
            <description>The past two days I've been straining to figure out a way to detect a difference between Chrome's V8 and Safari's JavaScriptCore.&lt;br&gt;
&lt;br&gt;
Unfortunately, V8 appears to be a carbon copy of JavaScriptCore with JIT compilation, making it extremely difficult to detect. The internet was no help, with everybody using either navigator.userAgent or navigator.vendor.&lt;br&gt;
&lt;br&gt;
Why shouldn't you use such things? Here's just an example:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.lifehacker.com.au/tips/2009/01/30/google_chrome_accesses_hotmail_by_pretending_its_safari-2.html&quot;&gt;http://www.lifehacker.com.au/tips/2009/01/30/ google_chrome_accesses_hotmail_by_pretending_its_safari-2.ht ml&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Websites often block certain browsers because they don't want to deal with cross-browser compatibility, so browsers will often spoof the userAgent/etc. to appear as another browser. userAgents are also subject to spyware which can severely corrupt them.&lt;br&gt;
&lt;br&gt;
So after many headaches, I finally found a subtle difference between the two browsers that can be used for browser detection:&lt;br&gt;
&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;
&lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; (window.devicePixelRatio)  &lt;span class=&quot;dmcomment&quot;&gt;//If WebKit browser&lt;/span&gt;
{
   &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; (escape(navigator.javaEnabled.toString()) == &lt;span class=&quot;dmstring&quot;&gt;'function%20javaEnabled%28%29%20%7B%20%5Bnative%20code%5D%20%7D'&lt;/span&gt;)
   {
      alert(&lt;span class=&quot;dmstring&quot;&gt;'Chrome'&lt;/span&gt;);
   }
   &lt;span class=&quot;dmkeyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;dmkeyword&quot;&gt;if&lt;/span&gt; (escape(navigator.javaEnabled.toString()) != &lt;span class=&quot;dmstring&quot;&gt;'function%20javaEnabled%28%29%20%7B%20%5Bnative%20code%5D%20%7D'&lt;/span&gt;)
   {
      alert(&lt;span class=&quot;dmstring&quot;&gt;'Safari'&lt;/span&gt;);
   }
}
&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
This works by the fact that Function.toString() in Safari preserves whitespace while Chrome's does not. This is not likely to change unless Google considers it a bug; I'm thinking they did it on purpose, and I don't see Safari changing their ways.</description>
        </item>
                <item>
            <title>Urge to kill....  Rising.... *trembles*</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=53414</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=53414</guid>
            <pubDate>Fri, 23 Jan 2009 17:09:20 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=53414#comments</comments>
            
            <description>Who else here is absolutely annoyed and disgusted with these stupid Acai Berry ads?&lt;br&gt;
&lt;br&gt;
If you don't know what I'm talking about, just open up some random website, or heck, even MSN Messenger, and see the &quot;1 Flat Stomach Rule: Obey&quot; ads and similar.&lt;br&gt;
&lt;br&gt;
Okay:&lt;br&gt;
&lt;br&gt;
1. They like to put disgusting, distorted blobs of fat on the ads; one even made the fat jiggle!&lt;br&gt;
&lt;br&gt;
2. They are all scams. This is nothing new, but it adds up.&lt;br&gt;
&lt;br&gt;
3. They lead to fake &quot;blogs&quot;. These stupid blogs are made to look like it wasn't an overpaid marketing executive who made them.&lt;br&gt;
&lt;br&gt;
4. They are low quality. Again, nothing new, but ew.&lt;br&gt;
&lt;br&gt;
5. They currently are spamming e-mail boxes worse than other pharmaceutical brands, which is silly considering there's no reason they should have to invest in spam.&lt;br&gt;
&lt;br&gt;
6. The gif looped ads are made in a distracting, half-complete manner, so it draws your attention, and then loops over only the middle part, making obsessive-compulsives like myself want to rip their eyes out.&lt;br&gt;
&lt;br&gt;
And the worse part....&lt;br&gt;
&lt;br&gt;
7. They bought the advertising space of the entire freaking internet! Annoying scamming ad agencies are one thing when they show a little variety in their ad campaigns, but when the same stupid, disgusting ads are shown on every website (I can't even comprehend how many websites have this crap on it), all day long, every day, and then on MSN and other IMs, they've crossed the line. I seriously just want to see their buildings get pulverized with everybody inside.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I don't think any other ad campaign on the internet, ever, no matter how shady, has infuriated me as much as these ads.&lt;br&gt;
&lt;br&gt;
Somebody needs to take them to court and slap an anti-trust lawsuit against them. Nobody can compete with them and they've abused their power far too long.&lt;br&gt;
&lt;br&gt;
ARRRRRGGGGGGGG!!!&lt;br&gt;
&lt;br&gt;
*casts magic missile on a box full of cute puppies*</description>
        </item>
                <item>
            <title>A Blast from the Past</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=52665</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=52665</guid>
            <pubDate>Fri, 02 Jan 2009 16:01:04 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=52665#comments</comments>
            
            <description>By some strange stroke of luck, I was able to find some old CDs I threw into a box when I moved that I had kept backups of my games, code, and art on. I also found a really REALLY old backup that was from my computer that would format all the CDs I burned into an unreadable format by everything but that computer.&lt;br&gt;
&lt;br&gt;
One good thing about vista: It was able to read this legacy format and I was able to recover some ancient games I thought I'd never see again. About the only game I couldn't find was the original Fenris' Apocalypse, which was on even older CDs that are probably long gone by now.&lt;br&gt;
&lt;br&gt;
I've recovered the sources to the following games:&lt;br&gt;
&lt;br&gt;
Drugwars&lt;br&gt;
Fate&lt;br&gt;
Dungeon Diver&lt;br&gt;
Forgotten Memories&lt;br&gt;
Playing with Roses&lt;br&gt;
Surreal Dreams&lt;br&gt;
Veteran&lt;br&gt;
31&lt;br&gt;
Arrow Maze&lt;br&gt;
BYOND Poker&lt;br&gt;
BYOND Trivia&lt;br&gt;
DBZ BINGO NIGHT&lt;br&gt;
Dementophobia&lt;br&gt;
Fenris' Apocalypse II&lt;br&gt;
Hearts&lt;br&gt;
Ruthless Empires&lt;br&gt;
Takayen&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I'm really hoping that Fate is the latest version, because I need to edit it and release it again to get rid of the subscriber crap and fix the hub problem.&lt;br&gt;
&lt;br&gt;
If anybody is interested in any of these sources (excluding Dungeon Diver, which you'd have to ask Shades if you wanted it), let me know and I'll see if I can't send them your way.</description>
        </item>
                <item>
            <title>Steve Ballmer is Coo-Coo for Microsoft</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=50313</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=50313</guid>
            <pubDate>Sat, 08 Nov 2008 10:54:48 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=50313#comments</comments>
            
            <description>&lt;a href=&quot;http://www.youtube.com/watch?v=wvsboPUjrGc&quot;&gt;http://www.youtube.com/watch?v=wvsboPUjrGc&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.youtube.com/watch?v=_UG6Q1inAqs&quot;&gt;http://www.youtube.com/watch?v=_UG6Q1inAqs&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
hahaha</description>
        </item>
                <item>
            <title>Why bother voting for McCain</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=50183</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=50183</guid>
            <pubDate>Tue, 04 Nov 2008 22:26:38 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=50183#comments</comments>
            
            <description>Bush already paved the way for Obama's victory.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Honestly I didn't like either of them, so I would have been happy (er?) either way.&lt;br&gt;
&lt;br&gt;
At least with Obama we'll see change in many of the neglected areas we truly need it when we probably wouldn't have seen anything new from McCain in those areas. Even if a lot of his other ideas are ludicrous.&lt;br&gt;
&lt;br&gt;
McCain would have been a lot better than Bush, but really still, maybe even if McCain is better than Obama, we really might need the Anti-Bush to fix everything Bush has broken. I'll deal with Obama's crap if he will fix Bush's crap :)</description>
        </item>
                <item>
            <title>Anybody with Fate images?</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=49685</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=49685</guid>
            <pubDate>Thu, 23 Oct 2008 22:13:27 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=49685#comments</comments>
            
            <description>I found some old Surreal Dreams images thanks to phantom_merlock, but I can't find the old Fate banner or button image (and the sources on my site are corrupt). Does anybody else have them cached somewhere or something?</description>
        </item>
                <item>
            <title>VP Debate</title>
            <link>http://www.byond.com/members/?command=view_post&amp;post=48847</link>
            <guid>http://www.byond.com/members/?command=view_post&amp;post=48847</guid>
            <pubDate>Fri, 03 Oct 2008 03:29:43 GMT</pubDate>
            
            <comments>http://www.byond.com/members/Kunark?command=view_comments&amp;post=48847#comments</comments>
            
            <description>Now Joe Biden was doing fairly well, and as an experienced politician, that is what I would have expected.&lt;br&gt;
&lt;br&gt;
Until around the very end, when he started talking about the role of the vice president.&lt;br&gt;
&lt;br&gt;
Basically, what he said is this:&lt;br&gt;
&lt;br&gt;
&lt;em&gt;The vice president's role is to support the president. There should be a line for the vice president and he should adhere to that line.&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
In contrast to what Palin was saying:&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Give me even more POWER!&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
In other words, Biden is going to do nothing with his vice presidency while Palin would probably kick McCain's head in if she disagreed with him.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I am very surprised how strong Palin was in the debate. She proved the media wrong, she showed she wasn't just a proxy of McCain's words (while Biden proved he was Obama's), and she showed that her inexperience with Washington politics is actually a good thing.&lt;br&gt;
&lt;br&gt;
She started off a little shaky, especially one question where it sounded like she was avoiding it, which is what the media accused her of, but after that she really exceeded my expectations and kicked some ass.</description>
        </item>
            
    </channel>
</rss>

