<?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>PixelStation</title>
	<atom:link href="http://pixelstation.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixelstation.ca</link>
	<description>Development and Design</description>
	<lastBuildDate>Mon, 21 Dec 2009 19:52:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I&#8217;m such a pansy.</title>
		<link>http://pixelstation.ca/2009/12/im-such-a-pansy/</link>
		<comments>http://pixelstation.ca/2009/12/im-such-a-pansy/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:41:48 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Random Ranting]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=82</guid>
		<description><![CDATA[When it comes to people asking me about making windows in C++, I usually just say &#8220;It&#8217;s about 300 lines of stuff you wouldn&#8217;t understand.&#8221; Truth is, I hate writing the windows code. So here&#8217;s what I did to get around it  

#define PXW_ASK_BEFORE_CLOSE
#include &#34;PXLWindow.h&#34;
&#160;
class AppWindow : public PXLWindow
&#123;
public:
	AppWindow&#40;&#41; : PXLWindow&#40;&#41;
	&#123;
		this-&#38;gt;m_ScreenWidth = 600;
		this-&#38;gt;m_ScreenHeight = [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to people asking me about making windows in C++, I usually just say &#8220;It&#8217;s about 300 lines of stuff you wouldn&#8217;t understand.&#8221; Truth is, I hate writing the windows code. So here&#8217;s what I did to get around it <img src='http://pixelstation.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <span id="more-82"></span></p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#define PXW_ASK_BEFORE_CLOSE</span>
<span style="color: #339900;">#include &quot;PXLWindow.h&quot;</span>
&nbsp;
<span style="color: #0000ff;">class</span> AppWindow <span style="color: #008080;">:</span> <span style="color: #0000ff;">public</span> PXLWindow
<span style="color: #008000;">&#123;</span>
<span style="color: #0000ff;">public</span><span style="color: #008080;">:</span>
	AppWindow<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span> <span style="color: #008080;">:</span> PXLWindow<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
	<span style="color: #008000;">&#123;</span>
		this<span style="color: #000040;">-</span><span style="color: #000040;">&amp;</span>gt<span style="color: #008080;">;</span>m_ScreenWidth <span style="color: #000080;">=</span> <span style="color: #0000dd;">600</span><span style="color: #008080;">;</span>
		this<span style="color: #000040;">-</span><span style="color: #000040;">&amp;</span>gt<span style="color: #008080;">;</span>m_ScreenHeight <span style="color: #000080;">=</span> <span style="color: #0000dd;">400</span><span style="color: #008080;">;</span>
	<span style="color: #008000;">&#125;</span>
&nbsp;
	<span style="color: #0000ff;">bool</span> OnCreate<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
	<span style="color: #008000;">&#123;</span>
&nbsp;
		<span style="color: #0000ff;">return</span> <span style="color: #0000ff;">true</span><span style="color: #008080;">;</span>
	<span style="color: #008000;">&#125;</span>
<span style="color: #008000;">&#125;</span><span style="color: #008080;">;</span>
&nbsp;
<span style="color: #0000ff;">int</span> WINAPI WinMain<span style="color: #008000;">&#40;</span>HINSTANCE hInstance, HINSTANCE hPrevInstance,
					LPSTR lpCmdLine, <span style="color: #0000ff;">int</span> nShowCmd<span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
	AppWindow myWindow<span style="color: #008080;">;</span>
	<span style="color: #0000ff;">if</span><span style="color: #008000;">&#40;</span><span style="color: #000040;">!</span>myWindow.<span style="color: #007788;">Create</span><span style="color: #008000;">&#40;</span>hInstance<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span>
		<span style="color: #0000ff;">return</span> <span style="color: #000040;">-</span><span style="color: #0000dd;">1</span><span style="color: #008080;">;</span>
	myWindow.<span style="color: #007788;">Run</span><span style="color: #008000;">&#40;</span>nShowCmd<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
&nbsp;
	<span style="color: #0000ff;">return</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span></pre></div></div>

<p>Look familiar? Almost looks like C#, eh?</p>
<p>I&#8217;m such a pansy! <img src='http://pixelstation.ca/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>PS &#8211; I&#8217;ll post the code for the class eventually. I&#8217;m currently trying to get it so that the user can &#8216;extend&#8217; the window (using the OnCreate function seen there) with DirectX and OpenGL.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/12/im-such-a-pansy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vectors &#8211; Part 1</title>
		<link>http://pixelstation.ca/2009/12/2d-and-3d-math-part-1-vectors/</link>
		<comments>http://pixelstation.ca/2009/12/2d-and-3d-math-part-1-vectors/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 06:23:26 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vectors]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=56</guid>
		<description><![CDATA[One of the biggest challenges for a game programmer is understanding how to represent position and movement in 2D and 3D space. In this tutorial I will teach you the basics of understanding vectors in 2D and 3D space.
Vectors
For the most part, we use vectors. In math and physics, vectors are usually represented by a [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest challenges for a game programmer is understanding how to represent position and movement in 2D and 3D space. In this tutorial I will teach you the basics of understanding vectors in 2D and 3D space.</p>
<h1>Vectors</h1>
<p>For the most part, we use <a title="Euclidean vector - Wikipedia" href="http://en.wikipedia.org/wiki/Euclidean_vector" target="_blank">vectors</a>. In math and physics, vectors are usually represented by a <strong>direction (angle)</strong> and a <strong>magnitude (length)</strong>.<br />
See the diagram below (imagine the hypotenuse as an arrow):</p>
<p><img class="alignnone size-medium wp-image-64" title="Triangle" src="http://pixelstation.ca/wp-content/uploads/2009/12/triangle-300x160.GIF" alt="Triangle" width="300" height="160" /></p>
<p><strong>Theta</strong> (displayed as θ) is your angle in either degrees or radians (I will always talk about angles in degrees). The <strong>hypotenuse</strong> is the longest side of the triangle (your length or magnitude). The <strong>adjacent</strong> side is the side that touches the angle you&#8217;re working with, the <strong>opposite</strong> side is the side across from the angle. The adjacent and opposite sides are often your <strong>X and Y components</strong>, respectively.</p>
<p><span id="more-56"></span>In programming, we use the X and Y components so often that we just store and use them instead of the angle and magnitude.</p>
<p>Say we have a triangle with and angle and a magnitude, but we want the components. Here&#8217;s how to get them:</p>
<p>To get the components we use <strong><em>SOH CAH TOA</em></strong>, meaning this</p>
<p><img class="alignnone size-full wp-image-66" title="sohcahtoa" src="http://pixelstation.ca/wp-content/uploads/2009/12/sohcahtoa.gif" alt="sohcahtoa" width="161" height="117" /></p>
<p>so,<br />
<em>sine(θ)=O/H<br />
cosine(θ)=A/H<br />
tangent(θ)=O/A</em><br />
*(θ just represents the angle)</p>
<p>keeping in mind that opposite will be our Y component and adjacent will be our X component, we come up with this</p>
<p><em>sine(theta) = Y/H<br />
cosine(theta) = X/H</em><br />
(we don&#8217;t need tangent at the moment)</p>
<p>and finally, this can be rearranged to make</p>
<p><em>Y = H × sine(theta)<br />
X = H × cosine(theta)</em></p>
<h1>Finally, Time for Some Code</h1>
<p>We&#8217;ve got a good grasp on vectors now, so we need to make some code. How do we represent a vector in C++? Easy, like this:</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #0000ff;">struct</span> Vector2D
<span style="color: #008000;">&#123;</span>
    <span style="color: #0000ff;">double</span> x, y<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span><span style="color: #008080;">;</span></pre></div></div>

<p>There, we now have a type Vector2D with the inner components &#8216;x&#8217; and &#8216;y&#8217;.</p>
<p>Next, we have a vector. What can we use it for? The answer to that is &#8220;just about anything you want.&#8221; Vectors are used for so many applications that it&#8217;s nearly impossible to tell you what to use it for. The main things (in game programming) are position, direction and velocity.</p>
<h1>2D Is So Old. I Need 3D.</h1>
<p>So just add the Z component. It&#8217;s that easy (for now).</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #0000ff;">struct</span> Vector3D
<span style="color: #008000;">&#123;</span>
    <span style="color: #0000ff;">double</span> x, y, z<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span><span style="color: #008080;">;</span></pre></div></div>

<p>Later, things won&#8217;t be so simple.</p>
<h1>Coming Up Next&#8230;</h1>
<p>We&#8217;ll be working with adding, subtracting vectors and multiplying and dividing scalars (magnitudes with no direction, aka regular numbers).</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/12/2d-and-3d-math-part-1-vectors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Still alive and working.</title>
		<link>http://pixelstation.ca/2009/12/still-alive-and-working/</link>
		<comments>http://pixelstation.ca/2009/12/still-alive-and-working/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 04:52:51 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[devil]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[ilut]]></category>
		<category><![CDATA[opengl]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=50</guid>
		<description><![CDATA[I&#8217;m still here, just been busy with life.
I&#8217;ve mostly been busy programming with OpenGL. I&#8217;m hoping to write a few simple tutorials using GLUT to get rid of the nasty Windows code. I&#8217;ll also be posting a DevIL image loading tutorial, because there are so painfully few on the internet. Basically, anything I struggle with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still here, just been busy with life.</p>
<p>I&#8217;ve mostly been busy programming with OpenGL. I&#8217;m hoping to write a few simple tutorials using GLUT to get rid of the nasty Windows code. I&#8217;ll also be posting a DevIL image loading tutorial, because there are so painfully few on the internet. Basically, anything I struggle with finding information on, I will post a tutorial for when I get it figured out.</p>
<p>Planned so far:</p>
<ul>
<li>Making an OpenGL window with GLUT (Windows)</li>
<li>Drawing primitives</li>
<li>Changing view and using a &#8216;camera&#8217;</li>
<li>Light</li>
<li>Materials</li>
<li>Loading textures with DevIL and displaying with OpenGL</li>
<li>Mixing materials and texturing</li>
<li>Putting it all together (Light, materials and textures)</li>
</ul>
<p>Some extra tutorials</p>
<ul>
<li>Tips and tricks (skyboxes, skydomes, skyspheres)</li>
<li>Collisions and 3D Vector math (probably split in two tutorials)</li>
<li>Screenshots with OpenGL and DevIL</li>
</ul>
<p>That&#8217;s quite a bit of code to write, so it&#8217;ll take me a while. I&#8217;ll likely end up writing some over the Christmas break, and during work (working at the IT lab at Humber is boring, but it gives me lots of time to code!).</p>
<p>Anyway, heres a couple screenies of my program!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-4-50">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://pixelstation.ca/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=4&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160488.png" title="A good look at the particles." class="shutterset_set_4" >
								<img title="screenshot_1260160488" alt="screenshot_1260160488" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160488.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160627.png" title="A particle fountain." class="shutterset_set_4" >
								<img title="screenshot_1260160627" alt="screenshot_1260160627" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160627.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160638.png" title="Wider view of the fountain and a bit of terrain." class="shutterset_set_4" >
								<img title="screenshot_1260160638" alt="screenshot_1260160638" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160638.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160705.png" title="Lighting tests." class="shutterset_set_4" >
								<img title="screenshot_1260160705" alt="screenshot_1260160705" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160705.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160707.png" title="More lighting tests." class="shutterset_set_4" >
								<img title="screenshot_1260160707" alt="screenshot_1260160707" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160707.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160715.png" title="Spotlight lighting on terrain." class="shutterset_set_4" >
								<img title="screenshot_1260160715" alt="screenshot_1260160715" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160715.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160768.png" title="Wide view of how the world is set up. Terrain + Skydome" class="shutterset_set_4" >
								<img title="screenshot_1260160768" alt="screenshot_1260160768" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160768.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://pixelstation.ca/wp-content/gallery/programming/screenshot_1260160790.png" title="Pretty particles." class="shutterset_set_4" >
								<img title="screenshot_1260160790" alt="screenshot_1260160790" src="http://pixelstation.ca/wp-content/gallery/programming/thumbs/thumbs_screenshot_1260160790.png" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/12/still-alive-and-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just a reminder</title>
		<link>http://pixelstation.ca/2009/06/just-a-reminder/</link>
		<comments>http://pixelstation.ca/2009/06/just-a-reminder/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 04:09:15 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=48</guid>
		<description><![CDATA[Please only post comments in English. If you don&#8217;t speak English&#8230; well.. I guess you wont be able to read this anyway but whatever. If you don&#8217;t speak English, or just post in another language, I will delete your comment.
I&#8217;ll try to make something new soon&#8230; I&#8217;ve had an idea for a new game for [...]]]></description>
			<content:encoded><![CDATA[<p>Please only post comments in English. If you don&#8217;t speak English&#8230; well.. I guess you wont be able to read this anyway but whatever. If you don&#8217;t speak English, or just post in another language, I will delete your comment.</p>
<p>I&#8217;ll try to make something new soon&#8230; I&#8217;ve had an idea for a new game for a while, I might start working on it while I&#8217;ve got time off from work.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/06/just-a-reminder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Write Love On Her Arms</title>
		<link>http://pixelstation.ca/2009/06/to-write-love-on-her-arms/</link>
		<comments>http://pixelstation.ca/2009/06/to-write-love-on-her-arms/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 01:26:18 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Graphic Art]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[non-profit]]></category>
		<category><![CDATA[to write love on her arms]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=46</guid>
		<description><![CDATA[I made this for twloha.org, a non-profit movement dedicated to presenting hope and finding help for people struggling with depression, addiction, self-injury and suicide.
Please go check out their website at twloha.org and buy some merch!


]]></description>
			<content:encoded><![CDATA[<p>I made this for twloha.org, a non-profit movement dedicated to presenting hope and finding help for people struggling with depression, addiction, self-injury and suicide.</p>

<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/twloha_pixelstation.jpg" title="To Write Love On Her Arms
http://twloha.org/" class="shutterset_singlepic32" >
	<img class="ngg-singlepic" src="http://pixelstation.ca/wp-content/gallery/cache/32_web20_x_twloha_pixelstation.jpg" alt="TWLOHA" title="TWLOHA" />
</a>

<p>Please go check out their website at twloha.org and buy some merch!</p>
<div class="ngg-related-gallery"><a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/twloha_pixelstation.jpg" title="To Write Love On Her Arms
http://twloha.org/" class="shutterset_Related images for To Write Love On Her Arms" ><img title="TWLOHA" alt="TWLOHA" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_twloha_pixelstation.jpg" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/06/to-write-love-on-her-arms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another new tag.</title>
		<link>http://pixelstation.ca/2009/05/another-new-tag/</link>
		<comments>http://pixelstation.ca/2009/05/another-new-tag/#comments</comments>
		<pubDate>Fri, 29 May 2009 16:10:37 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=43</guid>
		<description><![CDATA[I was bored and decided I needed to make a Fightstar signature.
So here it is, named after their new album, &#8216;Be Human&#8217;;
Version 1
Version 2
]]></description>
			<content:encoded><![CDATA[<p>I was bored and decided I needed to make a Fightstar signature.</p>
<p>So here it is, named after their new album, &#8216;Be Human&#8217;;</p>
<p>Version 1<br />

<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/fightstar_be_human_v1.jpg" title="" class="shutterset_singlepic30" >
	<img class="ngg-singlepic" src="http://pixelstation.ca/wp-content/gallery/cache/30_web20_x_fightstar_be_human_v1.jpg" alt="Be Human (Version 1)" title="Be Human (Version 1)" />
</a>
</p>
<p>Version 2<br />

<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/fightstar_be_human_v2.jpg" title="" class="shutterset_singlepic31" >
	<img class="ngg-singlepic" src="http://pixelstation.ca/wp-content/gallery/cache/31_web20_x_fightstar_be_human_v2.jpg" alt="Be Human (Version 2)" title="Be Human (Version 2)" />
</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/05/another-new-tag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Bored</title>
		<link>http://pixelstation.ca/2009/05/im-bored/</link>
		<comments>http://pixelstation.ca/2009/05/im-bored/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:12:08 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Graphic Art]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Random Ranting]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=41</guid>
		<description><![CDATA[And I&#8217;m looking for a new place to waste my time&#8230; anyone know any good graphics communities? All my old ones are dead or just suck now (*thumbs down*).  
Comment if you got any!
]]></description>
			<content:encoded><![CDATA[<p>And I&#8217;m looking for a new place to waste my time&#8230; anyone know any good graphics communities? All my old ones are dead or just suck now (*thumbs down*). <img src='http://pixelstation.ca/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Comment if you got any!</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/05/im-bored/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IN SILENCE</title>
		<link>http://pixelstation.ca/2009/05/in-silence/</link>
		<comments>http://pixelstation.ca/2009/05/in-silence/#comments</comments>
		<pubDate>Fri, 29 May 2009 02:03:58 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Graphic Art]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[signature]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=38</guid>
		<description><![CDATA[Made a new signature today. Inspired by my old tag called &#8216;In Time&#8217; and made for a friend.
Here it is, &#8216;In Silence&#8217;;
You&#8217;re welcome Ade  








]]></description>
			<content:encoded><![CDATA[<p>Made a new signature today. Inspired by my old tag called &#8216;In Time&#8217; and made for a friend.</p>
<p>Here it is, &#8216;In Silence&#8217;;</p>

<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/in_silence.jpg" title="" class="shutterset_singlepic29" >
	<img class="ngg-singlepic" src="http://pixelstation.ca/wp-content/gallery/cache/29_web20_x_in_silence.jpg" alt="In Silence" title="In Silence" />
</a>

<p>You&#8217;re welcome Ade <img src='http://pixelstation.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="ngg-related-gallery"><a href="http://pixelstation.ca/wp-content/gallery/wallpapers/musicflow2-1440x900.jpg" title="More text work. This is definitely one of my favourites." class="shutterset_Related images for IN SILENCE" ><img title="musicflow2-1440x900.jpg" alt="musicflow2-1440x900.jpg" src="http://pixelstation.ca/wp-content/gallery/wallpapers/thumbs/thumbs_musicflow2-1440x900.jpg" /></a>
<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/in_time.jpg" title="" class="shutterset_Related images for IN SILENCE" ><img title="In Time" alt="In Time" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_in_time.jpg" /></a>
<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/fightstar_be_human_v1.jpg" title="" class="shutterset_Related images for IN SILENCE" ><img title="Be Human (Version 1)" alt="Be Human (Version 1)" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_fightstar_be_human_v1.jpg" /></a>
<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/justmystyle_smaller.jpg" title="" class="shutterset_Related images for IN SILENCE" ><img title="Just My Style" alt="Just My Style" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_justmystyle_smaller.jpg" /></a>
<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/twloha_pixelstation.jpg" title="To Write Love On Her Arms
http://twloha.org/" class="shutterset_Related images for IN SILENCE" ><img title="TWLOHA" alt="TWLOHA" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_twloha_pixelstation.jpg" /></a>
<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/fightstar_be_human_v2.jpg" title="" class="shutterset_Related images for IN SILENCE" ><img title="Be Human (Version 2)" alt="Be Human (Version 2)" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_fightstar_be_human_v2.jpg" /></a>
<a href="http://pixelstation.ca/wp-content/gallery/miscellaneous/in_silence.jpg" title="" class="shutterset_Related images for IN SILENCE" ><img title="In Silence" alt="In Silence" src="http://pixelstation.ca/wp-content/gallery/miscellaneous/thumbs/thumbs_in_silence.jpg" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/05/in-silence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comments are up</title>
		<link>http://pixelstation.ca/2009/05/comments-are-up/</link>
		<comments>http://pixelstation.ca/2009/05/comments-are-up/#comments</comments>
		<pubDate>Thu, 28 May 2009 18:54:17 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=32</guid>
		<description><![CDATA[I just finished editing the comment template, so feel free to leave some comments for me  
Also, the about me page is finished. Check it out!!  
Adiós
]]></description>
			<content:encoded><![CDATA[<p>I just finished editing the comment template, so feel free to leave some comments for me <img src='http://pixelstation.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also, the about me page is finished. Check it out!! <img src='http://pixelstation.ca/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Adiós</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/05/comments-are-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>End of Semester</title>
		<link>http://pixelstation.ca/2009/05/end-of-semester/</link>
		<comments>http://pixelstation.ca/2009/05/end-of-semester/#comments</comments>
		<pubDate>Wed, 27 May 2009 20:29:28 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Random Ranting]]></category>

		<guid isPermaLink="false">http://pixelstation.ca/?p=30</guid>
		<description><![CDATA[Well, the semester is over.. and that means boredom over summer. And work.. at a crappy summer job. Thumbs up for crappy jobs!
At least I passed..
]]></description>
			<content:encoded><![CDATA[<p>Well, the semester is over.. and that means boredom over summer. And work.. at a crappy summer job. Thumbs up for crappy jobs!</p>
<p>At least I passed..</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelstation.ca/2009/05/end-of-semester/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
