<?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>blacknode</title>
	<atom:link href="http://blog.blacknode.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.blacknode.net</link>
	<description>NO CARRIER</description>
	<lastBuildDate>Mon, 13 Jun 2011 07:12:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mass Effect body paint == Fucking Sexy!</title>
		<link>http://blog.blacknode.net/2011/05/mass_effect_body_pain/</link>
		<comments>http://blog.blacknode.net/2011/05/mass_effect_body_pain/#comments</comments>
		<pubDate>Thu, 26 May 2011 20:32:09 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=819</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.blacknode.net/wp-content/uploads/2011/05/Mass_Effect-body_paint.jpg"><img class="aligncenter size-medium wp-image-823" title="Mass_Effect-body_paint" src="http://blog.blacknode.net/wp-content/uploads/2011/05/Mass_Effect-body_paint-285x300.jpg" alt="" width="285" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2011/05/mass_effect_body_pain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Worlock (live)</title>
		<link>http://blog.blacknode.net/2011/05/worlock-live/</link>
		<comments>http://blog.blacknode.net/2011/05/worlock-live/#comments</comments>
		<pubDate>Wed, 25 May 2011 16:07:19 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Unwired]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[worlock "Skinny Puppy"]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=809</guid>
		<description><![CDATA[wasted truth. why call it all, blue? hot lines. eventual decline. with the right attitude you will succed, blue. resent that discontent. sidestep. define the state of things so far. crazy things, soft spoken..overide. with your eyes open, you know soft spoken changes nothing. a view so cruel. nothing. &#038;nbsp]]></description>
			<content:encoded><![CDATA[<p>wasted truth.<br />
why call it all, blue?<br />
hot lines.<br />
eventual decline.<br />
with the right attitude you will succed, blue.<br />
resent that discontent.<br />
sidestep.<br />
define the state of things so far.<br />
crazy things, soft spoken..overide.<br />
with your eyes open, you know soft spoken changes nothing.<br />
a view so cruel.<br />
nothing.</p>
<p>&nbsp;</p>
<p><iframe width="480" height="390" src="http://www.youtube.com/embed/dEm8cleyTlE" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2011/05/worlock-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6d6 Roll, roll, roll, roll&#8230;&#8230;</title>
		<link>http://blog.blacknode.net/2011/05/d20/</link>
		<comments>http://blog.blacknode.net/2011/05/d20/#comments</comments>
		<pubDate>Tue, 17 May 2011 22:45:03 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=799</guid>
		<description><![CDATA[I found this program while looking through some old backups labeled red_floppy. I thought it was pretty funny how shitty of a coder I was at 13. I am also kind of amazed at how much of a dork I was for writing a program to help AD&#38;D Character Generation. #define D 6 int roll(); ]]></description>
			<content:encoded><![CDATA[<p>I found this program while looking through some old backups labeled red_floppy. I thought it was pretty funny how shitty of a coder I was at 13. I am also kind of amazed at how much of a dork I was for writing a program to help AD&amp;D Character Generation.</p>
<pre><code>
#define D 6

int roll();
int * sort_roll(int u[]);
int score(int s[]);
void seed();

int roll()
{
    int z, x, rs[4], *rr, r;
    int j = 6;
    while(--j){
    for(x = 0; x &lt; 4; x++)
    {
          rs[x] = ((int) D * rand() / (RAND_MAX + 1.0)) + 1;
          for (z = 0; z &lt; 100; z++) rand();
    }
    rr = sort_roll(rs);
    r = score(rr);
    }
    return r;
}

int * sort_roll(int u[])
{
    int x,y,temp;

    for(x = 0;x &lt; 4; x++)
    {
      for(y = 0;y &lt; 4; y++)
      {
       if(u[x] &lt; u[y])
       {
         temp = u[x];
         u[x] = u[y];
         u[y] = temp;
       }
      }
    }
    return u;
} 

int score(int s[])
{
    return s[1] + s[2] + s[3];
}

void seed()
{
     srand((unsigned int)time((time_t *)NULL));
}

int main()
{
  int x, j;
  seed();
  do{
  for(x = 0; x &lt; 6; x++) printf("%d\n", roll());
  printf("\n\n");
  } while((j = toupper(getch()) == 'X'));
  system("pause");
  return 0;
}

</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2011/05/d20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I don&#8217;t always test my code.</title>
		<link>http://blog.blacknode.net/2011/04/i-dont-always-test-my-code/</link>
		<comments>http://blog.blacknode.net/2011/04/i-dont-always-test-my-code/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 18:17:34 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[motherfucker.]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=795</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.blacknode.net/wp-content/uploads/2011/02/test_code.jpg"><img class="aligncenter size-full wp-image-796" title="test_code" src="http://blog.blacknode.net/wp-content/uploads/2011/02/test_code.jpg" alt="" width="287" height="360" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2011/04/i-dont-always-test-my-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Player 10 [Square] on Debian Squeeze x86_64</title>
		<link>http://blog.blacknode.net/2011/02/flash-player-10-square-on-debian-squeeze-x86_64/</link>
		<comments>http://blog.blacknode.net/2011/02/flash-player-10-square-on-debian-squeeze-x86_64/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 04:44:44 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=785</guid>
		<description><![CDATA[Read about the new pre-release here. Download the tar ball, extract, copy the library to your plugin directory and get rid of gnash. ~$ tar xzfv flashplayer10_2_p3_64bit_linux_111710.tar.gz ~$ cp -av libflashplayer.so /usr/lib/mozilla/plugins/ ~$ sudo apt-get remove browser-plugin-gnash gnash-common gnash Restart your browsers and check your about:plugins page, you should see this]]></description>
			<content:encoded><![CDATA[<p>Read about the new pre-release <a href="http://labs.adobe.com/downloads/flashplayer10_square.html">here.</a> Download the tar ball, extract, copy the library to your plugin directory and get rid of gnash.</p>
<blockquote><p><code><br />
~$ tar xzfv flashplayer10_2_p3_64bit_linux_111710.tar.gz<br />
~$ cp -av libflashplayer.so /usr/lib/mozilla/plugins/<br />
~$ sudo apt-get remove browser-plugin-gnash gnash-common gnash<br />
</code></p></blockquote>
<p>Restart your browsers and check your about:plugins page, you should see this:<br />
<a href="http://blog.blacknode.net/wp-content/uploads/2011/02/Screenshot-Plug-ins-Google-Chrome.png"><img class="aligncenter size-medium wp-image-786" title="Screenshot-Plug-ins - Google Chrome" src="http://blog.blacknode.net/wp-content/uploads/2011/02/Screenshot-Plug-ins-Google-Chrome-300x208.png" alt="" width="300" height="208" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2011/02/flash-player-10-square-on-debian-squeeze-x86_64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wisdom Teeth</title>
		<link>http://blog.blacknode.net/2011/01/wisdom-teeth/</link>
		<comments>http://blog.blacknode.net/2011/01/wisdom-teeth/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 21:29:21 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Unwired]]></category>
		<category><![CDATA[pain]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=778</guid>
		<description><![CDATA[These were yanked out of my face today. Good riddance]]></description>
			<content:encoded><![CDATA[<p>These were yanked out of my face today. Good riddance.</p>
<p><a href="http://blog.blacknode.net/wp-content/uploads/2011/01/IMG_20110104_113430.jpg"><img class="aligncenter size-medium wp-image-779" title="IMG_20110104_113430" src="http://blog.blacknode.net/wp-content/uploads/2011/01/IMG_20110104_113430-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2011/01/wisdom-teeth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tron Goggles</title>
		<link>http://blog.blacknode.net/2010/12/tron-goggles/</link>
		<comments>http://blog.blacknode.net/2010/12/tron-goggles/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 16:22:31 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Unwired]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=760</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://blog.blacknode.net/wp-content/uploads/2010/12/wpid-IMG_20101217_101928.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2010/12/tron-goggles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disapproval Dog</title>
		<link>http://blog.blacknode.net/2010/12/disapproval-dog/</link>
		<comments>http://blog.blacknode.net/2010/12/disapproval-dog/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 19:24:08 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[LOL]]></category>
		<category><![CDATA["Disapproval Dog"]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=753</guid>
		<description><![CDATA[Disapproval Dog.. Does not Approve]]></description>
			<content:encoded><![CDATA[<p>Disapproval Dog.. Does not Approve.</p>
<p><a href="http://blog.blacknode.net/wp-content/uploads/2010/12/ddog.jpg"><img class="aligncenter size-full wp-image-754" title="ddog" src="http://blog.blacknode.net/wp-content/uploads/2010/12/ddog.jpg" alt="" width="300" height="300" /></a><br />
<a href="http://blog.blacknode.net/wp-content/uploads/2010/12/dd2.jpg"><img class="aligncenter size-medium wp-image-755" title="dd2" src="http://blog.blacknode.net/wp-content/uploads/2010/12/dd2-300x269.jpg" alt="" width="300" height="269" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2010/12/disapproval-dog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1337</title>
		<link>http://blog.blacknode.net/2010/11/1337/</link>
		<comments>http://blog.blacknode.net/2010/11/1337/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 07:31:53 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Turbogears]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/?p=751</guid>
		<description><![CDATA[﻿﻿﻿Calculating how many lines my project is at currently (not including tester code or templates): (kserve)@haven:~/kserve/fresh/kserver$ find lib/ controllers/ model/ -type f -name &#8220;*.py&#8221;  &#124; grep -v template.py &#124; grep -v auth.py &#124; grep -v error.py &#124; grep -v __init__ &#124;grep -v app_globals.py&#124; grep -v base.py &#124;xargs cat  &#124; wc -l 1337 l33t.. no bs. ]]></description>
			<content:encoded><![CDATA[<p>﻿﻿﻿Calculating how many lines my project is at currently (not including  tester code or templates):</p>
<p>(kserve)@haven:~<em>/kserve/fresh/kserver$ find lib/</em> controllers/ model/ -type f -name &#8220;*.py&#8221;  | grep -v template.py | grep  -v auth.py | grep -v error.py | grep -v __init__ |grep -v  app_globals.py| grep -v base.py |xargs cat  | wc -l<br />
1337</p>
<p>l33t.. no bs.</p>
<p>Unfortunately, it is not done. I am going to to have to code 30,000 more  lines now.. damnit!</p>
<p>Jrod.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2010/11/1337/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garden Spider</title>
		<link>http://blog.blacknode.net/2010/11/garden-spider/</link>
		<comments>http://blog.blacknode.net/2010/11/garden-spider/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 21:05:32 +0000</pubDate>
		<dc:creator>jrod</dc:creator>
				<category><![CDATA[Unwired]]></category>

		<guid isPermaLink="false">http://blog.blacknode.net/2010/11/garden-spider/</guid>
		<description><![CDATA[3-1/2 span]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://blog.blacknode.net/wp-content/uploads/2010/11/wpid-IMG_20101125_145721.jpg" /></p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://blog.blacknode.net/wp-content/uploads/2010/11/wpid-IMG_20101125_145713.jpg" /></p>
<p>3-1/2 span</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.blacknode.net/2010/11/garden-spider/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

