<?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>Deadhouse Gates Network</title>
	<atom:link href="http://dgn.no/feed/" rel="self" type="application/rss+xml" />
	<link>http://dgn.no</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 17 Oct 2011 22:50:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Random Images</title>
		<link>http://dgn.no/2011/10/random-images/</link>
		<comments>http://dgn.no/2011/10/random-images/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 18:06:32 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dgn.no/?p=129</guid>
		<description><![CDATA[<script src="http://connect.facebook.net/en_US/all.js#appId=281277685225429&amp;xfbml=1"></script>Found this nice little php snippet lying around in my misc script folder. Its relatively easy to install and use. I don&#8217;t know the author of the script, so if you know, give me a whisper and I will add the credits. #crayon-4f458833d797a * { font-size: 11px; line-height: 15px;} #crayon-4f458833d797a .crayon-toolbar, #crayon-4f458833d797a .crayon-toolbar div { [...]]]></description>
			<content:encoded><![CDATA[<p>Found this nice little php snippet lying around in my misc script folder. Its relatively easy to install and use. I don&#8217;t know the author of the script, so if you know, give me a whisper and I will add the credits.</p>
<p><!-- Crayon Syntax Highlighter v1.5.4 --></p>
<link rel="stylesheet" type="text/css" href="http://dgn.no/wp-content/plugins/crayon-syntax-highlighter/fonts/courier new.css?ver1.5.4" />
<style type="text/css">#crayon-4f458833d797a * { font-size: 11px; line-height: 15px;}
	#crayon-4f458833d797a .crayon-toolbar, #crayon-4f458833d797a .crayon-toolbar div { height: 19px; line-height: 19px; }
	#crayon-4f458833d797a .crayon-num, #crayon-4f458833d797a .crayon-line, #crayon-4f458833d797a .crayon-toolbar a.crayon-button { height: 15px; }</style>
<div id="crayon-4f458833d797a" class="crayon-syntax crayon-theme-twilight crayon-font-courier-new" crayon-os="pc" settings=" scroll-mouseover" style=" margin-top: 12px; margin-bottom: 12px; float: none; clear: both;">
<div class="crayon-toolbar" settings=" mouseover overlay hide delay">
<div class="crayon-tools"><a href="#" class="crayon-nums-button crayon-button" title="Toggle Line Numbers" onclick="toggle_nums('crayon-4f458833d797a'); return false;"></a><a href="#" class="crayon-copy-button crayon-button" title="Copy Plain Code" onclick="copy_plain('crayon-4f458833d797a'); return false;"></a><a href="#" class="crayon-popup-button crayon-button" title="Open Code in Window" onclick="return false;"></a><a href="#" class="crayon-plain-button crayon-button" title="Toggle Plain Code" onclick="toggle_plain('crayon-4f458833d797a'); return false;"></a><a href="#" class="crayon-nums-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-copy-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-popup-button crayon-button crayon-pressed crayon-invisible"></a><a href="#" class="crayon-plain-button crayon-button crayon-pressed crayon-invisible"></a></div>
</p></div>
<div><textarea class="crayon-plain" settings="dblclick" readonly  wrap="off" style="-moz-tab-size:4; -o-tab-size:4; -webkit-tab-size:4; tab-size:4;"><?php<br />
//make this the relative path to the images, like &#8220;../img&#8221; or &#8220;random/images/&#8221;.<br />
//if the images are in the same directory, leave it blank.<br />
$folder = &#8216;../images/random/&#8217;;</p>
<p>//space seperated list of extensions, you probably won&#8217;t have to change this.<br />
$exts = &#8216;jpg jpeg png gif&#8217;;</p>
<p>$files = array(); $i = -1;<br />
if(&#8221; == $folder) {<br />
    $folder = &#8216;./&#8217;;<br />
    $handle = opendir($folder);<br />
    $exts = explode(&#8216; &#8216;, $exts);<br />
    while (false !== ($file = readdir($handle))) {<br />
        //for each extension check the extension<br />
        foreach($exts as $ext) {<br />
            //faster than ereg, case insensitive<br />
            if (preg_match(&#8216;/\.&#8217;.$ext.&#8217;$/i&#8217;, $file, $test)) {<br />
                $files[] = $file;<br />
                ++$i;<br />
            }<br />
        }<br />
    }<br />
}<br />
closedir($handle);<br />
mt_srand((double)microtime()*1000000);<br />
$rand = mt_rand(0, $i);</p>
<p>header(&#8216;Location: &#8216;.$folder.$files[$rand]);<br />
?></textarea></div>
<div class="crayon-info"></div>
<div class="crayon-main" style="">
<table class="crayon-table" cellpadding="0" cellspacing="0">
<tr class="crayon-row">
<td class="crayon-nums " settings="show">
<div class="crayon-nums-content">
<div class="crayon-num">1</div>
<div class="crayon-num crayon-striped-num">2</div>
<div class="crayon-num">3</div>
<div class="crayon-num crayon-striped-num">4</div>
<div class="crayon-num">5</div>
<div class="crayon-num crayon-striped-num">6</div>
<div class="crayon-num">7</div>
<div class="crayon-num crayon-striped-num">8</div>
<div class="crayon-num">9</div>
<div class="crayon-num crayon-striped-num">10</div>
<div class="crayon-num">11</div>
<div class="crayon-num crayon-striped-num">12</div>
<div class="crayon-num">13</div>
<div class="crayon-num crayon-striped-num">14</div>
<div class="crayon-num">15</div>
<div class="crayon-num crayon-striped-num">16</div>
<div class="crayon-num">17</div>
<div class="crayon-num crayon-striped-num">18</div>
<div class="crayon-num">19</div>
<div class="crayon-num crayon-striped-num">20</div>
<div class="crayon-num">21</div>
<div class="crayon-num crayon-striped-num">22</div>
<div class="crayon-num">23</div>
<div class="crayon-num crayon-striped-num">24</div>
<div class="crayon-num">25</div>
<div class="crayon-num crayon-striped-num">26</div>
<div class="crayon-num">27</div>
<div class="crayon-num crayon-striped-num">28</div>
<div class="crayon-num">29</div>
<div class="crayon-num crayon-striped-num">30</div>
</div>
</td>
<td class="crayon-code">
<div class="crayon-pre">
<div class="crayon-line" id="line-1"><span class="o ">&lt;</span><span class="sy ">?</span><span class="i ">php</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-2"><span class="c ">//make this the relative path to the images, like &#8220;../img&#8221; or &#8220;random/images/&#8221;.<br />
</span><span class="h "></span></div>
<div class="crayon-line" id="line-3"><span class="c ">//if the images are in the same directory, leave it blank.<br />
</span><span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-4"><span class="sy ">$</span><span class="i ">folder</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="s ">&#8216;../images/random/&#8217;</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-5"><span class="h "> </span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-6"><span class="c ">//space seperated list of extensions, you probably won&#8217;t have to change this.<br />
</span><span class="h "></span></div>
<div class="crayon-line" id="line-7"><span class="sy ">$</span><span class="i ">exts</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="s ">&#8216;jpg jpeg png gif&#8217;</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-8"><span class="h "> </span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-9"><span class="sy ">$</span><span class="i ">files</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="t ">array</span><span class="sy ">(</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "> </span><span class="sy ">$</span><span class="i ">i</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="o ">-</span><span class="cn ">1</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-10"><span class="st ">if</span><span class="sy ">(</span><span class="s ">&#8221;</span><span class="h "> </span><span class="o ">==</span><span class="h "> </span><span class="sy ">$</span><span class="i ">folder</span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-11"><span class="h ">    </span><span class="sy ">$</span><span class="i ">folder</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="s ">&#8216;./&#8217;</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-12"><span class="h ">    </span><span class="sy ">$</span><span class="i ">handle</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">opendir</span><span class="sy ">(</span><span class="sy ">$</span><span class="i ">folder</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-13"><span class="h ">    </span><span class="sy ">$</span><span class="i ">exts</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">explode</span><span class="sy ">(</span><span class="s ">&#8216; &#8216;</span><span class="sy ">,</span><span class="h "> </span><span class="sy ">$</span><span class="i ">exts</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-14"><span class="h ">    </span><span class="st ">while</span><span class="h "> </span><span class="sy ">(</span><span class="t ">false</span><span class="h "> </span><span class="o ">!==</span><span class="h "> </span><span class="sy ">(</span><span class="sy ">$</span><span class="i ">file</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">readdir</span><span class="sy ">(</span><span class="sy ">$</span><span class="i ">handle</span><span class="sy ">)</span><span class="sy ">)</span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-15"><span class="h ">        </span><span class="c ">//for each extension check the extension<br />
</span><span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-16"><span class="h ">        </span><span class="st ">foreach</span><span class="sy ">(</span><span class="sy ">$</span><span class="i ">exts</span><span class="h "> </span><span class="st ">as</span><span class="h "> </span><span class="sy ">$</span><span class="i ">ext</span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-17"><span class="h ">            </span><span class="c ">//faster than ereg, case insensitive<br />
</span><span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-18"><span class="h ">            </span><span class="st ">if</span><span class="h "> </span><span class="sy ">(</span><span class="e ">preg_match</span><span class="sy ">(</span><span class="s ">&#8216;/\.&#8217;</span><span class="sy ">.</span><span class="sy ">$</span><span class="i ">ext</span><span class="sy ">.</span><span class="s ">&#8216;$/i&#8217;</span><span class="sy ">,</span><span class="h "> </span><span class="sy ">$</span><span class="i ">file</span><span class="sy ">,</span><span class="h "> </span><span class="sy ">$</span><span class="i ">test</span><span class="sy ">)</span><span class="sy ">)</span><span class="h "> </span><span class="sy ">{</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-19"><span class="h ">                </span><span class="sy ">$</span><span class="i ">files</span><span class="sy ">[</span><span class="sy ">]</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="sy ">$</span><span class="i ">file</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-20"><span class="h ">                </span><span class="o ">++</span><span class="sy ">$</span><span class="i ">i</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-21"><span class="h ">            </span><span class="sy ">}</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-22"><span class="h ">        </span><span class="sy ">}</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-23"><span class="h ">    </span><span class="sy ">}</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-24"><span class="sy ">}</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-25"><span class="e ">closedir</span><span class="sy ">(</span><span class="sy ">$</span><span class="i ">handle</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-26"><span class="e ">mt_srand</span><span class="sy ">(</span><span class="sy ">(</span><span class="t ">double</span><span class="sy ">)</span><span class="e ">microtime</span><span class="sy ">(</span><span class="sy ">)</span><span class="o ">*</span><span class="cn ">1000000</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-27"><span class="sy ">$</span><span class="i ">rand</span><span class="h "> </span><span class="o ">=</span><span class="h "> </span><span class="e ">mt_rand</span><span class="sy ">(</span><span class="cn ">0</span><span class="sy ">,</span><span class="h "> </span><span class="sy ">$</span><span class="i ">i</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-28"><span class="h "> </span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line" id="line-29"><span class="e ">header</span><span class="sy ">(</span><span class="s ">&#8216;Location: &#8216;</span><span class="sy ">.</span><span class="sy ">$</span><span class="i ">folder</span><span class="sy ">.</span><span class="sy ">$</span><span class="i ">files</span><span class="sy ">[</span><span class="sy ">$</span><span class="i ">rand</span><span class="sy ">]</span><span class="sy ">)</span><span class="sy ">;</span><span class="h "></span><br />
<span class="h "></span></div>
<div class="crayon-line crayon-striped-line" id="line-30"><span class="sy ">?</span><span class="o ">&gt;</span><span class="h "></span></div>
</div>
</td>
</tr>
</table></div>
</p></div>
<p><!-- [Parse Time: 0.0000 seconds] [Format Time: 0.0071 seconds] --></p>
<p><iframe src="http://www.facebook.com/plugins/like.php?href=http://dgn.no/2011/10/random-images/&amp;layout=standard&amp;show_faces=false&amp;width=500&amp;action=like&amp;font=&amp;colorscheme=light&amp;height=30" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:30px;" allowTransparency="true"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dgn.no/2011/10/random-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aurora</title>
		<link>http://dgn.no/2011/10/aurora/</link>
		<comments>http://dgn.no/2011/10/aurora/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 00:17:38 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Characters]]></category>
		<category><![CDATA[Deadlands]]></category>
		<category><![CDATA[Roleplaying]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[fantasy]]></category>
		<category><![CDATA[lost]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[pup]]></category>
		<category><![CDATA[wolf]]></category>
		<category><![CDATA[wolfdog]]></category>

		<guid isPermaLink="false">http://dgn.no/?p=102</guid>
		<description><![CDATA[<a href="http://dgn.no/wp-content/uploads/2011/10/huskey21.jpg"><img class="size-thumbnail wp-image-107  alignright" title="Aurora" src="http://dgn.no/wp-content/uploads/2011/10/huskey21-193x193.jpg" alt="" width="125" height="125" /></a>

This story is a legend that came long before man, for his own selfish ways, shunned the truth. Long in the past when the world was a bit more pure. Times were wolf and man lived side by side as brothers. Man and wolf grew apart, and now wolves don’t choose man as its companion anymore. But one wolf has… and this… this is her story.]]></description>
			<content:encoded><![CDATA[<p><a href="http://dgn.no/wp-content/uploads/2011/10/huskey21.jpg"><img class="size-thumbnail wp-image-107  alignright" title="Aurora" src="http://dgn.no/wp-content/uploads/2011/10/huskey21-193x193.jpg" alt="" width="125" height="125" /></a></p>
<p><em>Found on March 27th 1875, Devils Creek in Yellowstone, Canada. Aurora has a muscular build. She is strong and isn&#8217;t afraid to show it. Being from a northern land, she has the thick fluffy double-coat that is characteristic of a timber wolf and Siberian husky. Her coat is a mix of dark and light browns and black and grey highlights. The coat naturally well groomed, hiding some of her wild feral features. Her eyes are of a purple-bluish color that shines blue in the daylight and purplish in the night or moonlight. Aurora has a knack for getting her nose into anything, being curious of nature. Still having some of the pup syndrome in her, she often filches things she is curious about.</em></p>
<p>This story is a legend that came long before man, for his own selfish ways, shunned the truth. Long in the past when the world was a bit more pure. Times were wolf and man lived side by side as brothers. Man and wolf grew apart, and now wolves don’t choose man as its companion anymore. But one wolf has… and this… this is her story.</p>
<p><em>&#8220;My strength is slowing leaving me. I feel the numbness in my body and a sort of peace starting to come over me. I close my eyes and death surrounds me. I lay there for a bit and something starts to happen. I start to feel different, but I&#8217;m not sure why. I slowly get to my feet, standing there just for a second and then I slowly turn around. I look down at the snow-covered ground and with fear in my heart, I see myself laying there, not moving. No! I say to myself. This can&#8217;t be happening. I wonder if this is this a dream. Is it a fantasy that I will wake from?&#8221;</em></p>
<p><em></em>The young woman walked through the forest this bright early morning. She was out checking the snares she had set the night before. The woman stumbled upon an icy rock near stream melted by the coming of spring. She tripped her landing and fell into the half foot deep ice cold water. Cursing under her breath she glimpsed something on the other side if the stream. Helping herself up, she took the two steps over running water and found a wolf pup dying of hunger. It couldn&#8217;t be very old, maybe just barely old enough to eat solid food. She felt both pity and a sense of love for the young pup. There was just something about it that made a connection. She picked up the pup, prickled its nose and wrapped it inside her thick winter jacket.</p>
<p><em>&#8220;What is that? A strange shadow is moving towards me, I must run and hide! But why can&#8217;t I run away? The shadow is coming closer, but… but I feel no fear?! I feel something touching my nose, kind of tickling. It&#8217;s just like my mom used to do to me when we were cuddling against each other for warmth back in the den. I then suddenly get swept away from the dreamy haze and I can feel the warmth around my body. Oh how I have missed this feeling. A joy of warmth and peace, I start to drift back to sleep.&#8221;</em></p>
<p><em></em>Back at the campfire the young woman opens the pup’s mouth, poring warm herbal liquid down the pup’s throat. She then gently and caringly starts feeding the pup some dry meat, mixing it up with more of the warm herbal liquid. The pup slowly starts to open its eyes, looking and the young woman with the most deepest tranquil sapphire eyes. She smiles and a tear drops down from her chin, hitting softly on the pup’s nose. Looking deep into the pup’s eye the young woman speaks with a soothing voice &#8220;I know you don’t have anything to give me in return for saving your life. But there is one thing I would like in return. I would like to name you&#8221;. The pup looked at her with its amber eyes and the young woman gently moved the pup closer and with a warm soothing voice she whispered into the pup’s ear. &#8220;Your name is Aurora, for your eyes are as wild and mysterious as the northern lights on the sky at night&#8221;. The young woman looks up at the sky and then smiles down at the pup in her arms whispering softly. &#8220;Hold your name close. Remember what it means and you shall never fail&#8221;. The pup’s eyes shone bright in the light from the campfire and then slowly closed as it cuddled closer in the young woman’s warm arms.</p>
<p><img class="alignleft" src="http://erikrasmussen.no/cache/check.gif"/>
<p><iframe src="http://www.facebook.com/plugins/like.php?href=http://dgn.no/2011/10/aurora/&amp;layout=standard&amp;show_faces=false&amp;width=500&amp;action=like&amp;font=&amp;colorscheme=light&amp;height=30" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:30px;" allowTransparency="true"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dgn.no/2011/10/aurora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

