<?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>SolidlyStated.com</title>
	<atom:link href="http://solidlystated.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://solidlystated.com</link>
	<description>Hardware. Software. Solid.</description>
	<lastBuildDate>Fri, 10 May 2013 01:33:46 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>PHP read a file line by line</title>
		<link>http://solidlystated.com/scripting/php-read-a-file-line-by-line/</link>
		<comments>http://solidlystated.com/scripting/php-read-a-file-line-by-line/#comments</comments>
		<pubDate>Fri, 10 May 2013 01:30:21 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[fopen]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4765</guid>
		<description><![CDATA[There are multiple ways to read files with PHP. You can use file(), file_get_contents(), fsockopen(), or fopen() functions. If you want to read through a file line by line, though, you will want to use one of the latter two and use their pointer to navigate through your file. I found the following simple commands [...]]]></description>
			<content:encoded><![CDATA[<p>There are multiple ways to read files with PHP. You can use <code>file(), file_get_contents(), fsockopen(), or fopen()</code> functions. If you want to read through a file line by line, though, you will want to use one of the latter two and use their pointer to navigate through your file. <span id="more-4765"></span></p>
<div class="alignright" style="margin-left:20px"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>I found the following simple commands very helpful to iterate through a large log file and collect specific information out of it. It has many uses, so I will <strong>keep this as vanilla as possible</strong>. </p>
<p>In my situation, I ended up using substr() to look for specific log messages and pluck out some key data I needed.</p>
<p>The following simple script will setup each line of the file in the <code>$line variable</code>. You can put your own code below that to perform whatever work you need.<br />
<br/><br/></p>
<h4>Open a file and read one line at a time</h4>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">PHP<a href="javascript:;" onclick="javascript:showCodeTxt('p4765code2'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p47652"><td class="code" id="p4765code2"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
	<span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/fopen"><span style="color: #990000;">fopen</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;path/to/my/file.log&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'r'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><a href="http://www.php.net/feof"><span style="color: #990000;">feof</span></a><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$file</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$line</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/fgets"><span style="color: #990000;">fgets</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #666666; font-style: italic;">/* Do your work here */</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<a href="http://www.php.net/fclose"><span style="color: #990000;">fclose</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Scripting */
google_ad_slot = "7110832439";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>Note:</strong> I used the &#8216;r&#8217; flag on the fopen function. This is purely for reading the file. You can use &#8216;r+&#8217; if you would like to edit the file, or consult the <a href="http://php.net/manual/en/function.fopen.php" target="_blank">PHP manual on fopen</a> for all the flags available.</p>
<p>If you have any questions, let me know below!</p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/scripting/php-read-a-file-line-by-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphite Pencil Portraits</title>
		<link>http://solidlystated.com/design/graphite-pencil-portraits-bradley-cooper/</link>
		<comments>http://solidlystated.com/design/graphite-pencil-portraits-bradley-cooper/#comments</comments>
		<pubDate>Sat, 06 Apr 2013 04:27:59 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[pencil]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4759</guid>
		<description><![CDATA[A portrait by Evan Michael Meagher April 04, 2013 14&#8243; x 10&#8243; graphite pencil (4H, HB, 6B, ebony) Bradley Cooper]]></description>
			<content:encoded><![CDATA[<p><span>A portrait by Evan Michael Meagher</span><br />
<span>April 04, 2013</span><br />
<span>14&#8243; x 10&#8243; graphite pencil (4H, HB, 6B, ebony)</span><br /> <br />
<span style="font-size:1.2em;">Bradley Cooper</span></p>
<p><span id="more-4759"></span><br />
<img src="http://solidlystated.com/content/2013/04/bradleycooper.jpg" style="border:4px solid #fff" height="945" width="720" alt="Bradley Cooper" title="Bradley Cooper" /></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/design/graphite-pencil-portraits-bradley-cooper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logitech G27 and Euro Truck Simulator 2</title>
		<link>http://solidlystated.com/software/logitech-g27-and-euro-truck-simulator-2/</link>
		<comments>http://solidlystated.com/software/logitech-g27-and-euro-truck-simulator-2/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 23:56:37 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Euro Truck]]></category>
		<category><![CDATA[G27]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[Peripherals]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4742</guid>
		<description><![CDATA[Euro Truck Simulator 2 Force Feedback: Full Pedals: Separate Shift Lights: None Released: Oct 19, 2012 Buy Now at Amazon This is the 20th article of SolidlyStated&#8217;s longest running series: The Logitech G27 Racing Wheel for Casual Racing Gamers. Today, as a special request, I have set up the G27 to play Euro Truck Simulator [...]]]></description>
			<content:encoded><![CDATA[<div class="g27-info">
<a href="http://www.amazon.com/gp/product/B00AIALGZK/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B00AIALGZK&#038;linkCode=as2&#038;tag=solistat-20" rel="nofollow"><img src="http://solidlystated.com/content/2013/03/euro-truck-2-box.jpg" /></a></p>
<div class="g27-info1">Euro Truck Simulator 2</div>
<div class="g27-info2">Force Feedback: Full</div>
<div class="g27-info3">Pedals:  Separate</div>
<div class="g27-info4">Shift Lights: <span style="color:darkred">None</span></div>
<div class="g27-info5">Released: Oct 19, 2012</div>
<div class="g27-info6"><a href="http://www.amazon.com/gp/product/B00AIALGZK/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B00AIALGZK&#038;linkCode=as2&#038;tag=solistat-20" rel="nofollow">Buy Now at Amazon</a></div>
<div class="g27-info8"></div>
</div>
<div class="clear"></div>
<p>This is the 20th article of SolidlyStated&#8217;s longest running series: <strong>The Logitech G27 Racing Wheel for Casual Racing Gamers</strong>. Today, as a special request, I have set up the G27 to play Euro Truck Simulator 2. </p>
<p>While not a title I would normally review, I found this oddly fun and well built to use your Logitech Wheel with. The game has plenty of features and is well-polished, even including a wizard for setting up the G27 or even G25.<span id="more-4742"></span></p>
<p>This simulator is sold worldwide in many languages and has you driving big rigs around Europe exclusively, building a career out of hauling loads and making deadlines. I even got a speeding ticket on my first job. </p>
<p><span class="solid">Solid Tip:</span> Looking for G27 drivers or Logitech Profiler software? Get it <a href="http://www.logitech.com/en-us/441/5184?section=downloads&#038;bit=&#038;osid=13" rel="nofollow">here</a>.</p>
<h4>Euro Truck Simulator 2 G27 Settings</h4>
<p>This is one of the more straight-forward setups I have done. The game automatically recognized the G27 and I only use the profiler to set up the 900&deg; steering (the game defaults at 200, which is way to tight for a large truck).</p>
<div class="alignright" style="margin-left:20px"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<ul>
<li>Open the <strong>Logitech Profiler</strong></li>
<li>Select New > Profile</li>
<li>Add <strong>eurotrucks2.exe</strong> as a new game</li>
<li>Open Specific Game Settings</li>
<li>Leave force feedback settings alone</li>
<li>Check &#8216;Use Special Steering Wheel Settings&#8217;</li>
<li>Set &#8216;Degrees of Rotation&#8217; to 900</li>
<li>Start game and use the &#8216;Input Wizard&#8217; as shown below</li>
</ul>
<p></p>
<h4>Euro Truck Simulator 2 Input Wizard</h4>
<p>Select &#8216;Controllers,&#8217; obviously.</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-1.jpg" alt="" title="euro-truck-2-controls-1" width="718" height="450" class="aligncenter size-full wp-image-4744" /></p>
<p>Select your Shifter. The G27 can use any of these, but H-Shifter is all you want for a simulation.</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-2.jpg" alt="" title="euro-truck-2-controls-2" width="718" height="486" class="aligncenter size-full wp-image-4745" /></p>
<p>Select your type of transmission. I choose the basic Range and it seems to work out fine.</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-3.jpg" alt="" title="euro-truck-2-controls-3" width="718" height="388" class="aligncenter size-full wp-image-4746" /></p>
<p>This completes the basic wizard setup. You can continue into Advanced settings if you like.</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-4.jpg" alt="" title="euro-truck-2-controls-4" width="718" height="418" class="aligncenter size-full wp-image-4747" /></p>
<p>Here you can see all your settings in action. There is nothing to change here at the moment. Click &#8216;Next.&#8217;</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-5.jpg" alt="" title="euro-truck-2-controls-5" width="718" height="509" class="aligncenter size-full wp-image-4748" /></p>
<p>This screen shows you gear selection setup. By default, &#8216;Button 0&#8242; is assigned to toggle gears 1-6 to 7-12. </p>
<p><strong>&#8216;Button 0&#8242; is the first red button</strong> on the shifter. (&#8216;Button 1&#8242; is the second)</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-6.jpg" alt="" title="euro-truck-2-controls-6" width="718" height="559" class="aligncenter size-full wp-image-4749" /></p>
<p>That finishes the wizard.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Software */
google_ad_slot = "1907377491";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h4>Changing Controls Later</h4>
<p>All of your force feedback, steering sensitivity, and steering linearity settings are all set to good defaults. Drive around for awhile before determining if you want to change any of these. The 900&deg; setting in the Logitech profile makes the steering perform very well.</p>
<p>You can pause the game and select Options > Controls to change these at any time.</p>
<p><img src="http://solidlystated.com/content/2013/03/euro-truck-2-controls-options.jpg" alt="" title="euro-truck-2-controls-options" width="718" height="665" class="aligncenter size-full wp-image-4750" /></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Software */
google_ad_slot = "1907377491";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<div id="attachment_4751" class="wp-caption aligncenter" style="width: 728px"><img src="http://solidlystated.com/content/2013/03/euro-truck-2-delivery.jpg" alt="" title="euro-truck-2-delivery" width="718" height="388" class="size-full wp-image-4751" /><p class="wp-caption-text">On the job!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/logitech-g27-and-euro-truck-simulator-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphite Pencil: Dragons</title>
		<link>http://solidlystated.com/design/graphite-pencil-dragons/</link>
		<comments>http://solidlystated.com/design/graphite-pencil-dragons/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 01:52:43 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[pencil]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4729</guid>
		<description><![CDATA[An illustration by Evan Michael Meagher March 15, 2013 18&#8243; x 12&#8243; graphite pencil (4H, 6B, Ebony) &#8220;Slay Dragons&#8221; Original High Res View Image]]></description>
			<content:encoded><![CDATA[<p><span>An illustration by Evan Michael Meagher</span><br />
<span>March 15, 2013</span><br />
<span>18&#8243; x 12&#8243; graphite pencil (4H, 6B, Ebony)</span></p>
<p><span style="font-size:1.7em;">&#8220;Slay Dragons&#8221;</span><br />
<span id="more-4729"></span><br />
<img src="http://solidlystated.com/content/2013/03/dragon-poster1.jpg" alt="The Dragon. Slay it. motivational poster" title="Slay Dragons" width="720" height="575" class="aligncenter size-full wp-image-4728" /></p>
<h4>Original High Res</h4>
<p><a href="http://solidlystated.com/content/2013/03/dragon.jpg" target="_blank">View Image</a></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/design/graphite-pencil-dragons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphite Pencil Portraits</title>
		<link>http://solidlystated.com/design/graphite-pencil-portraits-jacque-zediker/</link>
		<comments>http://solidlystated.com/design/graphite-pencil-portraits-jacque-zediker/#comments</comments>
		<pubDate>Mon, 25 Feb 2013 02:01:59 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[pencil]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4707</guid>
		<description><![CDATA[A portrait by Evan Michael Meagher February 24, 2013 18&#8243; x 12&#8243; graphite pencil (4H, HB, 6B) Jacqueline E. Zediker &#8220;Rawr&#8221;]]></description>
			<content:encoded><![CDATA[<p><span>A portrait by Evan Michael Meagher</span><br />
<span>February 24, 2013</span><br />
<span>18&#8243; x 12&#8243; graphite pencil (4H, HB, 6B)</span><br /> <br />
<span style="font-size:1.2em;">Jacqueline E. Zediker</span></p>
<p><span style="font-size:1.7em;">&#8220;Rawr&#8221;</span><br />
<span id="more-4707"></span><br />
<img src="http://solidlystated.com/content/2013/02/jacqueline-zediker-rawr.jpg" style="border:4px solid #fff" height="1086" width="720" alt="Jacqueline E Zediker" title="Jacqueline E Zediker" /></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/design/graphite-pencil-portraits-jacque-zediker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thundercats Artwork</title>
		<link>http://solidlystated.com/design/thundercats-artwork/</link>
		<comments>http://solidlystated.com/design/thundercats-artwork/#comments</comments>
		<pubDate>Sun, 27 Jan 2013 00:03:17 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[self-portrait]]></category>
		<category><![CDATA[Thundercats]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4691</guid>
		<description><![CDATA[They said I could be anything&#8230; so I became a Thundercat. One of the best cartoons of the 1980s! Taken from an original photo and genetically altered in Photoshop. Variant, titled &#8220;Law of the Jungle&#8221;]]></description>
			<content:encoded><![CDATA[<p><strong>They said I could be anything&#8230; so I became a Thundercat.</strong><span id="more-4691"></span> One of the best cartoons of the 1980s!</p>
<p>Taken from an original photo and genetically altered in Photoshop.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Design */
google_ad_slot = "6413944124";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://solidlystated.com/content/2013/01/thundercats-large.jpg"><img alt="Thundercats self-portrait" src="http://solidlystated.com/content/2013/01/thundercats-large.jpg" title="self-portrait" class="alignnone" width="728" height="971" /></a></p>
<p>Variant, titled &#8220;Law of the Jungle&#8221;</p>
<p><a href="http://solidlystated.com/content/2013/01/thundercats-crown.jpg"><img alt="Thundercats self-portrait" src="http://solidlystated.com/content/2013/01/thundercats-crown.jpg" title="Law of the Jungle" class="alignnone" width="728" height="971" /></a></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Design */
google_ad_slot = "6413944124";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/design/thundercats-artwork/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dead Space 3: Volantis Gameplay Video</title>
		<link>http://solidlystated.com/software/dead-space-3-volantis-gameplay-video/</link>
		<comments>http://solidlystated.com/software/dead-space-3-volantis-gameplay-video/#comments</comments>
		<pubDate>Mon, 31 Dec 2012 18:48:17 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Dead Space 2]]></category>
		<category><![CDATA[Dead Space 3]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4675</guid>
		<description><![CDATA[From IGN.com, here are 6 minutes of new gameplay footage from EA and Visceral Games franchise sequel, Dead Space 3. Here we see the characters traversing the icy wastes of Tau Volantis&#8230; which strangely resembles much of the eastern United States this winter. Dead Space 2 on Ice No, it&#8217;s not the live action ice [...]]]></description>
			<content:encoded><![CDATA[<p>From IGN.com, here are 6 minutes of new gameplay footage from EA and Visceral Games franchise sequel, Dead Space 3. <span id="more-4675"></span> </p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Software */
google_ad_slot = "1907377491";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Here we see the characters traversing the icy wastes of Tau Volantis&#8230; which strangely resembles much of the eastern United States this winter.</p>
<h4>Dead Space 2 on Ice</h4>
<p>No, it&#8217;s not the live action ice skating version of Dead Space, its just Dead Space 3. You might actually think you are watching Dead Space 1 or 2 because it&#8217;s so similar. Hopefully, we will get more than just snow. </p>
<p><img src="http://solidlystated.com/content/2012/12/ds3-crafting.jpg" alt="" title="ds3-crafting" width="570" height="306" class="aligncenter size-full wp-image-4678" /></p>
<p>It looks like the action is much more ramped up along with some other alterations, which may be a positive or negative, depending on what you enjoy about the series. Co-op will definitely be a welcome addition, as will the <strong>new weapon crafting system</strong>. The whole power node concept was never very satisfying.</p>
<h4>Gameplay Video by IGN</h4>
<div style="margin:0 auto;width:640px;margin-top:10px" ><iframe width="640" height="360" src="http://www.youtube.com/embed/Tifzg2gdWuI" frameborder="0" allowfullscreen></iframe></div>
<p><br/></p>
<div class="alignright" style="margin-left:20px"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>Get more info at <a href="http://deadspace.com/" title="Dead Space 3" target="_blank">http://deadspace.com/</a>. DS3 is available for pre-order now, but we will have to wait until <strong>February 13, 2013</strong> for release in North America.</p>
<p>While the video gives the feel of &#8216;more of the same&#8217; for the franchise, you also get a slew of new weapons and attachments, the new environments (how about grappling hooks instead of Zero-G), and co-op gameplay.</p>
<p>I bet Isaac Clarke is starting to feel like Bruce Willis in Die Hard, who quipped &#8216;how can the same shit happen to the same guy twice?&#8217; &#8230; and that was after just 2 movies.</p>
<p><br/></p>
<p><img src="http://solidlystated.com/content/2012/06/ds3-header.jpg" alt="Dead Space 3" title="ds3-header" width="718" height="83" class="aligncenter size-full wp-image-3861" /></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/dead-space-3-volantis-gameplay-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom 404 page causing strange behavior</title>
		<link>http://solidlystated.com/scripting/custom-404-page-causing-strange-redirects/</link>
		<comments>http://solidlystated.com/scripting/custom-404-page-causing-strange-redirects/#comments</comments>
		<pubDate>Sun, 23 Dec 2012 00:58:48 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4256</guid>
		<description><![CDATA[Setting up a 404 page on your webserver was the easy part. Now you have found that your site or application has begun to exhibit strange behaviors with redirects or variable values or sessions. In this article, I will share my problem and solution so that you don&#8217;t waste the hours that I did. One [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up a 404 page on your webserver was the easy part. Now you have found that your site or application has begun to exhibit strange behaviors with redirects or variable values or sessions. <span id="more-4256"></span> In this article, I will share my problem and solution so that you don&#8217;t waste the hours that I did.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Scripting */
google_ad_slot = "7110832439";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h4>One Line Setup of 404 Page</h4>
<p>It doesn&#8217;t get any easier than this. You can, of course, name your page anything you want and use a different path. <strong>I find it easiest</strong> to simply call it /404.php (or whatever language you use) and leave it right at the root, which is also where your <code>.htaccess</code> file will reside.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">HTACCESS<a href="javascript:;" onclick="javascript:showCodeTxt('p4256code4'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p42564"><td class="code" id="p4256code4"><pre class="htaccess" style="font-family:monospace;">ErrorDocument 404 /404.php</pre></td></tr></table></div>

<h4>The Problem</h4>
<p>At seemingly random times, I found that my web application would redirect me to my custom 404 page for no reason at all. All pages involved actually existed, but the program was nonetheless sending me to my own error page.</p>
<p>After spending a good hour wondering why some of my SESSION variables were getting setup incorrectly, I decided to go <strong>check the Apache logs</strong>. The site I was building was on GoDaddy using Deluxe Hosting, and the Apache logs aren&#8217;t the easiest to work with. <strong>If I had just been looking at Firebug</strong>, or other browser debugger, I could have immediately seen the answer.</p>
<h4>The Culprit</h4>
<p>If you have full control over your Apache logs, check to see if you happen to be inadvertently generating 404 errors with external files, such as shown below. Since you now have a custom 404 page, everything goes there. That means that if you have an unused image in a CSS file that has never been uploaded or a script being called that no longer exists on the server, it will generate a 404 error and actually load your custom 404 page &#8220;behind the scenes.&#8221;</p>
<table cellpadding="0" cellspacing="0" width="718">
<tr>
<td valign="top"><img src="http://solidlystated.com/content/2012/09/404-css-images.gif" alt="CSS Images 404 errors" title="404-css-images" width="397" height="107" class="alignleft size-full wp-image-4257" /><br />
<br class="clear" /><br />
What&#8217;s worse is that this all happens after the server-side code (PHP,ASP,Java,etc) has done it&#8217;s part and returned data to the screen.<br />
I had some variables that I echoed out and were correct, but were getting changed because the 404 page was loading in the background (after the fact).
</td>
<td>
<div class="alignright" style="margin-left:20px"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></a></td>
</tr>
</table>
<h4>How to Fix it</h4>
<p>The answer here is <em>obvious</em>. <strong>Remove any references to files that don&#8217;t exist</strong>. Easier said than done, of course. As you can see, it happened to me and I try to be as vigilant as possible. </p>
<p>In my case, I had copied a large chunk of a CSS file from another project to reuse some of the classes, but not all of them. Therefore I ended up with image calls to stuff that didn&#8217;t exist, which fired my custom 404 page.</p>
<p>The easiest way to help yourself out and build better web pages is to leave a debugger open at all times (my favorite is Firebug on Firefox when developing) and you will see a red 404 entry pop up for anything on the page that doesn&#8217;t exist.</p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/scripting/custom-404-page-causing-strange-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add your own books to Kindle Fire HD</title>
		<link>http://solidlystated.com/hardware/add-your-own-books-to-kindle-fire-hd/</link>
		<comments>http://solidlystated.com/hardware/add-your-own-books-to-kindle-fire-hd/#comments</comments>
		<pubDate>Fri, 23 Nov 2012 23:17:36 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Kindle Fire HD]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4615</guid>
		<description><![CDATA[More often than not, I find myself wanting to add my own content to things instead of going directly through digital stores like Amazon and iTunes. The Kindle Fire HD is lacking in the instruction manual department (and no doubt geared towards people just purchasing books using the Kindle store), but adding &#8220;books&#8221; to your [...]]]></description>
			<content:encoded><![CDATA[<p>More often than not, I find myself wanting to add my own content to things instead of going directly through digital stores like Amazon and iTunes. <span id="more-4615"></span></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, 4/13/10, SSD v1 */
google_ad_slot = "7570072383";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>The Kindle Fire HD is lacking in the instruction manual department (and no doubt geared towards people just purchasing books using the Kindle store), but adding &#8220;books&#8221; to your Kindle is easy. I say books in quotes because the Amazon Kindle Fire separates &#8220;books&#8221; from &#8220;documents&#8221; for whatever reason, even though they may be one or the other, semantically. Even though you may have multiple books in varying file formats, Kindle Fire will only place .AZW files under the actual books section of your Kindle.</p>
<p>All of your PDF, RTF, ePub, Mobi, etc will be under the &#8220;Docs&#8221; section instead of &#8220;Books.&#8221; <strong>While minor, I found this annoying</strong>. Apple iBooks will place them all on my bookshelf together &#8211; with cover art no less.</p>
<p>The good news is that once you open a book on your device, it usually treats them the same. You have full control over visuals, bookmarks, navigation, and notes. PDF documents are an exception to this, as is the nature of a PDF. PDFs do not have these features (I miss black with white text), but Amazon does include a way to convert PDF to AZW format, which is a roll of the dice in my experience.</p>
<h4>How to add books to Kindle Fire HD</h4>
<p>There are <strong>five ways of transferring books</strong> to your device. They can be hit or miss, depending on format. The popular ePub format and the obscure LIT format are out of luck via a direct transfer. However, ePub can be easily converted (see down below).</p>
<p>Disclaimer- I use PC for these tests and cannot confirm how Mac treats it. I imagine it is similar.</p>
<ul style="font-size: 16px; font-weight: bold;">
<li><a href="#method1">Drag and Drop AZW books through USB connection</a></li>
<li><a href="#method2">Send to Kindle through email</a></li>
<li><a href="#method3">Send to Kindle through web browser</a></li>
<li><a href="#method4">Send to Kindle through desktop application</a></li>
<li><a href="#method5">Send to Kindle through another Android device</a></li>
<li><a href="#method6">Bonus: Support for ePub format books</a></li>
</ul>
<p><br style="clear:both" /></p>
<h4 id="method1">Method 1: Drag and Drop AZW Books</h4>
<p><img class="aligncenter size-full wp-image-4621" title="sendtokindle-drag-drop" src="http://solidlystated.com/content/2012/11/sendtokindle-drag-drop.jpg" alt="Drag and Drop Kindle Fire HD Books" width="718" height="222" /></p>
<p>The most direct way to transfer a book. Simply plug your Kindle Fire into your computer and drag your files into your books section. Of course, this method (for whatever reason) <strong>only works with Amazon format</strong> files. I had some of these on my PC and I simply dropped them into <code>Computer\Kindle\Internal storage\Books</code> (in Windows).</p>
<p>If you try to drop the other file formats into Documents or Books, nothing happens.</p>
<p><br style="clear:both" /></p>
<h4 id="method2">Method 2: Send to Kindle with Email</h4>
<p><img class="aligncenter size-full wp-image-4622" title="sendtokindle-email" src="http://solidlystated.com/content/2012/11/sendtokindle-email.jpg" alt="Send to Kindle Fire HD email" width="718" height="349" /></p>
<p><span class="solid">Solid Tip:</span> You can send up to 25 files at a time to your device!</p>
<p>This is what most people will end up doing with their current books. You can send the below formats to your kindle device at your custom Kindle email address:</p>
<div class="alignright" style="margin-left: 20px;"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>This cool feature is known as the<br />
&#8220;<strong>Kindle Personal Document Service</strong>.&#8221;</p>
<ul>
<li>Amazon (.azw)</li>
<li>Adobe Portable Document Format (.pdf) *</li>
<li>Microsoft Word (.doc, .docx)</li>
<li>Rich Text Format (.rtf)</li>
<li>HTML (.htm, .html)</li>
<li>Text (.txt) documents</li>
<li>Archives(zip , x-zip) and compressed archive</li>
<li>Mobi book</li>
</ul>
<ul>
<li>1. Add your email address as an approved sender on your Amazon account.</li>
<ul>
<li>Your Account &gt; Manage your Kindle &gt; Personal Document Settings &gt; Approved Personal Document Email List</li>
</ul>
<li>2. Send an email with the document attachment to your @kindle.com email address</li>
<li>3. If document is PDF, put &#8220;convert&#8221; as subject line and Amazon will attempt to make it an AZW doc (experimental).</li>
</ul>
<p><span class="solid">* Solid Tip:</span> PDF documents don&#8217;t have the features of other document types on Kindle (font, color, navigation, bookmarks, notes). Try to the use the &#8220;convert&#8221; option above to get those features when you mail the document. It is &#8220;experimental&#8221; and might show the document as garbage text, but worked for most of my PDF tests. </p>
<p><a href="http://www.amazon.com/gp/sendtokindle/email" rel="nofollow" target="_blank">Amazon help</a> for sending to Kindle via email.</p>
<p><br style="clear:both" /></p>
<h4 id="method3">Method 3. Send to Kindle Desktop Program</h4>
<p><img class="aligncenter size-full wp-image-4623" title="sendtokindle-desktop" src="http://solidlystated.com/content/2012/11/sendtokindle-desktop.jpg" alt="Send to Kindle Fire HD desktop app" width="585" height="282" /></p>
<p>This little jewel, an official desktop app for BOTH PC and Mac, will automatically convert files to the right format and send them to your device using either your local Wi-Fi connection or Whispernet. It supports the following formats:</p>
<ul>
<li>Amazon (.azw)</li>
<li>Adobe Portable Document Format (.pdf) *</li>
<li>Microsoft Word (.doc, .docx)</li>
<li>Rich Text Format (.rtf)</li>
<li>HTML (.htm, .html)</li>
<li>Text (.txt) documents</li>
<li>Mobi book</li>
</ul>
<p>Simply right-click (open a context menu) the file and you will see your &#8220;Send to Kindle&#8221; menu option.</p>
<p><a href="http://www.amazon.com/gp/sendtokindle/pc" rel="nofollow" target="_blank">Amazon help</a> for the Send to Kindle desktop application.</p>
<p><br style="clear:both" /></p>
<h4 id="method4">Method 4. Send to Kindle with Mozilla Firefox or Google Chrome</h4>
<p><img class="aligncenter size-full wp-image-4628" title="sendtokindle-browser" src="http://solidlystated.com/content/2012/11/sendtokindle-browser.jpg" alt="Send to Kindle Fire HD via browser" width="718" height="222" /></p>
<p>We are talking about books here, but sometimes you want to send web documents (news articles, blog posts, etc) to your device for reading later. Amazon has also provided a couple of helpful <strong>browser extensions</strong> to send to Kindle. It works similar to the desktop app, but lets you send web documents right to your device.</p>
<div class="alignright" style="margin-left: 20px;"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>It provides a nifty preview of your selected content before you send.</p>
<p><a href="http://www.amazon.com/gp/sendtokindle/chrome" rel="nofollow" target="_blank">Amazon help</a> for the Send to Kindle &#8211; Google Chrome extension.</p>
<p><a href="http://www.amazon.com/gp/sendtokindle/firefox" rel="nofollow" target="_blank">Amazon help</a> for the Send to Kindle &#8211; Mozilla Firefox extension.</p>
<p><br style="clear:both" /></p>
<h4 id="method5">Method 5. Send to Kindle with Android devices</h4>
<p><img src="http://solidlystated.com/content/2012/11/sendtokindle-android.jpg" alt="Send to Kindle Fire HD with Android device" title="sendtokindle-android" width="718" height="222" class="aligncenter size-full wp-image-4629" /></p>
<p>Other Android devices &#8211; tablets and smartphones &#8211; can send to your Kindle device with their built-in share features.</p>
<p>Using the &#8220;Kindle for Android&#8221; app, send documents to your Kindle device using the share button found in many popular Android apps on your smartphone or tablet. You&#8217;ll be able to read them anytime, everywhere on Kindle devices and Kindle free reading apps.</p>
<p>Popular Android apps that support sharing with Send to Kindle for Android include:</p>
<ul>
<li><strong><a href="http://www.amazon.com/dp/B004SD5GZ4/ref=stk_and_adobe" target="_new">Adobe Reader</a></strong> &#8211; Send PDF documents to your Kindle from this PDF viewing app.</li>
<li><strong><a href="http://www.amazon.com/dp/B004SDEP38/ref=stk_and_docs2go" target="_new">Documents To Go</a></strong> &#8211; Send Microsoft Word documents from this document editing app.</li>
<li><strong><a href="http://www.amazon.com/dp/B008K6HN8I/ref=stk_and_esfile" target="_new">ES File Explorer</a></strong> &#8211; Send images and documents to Kindle from this file manager app.</li>
</ul>
<p>Supported File Types:</p>
<ul>
<li>Microsoft Word (.DOC, .DOCX)</li>
<li>PDF (.PDF)</li>
<li>Images (.JPG, .JPEG, .GIF, .PNG, .BMP)</li>
<li>Kindle Format (.MOBI, .AZW)</li>
</ul>
<p><a href="http://www.amazon.com/gp/sendtokindle/android" rel="nofollow" target="_blank">Amazon help</a> for the Send to Kindle &#8211; Android.</p>
<p><br style="clear:both" /></p>
<h4 id="method6">What about my ePub books?!</h4>
<p>Don&#8217;t worry! There are multiple options for reading your ePub books (or other less, popular formats).</p>
<p>Amazon’s app store has a few ePub reading apps, but Amazon hides most of them from showing up on Kindle Fire, saying they aren&#8217;t compatible. However, they work fine when &#8220;sideloaded.&#8221; Sideloading means downloading and adding an app on your own, outside of the app store, which is beyond the scope of this article. For the technically-minded user, that is a fourth option for ePub and probably recommended.</p>
<p><strong>ePub option #1</strong> &#8211;  <a href="http://calibre-ebook.com/" title="Calibre" target="_blank"> Download Calibre</a>. Calibre is a free tool that lets you manage and convert all types of Ebooks. Lots of bells and whistles. You can make your ePub files into Kindle versions.</p>
<p><strong>ePub option #2</strong> &#8211; <a href="http://www.2epub.com/" title="2epub" target="_blank">2epub.com</a> A quick, free, online converter. No bells or whistles, but fast and simple. You can make your ePub files into Kindle versions here also.</p>
<p><strong>ePub option #3</strong> &#8211; Amazon now *officially* supports the Overdrive Media Console app, for free, in it&#8217;s app store. This app will allow you to download ePub books using an Adobe ID from libraries everywhere.</p>
<p>I won&#8217;t touch on DRM (digital rights management) in this article, but if you have specific questions about trying to get your DRM-controlled content onto your device, feel free to ask in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/hardware/add-your-own-books-to-kindle-fire-hd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aliens: Colonial Marines &#8220;Survivor Trailer&#8221;</title>
		<link>http://solidlystated.com/software/aliens-colonial-marines-survivor-trailer-released/</link>
		<comments>http://solidlystated.com/software/aliens-colonial-marines-survivor-trailer-released/#comments</comments>
		<pubDate>Fri, 23 Nov 2012 04:11:35 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Aliens]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[Sega]]></category>
		<category><![CDATA[trailer]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=4600</guid>
		<description><![CDATA[Sega and Gearbox just showed off the latest trailer of the newest addition to the Aliens video game franchise, Aliens: Colonial Marines. Another glorious day in the corps In Space, No One Can Hear You Scream &#8220;&#8230; this first-person shooter is steeped in the eerie, claustrophobic and terrifying atmosphere that made the Aliens films successful [...]]]></description>
			<content:encoded><![CDATA[<p>Sega and Gearbox just showed off the latest trailer of the newest addition to the Aliens video game franchise, Aliens: Colonial Marines. <span id="more-4600"></span> </p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 728x90, SSD v1 - Software */
google_ad_slot = "1907377491";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h4>Another glorious day in the corps</h4>
<div style="margin:0 auto;width:640px;margin-top:10px" ><iframe width="640" height="360" src="http://www.youtube.com/embed/i0qvWwTQotU?list=UUmB-U0lIC2TciZ1nevP9k5g&amp;hl=en_US" frameborder="0" allowfullscreen></iframe></div>
<p><br/></p>
<h4>In Space, No One Can Hear You Scream</h4>
<div class="alignright" style="margin-left:20px"><script type="text/javascript"><!--
google_ad_client = "pub-0090340920588945";
/* 300x250-textandimages-middle */
google_ad_slot = "4982255467";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>&#8220;&#8230; this first-person shooter is steeped in the eerie, claustrophobic and terrifying atmosphere that made the Aliens films successful worldwide. You and your friends will become the most badass military outfit in the galaxy – the US Colonial Marines. It’s down to you to not just survive but wipe out the Xeno infestation.&#8221;</p>
<p>Check out more trailers or get info at:<br />
<a href="http://www.sega.com/alienscolonialmarines/" title="SEGA" target="_blank">http://www.sega.com/alienscolonialmarines/</a>.</p>
<p>Colonial Marines is available for <a href="http://www.amazon.com/gp/product/B005THAX60/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B005THAX60&#038;linkCode=as2&#038;tag=solistat-20">pre-order</a> now, but we will have to wait until <strong>February 12th, 2013</strong> to see if anyone can hear you scream. Pre-orders come in 2 flavors, &#8220;Collector&#8217;s Edition&#8221; and &#8220;Limited Edition.&#8221;</p>
<p><b>Limited Edition</b><br />
<a href="http://www.amazon.com/gp/product/B005THAX60/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B005THAX60&#038;linkCode=as2&#038;tag=solistat-20">Limited Edition</a> gets you Aliens movie characters (playable), Ripley&#8217;s duct-taped flamethrower/M41-A combo, and soldier customizations.</p>
<p><b>Collector&#8217;s Edition</b><br />
The <a href="http://www.amazon.com/gp/product/B007P0X6CM/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B007P0X6CM&#038;linkCode=as2&#038;tag=solistat-20">Collector&#8217;s Edition</a> gets you all the Limited Edition goodies, plus a USCM Dossier, Powerloader statue, Xeno Hive box, and more in-game content, including the Easter egg item &#8220;Sonic Electronic Ball Breakers.&#8221;</p>
<p><img src="http://solidlystated.com/content/2012/11/collectors-edition.jpg" alt="Colonial Marines Collector&#039;s Edition" title="collectors-edition" width="718" height="300" class="aligncenter size-full wp-image-4603" /></p>
<p><span class="solid">Solid Tip:</span> The Collector&#8217;s Edition is NOT available for PC. Only 360 and PS3.</p>
<p><br/></p>
<div id="attachment_4602" class="wp-caption aligncenter" style="width: 728px"><img src="http://solidlystated.com/content/2012/11/colonial-marines-aliens.jpg" alt="SEGA/Gearbox art" title="colonial-marines-aliens" width="718" height="535" class="size-full wp-image-4602" /><p class="wp-caption-text">image by SEGA/Gearbox</p></div>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/aliens-colonial-marines-survivor-trailer-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
