<?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>catchtheinfection.com</title>
	<atom:link href="http://catchtheinfection.com/feed" rel="self" type="application/rss+xml" />
	<link>http://catchtheinfection.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 Mar 2011 22:48:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Center that $#!+</title>
		<link>http://catchtheinfection.com/archives/538</link>
		<comments>http://catchtheinfection.com/archives/538#comments</comments>
		<pubDate>Thu, 17 Mar 2011 22:46:20 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://catchtheinfection.com/?p=538</guid>
		<description><![CDATA[When I first learned CSS I kept coming into a problem when trying to center a wrapper. What I was taught to do was to make a div that had left and right margins that were &#8220;auto&#8221;. this worked just [...]]]></description>
			<content:encoded><![CDATA[<p>When I first learned CSS I kept coming into a problem when trying to center a wrapper. What I was taught to do was to make a div that had left and right margins that were &#8220;auto&#8221;. this worked just fine, but I always found that there was about a 20px margin above the wrapper. I could never for the life of me figure out why.</p>
<p>After searching the web I discovered a CSS trick. What you can do is make your wrapper div &#8220;position&#8221; absolute with a &#8220;top&#8221; of 0px (this makes sure you wrapper is flush to the top). To get it centered you would make your &#8220;left&#8221; position 50% and a &#8220;margin-left&#8221; of &#8220;-&#8221; half of the total width. Your CSS would like like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">#wrapper {
     width:960px;
     position:absolute;
     top:0px;
     left:50%;
     margin-left:-480px;
}</pre></td></tr></table></div>

<p>How someone was able to figure this out still boggles my mind. So after using this technique on multiple projects, I discovered it had a flaw. When resizing your window it kind of &#8220;disappeared&#8221; when the window gets too small. Not a huge deal, but I had a client point it out to me. SO&#8230; I decided to find an alternative solution. After poking around a little more on various forums I discovered the &#8220;real&#8221; solution to eliminating the pesky margin when using &#8220;margin:0px auto;&#8221;</p>
<p>By default, the HTML and BODY tag contain some sort of padding and or margins so you simply just have to declare them as &#8220;0&#8243; and to make sure that they are set to 100% height and width&#8230; Like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">html {
     width:100%;
     height:100%;
     margin:0px;
     padding:0px;
}
&nbsp;
body {
     width:100%;
     height:100%;
     margin:0px;
     padding:0px;
}
&nbsp;
#wrapper {
     width:960px;
     position:absolute;
     top:0px;
     left:50%;
     margin-left:-480px;
}</pre></td></tr></table></div>

<p>So there you go&#8230; a much simpler solution to a common issue. </p>
<p>&#8230; But wait! There is more! As a separate note, I had also thought that it was impossible to center a wrapper both vertically and horizontally&#8230; but by using the technique of negative margins it is possible! By simply applying the 50% to your top and negative margin to the top of the div it will vertically align it&#8230; Like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">#wrapper {
     width:960px;
     height:960px;
     position:absolute;
     top:50%;
     left:50%;
     margin-top:-480px;
     margin-left:-480px;
}</pre></td></tr></table></div>

<p>But what about the container &#8220;disappearing&#8221; on a window re size? Well there is a solution. Just make an outer wrapper with 100% height and width and a &#8220;min-height&#8221; and &#8220;min-width&#8221;. This will force scroll bars  to appear once the window gets to a certain size. The completed CSS and HTML looks like so:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">#outerWrapper {
     width:100%;
     height:100%;
     position:relative;
     min-height:960px;
     min-width:960px;
}
&nbsp;
#wrapper {
     width:960px;
     height:960px;
     position:absolute;
     top:50%;
     left:50%;
     margin-top:-480px;
     margin-left:-480px;
}</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;div id=&quot;outerWrapper&quot;&gt;
     &lt;div id=&quot;wrapper&quot;&gt;
          &lt;!-- CONTENT GOES HERE --&gt;
     &lt;/div&gt;
&lt;/div&gt;</pre></td></tr></table></div>

<p>I hope this helps someone out, or if someone has a better solution, or finds something wrong with what I have hear feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://catchtheinfection.com/archives/538/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DC Universe Online (PS3): What you need to know</title>
		<link>http://catchtheinfection.com/archives/474</link>
		<comments>http://catchtheinfection.com/archives/474#comments</comments>
		<pubDate>Tue, 01 Feb 2011 03:10:00 +0000</pubDate>
		<dc:creator>chrislotts</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[Superheros]]></category>

		<guid isPermaLink="false">http://catchtheinfection.com/?p=474</guid>
		<description><![CDATA[As an avid video gamer and superhero aficionado, I was beside myself when I heard rumours of an ultimate DC Universe game launching this year. Well, the wait is over, the game is out and&#8230;. well, to be honest, I [...]]]></description>
			<content:encoded><![CDATA[<p>As an avid video gamer <em><strong>and</strong></em> superhero aficionado, I was beside myself when I heard rumours of an ultimate DC Universe game launching this year. Well, the wait is over, the game is out and&#8230;. well, to be honest, I was slightly underwhelmed – at first. (On that note, I&#8217;d like to point out, it takes a lot to knock me off my feet these days.. you know, seeing as we practically live in &#8216;the future&#8217; – or what we dreamt the future to be when we were little).</p>
<p>Before making any rash decisions, I thought I would give the game a fair chance. It is an MMO (which I&#8217;m not usually a fan of playing – my last MMO attempt was with Final Fantasy XI &#8211; also on a console, not the PC version) and that means MASSIVE environments, EPIC story arcs, TOTAL character customizations, A LOT of levelling, etc. I couldn&#8217;t possibly make a &#8216;love it&#8217; or &#8216;hate it&#8217; decision after just a few (frustrating) hours. So here goes&#8230; Part 1 of my DC Universe Online gaming experience thus far (I&#8217;m only about 6 hours in and at Level 10).</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong><span style="font-size: large">The Premise/Back Story:</span></strong></p>
<p>The game starts with a pretty EPIC opening video sequence – Earth is about to be destroyed a la Brainiac&#8217;s invading armies – the heroes/villains are all that remains and it&#8217;s not going so well for either side. To everyone&#8217;s surprise, Lex Luthor ends up being captured and is Earth&#8217;s sole survivor. Fast forward to Lex arming his mecca-suit with Brainiac&#8217;s time travelling technology PLUUUUSSS ALL the powers of every superhero Brainiac has &#8216;stolen&#8217; throughout time and space, conveniently packaged in tiny &#8216;power orbs&#8217;. &#8212;&#8211;&gt; Lex travels back in time, just as the armies are starting to invade (why he didn&#8217;t go back a little further is beyond me / maybe I missed that part&#8230;) and spills the beans to the current Justice League (overseen by Superman, Batman and WonderWoman). Oh, and while this is happening, Lex devised a preplan to scatter the &#8216;power orbs&#8217; all across the world, thus creating a new army of Superheroes – aka Me and You. Viola! Go save the Universe from Brainiac&#8217;s evil clutches!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><span style="font-size: large"><strong>The beginning&#8230; or lack there of:</strong></span></p>
<p>So here&#8217;s where it gets a little tricky&#8230; or more accurately, frustrating. The game just starts. No instruction, no real tutorial.. you start off picking a &#8216;World&#8217;. What this really means is.. the server in which you&#8217;ll be playing the game online. If you plan on joining friends, you better find out which server they&#8217;re on ahead of time (I&#8217;m on &#8216;Birthrite&#8217;), because as far as I can tell (again.. the details of doing ANYTHING are extremely vague) you&#8217;re stuck with what you pick up front.</p>
<p>Next up is character customization! I sat on the next few screens for about an hour going through every option, trying to find the perfect match for the &#8216;hero&#8217; (or villain) I wanted to be. You get to make a few key choices (again with very vague instructions, or no instructions at all) which will determine A) your main storyline, B) your &#8216;guide&#8217; or narrator, C) the type of powers you&#8217;ll have, and D) the core of your superhero persona. Kind of important stuff that oh I dunno.. you might want a little helping hand with before you start off on your epic quest&#8230; that you can&#8217;t change.. unless you create a whole new character&#8230; How was this even released to the public without some kind of test panel? Anyone?</p>
<p>So before you make any solid decisions, here are the basics (I&#8217;ve only followed the hero path, so that&#8217;s what I&#8217;ll use as an example – I&#8217;m assuming it&#8217;s the same setup for villains, but then again&#8230;):</p>
<p>A) <strong>Pick your mentor</strong> – This determines the main storyline you&#8217;ll follow <em><strong>AND</strong></em> the annoying voiceover guide – I picked WonderWoman who represents the &#8216;Magic&#8217; storyline (Superman follows a genetics type storyline and Batman follows a human with cool gadgets storyline). Each of these lead you in your &#8216;levelling up&#8217; path + minigames and all the side quests. The main Brainiac story remains the same and is spread out across your 30 stages of levelling up. <em>Sidenote: Anyone else that picks WonderWoman – is it just me, or does it REALLY sound like they got a black woman to do the voiceover? &#8230;more specifically, someone who sounds like the Detective from the Carmen Sandiego TV show&#8230;</em></p>
<p>B) <strong>Pick your powers/weapon</strong> – there are quite a few options here, ranging from guns, to a staff, to psychic energy, etc. When you start playing you basically have 2 options &#8211; button smash A, and button smash B – DON&#8217;T FRET! As you level up (which happens quite quickly), you can add combos and enhancements to these powers and it makes things much more interesting/makes you much more powerful.</p>
<p>C) <strong>Pick your &#8216;super&#8217; mode –</strong> This basically determines how you&#8217;ll &#8216;quickly&#8217; get around the MASSIVE worlds.. and I mean MASSIVE. Your options are <strong>flight</strong>, <strong>acrobatics</strong>, or <strong>superspeed</strong>. I tried flight because.. well, who doesn&#8217;t want to fly? Sounds better on paper. Good luck with the controls, like how do you fly &#8216;down&#8217;? I abandoned that one pretty quickly and switched over to acrobatics, aka Spiderman. You can stick to walls/climb on ANYTHING, even upside down, &#8216;glide&#8217; while you run / jump off high surfaces and fake flying. I think it&#8217;s the best of the all options.</p>
<p>D) <strong>Create your hero</strong> – Here&#8217;s the fun/annoying part. First off, I warn you, the controls/menus are extremely finicky! I got really frustrated just trying to move from one screen to the next. I think this mostly has to do with lag from the Internet as EVERYTHING is done online. There are TONS of options at this point.. costume (ranging from gloves, body, back, legs, feet, shoulders, etc.) + colour selections. Don&#8217;t worry if you don&#8217;t find that EXACT costume piece right away – you&#8217;ll earn/find/buy a whole bunch more as you play through the game. I would recommend equipping something for each option now as you can always choose &#8216;none&#8217; later on, but you can&#8217;t add anything after this first step (unless you earn it later.. which is a little different than just finding add-ons.. confusing, I know).</p>
<p>You&#8217;re done! / Get ready for basic (and I mean baaaaaaaaasic training).</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong>To be continued in Part 2! </strong></p>
<p>Check back shortly for more in depth coverage / any coverage as the instruction manual doesn&#8217;t even cover what I wrote about above.. just sayin&#8217;. / If Part 1 made the game sound more annoying than fun&#8230; it&#8217;ll pass. After working out the kinks / just reading my breakdown above will save you HOURS of frustration. More soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://catchtheinfection.com/archives/474/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tricks of the Trade</title>
		<link>http://catchtheinfection.com/archives/460</link>
		<comments>http://catchtheinfection.com/archives/460#comments</comments>
		<pubDate>Sat, 20 Nov 2010 18:46:29 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Else]]></category>
		<category><![CDATA[If]]></category>
		<category><![CDATA[syntax]]></category>

		<guid isPermaLink="false">http://catchtheinfection.com/blog/2010/11/20/tricks-of-the-trade/</guid>
		<description><![CDATA[For whatever reason the majority of this post disappeared on me. Luckily I was able to salvage this little bit below. Sorry about the rest. Single Post with an Archive ontop Okay this one made me go crazy trying to [...]]]></description>
			<content:encoded><![CDATA[<p>For whatever reason the majority of this post disappeared on me. Luckily I was able to salvage this little bit below. Sorry about the rest.</p>
<h2>Single Post with an Archive ontop</h2>
<p>Okay this one made me go crazy trying to figure it out. It&#8217;s just as difficult to explain what the problem was. Okay&#8230; So I wanted to have an archive of a specific category at the top of a single post entry. This meant that in my &#8220;single.php&#8221; file I had to put a query at the top then rewind the loop at the bottom and and have it pull the single post&#8217;s information. Confused? Yeah me too.</p>
<p>Here is what you have to do. First you have to put in a little snippit of code to have the single post&#8217;s query saved. You do this by writting in:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;?php $temp_query = $wp_query; ?&gt;</pre></td></tr></table></div>

<p>Then you do your query for the archives you want to display along with the loop:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;?php $wp_query = $temp_query; ?&gt;
&lt;?php while (have_posts()) : the_post(); ?&gt;
 &lt;!-- CONTENT GOES HERE --&gt;
&lt;?php endwhile; ?&gt;</pre></td></tr></table></div>

<p>Now that you have your archives set up and the single posts query saved we can now call it;</p>
<p>And booyakasha you are done! Congrats!</p>
<p>Hopefully this post can help you out with whatever your wordpress task may be. Till next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://catchtheinfection.com/archives/460/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Beauty and Simplicity of the 960 Grid</title>
		<link>http://catchtheinfection.com/archives/446</link>
		<comments>http://catchtheinfection.com/archives/446#comments</comments>
		<pubDate>Wed, 20 Oct 2010 20:03:56 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://catchtheinfection.com/?p=446</guid>
		<description><![CDATA[One of the most useful tools I have found on the web is the 960 grid. While most developers will shy away from using this type of a CSS framework, but I embrace it. While there are times that I [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most useful tools I have found on the web is the 960 grid. While most developers will shy away from using this type of a CSS framework, but I embrace it. While there are times that I will be building something that doesn&#8217;t exactly fit into this framework, the majority of jobs will. The 960 grid is a sure way to produce a solid structured website that will read well in all browsers.</p>
<p>The grid generator and download can be found at 960.gs which intself is a huge asset, as it allows you to preview what the final grid will look like. Not to mention they have now added a &#8220;Website builder&#8221; which will not only generate the CSS for you but also the HTML saving tons of time and effort. Since I like to think of this blog as a learning tool developed by a self taught student, I&#8217;ve decided to ouline the basics of 960 grid system.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">// This is your Wrapper
&lt;div class=&quot;container_12&quot;&gt;
&nbsp;
	//12 column div
	&lt;div class=&quot;grid_12&quot;&gt;
	//Content goes here
	&lt;/div&gt;
		// Goto the next line
		&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&nbsp;
	// Left area, 4 columns wide
	&lt;div class=&quot;grid_4&quot;&gt;
		//Content goes here
	&lt;/div&gt;
&nbsp;
	// Right area, 8 columns wide
	&lt;div class=&quot;grid_8&quot;&gt;
		//Content goes here
	&lt;/div&gt;
&nbsp;
&lt;/div&gt; // Closes you Wrapper</pre></td></tr></table></div>

<p>The Design of the 960 Grid is so simple, and there are so many tools offered on their site there is no wonder that so many people are using it. Take a look at their website and a list of the websites using the grid, including companies like drupal. <a href="http://www.960.gs">www.960.gs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://catchtheinfection.com/archives/446/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If { you have to Use WordPress Or } Else {</title>
		<link>http://catchtheinfection.com/archives/423</link>
		<comments>http://catchtheinfection.com/archives/423#comments</comments>
		<pubDate>Wed, 20 Oct 2010 13:25:54 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Else]]></category>
		<category><![CDATA[If]]></category>
		<category><![CDATA[syntax]]></category>

		<guid isPermaLink="false">http://catchtheinfection.com/?p=423</guid>
		<description><![CDATA[When I first starting using Wodpress, along with PHP I will admit I did some things wrong. Well not necessarily wrong&#8230; just different. Some of the techniques that I felt so clever coming up with I put to better use [...]]]></description>
			<content:encoded><![CDATA[<p>When I first starting using Wodpress, along with PHP I will admit I did some things wrong. Well not necessarily wrong&#8230; just different. Some of the techniques that I felt so clever coming up with I put to better use further down the line. Take for instance that you wanted to have a DIV be visible only if you are on the front page of the website. Well what I would originally do is put an if statement that would change the display of the DIV from block to none:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;div style=&quot;&lt;?php if (is_front_page() ) {
      echo 'display:block'; 
} else { 
      echo 'display:none'; 
} ?&gt;&quot;&gt;
         Show and Hide this content
&lt;/div&gt;</pre></td></tr></table></div>

<p>Little did I know that I didn&#8217;t require a div at all. All I had to do is self contain the PHP code and whatever is between the initial &#8220;IF&#8221; statement and &#8220;ELSE&#8221; and &#8220;ELSE&#8221; and close, will be the content that toggles. Take for example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;?php if (is_front_page() ) { ?&gt;
        This is font page content
&lt;?php } else { ?&gt;
         This is NOT front page content
&lt;?php } ?&gt;</pre></td></tr></table></div>

<p>Even though both of these work, I find the second bit to be a lot cleaner. Now back to my statement at the begining of this post. Even though the first example may not have been 100% accurate, I still was able to use it down the line. This techniques can be used to switch the class of a certain object depending on what page you are on. Say for example that you want a link to change colour if you are &#8220;home&#8221;. Well all you need to do is make a class with the colour you want and call it say &#8220;.active&#8221;. Now just throw it in with the link:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="language" style="font-family:monospace;">&lt;a class=&quot;&lt;?php if (is_front_page() ) {
      echo 'active'; 
} else { 
      echo ' '; 
} ?&gt;&quot;&gt;This is a link&lt;/a&gt;</pre></td></tr></table></div>

<p>Now I could go on forever about the &#8220;IF&#8221; statment but I think I will leave it where we are. Maybe in a future post I will write about all of the different IF&#8217;s available in Worpress. Stay tuned</p>
]]></content:encoded>
			<wfw:commentRss>http://catchtheinfection.com/archives/423/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded Corners? A Web Tool to the Rescue!</title>
		<link>http://catchtheinfection.com/archives/413</link>
		<comments>http://catchtheinfection.com/archives/413#comments</comments>
		<pubDate>Wed, 20 Oct 2010 04:39:45 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://catchtheinfection.com/?p=413</guid>
		<description><![CDATA[I remember back when I first started designing websites rounded corners were always took longer than I had time for. As well, I tend to be quite lazy when it comes to writing more code than I have to, so [...]]]></description>
			<content:encoded><![CDATA[<p>I remember back when I first started designing websites rounded corners were always took longer than I had time for. As well, I tend to be quite lazy when it comes to writing more code than I have to, so JQuery, as simple as it is often wouldn&#8217;t be worth the time. So alas comes CSS3 with its corner radius attribute. But wait. You have to write code to support Webkit and Gecko as well?</p>
<p>While browsing around the web I was able to find a website that was a Godsend. The website is <a href="http://www.border-radius.com">www.border-radius.com</a>, and the tool was developed by Jacob Bijani. I love finding websites like this. Apparently their are people in this world who like to make designers and developers lives easier. Simply type in the corner radius for each corner and the code magically appears in the middle square. Thanks Jacob, for this handy tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://catchtheinfection.com/archives/413/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

