<?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>ronald a. richardson &#187; Reviews</title>
	<atom:link href="http://ronaldarichardson.com/category/reviews/feed/" rel="self" type="application/rss+xml" />
	<link>http://ronaldarichardson.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 19:01:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to submit/ POST PHP Data to Facebox</title>
		<link>http://ronaldarichardson.com/2011/03/17/how-to-submit-post-php-data-to-facebox/</link>
		<comments>http://ronaldarichardson.com/2011/03/17/how-to-submit-post-php-data-to-facebox/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 18:41:46 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Hacking/ Dev]]></category>
		<category><![CDATA[Journal]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[decrypt]]></category>
		<category><![CDATA[facebox]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[form submission]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[modal]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php action]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post data]]></category>
		<category><![CDATA[post method]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/?p=1445</guid>
		<description><![CDATA[After browsing the web, I have seen that a lot of people have been having problems with sending php post data to a facebox. Well I have the how-to on just that! If you don&#8217;t know what Facebox is, it&#8217;s a jQuery modal plugin, that is very sleek and resembles the modal from facebook.com, simple [...]]]></description>
			<content:encoded><![CDATA[<p>After browsing the web, I have seen that a lot of people have been having problems with sending php post data to a facebox. Well I have the how-to on just that!</p>
<p>If you don&#8217;t know what Facebox is, it&#8217;s a jQuery modal plugin, that is very sleek and resembles the modal from facebook.com, simple enough.</p>
<p>The purpose of these instructions is to be able to create a simple form in html, that uses php to post data to another remote page. In otherwords pass a variable to another website. Which is simple, but how can this be accomplished with Facebox?</p>
<p>Here is my example code:</p>
<p><strong>manageForms.php</strong> &#8211; this is an excerpt of form manager script I wrote for a client, this is the code for the actions panel. There is a decrypt form submission option since the data submitted is encoded in the mysql database.</p>
<div class="codecolorer-container php blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;form method=&quot;post&quot; name=&quot;decrypt&quot; id=&quot;decrypt&quot; action=&quot;decryptAndShow.php?form='</span><span style="color: #339933;">.</span><span style="color: #000088;">$form</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;div style=&quot;padding:10px;border:1px solid #000;margin:5px;&quot;&gt;Actions: &lt;a href=&quot;'</span><span style="color: #339933;">.</span>GRID_SOURCE<span style="color: #339933;">.</span><span style="color: #0000ff;">'excel.php?grid_id=grid&quot;&gt;Export to Excel&lt;/a&gt; | &lt;a href=&quot;&quot;&gt;Generate PDF&lt;/a&gt; | &lt;a href=&quot;&quot;&gt;View HTML&lt;/a&gt; | Decrypt form: &lt;select name=&quot;x&quot; onclick=&quot;document.decrypt.id.value=this.value&quot;&gt;'</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_fetch_array"><span style="color: #990000;">mysql_fetch_array</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$q</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #000088;">$company_name</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/base64_decode"><span style="color: #990000;">base64_decode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span>company_name<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;option value=&quot;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span>id<span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;&gt;'</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'ID: '</span><span style="color: #339933;">.</span><span style="color: #000088;">$row</span><span style="color: #009900;">&#91;</span>id<span style="color: #009900;">&#93;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' Company Name: '</span><span style="color: #339933;">.</span><span style="color: #000088;">$company_name</span><span style="color: #339933;">.</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/option&gt;'</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp;<span style="color: #009900;">&#125;</span> &nbsp;<br />
&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/select&gt;'</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;input type=&quot;hidden&quot; name=&quot;id&quot; id=&quot;id&quot; value=&quot;no submission selected for decryption&quot;&gt;&lt;input type=&quot;button&quot; value=&quot;Go!&quot; onclick=&quot;decrypt_form()&quot;&gt;&lt;/form&gt;'</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">' | &lt;a href=&quot;'</span><span style="color: #339933;">.</span>GRID_SOURCE<span style="color: #339933;">.</span><span style="color: #0000ff;">'/class/print.php?grid_id=grid&quot;&gt;Print&lt;/a&gt; | (Mode: &lt;a href=&quot;manageForms.php?type='</span><span style="color: #339933;">.</span><span style="color: #000088;">$type</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;sales_rep='</span><span style="color: #339933;">.</span><span style="color: #000088;">$sales_rep</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;form='</span><span style="color: #339933;">.</span><span style="color: #000088;">$form</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;mode=edit&quot;&gt;Edit&lt;/a&gt; | &lt;a href=&quot;manageForms.php?type='</span><span style="color: #339933;">.</span><span style="color: #000088;">$type</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;sales_rep='</span><span style="color: #339933;">.</span><span style="color: #000088;">$sales_rep</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;form='</span><span style="color: #339933;">.</span><span style="color: #000088;">$form</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;mode=view&quot;&gt;View&lt;/a&gt;)&lt;/div&gt;'</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>Now here is the simple little ajax code to include, to make the decrypt form above post it&#8217;s &#8216;id&#8217; variable to facebox.</p>
<div class="codecolorer-container javascript blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br /></div></td><td><div class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp;<span style="color: #003366; font-weight: bold;">function</span> decrypt_form<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; $.<span style="color: #660066;">facebox</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$.<span style="color: #660066;">ajax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; data<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">&quot;id&quot;</span> <span style="color: #339933;">:</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#id&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; error<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$.<span style="color: #660066;">facebox</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;There was an error decrypting the form submission&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; success<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$.<span style="color: #660066;">facebox</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; type<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;post&quot;</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; url<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;decryptAndShow.php?form='.$form.'&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> &nbsp;<br />
&nbsp; &nbsp;<span style="color: #009900;">&#125;</span><br />
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></div></td></tr></tbody></table></div>
<p>Here is how the code works, I created a function called <strong>decrypt_form()</strong> all this does is execute the code when it is called, which I called it through the button on the form. Next is to use the facebox function, and within that do a simple ajax post method. in <strong>data:</strong> this is where you will put the variable you want to post from the form, in my case is is &#8216;id&#8217;. Skip error, well change the error message to whatever you like. Keep success the same, and of course your type is &#8216;post&#8217;, and change the URL to whatever php file you had in the forms action.</p>
<p>Simple enough <img src='http://ronaldarichardson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ok, now if you are having trouble just post a comment, but that should cover the how-to. If not here is the <strong>decryptAndShow.php</strong> a small excerpt of code:</p>
<div class="codecolorer-container php blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$form</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span>form<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$id</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$pagetitle</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'Decryption of '</span><span style="color: #339933;">.</span><span style="color: #000088;">$form</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' identification # '</span><span style="color: #339933;">.</span><span style="color: #000088;">$id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'../includes/connect.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'select * from '</span><span style="color: #339933;">.</span><span style="color: #000088;">$form</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' where id = '</span><span style="color: #339933;">.</span><span style="color: #000088;">$id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_query"><span style="color: #990000;">mysql_query</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;strong&gt;data submission id:&lt;/strong&gt; &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&lt;br&gt;&quot;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2011/03/17/how-to-submit-post-php-data-to-facebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formula Drift 2009 by Joshua Herron</title>
		<link>http://ronaldarichardson.com/2010/01/24/formula-drift-2009-by-joshua-herron/</link>
		<comments>http://ronaldarichardson.com/2010/01/24/formula-drift-2009-by-joshua-herron/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 17:52:11 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[PHRESH]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://thecoolestmarine.com/?p=1163</guid>
		<description><![CDATA[This video is absolutely beautiful, and motivating. The craftsmanship that went into this video is 100% grade A. Joshua Herron is a true artist in video. Being able to create a video that pumps the mass is a talent worthy of praise. Check out the video below, I love it. Here is the shorter Mannie [...]]]></description>
			<content:encoded><![CDATA[<p>This video is absolutely beautiful, and motivating. The craftsmanship that went into this video is 100% grade A. Joshua Herron is a true artist in video. Being able to create a video that pumps the mass is a talent worthy of praise. Check out the video below, I love it.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/nd1l5OtF3cA&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nd1l5OtF3cA&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>Here is the shorter Mannie Fresh version with different clips not seen in the original. It&#8217;s HELLA DOPE! (yeah Elaine, I&#8217;m bringing DOPE back, word!). Anyways it&#8217;s called Breaking Point.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/bQgf5UyFrgA&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/bQgf5UyFrgA&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2010/01/24/formula-drift-2009-by-joshua-herron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexus One illest phone ever!</title>
		<link>http://ronaldarichardson.com/2010/01/05/nexus-one-illest-phone-ever/</link>
		<comments>http://ronaldarichardson.com/2010/01/05/nexus-one-illest-phone-ever/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 01:13:37 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[PHRESH]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://thecoolestmarine.com/?p=1122</guid>
		<description><![CDATA[Today is the GooglePhone announcement day. There’s a lot of details to be discussed, like voice input in any text field. Yeah, we’ll be able to blog while driving with speach to text. While the phone is manufactured by HTC and destined for use on T-Mobile’s network, Google will be the one doing the selling [...]]]></description>
			<content:encoded><![CDATA[<p>Today is the GooglePhone announcement day. There’s a lot of details to be discussed, like voice input in any text field. Yeah, we’ll be able to blog while driving with speach to text. While the phone is manufactured by HTC and destined for use on T-Mobile’s network, Google will be the one doing the selling of the device. By all appearances, the company will have a new phone portal where buyers can pick between an unsubsidized, unlocked Nexus One for $529.99, or sign up for a two-year agreement with T-Mobile and purchase the phone for $179.99. This is a sexy piece of technology I will surely be dumping my iPhone 3gs for. With an integrated 5 megapixel camera with flash, you cant go wrong. I can&#8217;t wait to ditch AT&#038;T int he future once my contract ends, with AT&#038;T shitt&#8217;y network I can&#8217;t call my mom from base or anything, which fucking sucks. Anyways, the Nexus One is sure to be the most badass phone. It will be running Android 2.1 OS Software. It also has cool MicroSD slots for expandable memory of up to 32GB, not to mention the future TB SD Cards. Here are some photos below.</p>

<a href='http://ronaldarichardson.com/2010/01/05/nexus-one-illest-phone-ever/nexusone-570x302/' title='nexusone-570x302'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/nexusone-570x302-150x150.png" class="attachment-thumbnail" alt="nexusone-570x302" title="nexusone-570x302" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/nexus-one-illest-phone-ever/nexus-one-specs-shot/' title='nexus-one-specs-shot'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/nexus-one-specs-shot-150x150.png" class="attachment-thumbnail" alt="nexus-one-specs-shot" title="nexus-one-specs-shot" /></a>

]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2010/01/05/nexus-one-illest-phone-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the litl that could kill</title>
		<link>http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/</link>
		<comments>http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 23:33:22 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHRESH]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://thecoolestmarine.com/?p=1107</guid>
		<description><![CDATA[Today while browsing the web I came across the most beautiful web book I have yet seen. It&#8217;s called litl, it is small in dimensions, but big in features. I fell in love with this web book, and it&#8217;s only about $700. It features it&#8217;s own beautiful web operating system. It&#8217;s an absolutely gorgeous piece [...]]]></description>
			<content:encoded><![CDATA[<p>Today while browsing the web I came across the most beautiful web book I have yet seen. It&#8217;s called litl, it is small in dimensions, but big in features. I fell in love with this web book, and it&#8217;s only about $700. It features it&#8217;s own beautiful web operating system. It&#8217;s an absolutely gorgeous piece of technology. I have to have it. It consist of two modes, easel mode, and laptop mode. The easel mode it hides the laptop and displays a It includes a integrated web cam, and has the ability to connect to your tv. The software is absolutely lovely, and the hardware is near perfect. Here are some photos below. Check it out.</p>

<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/hardware11/' title='hardware11'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/hardware11-150x150.jpg" class="attachment-thumbnail" alt="hardware11" title="hardware11" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/hardware21/' title='hardware21'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/hardware21-150x150.jpg" class="attachment-thumbnail" alt="hardware21" title="hardware21" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/hardware31/' title='hardware31'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/hardware31-150x150.jpg" class="attachment-thumbnail" alt="hardware31" title="hardware31" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/hardware41/' title='hardware41'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/hardware41-150x150.jpg" class="attachment-thumbnail" alt="hardware41" title="hardware41" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/hardware51/' title='hardware51'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/hardware51-150x150.jpg" class="attachment-thumbnail" alt="hardware51" title="hardware51" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/soft11/' title='soft11'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/soft11-150x150.jpg" class="attachment-thumbnail" alt="soft11" title="soft11" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/soft21/' title='soft21'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/soft21-150x150.jpg" class="attachment-thumbnail" alt="soft21" title="soft21" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/ui21/' title='ui21'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/ui21-150x150.jpg" class="attachment-thumbnail" alt="ui21" title="ui21" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/ui31/' title='ui31'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/ui31-150x150.jpg" class="attachment-thumbnail" alt="ui31" title="ui31" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/ui41/' title='ui41'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/ui41-150x150.jpg" class="attachment-thumbnail" alt="ui41" title="ui41" /></a>
<a href='http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/ui51/' title='ui51'><img width="150" height="150" src="http://ronaldarichardson.com/wp-content/uploads/2010/01/ui51-150x150.jpg" class="attachment-thumbnail" alt="ui51" title="ui51" /></a>

]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2010/01/05/the-litl-that-could-kill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag Me To Hell</title>
		<link>http://ronaldarichardson.com/2009/06/01/drag-me-to-hell/</link>
		<comments>http://ronaldarichardson.com/2009/06/01/drag-me-to-hell/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 03:36:33 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/?p=1004</guid>
		<description><![CDATA[This (intentional???) comedy/ horror movie will soon go down in history as a classic. The ending is priceless, I loved it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://ronaldarichardson.com/wp-content/uploads/2009/06/drag-me-to-hell-20090106061124590_640w.jpg" rel="lightbox"><img src="http://ronaldarichardson.com/wp-content/uploads/2009/06/drag-me-to-hell-20090106061124590_640w-300x199.jpg" alt="drag-me-to-hell-20090106061124590_640w" title="drag-me-to-hell-20090106061124590_640w" width="300" height="199" class="aligncenter size-medium wp-image-1005" /></a><br />
This (intentional???) comedy/ horror movie will soon go down in history as a classic. The ending is <strong>priceless</strong>, I loved it.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2009/06/01/drag-me-to-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>STAR TREK</title>
		<link>http://ronaldarichardson.com/2009/05/21/star-trek/</link>
		<comments>http://ronaldarichardson.com/2009/05/21/star-trek/#comments</comments>
		<pubDate>Fri, 22 May 2009 02:07:14 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/?p=991</guid>
		<description><![CDATA[Star Trek was one of the most amazing movies I have Ever seen. It was beautifully done, and I wouldn&#8217;t mind seeing it a second time. I recommend anyone who has not yet seen this movie to&#8230; GO SEE IT!!!!]]></description>
			<content:encoded><![CDATA[<p><a href="http://ronaldarichardson.com/wp-content/uploads/2009/05/star_trek_03_1024.jpg" rel="lightbox"><img src="http://ronaldarichardson.com/wp-content/uploads/2009/05/star_trek_03_1024-300x225.jpg" alt="star_trek_03_1024" title="star_trek_03_1024" width="300" height="225" class="aligncenter size-medium wp-image-992" /></a>Star Trek was one of the most amazing movies I have Ever seen. It was beautifully done, and I wouldn&#8217;t mind seeing it a second time. I recommend anyone who has not yet seen this movie to&#8230; GO SEE IT!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2009/05/21/star-trek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Legend Evolver</title>
		<link>http://ronaldarichardson.com/2008/10/12/john-legend-evolver/</link>
		<comments>http://ronaldarichardson.com/2008/10/12/john-legend-evolver/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 01:55:01 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[evolver]]></category>
		<category><![CDATA[john legend]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/core/?p=647</guid>
		<description><![CDATA[<a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/10/john_legend_cover_.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/10/john_legend_cover_.jpg" alt="" title="john_legend_cover_" width="200" height="200" class="alignnone size-full wp-image-648" /></a>I just copped this album off the web, it was leaked onto a Warez site, anyway it's a great album. John Legend did good, and it is something new from all his other albums. I recommend buying it when it drops, espescially for all you lovers. I'm starting to like it. It's not like Get Lifted, or Once Again, but]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/10/john_legend_cover_.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/10/john_legend_cover_.jpg" alt="" title="john_legend_cover_" width="400" height="400" class="alignnone size-full wp-image-648" /></a>I just copped this album off the web, it was leaked onto a Warez site, anyway it&#8217;s a great album. John Legend did good, and it is something new from all his other albums. I recommend buying it when it drops, espescially for all you lovers. I&#8217;m starting to like it. It&#8217;s not like Get Lifted, or Once Again, but it is John Legend at work again. I give this album 8/10!</p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2008/10/12/john-legend-evolver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miracle at St. Anna</title>
		<link>http://ronaldarichardson.com/2008/09/29/miracle-at-st-anna/</link>
		<comments>http://ronaldarichardson.com/2008/09/29/miracle-at-st-anna/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 01:10:08 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Artifacts]]></category>
		<category><![CDATA[Buffalo Soldiers]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[military]]></category>
		<category><![CDATA[Miracle at St. Anna]]></category>
		<category><![CDATA[Spike Lee]]></category>
		<category><![CDATA[WW2]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/core/?p=636</guid>
		<description><![CDATA[<a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/09/miraclefinalonesheet-2.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/09/miraclefinalonesheet-2.jpg" alt="" title="miraclefinalonesheet-2" class="alignleft size-medium wp-image-637"  width="400" height="595"/></a>Truly a masterpiece, one of the best films I have ever seen in a long time. It's hard to believe it's a true story. I'm not going to tell you about the movie, no spoilers, I'm just going to share my opinions. Spike Lee is a goddamn genius. It's a beautiful film, and it shows the Buffalo Soldiers, which are]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/09/miraclefinalonesheet-2.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/09/miraclefinalonesheet-2.jpg" alt="" title="miraclefinalonesheet-2" class="alignleft size-thumbnail wp-image-637"  width="200" height="297"/></a>Truly a masterpiece, one of the best films I have ever seen in a long time. It&#8217;s hard to believe it&#8217;s a true story. I&#8217;m not going to tell you about the movie, no spoilers, I&#8217;m just going to share my opinions. Spike Lee is a goddamn genius. It&#8217;s a beautiful film, and it shows the Buffalo Soldiers, which are rarely seen in WW2 movie, in fact. The film is only about the Buffalo Soldiers. Four black Buffalo Soldiers, the actors did a great job portraying their roles. The movie was brilliant. I love the logo, I love the cinematography, and I love the story. The movie is almost 3 hours long, but it&#8217;s well worth it. I recommend that everyone see it. I give this film 5 Stars, it&#8217;s now my favorite movie.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2008/09/29/miracle-at-st-anna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer virus strikes space station (msnbc)</title>
		<link>http://ronaldarichardson.com/2008/08/30/computer-virus-strikes-space-station-msnbc/</link>
		<comments>http://ronaldarichardson.com/2008/08/30/computer-virus-strikes-space-station-msnbc/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 16:15:58 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Hacking/ Dev]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[astronaut]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[space station]]></category>
		<category><![CDATA[space.com]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/core/?p=608</guid>
		<description><![CDATA[<a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/080827-space-computer-vlarge-1230pwidec.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/080827-space-computer-vlarge-1230pwidec-197x300.jpg" alt="" title="080827-space-computer-vlarge-1230pwidec" width="197" height="300" class="alignleft size-medium wp-image-609" /></a>A virus designed to swipe passwords from online gamers has inexplicably popped up in some laptop computers aboard the international space station.

The low-risk virus was detected on July 25, but did not infect the space station's command and control computers and poses no threat to the orbiting laboratory, NASA officials said.

"This is basically a nuisance," NASA spokesperson Kelly Humphries told]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/080827-space-computer-vlarge-1230pwidec.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/080827-space-computer-vlarge-1230pwidec-197x300.jpg" alt="" title="080827-space-computer-vlarge-1230pwidec" width="197" height="300" class="alignleft size-medium wp-image-609" /></a>A virus designed to swipe passwords from online gamers has inexplicably popped up in some laptop computers aboard the international space station.</p>
<p>The low-risk virus was detected on July 25, but did not infect the space station&#8217;s command and control computers and poses no threat to the orbiting laboratory, NASA officials said.</p>
<p>&#8220;This is basically a nuisance,&#8221; NASA spokesperson Kelly Humphries told SPACE.com from the agency&#8217;s Johnson Space Center in Houston. <span id="more-608"></span></p>
<p>According to a NASA planning document obtained by SPACE.com, the worm was identified as W32.Gammima.AG. The California-based retail anti-virus software manufacturer Symantec describes it as a Windows-based worm which spreads by copying itself onto removable media. It is capable of stealing passwords for online games and is classified as a very low risk, according to Symantec&#8217;s Web site.</p>
<p>Humphries said that while NASA security protocols prohibit discussing details of the virus and efforts to combat it, a search is under way to find out how it got on board the space station more than 200 miles (321 km) above Earth.</p>
<p>&#8220;We&#8217;ll do our best to track down how it got there and close that gateway,&#8221; Humphries said. &#8220;This is not a frequent occurrence, but we have had viruses that have made their way on board before.&#8221;</p>
<p>New flash memory cards due to launch to the station aboard a Russian cargo ship next month have been screened for the virus, the NASA document stated. Not all of the 71 laptop computers currently aboard the station run Windows, and those that do and are vulnerable to viruses could be updated.</p>
<p>The space station is currently home to three astronauts: Russian cosmonaut commander Sergei Volkov, cosmonaut flight engineer Oleg Kononenko and NASA flight engineer Greg Chamitoff. Volkov and Kononenko are due to return to Earth in October, while Chamitoff is slated to stay until his replacement arrives during NASA&#8217;s planned November space shuttle mission.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2008/08/30/computer-virus-strikes-space-station-msnbc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Teenagers &#8211; Reality Check</title>
		<link>http://ronaldarichardson.com/2008/08/16/the-teenagers-reality-check/</link>
		<comments>http://ronaldarichardson.com/2008/08/16/the-teenagers-reality-check/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 03:46:53 +0000</pubDate>
		<dc:creator>Ronald</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[experimental]]></category>
		<category><![CDATA[french kiss]]></category>
		<category><![CDATA[gym]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[reality check]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[the teenagers]]></category>
		<category><![CDATA[visual arts 2]]></category>
		<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://ronaldarichardson.com/core/?p=600</guid>
		<description><![CDATA[<a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/teenagers.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/teenagers.jpg" alt="" title="teenagers" width="300" height="299" class="alignleft size-medium wp-image-601" /></a>Just downloaded the album, for absolutely no reason. It just looked cool, it is a very interesting album... but I actually overall like it. It's different, they just talk through the songs about stupid stuff. With weird Napoleon Dynamite styled music. It makes you think! Makes you think, what the fuck were they thinking. It's weird, the band is French]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/teenagers.jpg'><img src="http://www.ronaldarichardson.com/core/wp-content/uploads/2008/08/teenagers.jpg" alt="" title="teenagers" width="300" height="299" class="alignleft size-medium wp-image-601" /></a>Just downloaded the album, for absolutely no reason. It just looked cool, it is a very interesting album&#8230; but I actually overall like it. It&#8217;s different, they just talk through the songs about stupid stuff. With weird Napoleon Dynamite styled music. It makes you think! Makes you think, what the fuck were they thinking. It&#8217;s weird, the band is French.. I think. Makes me want to go to France, and run Paris. Well I&#8217;m a teenager, and school is coming up, and I need tot ake GYM/Health, which I&#8217;ve never taken. Damn, four science credits and no fckn gym or health. I&#8217;m a loser for that, I dont want to change my perfect easy schedule, but I guess I will have too. The damn course is a year long. I wish it was a semester. Now I may have to get rid of Visual Arts 2 with my favorite teacher in the school, fuck. Well&#8230; my senior year will be over quick. Anyways,  suggest you all check out the weird album by The Teenagers, it&#8217;s called &#8220;Reality Check&#8221; &#8211; We all need one.</p>
]]></content:encoded>
			<wfw:commentRss>http://ronaldarichardson.com/2008/08/16/the-teenagers-reality-check/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

