<?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>Sat, 04 Feb 2012 00:40:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Proper Email Address Validation</title>
		<link>http://solidlystated.com/scripting/proper-email-address-validation/</link>
		<comments>http://solidlystated.com/scripting/proper-email-address-validation/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 03:17:41 +0000</pubDate>
		<dc:creator>maxmammel</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[regular expressions]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Validation]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3441</guid>
		<description><![CDATA[Guest Author: Max Mammel Max Mammel is an Indianapolis-based Technical Lead of a web application development team with a global Fortune 500 firm. Max is an expert in design patterns, system architecture, and object-oriented programming and brings many years of Java know-how to SolidlyStated.com I suspect that there are nearly as many solutions to the [...]]]></description>
			<content:encoded><![CDATA[<div class="author">
<div class="authorimg"><img src="http://solidlystated.com/content/social/maxmammel.gif" alt="Max J Mammel" /></div>
<div class="authortitle">Guest Author: Max Mammel</div>
<div class="authorbio">Max Mammel is an Indianapolis-based Technical Lead of a web application development team with a global Fortune 500 firm. Max is an expert in design patterns, system architecture, and object-oriented programming and brings many years of Java know-how to SolidlyStated.com</div>
</div>
<p>I suspect that there are nearly as many solutions to the problem of email address validation as there are projects that require them.  I&#8217;ve seen a fair amount of them myself over the years, they range from simply checking for the presence of an <code>@</code> in a string to extremely complex and often flawed sub-routines designed for the task. <span id="more-3441"></span></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>
<p>In my mind the most logical solution to validating email addresses is through the use of regular expressions.  In this article I will present a regular expression solution that can be used in four different languages. Hopefully this will be the last email validation regex you ever need.</p>
<p>The <a title="Wikipedia: Email_address" rel="nofollow" href="http://en.wikipedia.org/wiki/Email_address" target="_blank">Wikipedia entry</a> on email addresses provides a nice summary of the <strong>surprisingly complex standard</strong> that governs valid and invalid email addresses, and is what I used as a guide for generating these expressions.</p>
<p>To summarize the standard even further, an email address takes the following basic form: &#8216;local_part@domain&#8217; with separate rules for &#8216;local_part&#8217; and &#8216;domain&#8217;.</p>
<p>One rule for &#8216;local_part&#8217; involves the <strong>use of quoted strings</strong>, which allows the presence of some special characters as long as they are contained within double quotes.  An example of a valid email address using quoted strings is this monstrosity:<br />
<code>mail."&lt;some&gt;\ &lt;xml&gt;\"inside\"&lt;/xml&gt;&lt;/some&gt;"@host.com</code></p>
<p>The very standard that defines this rule recommends against its use.  Another obscure rule defined in the standards involves the domain portion of the address.  In addition to the normal rules governing host-names, email addresses can have <strong>IP address domains</strong> such as this: <code>email.address@[123.123.123.123]</code></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>According to the Wikipedia article email addresses such as this are &#8220;rarely seen except in email spam&#8221; &#8211; so matching addresses such as these may have some practical applications in spam detection.  </p>
<p>Because these two features cause the regular expression to become unwieldy <strong>I have provided three expressions for each language</strong>. </p>
<ul>
<li>The basic does not allow these rare addresses.</li>
<li>The intermediate allows IP domains to be in the email address, but not quotes strings.</li>
<li>The advanced will allow both IP domains and quoted strings to appear.</li>
</ul>
<p><br/></p>
<div class="custom-list1">
<h4 id="load-toggle">BASIC VALIDATION</h4>
<div id="load">
<table width="100%" cellspacing="0" cellpadding="0" class="info">
<tbody>
<tr>
<td class="title">IP Address Domains</td>
<td>Invalid</td>
</tr>
<tr class="altrow">
<td class="title">Quoted Strings</td>
<td>Invalid</td>
</tr>
</tbody>
</table>
<table width="100%" cellspacing="0" cellpadding="0" class="data">
<thead>
<tr>
<th class="brgt">LANGUAGE</th>
<th class="">EXPRESSION</th>
</tr>
</thead>
<tbody>
<tr>
<td class="brgt bbot">Java</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~])+\\.)*[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+@\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}$</pre>
</td>
</tr>
<tr class="altrowb">
<td class="brgt bbot">JavaScript</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~])+\\.)*[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+@\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}$</pre>
</td>
</tr>
<tr>
<td class="brgt bbot">Bash</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(([-a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~])+\.)*[-a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~]+@\w((-|\w)*\w)*\.(\w((-|\w)*\w)*\.)*\w{2,4}$</pre>
</td>
</tr>
<tr class="altrowb">
<td class="brgt">PHP</td>
<td>
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">/^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~])+\\.)*[-a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~]+@\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}$/</pre>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="custom-list1">
<h4 id="load-toggle">INTERMEDIATE VALIDATION</h4>
<div id="load">
<table width="100%" cellspacing="0" cellpadding="0" class="info">
<tbody>
<tr>
<td class="title">IP Address Domains</td>
<td>Allowed</td>
</tr>
<tr class="altrow">
<td class="title">Quoted Strings</td>
<td>Invalid</td>
</tr>
</tbody>
</table>
<table width="100%" cellspacing="0" cellpadding="0" class="data">
<thead>
<tr>
<th class="brgt">LANGUAGE</th>
<th class="">EXPRESSION</th>
</tr>
</thead>
<tbody>
<tr>
<td class="brgt bbot">Java</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~])+\\.)*[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+@(?:(?:\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(?:\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}))$</pre>
</td>
</tr>
<tr class="altrowb">
<td class="brgt bbot">JavaScript</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~])+\\.)*[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+@(?:(?:\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(?:\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}))$</pre>
</td>
</tr>
<tr>
<td class="brgt bbot">Bash</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(([-a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~])+\.)*[-a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~]+@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(\w((-|\w)*\w)*\.(\w((-|\w)*\w)*\.)*\w{2,4}))$</pre>
</td>
</tr>
<tr class="altrowb">
<td class="brgt">PHP</td>
<td>
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">/^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~])+\\.)*[-a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~]+@(?:(?:\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(?:\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}))$/</pre>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="custom-list1">
<h4 id="load-toggle">ADVANCED VALIDATION</h4>
<div id="load">
<table width="100%" cellspacing="0" cellpadding="0" class="info">
<tbody>
<tr>
<td class="title">IP Address Domains</td>
<td>Allowed</td>
</tr>
<tr class="altrow">
<td class="title">Quoted Strings</td>
<td>Allowed</td>
</tr>
</tbody>
</table>
<table width="100%" cellspacing="0" cellpadding="0" class="data">
<thead>
<tr>
<th class="brgt">LANGUAGE</th>
<th class="">EXPRESSION</th>
</tr>
</thead>
<tbody>
<tr>
<td class="brgt bbot">Java</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+|(?:\"(?:[-\\[\\],:;<>&#038;@()a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]|(?:\\\\[\\\\ \"]))+\"))\\.)*(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+|(?:\"(?:[-\\[\\],:;<>&#038;@()a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]|(?:\\\\[\\\\ \"]))+\"))@(?:(?:\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(?:\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}))$</pre>
</td>
</tr>
<tr class="altrowb">
<td class="brgt bbot">JavaScript</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+|(?:\"(?:[-\\[\\],:;<>&#038;@()a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]|(?:\\\\[\\\\ \"]))+\"))\\.)*(?:[-a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]+|(?:\"(?:[-\\[\\],:;<>&#038;@()a-zA-Z0-9!#$%&#038;'*+/=?^_`{|}~]|(?:\\\\[\\\\ \"]))+\"))@(?:(?:\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(?:\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}))$</pre>
</td>
</tr>
<tr>
<td class="brgt bbot">Bash</td>
<td class="bbot">
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">^(([-a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~]+|(\"([][,:;<>\&#038;@a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~-]|(\\\\[\\ \"]))+\"))\.)*([-a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~]+|(\"([][,:;<>\&#038;@a-zA-Z0-9\!#\$%\&#038;\'*+/=?^_\`{\|}~-]|(\\\\[\\ \"]))+\"))@\w((-|\w)*\w)*\.(\w((-|\w)*\w)*\.)*\w{2,4}$</pre>
</td>
</tr>
<tr class="altrowb">
<td class="brgt">PHP</td>
<td>
<pre style="white-space: pre-wrap;word-wrap: break-word;width:628px;overflow:hidden">/^(?:(?:[-a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~]+|(?:\"(?:[-\\[\\],:;<>&#038;@()a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~]|(?:\\\\[\\\\ \"]))+\"))\\.)*(?:[-a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~]+|(?:\"(?:[-\\[\\],:;<>&#038;@()a-zA-Z0-9!#$%&#038;'*+\/=?^_`{|}~]|(?:\\\\[\\\\ \"]))+\"))@(?:(?:\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(?:\\w(?:(?:-|\\w)*\\w)*\\.(?:\\w(?:(?:-|\\w)*\\w)*\\.)*\\w{2,4}))$/</pre>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<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>
<h4>Download Sample Scripts</h4>
<p>I have packaged up the examples in PHP, Java, JavaScript, and Bash below.</p>
<p>These will help you put the expressions into your script.<br />
<a href="http://solidlystated.com/content/2012/01/EmailRegex.zip" target="_blank">Download </a> &#8211; Java class, JavaScript HTML page, Bash shell script, and PHP script (zipped)</p>
<p><a href="http://solidlystated.com/content/2012/01/emailRegex.html" target="_blank">Try it out!</a> &#8211; The live, working JavaScript test page.<br />
<a href="http://solidlystated.com/content/2012/01/emailRegex.php" target="_blank">Try it out!</a> &#8211; The live, working PHP test page.</p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/scripting/proper-email-address-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Web Server Logs</title>
		<link>http://solidlystated.com/scripting/working-with-web-server-logs/</link>
		<comments>http://solidlystated.com/scripting/working-with-web-server-logs/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 04:29:28 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[BASH]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3412</guid>
		<description><![CDATA[Many younger developers don&#8217;t have an opportunity to use log files, especially in situations where they have installed their web server on their local computer and don&#8217;t need to worry about debugging their site on the fly. Once a developer steps up to more critical projects, like those in an Enterprise environment, debugging production issues [...]]]></description>
			<content:encoded><![CDATA[<p>Many younger developers don&#8217;t have an opportunity to use log files, especially in situations where they have installed their web server on their local computer and don&#8217;t need to worry about debugging their site on the fly. <span id="more-3412"></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>Once a developer steps up to more critical projects, like those in an Enterprise environment, debugging production issues means <strong>dealing with log files</strong>.</p>
<p>In this article, I will give some Solid tips for working with web server logs in a Bash (Unix) shell command line, covering the basics to make your development and debugging easier.</p>
<h4>Where are the log files?</h4>
<p>The majority of people who will benefit from this article will find themselves using Apache server on Linux. It&#8217;s used everywhere in the business world and even with dirt-cheap hosting from GoDaddy.</p>
<p>For Apache/Linux, you will almost certainly <strong>find your logs under <code>/var/log</code></strong>. If you happen to be running Tomcat server, you will find your logs under <code>/usr/share/tomcat/logs</code>, <code>usr/share/logs</code>, or <code>opt/tomcat/logs</code>. For Windows IIS server, you can find logs under <code>c:\winnt\system32\LogFiles</code>, but then again this article won&#8217;t be of any use to you.</p>
<p>You can go directly to your logs in a shell by using the change directory command:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">BASH<a href="javascript:;" onclick="javascript:showCodeTxt('p3412code7'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34127"><td class="code" id="p3412code7"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>logs</pre></td></tr></table></div>

<p><span class="solid">Solid Tip:</span> These are the default log locations. The locations or file names might be changed, so watch out. Additionally, custom logs might be created and intercept the data you expect to be elsewhere. If your server is part of shared hosting, your logs will likely be directed into some sort of home folder.</p>
<h4>How can I view log files?</h4>
<p>Thankfully, you have plenty of options for viewing logs. Sometimes log files can get very large, making simply downloading/opening them futile. You can use the <code>head</code> or <code>tail</code> commands to view the beginning or tail end of the file respectively. You can watch the log entries on-the-fly as they come in by using the tail command with a follow flag as shown below:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">BASH<a href="javascript:;" onclick="javascript:showCodeTxt('p3412code8'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34128"><td class="code" id="p3412code8"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tail</span> <span style="color: #660033;">-f</span> your_log_file.log</pre></td></tr></table></div>

<p>The previous command will show a rolling tail-end of the log file. It shows 10 lines by default, but you can also specify the number of lines, like <code>tail -f -25 php_error_log</code>.</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>My logs are huge! How do I truncate a log?</h4>
<p>As said above, logs can become very large, becoming Gigabytes if not pruned. Additionally, you might encounter issues trying to clear the file out because it is in use by the server. You can easily truncate giant log files with a greater-than arrow:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">BASH<a href="javascript:;" onclick="javascript:showCodeTxt('p3412code9'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34129"><td class="code" id="p3412code9"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;</span> your_log_file.log</pre></td></tr></table></div>

<p>This command also works while the log is running. The arrow is a &#8220;redirect&#8221; command that puts the stuff output on its left into the file on its right. </p>
<p><span class="solid">Solid Tip:</span> Other methods include a <code>truncate </code> command or <code>cat /dev/null > your_log_file.log</code>. The arrow syntax is simply the shortest way of handling it (plus the <code>cat </code>command with one file is frowned upon as &#8220;cat abuse&#8221;).</p>
<h4>How do I search a log for text?</h4>
<p>You can search an entire log file for a string of text, but it could take a long time. You can combine a search in a <code>tail </code>(described up above) and pluck a desired entry out right as it enters the log:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">BASH<a href="javascript:;" onclick="javascript:showCodeTxt('p3412code10'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p341210"><td class="code" id="p3412code10"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tail</span> <span style="color: #660033;">-f</span> your_log_file.log <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;search string&quot;</span></pre></td></tr></table></div>

<p>If you want to <strong>search the entire log</strong>, simply use the <code>find </code>command:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">BASH<a href="javascript:;" onclick="javascript:showCodeTxt('p3412code11'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p341211"><td class="code" id="p3412code11"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #ff0000;">&quot;search string&quot;</span> your_log_file.log</pre></td></tr></table></div>

<h4>Count how often something appears in a log</h4>
<p>If you need to know how often an error or other log entry is occuring, the following will return the number of lines that a string appears:</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">BASH<a href="javascript:;" onclick="javascript:showCodeTxt('p3412code12'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p341212"><td class="code" id="p3412code12"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;search string&quot;</span> your_log_file.log</pre></td></tr></table></div>

<p>Hopefully these simple tips will aid you in debugging and understanding your web applications. Of course, if you want to know how to do something else or have a better way of doing something, let me know!</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>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/scripting/working-with-web-server-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logitech G27 and Dirt 3</title>
		<link>http://solidlystated.com/software/logitech-g27-and-dirt-3/</link>
		<comments>http://solidlystated.com/software/logitech-g27-and-dirt-3/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 01:50:02 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Colin McRae]]></category>
		<category><![CDATA[Dirt 2]]></category>
		<category><![CDATA[Dirt 3]]></category>
		<category><![CDATA[G27]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[Peripherals]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3367</guid>
		<description><![CDATA[Dirt 3 Force Feedback: Full Pedals: Separate Shift Lights: No Released: May 24, 2011 Buy Now at Amazon Welcome to yet another game test in our long-running series: The Logitech G27 Racing Wheel for Casual Racing Gamers. Here, I will show you how to set up your G27 racing wheel to play DiRT 3. DiRT [...]]]></description>
			<content:encoded><![CDATA[<div class="g27-info">
<a href="http://www.amazon.com/gp/product/0700099867/ref=as_li_ss_tl?ie=UTF8&#038;tag=solistat-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0700099867" rel="nofollow"><img src="http://solidlystated.com/content/2011/12/dirt3-box.gif" alt="Dirt 3" /></a></p>
<div class="g27-info1">Dirt 3</div>
<div class="g27-info2">Force Feedback: <span style="color:white">Full</span></div>
<div class="g27-info3">Pedals: <span style="color:white">Separate</span></div>
<div class="g27-info4">Shift Lights: <span style="color:darkred">No</span></div>
<div class="g27-info5">Released: May 24, 2011</div>
<div class="g27-info6"><a href="http://www.amazon.com/gp/product/0700099867/ref=as_li_ss_tl?ie=UTF8&#038;tag=solistat-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0700099867" rel="nofollow">Buy Now at Amazon</a></div>
<div class="g27-info7"></div>
<div class="g27-info8"></div>
</div>
<div class="clear"></div>
<p>Welcome to yet another game test in our long-running series: <strong>The Logitech G27 Racing Wheel for Casual Racing Gamers</strong>. Here, I will show you how to set up your G27 racing wheel to play DiRT 3. </p>
<p>DiRT 3 was developed and published by Codemasters. While still a Colin McRae series game, the name was dropped from the title for the North American audience. Racing is rally cross style and takes place on a track. <span id="more-3367"></span></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>
<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>
<h4>Dirt 3 Settings</h4>
<p>Like any respectable racing game, Dirt 3 has a preset that recognizes the G27. <strong>Be sure to follow the steps in the list below</strong> to quickly setup the game and get racing. Unlike the previous Dirt game, you don&#8217;t need to worry about having the game patched before using your wheel. It also has better support for the Logitech software.</p>
<p>Dirt 3 allows you to choose between Automatic, Paddle Shifters, H-Shifter no clutch, and H-Shifter with clutch. I actually found the clutch to be very unforgiving when I first loaded up the game, so beware.</p>
<p>There are a plethora of other options as well. Beneath the Transmission selection, there is an <strong>Advanced Wheel Settings</strong> page where <strong>you can tweak deadzone, saturation, and linearity</strong>. Since this article is for casual gamers, I will leave you to play with those settings. However, if you want to tweak how the on-screen wheel turns in relation to the actual wheel in your hands, you want to adjust the linearity slider.</p>
<p>Finally, there is a also a dedicated <strong>Vibration and Feedback section</strong> where you can tweak Force Feedback. This screen is a separate option besides Controls. These are similar to the Logitech Profiler, so you can either play with those settings here or under the Specific Game Settings in your Profiler.</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>
<h4>Step By Step</h4>
<ul type="1">
<li>Open the Logitech Profiler</li>
<li>Select New > Profile</li>
<li>Add <code>dirt3_game.exe</code> using the Browse button</li>
<li>Select Edit > Specific Game Settings</li>
<li>Set Degrees of Rotation preference here</li>
<li>Leave &#8216;Report Combined Pedals&#8217; Unchecked</li>
<li>Start DiRT 3 using the game&#8217;s launcher, not the profiler</li>
<li>Go to Options > Controls > Choose Preset > G27</li>
<li>Map any additional controls to your liking.</li>
</ul>
<p><br/></p>
<p>The preset below handles the critical stuff. The only important button you may want to change is the E-brake button. </p>
<p><img src="http://solidlystated.com/content/2011/12/dirt3controls1.jpg" alt="dirt3 controls" title="dirt3 controls" width="718" height="300" class="aligncenter size-full wp-image-3376" /></p>
<p>Below, mess with Linearity if you want to change your degrees of rotation and still have a 1:1 turning relationship with the on-screen steering wheel. </p>
<p><span class="solid">Solid Tip:</span> You can increase the degrees of rotation up to the full 900&deg;, but that makes this game very difficult. 200&deg; and the default settings is easy to control and matches the on-screen wheel&#8217;s turning action.</p>
<div id="attachment_3379" class="wp-caption aligncenter" style="width: 728px"><img src="http://solidlystated.com/content/2011/12/dirt3controls2.jpg" alt="dirt 3 sliders" title="dirt 3 sliders" width="718" height="250" class="size-full wp-image-3379" /><p class="wp-caption-text">Dedicated Wheel Options Screen</p></div>
<p>Dirt 3 Force Feedback is solid and varies based on the terrain. You feel both impacts and the surface you are driving on. Casual gamers won&#8217;t worry about this section.</p>
<div id="attachment_3380" class="wp-caption aligncenter" style="width: 728px"><img src="http://solidlystated.com/content/2011/12/dirt3controls3.jpg" alt="ffb settings" title="dirt 3 ffb" width="718" height="200" class="size-full wp-image-3380" /><p class="wp-caption-text">Dedicated Force Feedback Options</p></div>
<h4>Even More Settings</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>Thankfully, you can ignore pretty many of the control settings for Dirt 3. I say thankfully because there are still 2 more sets of options to show you! When you load up a race track you have a final screen before starting where you can choose <strong>Difficulty and Assists</strong> or <strong>Vehicle Setup</strong>.</p>
<p>Both of these options affect your experience as much, if not more, than the other control options. <strong>Vehicle setup is for tuning your car</strong>, so it is obviously for experienced drivers. It defaults to all options right in the middle.</p>
<p><strong>Difficulty and Assists</strong> is more critical, as it interferes with your own driving by default. Aside from a numbered difficulty 1-6, this section has assist presets (or you can change individual settings to your liking). </p>
<p>Assists default to the &#8220;Casual&#8221; level (how fitting for this article). The game will automatically slow you down going into corners which may make you mad. It will also try to steer for you? and enable ABS and Traction Control.</p>
<table>
<tr>
<td>
<div id="attachment_3385" class="wp-caption aligncenter" style="width: 360px"><img src="http://solidlystated.com/content/2011/12/dirt3vehiclesetup.jpg" alt="dirt3 vehicle setup" title="dirt3 vehicle setup" width="350" height="234" class="size-full wp-image-3385" /><p class="wp-caption-text">Pre-Race Tuning Your Car</p></div>
</td>
<td width="8"></td>
<td>
<div id="attachment_3386" class="wp-caption aligncenter" style="width: 360px"><img src="http://solidlystated.com/content/2011/12/dirt3assist.jpg" alt="dirt 3 assist" title="dirt 3 assist" width="350" height="234" class="size-full wp-image-3386" /><p class="wp-caption-text">Training Wheels - ON by default</p></div>
</td>
</tr>
</table>
<p>That&#8217;s what you need to know about setting up your Logitech G27 to play Dirt 3 on your PC. There are tons of options, but you don&#8217;t have to modify much to have fun. Check out one of the many other G27 articles to see if your other favorite racing games are supported.</p>
<div style="height:10px;line-height:10px;clear:both">&nbsp;</div>
<p><div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HD9G?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002I0HD9G">Test Drive Unlimited 2</a></div></td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B003R79HFW?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B003R79HFW">NFS: Hot Pursuit</a></div>
</td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001ELJE2E?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001ELJE2E">Race Driver: GRID</a></div>
</td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B002JTX6B0?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002JTX6B0">Dirt 2</a></div>
</td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001TOMR84?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001TOMR84">Need For Speed: Shift</a></div>
</td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HD9G?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002I0HD9G"><img title='TDU2' alt='Test Drive Unlimited 2' src='http://solidlystated.com/content/2010/11/tdu2box.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B003R79HFW?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B003R79HFW"><img title='NFS: Hot Pursuit' alt='NFS: Hot Pursuit' src='http://solidlystated.com/content/2010/11/hotpursuitbox.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001ELJE2E?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001ELJE2E"><img title='Race Driver: GRID' alt='Race Driver: GRID' src='http://i872.photobucket.com/albums/ab290/SolidlyStated/Logitech-G27/gridbox.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B002JTX6B0?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002JTX6B0"><img title='DIRT 2' alt='DIRT 2' src='http://i872.photobucket.com/albums/ab290/SolidlyStated/Logitech-G27/dirt2-box.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001TOMR84?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001TOMR84"><img title='NFS: Shift' alt='Need for Speed Shift' src='http://i872.photobucket.com/albums/ab290/SolidlyStated/Logitech-G27/shiftbox.jpg' /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
<table class="graytable" width="100%">
<thead>
<tr>
<th colspan="2">Logitech G27 Solid Series Articles</th>
</tr>
</thead>
<tbody>
<tr>
<td width="50%">1. <a href="http://solidlystated.com/hardware/logitech-g27-racing-wheel-for-casual-gamers/">Casual Gamer vs Simulation Gamer</a></td>
<td>10. <a href="http://solidlystated.com/software/logitech-g27-test-drive-unlimited/">Test Drive Unlimited</a></td>
</tr>
<tr>
<td>2. <a href="http://solidlystated.com/hardware/logitech-g27-best-settings/">Setting Up Your G27, Made Easy</a></td>
<td>11. <a href="http://solidlystated.com/software/logitech-g27-test-drive-unlimited-2/">Test Drive Unlimited 2</a></td>
</tr>
<tr>
<td>3. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-carbon/">Need For Speed: Carbon</a></td>
<td>12. <a href="http://solidlystated.com/software/logitech-g27-burnout-paradise/">Burnout Paradise</a></td>
</tr>
<tr>
<td>4. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-pro-street/">Need For Speed: Pro Street</a></td>
<td>13. <a href="http://solidlystated.com/software/logitech-g27-race-driver-grid/">Race Driver: GRID</a></td>
</tr>
<tr>
<td>5. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-undercover/">Need For Speed: Undercover</a></td>
<td>14. <a href="http://solidlystated.com/software/logitech-g27-split-second/">Split Second</a></td>
</tr>
<tr>
<td>6. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-shift/">Need For Speed: Shift</a></td>
<td>15. <a href="http://solidlystated.com/software/logitech-g27-gtr-evolution/">GTR Evolution</a></td>
</tr>
<tr>
<td>7. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-shift-2-unleashed/">Need For Speed: Shift 2</a></td>
<td>16. <a href="http://solidlystated.com/software/logitech-g27-dirt-2/">DiRT 2</a></td>
</tr>
<tr>
<td>8. <a href="http://solidlystated.com/software/logitech-g27-and-need-for-speed-hot-pursuit/">Need For Speed: Hot Pursuit</a></td>
<td class="current">17. DiRT 3</td>
</tr>
<tr>
<td>9. <a href="http://solidlystated.com/software/logitech-g27-and-need-for-speed-the-run/">Need For Speed: The Run</a></td>
<td>18. <a href="http://solidlystated.com/software/logitech-g27-and-blur/">Blur</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/logitech-g27-and-dirt-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Logitech G27 and Need For Speed: The Run</title>
		<link>http://solidlystated.com/software/logitech-g27-and-need-for-speed-the-run/</link>
		<comments>http://solidlystated.com/software/logitech-g27-and-need-for-speed-the-run/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 02:27:17 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[G27]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[Need For Speed]]></category>
		<category><![CDATA[Peripherals]]></category>
		<category><![CDATA[The Run]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3353</guid>
		<description><![CDATA[Need For Speed The Run Force Feedback: Full Pedals: Separate Shift Lights: Yes Released: Nov 15, 2011 Buy Now at Amazon This article is part of our long-running series: The Logitech G27 Racing Wheel for Casual Racing Gamers. Here, I will cover setting up your G27 racing wheel to play NFS: The Run. The 18th [...]]]></description>
			<content:encoded><![CDATA[<div class="g27-info">
<a href="http://www.amazon.com/gp/product/B002I0HFNU/ref=as_li_ss_tl?ie=UTF8&#038;tag=solistat-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B002I0HFNU" rel="nofollow"><img src="http://solidlystated.com/content/2011/11/therunbox.jpg" /></a></p>
<div class="g27-info1">Need For Speed The Run</div>
<div class="g27-info2">Force Feedback: Full</div>
<div class="g27-info3">Pedals:  Separate</div>
<div class="g27-info4">Shift Lights: Yes</div>
<div class="g27-info5">Released: Nov 15, 2011</div>
<div class="g27-info6"><a href="http://www.amazon.com/gp/product/B002I0HFNU/ref=as_li_ss_tl?ie=UTF8&#038;tag=solistat-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=B002I0HFNU" rel="nofollow">Buy Now at Amazon</a></div>
<div class="g27-info7"></div>
<div class="g27-info8"></div>
</div>
<div class="clear"></div>
<p>This article is part of our long-running series: <strong>The Logitech G27 Racing Wheel for Casual Racing Gamers</strong>. Here, I will cover setting up your G27 racing wheel to play NFS: The Run. The 18th game in the series, The Run was developed by EA Black Box and published by Electronic Arts. The Run features arcade style action reminiscent of NFS: Undercover or NFS: Most Wanted.<span id="more-3353"></span></p>
<p>It appears that EA likes to alternate between releasing simulation-type game (Pro Street, Shift) and these action-oriented games where you smash into police cars at 200 mph. The Run has you racing across the streets of America trying to outrun the law, the mob, and other racers to magically solve your life&#8217;s problems.</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>
<table class="graytable" width="100%">
<thead>
<tr>
<th colspan="2">Logitech G27 Solid Series Articles</th>
</tr>
</thead>
<tbody>
<tr>
<td width="50%">1. <a href="http://solidlystated.com/hardware/logitech-g27-racing-wheel-for-casual-gamers/">Casual Gamer vs Simulation Gamer</a></td>
<td>10. <a href="http://solidlystated.com/software/logitech-g27-test-drive-unlimited/">Test Drive Unlimited</a></td>
</tr>
<tr>
<td>2. <a href="http://solidlystated.com/hardware/logitech-g27-best-settings/">Setting Up Your G27, Made Easy</a></td>
<td>11. <a href="http://solidlystated.com/software/logitech-g27-test-drive-unlimited-2/">Test Drive Unlimited 2</a></td>
</tr>
<tr>
<td>3. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-carbon/">Need For Speed: Carbon</a></td>
<td>12. <a href="http://solidlystated.com/software/logitech-g27-burnout-paradise/">Burnout Paradise</a></td>
</tr>
<tr>
<td>4. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-pro-street/">Need For Speed: Pro Street</a></td>
<td>13. <a href="http://solidlystated.com/software/logitech-g27-race-driver-grid/">Race Driver: GRID</a></td>
</tr>
<tr>
<td>5. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-undercover/">Need For Speed: Undercover</a></td>
<td>14. <a href="http://solidlystated.com/software/logitech-g27-split-second/">Split Second</a></td>
</tr>
<tr>
<td>6. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-shift/">Need For Speed: Shift</a></td>
<td>15. <a href="http://solidlystated.com/software/logitech-g27-gtr-evolution/">GTR Evolution</a></td>
</tr>
<tr>
<td>7. <a href="http://solidlystated.com/software/logitech-g27-need-for-speed-shift-2-unleashed/">Need For Speed: Shift 2</a></td>
<td>16. <a href="http://solidlystated.com/software/logitech-g27-dirt-2/">DiRT 2</a></td>
</tr>
<tr>
<td>8. <a href="http://solidlystated.com/software/logitech-g27-and-need-for-speed-hot-pursuit/">Need For Speed: Hot Pursuit</a></td>
<td>17. <a href="http://solidlystated.com/software/logitech-g27-and-dirt-3/">DiRT 3</a></td>
</tr>
<tr>
<td class="current">9. Need For Speed: The Run</td>
<td>18. <a href="http://solidlystated.com/software/logitech-g27-and-blur/">Blur</a></td>
</tr>
</tbody>
</table>
<h4>G27 Wheel Issues</h4>
<p><strong>Need for Speed: The Run drives well with the G27</strong>. Force feedback responds well and the developers finally uses built-in shift LED support. Take note that this is the first NFS game since Undercover to include the shift light feature for this wheel (that was 3 years ago!).</p>
<p>On the other hand. Setting up the wheel makes it painfully obvious that this game was (once again) developed with consoles and controllers in mind. Thanks yet again, EA!</p>
<p>While we really care about driving, it would be nice if the control options actually made sense and the in-game events told you the proper button you have to press since you only have a split second to do it. However, even at the very start of the game, you are presented with a screen that tells you to mash the &#8220;Blue X&#8221; button or the &#8220;Red B&#8221; button, followed by Right Trigger+Left Trigger.</p>
<p>Those of us who setup our wheel ahead of time are staring at the screen saying &#8220;WTF!&#8221; as our character is killed before the game even starts! If you can get over this, then you can actually enjoy your driving experience. Be warned, though, as there are more of these frustrating events later in the game.</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>
<h4>Need for Speed: The Run G27 Settings</h4>
<ul>
<li>Plug in the wheel, of course</li>
<li>Open the <strong>Logitech Profiler</strong></li>
<li>Select New > Profile</li>
<li>Add <strong>Need For Speed The Run.exe</strong> as a new game</li>
<li>Launch Game from Profiler</li>
<li>In game, go to Settings > Gameplay > Controls</li>
<li>switch &#8216;Keyboard&#8217; to &#8216;Wheel Controller&#8217;</li>
<li>Map wheel buttons to your preferences</li>
</ul>
<div style="height:10px;line-height:10px;clear:both">&nbsp;</div>
<div id="attachment_3355" class="wp-caption aligncenter" style="width: 728px"><a href="http://solidlystated.com/content/2011/11/therun-controls.jpg"><img src="http://solidlystated.com/content/2011/11/therun-controls.jpg" alt="Control Screen for The Run" title="therun-controls" width="718" height="472" class="size-full wp-image-3355" /></a><p class="wp-caption-text">The Run Controls</p></div>
<h4>Simplified Controls</h4>
<p>You will notice the screen shot above is somewhat sparse. The game uses very little in the way of controls. In fact, this game <strong>doesn&#8217;t use the clutch</strong> and <strong>doesn&#8217;t use the H-shifter</strong> while driving. You can only shift using the sequential paddles. </p>
<p><span class="solid">Solid Tip: </span>Don&#8217;t put aside your H-shifter just yet. The geniuses who put this together <em>force </em>you to use the black round buttons on the H-shifter box during quick-time events. dumb.</p>
<p>Also, you will notice a lack of any further control settings. There are <strong>no force feedback options</strong> to play around with. Since you created a profile using the Logitech software, you are able to adjust settings on your own (including degrees of rotation) using the &#8216;Specific Games Settings&#8217; under the &#8216;Edit&#8217; menu of the Profiler software. I found that I enjoyed the FFB settings out of the box.</p>
<p>Remember to leave the Combined Pedals unchecked or your car will not drive anywhere.</p>
<h4>Overcoming the Quick-Time Events</h4>
<p>You cannot remap the buttons for the in-game sequences that require you to press buttons that are shown as Xbox 360 Controller icons. But here&#8217;s a quick reference that will save your life!</p>
<p>For example, the next time the game shows you a blinking icon that says LT+RT, you will know to quickly press the two top buttons near your thumbs on the wheel itself.</p>
<div id="attachment_3356" class="wp-caption aligncenter" style="width: 728px"><a href="http://solidlystated.com/content/2011/11/therun-controls2.jpg"><img src="http://solidlystated.com/content/2011/11/therun-controls2.jpg" alt="NFS: The Run QTEs" title="The Run xbox controls" width="718" height="370" class="size-full wp-image-3356" /></a><p class="wp-caption-text">Remember these 6 buttons</p></div>
<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 style="height:10px;line-height:10px;clear:both">&nbsp;</div>
<p><div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HD9G?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002I0HD9G">Test Drive Unlimited 2</a></div></td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B003R79HFW?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B003R79HFW">NFS: Hot Pursuit</a></div>
</td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001ELJE2E?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001ELJE2E">Race Driver: GRID</a></div>
</td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B002JTX6B0?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002JTX6B0">Dirt 2</a></div>
</td></tr>
<tr><td><div>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001TOMR84?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001TOMR84">Need For Speed: Shift</a></div>
</td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HD9G?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002I0HD9G"><img title='TDU2' alt='Test Drive Unlimited 2' src='http://solidlystated.com/content/2010/11/tdu2box.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B003R79HFW?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B003R79HFW"><img title='NFS: Hot Pursuit' alt='NFS: Hot Pursuit' src='http://solidlystated.com/content/2010/11/hotpursuitbox.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001ELJE2E?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001ELJE2E"><img title='Race Driver: GRID' alt='Race Driver: GRID' src='http://i872.photobucket.com/albums/ab290/SolidlyStated/Logitech-G27/gridbox.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B002JTX6B0?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002JTX6B0"><img title='DIRT 2' alt='DIRT 2' src='http://i872.photobucket.com/albums/ab290/SolidlyStated/Logitech-G27/dirt2-box.jpg' /></a>
</td><td>
<a rel='nofollow' href="http://www.amazon.com/gp/product/B001TOMR84?ie=UTF8&tag=solistat-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B001TOMR84"><img title='NFS: Shift' alt='Need for Speed Shift' src='http://i872.photobucket.com/albums/ab290/SolidlyStated/Logitech-G27/shiftbox.jpg' /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/logitech-g27-and-need-for-speed-the-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elder Scrolls: Skyrim PC Menu Navigation</title>
		<link>http://solidlystated.com/software/the-elder-scrolls-skyrim-pc-menu-navigation/</link>
		<comments>http://solidlystated.com/software/the-elder-scrolls-skyrim-pc-menu-navigation/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 03:36:14 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[Skyrim]]></category>
		<category><![CDATA[The Elder Scrolls]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3335</guid>
		<description><![CDATA[Shortly after firing up Skyrim on my PC, I nearly &#8216;rage quit&#8217; over the menu system and user interface. Granted, not everyone will get stuck in a menu after opening a book in their inventory&#8230; damn TAB key! In this article, I will explain how to use the interface for Skyrim on the PC and [...]]]></description>
			<content:encoded><![CDATA[<p>Shortly after firing up Skyrim on my PC, I nearly &#8216;rage quit&#8217; over the menu system and user interface. Granted, not everyone will get stuck in a menu after opening a book in their inventory&#8230; damn TAB key! </p>
<p>In this article, I will explain how to use the interface for Skyrim on the PC and explain how it can be better than simply clicking around the screen with the mouse. <span id="more-3335"></span></p>
<p><span class="solid">Update 11/29/2011: </span>A patch will be released tomorrow for PC that will supposedly improve the menu and controls in general. It should also address the crash on startup issue I discuss in my other Skyrim article.</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>Interface Breaks at Character Creation</h4>
<p>I had a hell of a time setting up my character. If you didn&#8217;t know, you can use the mouse to move your characters face around the screen. It seems, though, that every time I shifted my player&#8217;s face to a different angle, there was a 50% chance that the <strong>menu would quit responding</strong> to the keyboard.</p>
<p>I was unable to make this stop happening, but it was easy enough to get working again. Simply click on a body part at the top of the screen and the keyboard will work again.</p>
<h4>I Opened A Book and I&#8217;m Trapped</h4>
<p>At the beginning of the game, I picked up the first book I saw in the keep. After reading through it, I noticed that it only said &#8220;[A][D] Turn Pages&#8221; and <strong>did not explain how to exit</strong> from the reading view.</p>
<p>After being very frustrated for a few minutes, I found that you can exit the menu at any time <strong>by pressing TAB</strong>. What was really annoying is that pressing ESC seemed to be the logical thing to do, but that only brought up the pause menu on top of the menu that was already open.</p>
<h4>Cant Use the Mouse to Click Menu Items</h4>
<p>Blasphemy! It is true, you cannot use the mouse on a lot of interface items, but the key is that the entire <strong>menu is controlled by your keyboard hand</strong>. At first I thought I was forced to use the arrow keys, but it&#8217;s actually your movement keys.</p>
<p><a href="http://solidlystated.com/content/2011/11/skyrim-menu.jpg"><img src="http://solidlystated.com/content/2011/11/skyrim-menu.jpg" alt="skyrim menu" title="skyrim-menu" width="718" height="217" class="aligncenter size-full wp-image-3343" /></a></p>
<p>After you know how to use it, the menu becomes intuitive and satisfying. <strong>Here is the summary:</strong><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>
<ul>
<li>You navigate up, down, left, and right using keys W,A,S,D</li>
<li>Use the E key to confirm choices</li>
<li>Use the E key also to equip/unequip/use items</li>
<li>Use the TAB key to cancel/back out of choices</li>
<li>Use the TAB key also to open and close the menu</li>
<li>Press J for your Journal</li>
<li>Press I for your inventory</li>
<li>Press Q for your Favorites menu</li>
<li>Press F on an item to mark it as a Favorite</li>
<li>Press R on an item to drop it</li>
</ul>
<p><br/></p>
<p>After collecting your basic armor and weapon at the beginning of the game, you can quickly and fluidly enter the inventory menu, equip all the items, and exit the menu. The same can be said for looting, which utilizes the E key and TAB key. It makes grabbing tens of thousands of items effortless and fast.</p>
<h4>Assign Weapons and Items to Number Keys</h4>
<p>This is a great tip- now you can assign your favorite sword or spell to a number key and not worry about any menus at all.</p>
<ul>
<li>Assign item to favorites with F key</li>
<li>Open favorites with Q key</li>
<li>Scroll to the item you want</li>
<li>Press the number you want to assign it to</li>
</ul>
<p><strong>Enjoy the game!</strong></p>
<p>

<div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399381&creativeASIN=B004FYKWZU">Mass Effect 3</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B004FYKWZU&camp=217145&creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO">Elder Scrolls V: Skyrim</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ7LO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836">Borderlands 2</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ836&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM">Assassin's Creed 4</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0IHIM&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO">Battlefield 3 LE</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0HJZO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div></td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_il?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399377&creativeASIN=B004FYKWZU"><img title='Mass Effect 3' alt='Mass Effect 3' src="http://solidlystated.com/content/2011/10/masseffect3box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO"><img title='Elder Scrolls V: Skyrim' alt='Elder Scrolls V: Skyrim' src="http://solidlystated.com/content/2011/10/skyrimbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836"><img title='Borderlands 2' alt='Borderlands 2' src="http://solidlystated.com/content/2011/10/borderlands2box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM"><img title='Assassins Creed Revelations' alt='Assassins Creed Revelations' src="http://solidlystated.com/content/2011/10/assassinscreedbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO"><img title='Battlefield 3' alt='Battlefield 3' src="http://solidlystated.com/content/2011/10/bf3box.gif" /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/the-elder-scrolls-skyrim-pc-menu-navigation/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Skyrim PC Crash to Desktop</title>
		<link>http://solidlystated.com/software/skyrim-pc-crash-to-desktop-at-startup/</link>
		<comments>http://solidlystated.com/software/skyrim-pc-crash-to-desktop-at-startup/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 02:40:52 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[Skyrim]]></category>
		<category><![CDATA[Soundblaster]]></category>
		<category><![CDATA[The Elder Scrolls]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3323</guid>
		<description><![CDATA[While Skyrim&#8217;s launch has faired much, much better than other recent high-profile games (Dead Island or RAGE anyone?), some users have reported that their game is crashing to desktop. Fortunately, this crash has the same solution as Dead Rising 2 for PC, which I wrote about a couple of weeks ago. Solid Tip: This isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>While Skyrim&#8217;s launch has faired much, much better than other recent high-profile games (Dead Island or RAGE anyone?), some users have reported that their game is crashing to desktop.<span id="more-3323"></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>Fortunately, this crash has the same solution as Dead Rising 2 for PC, which I wrote about a couple of weeks ago. </p>
<p><span class="solid">Solid Tip: </span>This isn&#8217;t the end-all be-all of fixes, just a specific one that haunts users of aftermarket sound cards. Your game might be crashing for another reason.</p>
<p>If it doesn&#8217;t work, be sure to get the latest video card drivers, DirectX version, and verify the Steam cache if you have a Steam copy.</p>
<p><br/></p>
<h4>Sound Card Crash</h4>
<p>The game should immediately start once you change your sound card quality settings. You can reach the settings for your sound card through the Control Panel in Windows. For this example, I will show you a SoundBlaster X-Fi, which I configure by going to Sound > Playback > Speakers > Advanced. Here, I had my original quality set to 24 bit, 96000 Hz. To get the game to launch, though, I must <strong>set the quality to 24 bit, 44100 Hz</strong>.</p>
<p><img src="http://solidlystated.com/content/2011/10/sound-card-dead-rising-2.jpg" alt="SoundBlaster XFi settings" title="sound-card-dead-rising-2" width="404" height="385" class="aligncenter size-full wp-image-3246" /></p>
<p>This photo was from my Dead Rising 2 sound car fix. It was actually debated what Hz level your card should be at, so some people might get Skyrim working at 48000 Hz, assuming the sampling rate is the cause of the crash.</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>My Game Still Crashes!</h4>
<p>While I experienced the sound card crash with Dead Rising 2, I was able to startup and run Skyrim at 96000 Hz sampling rate without crashing. </p>
<p>Another problem that I constantly come across when putting new games through their paces is a crash that is caused by having dual monitors (or triple if you are that cool). I always test games with <strong>dual monitors</strong> running first and see if that causes any crashing. If the game doesn&#8217;t start up, I disable the 2nd monitor and try again.</p>
<p>Additionally, you will want to make sure you have the <strong>latest video card drivers</strong> and <strong>DirectX</strong> version, as I mention up above.</p>
<p>There are additional resources available to you with a list of <em>very specific</em> crash fixes over at <a href="http://crashfixes.com/fixing-skyrim-crashes-freezes-errors-steam-crash-no-sound-lags-choppy-framerates/">crashfixes.com</a>. I wont go through all of those, so check that out if you still have issues launching the game.<br />


<div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399381&creativeASIN=B004FYKWZU">Mass Effect 3</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B004FYKWZU&camp=217145&creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO">Elder Scrolls V: Skyrim</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ7LO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836">Borderlands 2</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ836&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM">Assassin's Creed 4</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0IHIM&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO">Battlefield 3 LE</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0HJZO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div></td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_il?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399377&creativeASIN=B004FYKWZU"><img title='Mass Effect 3' alt='Mass Effect 3' src="http://solidlystated.com/content/2011/10/masseffect3box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO"><img title='Elder Scrolls V: Skyrim' alt='Elder Scrolls V: Skyrim' src="http://solidlystated.com/content/2011/10/skyrimbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836"><img title='Borderlands 2' alt='Borderlands 2' src="http://solidlystated.com/content/2011/10/borderlands2box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM"><img title='Assassins Creed Revelations' alt='Assassins Creed Revelations' src="http://solidlystated.com/content/2011/10/assassinscreedbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO"><img title='Battlefield 3' alt='Battlefield 3' src="http://solidlystated.com/content/2011/10/bf3box.gif" /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/skyrim-pc-crash-to-desktop-at-startup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Elder Scroll: Skyrim- More Graphics Options</title>
		<link>http://solidlystated.com/software/elder-scroll-skyrim-graphics-options/</link>
		<comments>http://solidlystated.com/software/elder-scroll-skyrim-graphics-options/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 02:14:58 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[Skyrim]]></category>
		<category><![CDATA[The Elder Scrolls]]></category>
		<category><![CDATA[vsync]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3299</guid>
		<description><![CDATA[Unlike a lot of recent game releases, The Elder Scrolls: Skyrim for the PC has performed very well in the graphics department. While users have reported a crash to desktop that will be familiar to anyone who has been playing Dead Rising 2: Off the Record, there hasn&#8217;t been much that needs tweaking. Skyrim runs [...]]]></description>
			<content:encoded><![CDATA[<p>Unlike a lot of recent game releases, The Elder Scrolls: Skyrim for the PC has performed very well in the graphics department.<span id="more-3299"></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> While users <em>have</em> reported a crash to desktop that <a href="http://solidlystated.com/software/dead-rising-2-otr-pc-crash-on-startup/">will be familiar</a> to anyone who has been playing Dead Rising 2: Off the Record, there hasn&#8217;t been much that needs  tweaking. </p>
<p>Skyrim runs very well on today&#8217;s hardware and seems fairly optimized. The shadows can be low quality and chunky, but overall frame rate is good. If you want to fine tune some additional options, though, you can <strong>browse through the .ini files</strong> in the following location in Windows:<br />
<code>My Documents > My Games > Skyrim</code>.</p>
<p><span class="solid">Solid Tip: </span>Before you go &#8216;tweaking&#8217; these .ini files, you should copy and paste them into the folder so you have a backup version.</p>
<div id="attachment_3305" class="wp-caption alignnone" style="width: 728px"><a href="http://solidlystated.com/content/2011/11/skyrim-dragon.jpg"><img src="http://solidlystated.com/content/2011/11/skyrim-dragon.jpg" alt="explosive start" title="skyrim-dragon" width="718" height="300" class="size-full wp-image-3305" /></a><p class="wp-caption-text">Skyrim&#039;s explosive start</p></div>
<h4>Improve Shadows</h4>
<p>These are off by default, but try them out to see if your PC can handle it. It looks great.</p>
<table class="graytable">
<thead>
<tr>
<th>Location</th>
<th>Default (OFF)</th>
<th>Improved (ON)</th>
</tr>
</thead>
<tbody>
<tr>
<td>SkyrimPrefs.ini</td>
<td>bTreesReceiveShadows=0</td>
<td>bTreesReceiveShadows=1</td>
</tr>
</tbody>
<tbody>
<tr>
<td>SkyrimPrefs.ini</td>
<td>bDrawLandShadows=0</td>
<td>bDrawLandShadows=1</td>
</tr>
</tbody>
</table>
<h4>Ambient Occlusion for Nvidia Cards</h4>
<p>If you have a GeForce, you can use Nvidia Inspector to turn on an Ambient Occlusion flag for Skyrim. Need help with the Inspector? Check out instructions in this older <a href="http://solidlystated.com/software/divinity-2-anti-aliasing/">Divinity 2 example</a>.</p>
<table class="graytable">
<thead>
<tr>
<th>Location</th>
<th>Compatibility Flag</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nvidia Inspector</td>
<td>0×00000003</td>
</tr>
</tbody>
</table>
<h4>Disabling Vertical Sync (Vsync)</h4>
<p>Vsync is a good thing! Only turn it off if your computer is struggling to keep the frame rate high.</p>
<table class="graytable">
<thead>
<tr>
<th>Location</th>
<th>Vsync ON</th>
<th>Vsync OFF</th>
</tr>
</thead>
<tbody>
<tr>
<td>SkyrimPrefs.ini</td>
<td>iPresentInterval=1</td>
<td>iPresentInterval=0</td>
</tr>
</tbody>
</table>
<h4>Disabling Mouse Acceleration</h4>
<p>Personal preference for people. Note that Skyrim has Mouse Sensitivity set very low at the start of the game, so check that first.</p>
<table class="graytable">
<thead>
<tr>
<th>Location</th>
<th>Default (ON)</th>
<th>Disabled (OFF)</th>
</tr>
</thead>
<tbody>
<tr>
<td>SkyrimPrefs.ini</td>
<td>bMouseAcceleration=1</td>
<td>bMouseAcceleration=0</td>
</tr>
</tbody>
</table>
<h4>Field of View (FOV )</h4>
<p>Some people prefer to view the world in a wider angle, some think it looks fish-eyed. The default FOV is not listed, but is probably 70. You can edit FOV by adding a new line as shown below. Set the number to whatever you want. Add the code to the bottom of the file.</p>
<table class="graytable">
<thead>
<tr>
<th>Location</th>
<th>Add This</th>
</tr>
</thead>
<tbody>
<tr>
<td>Skyrim.ini</td>
<td>fdefaultfov=70</td>
</tr>
</tbody>
</table>
<p><br/></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>Additional Helpful Stuff</h4>
<p>Experiencing a crash to desktop with Skyrim PC? I did an article on the same type of crash a couple weeks ago for Dead Rising 2 OTR. Skyrim uses the same fix and involves changing your sound card settings. Check out the <a href="http://solidlystated.com/software/skyrim-pc-crash-to-desktop-at-startup/">crash to desktop fix</a>.</p>
<p>Having trouble with navigating the menus with the mouse? Check out the <a href="http://solidlystated.com/software/the-elder-scrolls-skyrim-pc-menu-navigation/">menu navigation article</a> for some tips on becoming a pro with Skyrim&#8217;s user interface.</p>
<p>

<div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399381&creativeASIN=B004FYKWZU">Mass Effect 3</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B004FYKWZU&camp=217145&creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO">Elder Scrolls V: Skyrim</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ7LO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836">Borderlands 2</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ836&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM">Assassin's Creed 4</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0IHIM&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO">Battlefield 3 LE</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0HJZO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div></td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_il?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399377&creativeASIN=B004FYKWZU"><img title='Mass Effect 3' alt='Mass Effect 3' src="http://solidlystated.com/content/2011/10/masseffect3box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO"><img title='Elder Scrolls V: Skyrim' alt='Elder Scrolls V: Skyrim' src="http://solidlystated.com/content/2011/10/skyrimbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836"><img title='Borderlands 2' alt='Borderlands 2' src="http://solidlystated.com/content/2011/10/borderlands2box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM"><img title='Assassins Creed Revelations' alt='Assassins Creed Revelations' src="http://solidlystated.com/content/2011/10/assassinscreedbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO"><img title='Battlefield 3' alt='Battlefield 3' src="http://solidlystated.com/content/2011/10/bf3box.gif" /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/elder-scroll-skyrim-graphics-options/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PAYDAY: The Heist Extra Graphics Options</title>
		<link>http://solidlystated.com/software/payday-the-heist-extra-graphics-options/</link>
		<comments>http://solidlystated.com/software/payday-the-heist-extra-graphics-options/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 04:51:03 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[anti-aliasing]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[Payday]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[vsync]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3280</guid>
		<description><![CDATA[Being yet another port from a console (what isn&#8217;t these days?), PAYDAY The Heist is sorely lacking in graphics options on PC. Here are a few tips that might help you get some more enjoyment out of it. Renderer Settings I was excited to find a file called renderer_settings.xml after I installed the game. I [...]]]></description>
			<content:encoded><![CDATA[<p>Being yet another port from a console (what isn&#8217;t these days?), PAYDAY The Heist is sorely lacking in graphics options on PC. Here are a few tips that might help you get some more enjoyment out of it. <span id="more-3280"></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>Renderer Settings</h4>
<p>I was excited to find a file called <code>renderer_settings.xml</code> after I installed the game. I was disappointed, however, when I opened it only to find the basic options the game gives you along with an <strong>aspect ratio</strong> option and a <strong>refresh rate</strong> option.</p>
<p>You can reach this folder by typing <code>%userprofile%/AppData/Local</code> in any Windows address bar if you actually want to change either of those.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">XML<a href="javascript:;" onclick="javascript:showCodeTxt('p3280code14'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p328014"><td class="code" id="p3280code14"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;renderer_config<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;d3d_device</span></span>
<span style="color: #009900;">		adapter = <span style="color: #ff0000;">&quot;NVIDIA GeForce GTX 470&quot;</span></span>
<span style="color: #009900;">		adapter_index = <span style="color: #ff0000;">&quot;0&quot;</span></span>
<span style="color: #009900;">		resolution = <span style="color: #ff0000;">&quot;1920 1080&quot;</span></span>
<span style="color: #009900;">		windowed = <span style="color: #ff0000;">&quot;false&quot;</span></span>
<span style="color: #009900;">		refresh_rate = <span style="color: #ff0000;">&quot;60&quot;</span></span>
<span style="color: #009900;">		aspect_ratio = <span style="color: #ff0000;">&quot;1.77778&quot;</span></span>
<span style="color: #009900;">	<span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/renderer_config<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p><br/></p>
<h4>Vertical Sync</h4>
<p>This was an easy fix. By default, PAYDAY has no Vsync, which results in a lot of screen tearing. You can simply go to the Vsync option in your graphics card control panel and set it to &#8216;Force On&#8217; for Nvidia cards or &#8216;Always On&#8217; for ATI cards.</p>
<p>If you have never done this before, you open the Nvidia Control Panel/Catalyst Control Center, go to the 3D Settings section, and add the game as a new profile (browse to and select the games .exe file). Then you can force vertical sync under that profile. Simply apply your changes and next time you start the game, you will have vertical sync.<br />
<br/></p>
<h4>Anti Aliasing &#8211; Nvidia Only</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>Unfortunately, attempting to override the AA settings in the Nvidia Control Panel didn&#8217;t work. Luckily, PAYDAY is based on a graphics engine that gamers are already familiar with.</p>
<p>You can enjoy some good anti-aliasing in PAYDAY on your PC by simply using what is known as &#8216;Antialiasing compatibility&#8217; flags. This is simply some numbers and letters that you enter into Nvidia Inspector- a companion program for the Nvidia Control Panel. In this case, the flag you will want is <strong>0x004012C1</strong>.</p>
<p>*Props to the smart folks over at <a rel="nofollow" href="http://forums.guru3d.com/showthread.php?p=4135778">Guru3D</a> for identifying this AA flag.</p>
<p><img src="http://solidlystated.com/content/2011/10/payday-aa.jpg" alt="PAYDAY Anti Aliasing" title="payday-aa" width="718" height="400" class="aligncenter size-full wp-image-3281" /></p>
<p><span class="solid">Solid Tip: </span>Below are step-by-step instructions for Nvidia Inspector. The settings here are a &#8220;sweet spot&#8221; for this game. If you go attempti different settings on your own, know that you will lock up your PC and be forced to reboot. You&#8217;ve been warned!</p>
<ul>
<li>Add a profile for PAYDAY under the Nvidia Control Panel</li>
<li>Download Nvidia Inspector from <a href="http://majorgeeks.com/NVIDIA_Inspector_d6630.html">Major Geeks</a></li>
<li>Open <code>Nvidia Inspector</code></li>
<li>Click the wrench icon to open game profiles</li>
<li>Select Payday from the drop down menu</li>
<li>Enter <code>0x004012C1</code> under <code>Antialiasing compatibility</code></li>
<li>Set <code>Antialiasing - Mode</code> to override</li>
<li>Select <code>Antialiasing - Setting</code> to 2x or 4x Multisampling only</li>
<li>Set <code>Antialiasing - Mode</code> to override</li>
<li>Select <code>Antialiasing - Transparency Supersampling</code> to 2x or 4x Sparse Grid Supersampling only</li>
<li>Hit <code>Apply changes</code> in the upper right</li>
</ul>
<p><img src="http://solidlystated.com/content/2011/10/payday-inspector.jpg" alt="payday-inspector" title="payday-inspector" width="665" height="392" class="aligncenter size-full wp-image-3282" /></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>Affect on Performance</h4>
<p>Notice that the frame rate (in the pic) took a big hit at 4x AA. It dropped from 120 constant to just under half of that. I was able to get 90 fps using 2x AA, but the jagged edges are still noticeable. If you are able, you definitely want to try the 4x.</p>
<p>Additionally, I was able to play the game at what FRAPS said 30 fps under my setup using 8x AA, but moving around felt like I was trying to steer the Titanic, so I dialed that setting back immediately.</p>
<p>I hope this helps you get some more more enjoyment out of this game!<br />
<br/><br />


<div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399381&creativeASIN=B004FYKWZU">Mass Effect 3</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B004FYKWZU&camp=217145&creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO">Elder Scrolls V: Skyrim</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ7LO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836">Borderlands 2</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ836&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM">Assassin's Creed 4</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0IHIM&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO">Battlefield 3 LE</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0HJZO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div></td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_il?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399377&creativeASIN=B004FYKWZU"><img title='Mass Effect 3' alt='Mass Effect 3' src="http://solidlystated.com/content/2011/10/masseffect3box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO"><img title='Elder Scrolls V: Skyrim' alt='Elder Scrolls V: Skyrim' src="http://solidlystated.com/content/2011/10/skyrimbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836"><img title='Borderlands 2' alt='Borderlands 2' src="http://solidlystated.com/content/2011/10/borderlands2box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM"><img title='Assassins Creed Revelations' alt='Assassins Creed Revelations' src="http://solidlystated.com/content/2011/10/assassinscreedbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO"><img title='Battlefield 3' alt='Battlefield 3' src="http://solidlystated.com/content/2011/10/bf3box.gif" /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/payday-the-heist-extra-graphics-options/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Deus Ex: Human Revolution Mouse Lag</title>
		<link>http://solidlystated.com/software/deus-ex-human-revolution-mouse-lag/</link>
		<comments>http://solidlystated.com/software/deus-ex-human-revolution-mouse-lag/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 19:37:25 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[Deus Ex]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[PC Games]]></category>
		<category><![CDATA[vsync]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3265</guid>
		<description><![CDATA[While its great that Square Enix has frequently patched Deus Ex Human Revolution on the PC, it&#8217;s unfortunate that mouse lag still plagues many players, even using the latest Build 1.2.633. Here is an easy fix to lessen the mouse lag. Mouse Lag From Vsync Assuming your settings are not beyond the capability of your [...]]]></description>
			<content:encoded><![CDATA[<p>While its great that Square Enix has frequently patched Deus Ex Human Revolution on the PC, it&#8217;s unfortunate that mouse lag still plagues many players, even using the latest Build 1.2.633. Here is an easy fix to <span id="more-3265"></span>lessen the mouse lag.</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>
<h4>Mouse Lag From Vsync</h4>
<p>Assuming your settings are not beyond the capability of your graphics card, your mouse lag in DXHR is being caused by the Vsync setting in the options menu being turned on. </p>
<p>Others have speculated that SSAO (screen space ambient occlusion- a shadow option) causes it as well. While I can indeed verify that SSAO high vs. off does indeed make the problem worse, the SSAO setting doesn&#8217;t matter once you deal the vertical sync issue.</p>
<h4>The Quick Fix</h4>
<p>Seems I have done a lot of Vsync articles for various PC games lately. The fix here is the same 2 steps. Simply <strong>turn off the game&#8217;s Vsync</strong> and <strong>force it on</strong> in your graphics card control panel.</p>
<p>If you&#8217;ve never done this before: </p>
<ul>
<li>Open your graphics card control panel&#8217;s 3D Settings</li>
<li>Find the Deus Ex game profile in the list</li>
<li>For Nvidia- set Vsync option to Force On</li>
<li>For ATI- set vertical refresh to Always On</li>
<li>Turn off Vsync in the game&#8217;s options menu</li>
</ul>
<p>Next time you launch your game, you should notice the mouse responds much better than with the in-game vsync and everything else remains the same. This will not eliminate the lag completely, but makes the game much more playable. Have fun!</p>
<p>

<div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399381&creativeASIN=B004FYKWZU">Mass Effect 3</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B004FYKWZU&camp=217145&creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO">Elder Scrolls V: Skyrim</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ7LO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836">Borderlands 2</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ836&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM">Assassin's Creed 4</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0IHIM&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO">Battlefield 3 LE</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0HJZO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div></td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_il?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399377&creativeASIN=B004FYKWZU"><img title='Mass Effect 3' alt='Mass Effect 3' src="http://solidlystated.com/content/2011/10/masseffect3box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO"><img title='Elder Scrolls V: Skyrim' alt='Elder Scrolls V: Skyrim' src="http://solidlystated.com/content/2011/10/skyrimbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836"><img title='Borderlands 2' alt='Borderlands 2' src="http://solidlystated.com/content/2011/10/borderlands2box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM"><img title='Assassins Creed Revelations' alt='Assassins Creed Revelations' src="http://solidlystated.com/content/2011/10/assassinscreedbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO"><img title='Battlefield 3' alt='Battlefield 3' src="http://solidlystated.com/content/2011/10/bf3box.gif" /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/deus-ex-human-revolution-mouse-lag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dead Rising 2: Off the Record PC Crashes</title>
		<link>http://solidlystated.com/software/dead-rising-2-otr-pc-crash-on-startup/</link>
		<comments>http://solidlystated.com/software/dead-rising-2-otr-pc-crash-on-startup/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 01:02:24 +0000</pubDate>
		<dc:creator>SolidlyStated</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[crashes]]></category>
		<category><![CDATA[Dead Rising 2]]></category>
		<category><![CDATA[PC Games]]></category>

		<guid isPermaLink="false">http://solidlystated.com/?p=3243</guid>
		<description><![CDATA[Dead Rising 2 for the PC came out a year ago with a whole host of problems. Over a year later, Capcom releases Dead Rising 2: Off The Record with the SAME problems as the previous version! The biggest issue is the game not launching at all, leaving the player with an unknown error. Fortunately [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Dead Rising 2 for the PC</strong> came out a year ago with a whole host of problems. Over a year later, Capcom releases Dead Rising 2: Off The Record with the SAME problems as the previous version! <span id="more-3243"></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>The biggest issue is the game not launching at all, leaving the player with an unknown error. Fortunately this crash has the same solution it did before. </p>
<p><span class="solid">Solid Tip: </span>This game has all sorts of crashing issues. In this fix, I will only deal with the most common one, which involves Capcom&#8217;s poor sound card support.</p>
<h4>Sound Card Crash #1</h4>
<p>When your game crashes it creates a crash report text file in its installation folder. If you are getting an error report that resembles the following &#8216;unknown location&#8217;, you need to adjust your sound card settings.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">TEXT<a href="javascript:;" onclick="javascript:showCodeTxt('p3243code17'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p324317"><td class="code" id="p3243code17"><pre class="text" style="font-family:monospace;">Callstack:          Address             Function                                Location
                    UNKOWN              UNKOWN                                  UNKOWN
                    UNKOWN              UNKOWN                                  UNKOWN
&nbsp;
Exception: Access Violation (0x0173E3FE)
	&gt;UNKNOWN LOCATION</pre></td></tr></table></div>

<p>The game should immediately start once you change your sound card quality settings. You can reach the settings for your sound card through the Control Panel in Windows. For this example, I will show you a SoundBlaster X-Fi, which I configure by going to Sound > Playback > Speakers > Advanced. Here, I had my original quality set to 24 bit, 96000 Hz. To get the game to launch, though, I must <strong>set the quality to 24 bit, 48000 Hz</strong>.</p>
<p><img src="http://solidlystated.com/content/2011/10/sound-card-dead-rising-2.jpg" alt="SoundBlaster XFi settings" title="sound-card-dead-rising-2" width="404" height="385" class="aligncenter size-full wp-image-3246" /></p>
<h4>Sound Card Crash #2</h4>
<p>There is a second error that involves your sound setting also. In you get this error, <strong>set sound quality to 16 bit, 48000 Hz</strong>.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left">TEXT<a href="javascript:;" onclick="javascript:showCodeTxt('p3243code18'); return false;">view code</a> </span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p324318"><td class="code" id="p3243code18"><pre class="text" style="font-family:monospace;">Callstack:         
error SymFromAddr returned error : 487 CRASH</pre></td></tr></table></div>

<p>Note that there have been various suggestions as to which sound setting will work for different people, so feel free to experiment with them.</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>I Changed My Sound But It Still Crashes!</h4>
<p>Keep in mind this is a very poor PC port done by Capcom. One user with this same error found that the game would not launch <strong>unless it is installed on the C drive</strong>, or at least launced from a shortcut that is located on the C drive.</p>
<p>Additionally, if you have had the game working before and it won&#8217;t launch now, try deleting the rendersettings.ini file under <strong>Documents\My Games\Dead Rising 2 Off The Record</strong>.</p>
<p>Finally, reinstall GFWL and check the Steam cache for the game. Hopefully one of these tips will help you. For most users, simply changing the sound settings will take care of things.</p>
<p>

<div class='youmightlike games'><!--Other Games You Might Like-->
<div class='items'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399381&creativeASIN=B004FYKWZU">Mass Effect 3</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B004FYKWZU&camp=217145&creative=399381" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO">Elder Scrolls V: Skyrim</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ7LO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836">Borderlands 2</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B0050SZ836&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM">Assassin's Creed 4</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0IHIM&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div></td></tr>
<tr><td><div>
<a target='_blank' rel='nofollow' href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO">Battlefield 3 LE</a><img src="http://www.assoc-amazon.com/e/ir?t=solistat-20&l=as2&o=1&a=B002I0HJZO&camp=217145&creative=399373" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</div></td></tr>
</tbody></table>
</div>
<div class='pics'>
<table cellpadding="0" cellspacing="0"><thead></thead><tbody><tr>
<td><a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B004FYKWZU/ref=as_li_qf_sp_asin_il?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399377&creativeASIN=B004FYKWZU"><img title='Mass Effect 3' alt='Mass Effect 3' src="http://solidlystated.com/content/2011/10/masseffect3box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ7LO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ7LO"><img title='Elder Scrolls V: Skyrim' alt='Elder Scrolls V: Skyrim' src="http://solidlystated.com/content/2011/10/skyrimbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B0050SZ836/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B0050SZ836"><img title='Borderlands 2' alt='Borderlands 2' src="http://solidlystated.com/content/2011/10/borderlands2box.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0IHIM/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0IHIM"><img title='Assassins Creed Revelations' alt='Assassins Creed Revelations' src="http://solidlystated.com/content/2011/10/assassinscreedbox.gif" /></a>
</td><td>
<a target='_blank' rel='nofollow'  href="http://www.amazon.com/gp/product/B002I0HJZO/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=solistat-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=B002I0HJZO"><img title='Battlefield 3' alt='Battlefield 3' src="http://solidlystated.com/content/2011/10/bf3box.gif" /></a>
</td></tr>
</tbody>
</table>
</div>
</div></p>
]]></content:encoded>
			<wfw:commentRss>http://solidlystated.com/software/dead-rising-2-otr-pc-crash-on-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.874 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-06 20:16:35 -->
<!-- Compression = gzip -->
