<?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>Lonnie Knows Everything &#187; Nerd Stuff</title>
	<atom:link href="http://blog.oneduality.com/category/nerd/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oneduality.com</link>
	<description>So you don&#039;t have to!</description>
	<lastBuildDate>Wed, 30 Nov 2011 19:37:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Post to twitter using PHP without using oauth or the API</title>
		<link>http://blog.oneduality.com/2011/03/15/post-to-twitter-using-php-without-using-oauth-or-the-api/</link>
		<comments>http://blog.oneduality.com/2011/03/15/post-to-twitter-using-php-without-using-oauth-or-the-api/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 18:54:42 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Nerd Stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Curl]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1167</guid>
		<description><![CDATA[So you want to post twitter updates and perhaps follow people using PHP but you&#8217;re annoyed with that oauth implementation because it makes life difficult? no problem I&#8217;ve constructed a class that implements two functions, posting a status update and following an author .. This is purely for educational purposes and is intended to demonstrate [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to post twitter updates and perhaps follow people using PHP but you&#8217;re annoyed with that oauth implementation because it makes life difficult? no problem</p>
<p>I&#8217;ve constructed a class that implements two functions, posting a status update and following an author .. This is purely for educational purposes and is intended to demonstrate the art of page scraping as well as the use of CURL for posting and retrieving data, I would of course never personally recommend using the code because I&#8217;m sure it&#8217;s some sort of violation of their TOS ;) so yeah.. don&#8217;t do it! ;) ;)</p>
<p>Some important things to note:</p>
<p>1. This will break if twitter changes their html up too much<br />
2. This is probably a violation, so if you do use it, use it reasonably .. don&#8217;t submit a million requests per second, throttle it down =)<br />
3. You&#8217;re using it at your own risk<br />
4. It will post status updates as if you posted from a mobile device ( Ie. Mobile Web )</p>
<p><strong>DOWNLOAD: </strong><a href="http://blog.oneduality.com/tweeter.zip" target="_blank">Click to download example and class file</a></p>
<p><strong>USAGE:</strong></p>
<blockquote><p>include(&#8220;tweeter.php&#8221;);</p>
<p>$tweeter = new tweeter();<br />
$tweeter-&gt;login($username,$password);<br />
$tweeter-&gt;post_tweet(&#8220;Hey, this is cool!&#8221;);<br />
$tweeter-&gt;folllow(&#8220;oneduality&#8221;);</p></blockquote>
<p><strong>Contents of tweeter.php:</strong></p>
<blockquote>
<pre>class tweet {
    var $user;
    var $token='';
    var $ch='';
    var $action='';

    // Logs in to twitter
    function login($user,$pass) {
        $this-&gt;user = $user;

        // Initialize CH
        if (!function_exists("curl_init")) die("This requires the CURL module, please install CURL for php.");
        $this-&gt;ch = curl_init();

        // Parse the login form
        curl_setopt($this-&gt;ch, CURLOPT_URL, "https://mobile.twitter.com/session/new");
        curl_setopt($this-&gt;ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($this-&gt;ch, CURLOPT_FAILONERROR, 1);
        curl_setopt($this-&gt;ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($this-&gt;ch, CURLOPT_RETURNTRANSFER,1);
        curl_setopt($this-&gt;ch, CURLOPT_TIMEOUT, 5);
        curl_setopt($this-&gt;ch, CURLOPT_COOKIEJAR, $this-&gt;user . ".txt");
        curl_setopt($this-&gt;ch, CURLOPT_COOKIEFILE, $this-&gt;user . ".txt");
        curl_setopt($this-&gt;ch, CURLOPT_USERAGENT, "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3 ");
        $page = curl_exec($this-&gt;ch);

        $page = stristr($page, "
<div class="signup-body">");
        preg_match("/form action=\"(.*?)\"/", $page, $this-&gt;action);
        preg_match("/input name=\"authenticity_token\" type=\"hidden\" value=\"(.*?)\"/", $page, $this-&gt;token);

        // Login and get your home page
        $strpost = "authenticity_token=".urlencode($this-&gt;token[1])."&amp;username=".urlencode($user)."&amp;password=".urlencode($pass);
        curl_setopt($this-&gt;ch, CURLOPT_URL, $this-&gt;action[1]);
        curl_setopt($this-&gt;ch, CURLOPT_POSTFIELDS, $strpost);
        $page = curl_exec($this-&gt;ch);

        // Verify that we logged in ok
        preg_match("/\
<div class="\&quot;warning\&quot;\">(.*?)\&lt;\/div\&gt;/", $page, $warning);
        if (isset($warning[1])) return $warning[1];
        $page = stristr($page,"
<div class="tweetbox">");
        preg_match("/form action=\"(.*?)\"/", $page, $this-&gt;action);
        preg_match("/input name=\"authenticity_token\" type=\"hidden\" value=\"(.*?)\"/", $page, $this-&gt;authenticity_token);
    }

    function post_tweet($status) {

        // Set status
        $tweet['display_coordinates']='';
        $tweet['in_reply_to_status_id']='';
        $tweet['lat']='';
        $tweet['long']='';
        $tweet['place_id']='';
        $tweet['text']=$status;
        $ar = array("authenticity_token" =&gt; $this-&gt;token[1], "tweet"=&gt;$tweet);
        $data = http_build_query($ar);
        curl_setopt($this-&gt;ch, CURLOPT_URL, $this-&gt;action[1]);
        curl_setopt($this-&gt;ch, CURLOPT_POSTFIELDS, $data);
        $page = curl_exec($this-&gt;ch);

        return true;
    }

    function follow($author_name) {

        $action = "http://mobile.twitter.com/$author_name/follow";
        $ar = array("authenticity_token" =&gt; $this-&gt;token[1], "tweet"=&gt;$tweet, 'last_url'=&gt;'/$author_name', );
        $data = http_build_query($ar);
        curl_setopt($this-&gt;ch, CURLOPT_URL, $action);
        curl_setopt($this-&gt;ch, CURLOPT_POSTFIELDS, $data);
        $page = curl_exec($this-&gt;ch);

        return true;
    }
}</div>
</div>
</div>
</pre>
</blockquote>
<h4>Incoming search terms:</h4><ul><li>curl login to twitter without Oauth</li><li>php post to twitter 2011</li><li>tweeter api php oauth</li><li>post to twitter without oauth</li><li>twitter php api</li><li>Posting to Twitter using PHP</li><li>post to twitter php 2011</li><li>php post twitter without api</li><li>How to post to twitter with php and Curl without oAuth</li><li>post twitter via php 2011</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.157 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2011/03/15/post-to-twitter-using-php-without-using-oauth-or-the-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear your facebook wall entirely with Greasemonkey and Firefox</title>
		<link>http://blog.oneduality.com/2010/12/13/clear-your-facebook-wall-entirely-with-greasemonkey-and-firefox/</link>
		<comments>http://blog.oneduality.com/2010/12/13/clear-your-facebook-wall-entirely-with-greasemonkey-and-firefox/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 19:04:32 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1158</guid>
		<description><![CDATA[Previously I posted a perl script who&#8217;s job was to clear out your wall posts, it worked but was slow and with the recent facebook updates.. it may no longer function. I was browsing for an alternative that was simple and stumbled on a greasemonkey script to clear recent activity,  adapted that code to suit [...]]]></description>
			<content:encoded><![CDATA[<p>Previously I posted a perl script who&#8217;s job was to clear out your wall posts, it worked but was slow and with the recent facebook updates.. it may no longer function.</p>
<p>I was browsing for an alternative that was simple and stumbled on a greasemonkey script to clear recent activity,  adapted that code to suit my needs and the result is my greasemonkey wall cleaner.</p>
<p><a href="http://userscripts.org/scripts/show/92664">http://userscripts.org/scripts/show/92664</a></p>
<h4>Incoming search terms:</h4><ul><li>facebook wall cleaner</li><li>clean facebook wall</li><li>CLEAR FACEBOOK WALL</li><li>facebook clear wall</li><li>greasemonkey facebook wall</li><li>greasemonkey delete facebook wall</li><li>greasemonkey facebook wall cleaner</li><li>greasemonkey clear facebook wall</li><li>clear facebook wall greasemonkey</li><li>wall cleaner facebook</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 0.024 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/12/13/clear-your-facebook-wall-entirely-with-greasemonkey-and-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Credit Karma &#8211; My Review</title>
		<link>http://blog.oneduality.com/2010/11/03/credit-karma-my-review/</link>
		<comments>http://blog.oneduality.com/2010/11/03/credit-karma-my-review/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 13:06:57 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1149</guid>
		<description><![CDATA[Let me start by stating for the record that I have no affiliation with Credit Karma ( www.creditkarma.com ) at all .. I found them using a google search while looking for an alternative to freecreditreport.com since I got stuck with them before and had a hard time cancelling. I was looking for something that [...]]]></description>
			<content:encoded><![CDATA[<p>Let me start by stating for the record that I have no affiliation with Credit Karma ( <a href="http://www.creditkarma.com">www.creditkarma.com</a> ) at all .. I found them using a google search while looking for an alternative to freecreditreport.com since I got stuck with them before and had a hard time cancelling. I was looking for something that was TRULY free..</p>
<p>I found Credit Karma when someone suggested it as an alternative via a yahoo question someone asked, so I decided to do my own research and read a few positive reviews before deciding to try it out for myself.. so without further delay..</p>
<p><strong>Truly Free</strong></p>
<p>During the signup process they don&#8217;t ask for any banking information or for a credit card, they do require you to give over your social security number, which is expected since that information is required in order to do a credit inquiry. They also asked a couple of questions to verify that I am who I claimed I was, some multiple choice questions based on information the gleaned from my credit history.</p>
<p><strong>Intuitive Interface</strong></p>
<p>It&#8217;s very simple to navigate the site, everything is pretty well self explanatory and the information is easy to find! While the site is indeed ad supported, the ads are not intrusive and there are no popups.</p>
<p><strong>Useful Tools</strong></p>
<p>The site provides a few useful tools such as the ability to compare credit cards, Auto Insurance, Banks.. etc .. But one of the most useful tools I found was the Credit Simulator that lets you see the results of certain actions on your credit score. I was able to see for example, what adding a new credit card would do to my credit &#8230; This was very useful to me in deciding what actions I would take to improve my score.</p>
<p><strong>Unlimited Credit Queries</strong></p>
<p>That&#8217;s right, you can go back every day and check your credit score if you like and it won&#8217;t hurt you because they are doing a soft check as opposed to a hard check. Basically they are just getting the basic information which is free.  When you go in for a loan or apply for a new credit card, the issuer will typically do a hard check and too many of those will damage your credit score.  Worth mentioning here is that one of the bits of information that Credit Karma provides, is the ability to show you how many hard checks have been made against you.</p>
<p><strong>The Bad</strong></p>
<p>There&#8217;s not much negative I can say about Credit Karma except that you don&#8217;t get specifics about what is knocking your score down, it showed that I have an auto loan but it doesn&#8217;t tell you who the loan is with.. so if there were some bad stuff on there I wouldn&#8217;t know where to go to correct it. With that said, Credit Karma is still immensely useful as an indicator that something is wrong..  When you sign up, you have the option to have a monthly e-mail go to you that will tell you your score..  If you notice a signifigant drop, you can take further action by going to <a href="http://www.myfico.com">www.myfico.com</a> directly and pulling your credit information up for a fee.  <a href="http://www.myfico.com">www.myfico.com</a> is as good as it gets for getting your credit score in detail because these are the people who created the algorythm that your score is based on.</p>
<p><strong>Con or not?</strong></p>
<p>I can&#8217;t say for sure, I can only say that nothing has happened to me.. they don&#8217;t ask for payment and I&#8217;ve not receieved any junk mail! the community seems helpful and the information / tools are useful .. I would recommend it to any of my friends!</p>
<p><strong>Bottom Line:</strong> I strongly recommend Credit Karma ( <a href="http://www.creditkarma.com">www.creditkarma.com</a> ) .. as with anything like this, always do your own research before handing over your personal information. I&#8217;m not responsible for you, only you are =)</p>
<h4>Incoming search terms:</h4><ul><li>credit karma scam</li><li>creditkarma com review</li><li>credit karma reviews 2010</li><li>creditkarma com scam</li><li>CreditKarma com reviews</li><li>credit karma alternative</li><li>credit karma review 2010</li><li>is credit karma safe</li><li>Search creditkarma</li><li>credit score what if simulator</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.069 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/11/03/credit-karma-my-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>i675 Crash Update &#8211; Brennan Eden Out of ICU, Doesn&#8217;t Remember Accident.</title>
		<link>http://blog.oneduality.com/2010/09/01/i675-crash-update-brennan-eden-out-of-icu-doesnt-remember-accident/</link>
		<comments>http://blog.oneduality.com/2010/09/01/i675-crash-update-brennan-eden-out-of-icu-doesnt-remember-accident/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 15:01:18 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[News and Events]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1116</guid>
		<description><![CDATA[Update: Police found no evidence of drugs or alcohol in Brennan&#8217;s Body ( blood results from the morning he was taken to the ICU ) Update: Brennan commented ( see below ) and the post has been updated to it&#8217;s final state. Sunday night I was informed by someone who&#8217;s a friend of the Eden [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update: </strong><a href="http://www.daytondailynews.com/news/dayton-news/no-drugs-alcohol-in-i-675-crash-victims-system-police-say-892649.html" target="_blank">Police found no evidence of drugs or alcohol in Brennan&#8217;s Body</a> ( blood results from the morning he was taken to the ICU )</p>
<p><strong>Update:</strong> Brennan commented ( see below ) and the post has been updated to it&#8217;s final state.</p>
<p>Sunday night I was informed by someone who&#8217;s a friend of the Eden family that Brennan was released from the intensive care unit at Miami Valley Hospital.  This doesn&#8217;t mean that he will be released from care any time soon as I imagine his injuries are significant. What I do know at this point is that he has no brain damage which is a very excellent sign despite the fact that he doesn&#8217;t remember anything about the accident at this time.</p>
<p>Memory loss after such an extreme accident isn&#8217;t uncommon, Brennan may recover some memory from the accident, but the chances of him actually remembering enough detail to shed light on what happened seconds before going off the road are slim to none in my honest opinion.</p>
<p>There have been numerous theories thrown around about the cause of this near tragedy, such as:</p>
<ol>
<li>Brennan was attempting to commit suicide &#8211; <strong>False</strong></li>
<li>Brennan&#8217;s accelerator was stuck &#8211; <strong>False</strong></li>
<li>Brennan fell asleep <strong>- I accept this as what happened</strong></li>
<li>Brennan was drunk, high or both &#8211; <strong>Officially disproven ( see update above )</strong></li>
<li>Brennan thought he could out run the police &#8211; <strong>False</strong></li>
<li>Brennan was being chased by police  &#8211; <strong>Officially disproven ( I was there )</strong></li>
</ol>
<p>At the end of the day, none of this can be proven as true without getting into Brennan&#8217;s head and without his memory of the events, I don&#8217;t think any of these theories will be proven or dis-proven any time soon.</p>
<p>So what do we know? all we know are the facts and the facts don&#8217;t really support a lot of the theories that have been tossed around..</p>
<p>Am I angry with Brennan? not at all .. not in the very least. I wish him a quick recovery, I wish the best for his friends and Family .. and I hope that one day we can all truly understand what happened.. but most importantly, I hope Brennan realizes just how lucky he really is.. he not only survived the horrific crash, he survived being ejected hundreds of feet.. AND .. came within 10 feet from me running him over.. so he should also thank the manufacturer of my breaking system :)</p>
<h4>Incoming search terms:</h4><ul><li>brennan eden</li><li>brennan eden update</li><li>brennan eden crash</li><li>Brennan Eden INJURIES</li><li>Brennan S Eden</li><li>brennen eden</li><li>brennan edan</li><li>brennan s Eden update</li><li>i675 crash</li><li>brennan s eden dies</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 0.473 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/09/01/i675-crash-update-brennan-eden-out-of-icu-doesnt-remember-accident/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Software Review: Tweak Me!  Portable tweaks for all modern versions of Windows</title>
		<link>http://blog.oneduality.com/2010/08/19/software-review-tweak-me-portable-tweaks-for-all-modern-versions-of-windows/</link>
		<comments>http://blog.oneduality.com/2010/08/19/software-review-tweak-me-portable-tweaks-for-all-modern-versions-of-windows/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 17:28:54 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1079</guid>
		<description><![CDATA[My computer at work is in need of a memory upgrade and there&#8217;s just some general sluggishness going on, so when I was browsing lifehacker.com I came across a useful piece of software called Tweak Me! This software is similar to many other windows tweaking tools out there except that it&#8217;s portable and can be [...]]]></description>
			<content:encoded><![CDATA[<p>My computer at work is in need of a memory upgrade and there&#8217;s just some general sluggishness going on, so when I was browsing lifehacker.com I came across a useful piece of software called <a href="http://www.wecode.biz/p/tweak-me.html">Tweak Me!</a> This software is similar to many other windows tweaking tools out there except that it&#8217;s portable and can be carried around on your flash drive.</p>
<p>If you have a windows based machine and you&#8217;re looking for a small, clean, portable tweaking tool then this is your lucky day :) here is some additional information from the <a href="http://blog.oneduality.com/wp-admin/post-new.php">author&#8217;s web site.</a></p>
<p><strong>Key Features:</strong></p>
<ul>
<li><strong>Supports Windows XP, Windows Vista  and Windows 7 </strong></li>
<li><strong>Creates System Restore Points for maximum  security</strong></li>
<li><strong>172 tweaks</strong> which greatly improve your  system&#8217;s<strong> performance and stability</strong></li>
<li><strong>Easy to use, </strong>different  colors show the tweaks&#8217; recommendations</li>
<li><strong>Cleaner module</strong> which helps you to keep your system clean</li>
<li><strong>Portable, clean  application!</strong> (for more information see requirements)</li>
</ul>
<p><strong style="color: #38761d;"></strong><strong>Example Tweaks:</strong></p>
<ul>
<li>Disable<strong> User Account Control</strong> (UAC)</li>
<li>Disable<strong> Windows Defender</strong></li>
<li>Disable  <strong>Error Reporting</strong></li>
<li>Disable<strong> Search Indexing</strong></li>
<li>Tweak  <strong>Internet Explorer, Windows Media Player, Windows Update, Security  Center</strong></li>
<li>Enable <strong>Aero</strong> (also <strong>on Home Basic  Editions</strong> but without     transparency)</li>
</ul>
<p>Overall I&#8217;d say on a scale of 1-10 this gets a 9 for me!  Way to go guys</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">Key Features:</p>
<p>* Supports Windows XP, Windows Vista and Windows 7<br />
* Creates System Restore Points for maximum security<br />
* 172 tweaks which greatly improve your system&#8217;s performance and stability<br />
* Easy to use, different colors show the tweaks&#8217; recommendations<br />
* Cleaner module which helps you to keep your system clean<br />
* Portable, clean application! (for more information see requirements)</p>
<p>Examples of Tweaks:</p>
<p>* Disable User Account Control (UAC)<br />
* Disable Windows Defender<br />
* Disable Error Reporting<br />
* Disable Search Indexing<br />
* Tweak Internet Explorer, Windows Media Player, Windows Update, Security Center<br />
* Enable Aero (also on Home Basic Editions but without transparency):</p>
</div>
<h4>Incoming search terms:</h4><ul><li>tweak me review</li><li>tweak me! review</li><li>tweak me portable</li><li>tweakme portable</li><li>tweakme review</li><li>portable tweak</li><li>tweekuii portable</li><li>what is Enable Aero in Home Basic Editions but without transparency</li><li>windows 7 tweak me portable</li><li>portable tweaking</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 0.435 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/08/19/software-review-tweak-me-portable-tweaks-for-all-modern-versions-of-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove DRM from Amazon Unbox and how to save Netflix On Demand movies</title>
		<link>http://blog.oneduality.com/2010/08/17/how-to-remove-drm-from-amazon-unbox-and-how-to-save-netflix-on-demand-movies/</link>
		<comments>http://blog.oneduality.com/2010/08/17/how-to-remove-drm-from-amazon-unbox-and-how-to-save-netflix-on-demand-movies/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 12:22:51 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[The Dark Side]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1074</guid>
		<description><![CDATA[Last year ( or the year before, hell I don&#8217;t remember now ) I wrote up an article telling you how to remove DRM from Amazon Unbox videos. Well by now this method doesn&#8217;t work out because Amazon forces up to update to the newer versions of media player which can&#8217;t be exploited in the [...]]]></description>
			<content:encoded><![CDATA[<p>Last year ( or the year before, hell I don&#8217;t remember now ) I wrote up an article telling you how to remove DRM from Amazon Unbox videos. Well by now this method doesn&#8217;t work out because Amazon forces up to update to the newer versions of media player which can&#8217;t be exploited in the same fashion. No need to worry though, you do have alternatives.. as long as you have some time to spare.. READ ON!</p>
<p><span id="more-1074"></span></p>
<p>The old method required you to run some software that would physically remove the encryption from your DRM&#8217;d video that you purchased, and as a bonus, it also worked on rented copies from what I hear.. Microsoft has closed this hole and if another has been found it&#8217;s been kept pretty quiet.. so what are your alternatives? Well it goes back to the days of old when we had two VHS units and could press play on one and record on the other to effectively copy the material. Fortunately for you, it&#8217;s not quite that cumbersome.</p>
<p>So what are the options? Stream converters .. This family of software will automate the process of playing the video in iTunes or Windows Media Player and save the results out to a DRM free version. This is not a loss-less conversion but you&#8217;d be hard pressed to notice the difference in most cases.</p>
<ul>
<li><a href="http://www.aimersoft.com/drm-media-converter.html" target="_blank">Aimersoft DRM Media Converter</a> &#8211; $35.95</li>
<li><a href="http://tunebite.com/en/audials/converter-file-format-unprotect-drm-copy-protection-audio-video-recorder-movie-music-audiobook-mp3-wma-wmv-mp4/start.html" target="_blank">TuneBite 7</a> &#8211; $39.90</li>
</ul>
<p>There may be free alternatives out there but the nice thing about purchasing one of these is that you get updates and support.</p>
<p>Now up top there I mentioned Netflix, which to my knowledge can only be captured with a screen capture utility .. So can the iTunes and Amazon Unbox videos for that matter, but there&#8217;s the nagging issue in the case of the latter two formats. Most screen capture utilities cannot capture directx video! you&#8217;ll get the audio and a big black screen in your output.</p>
<ul>
<li><a href="http://www.wmrecorder.com/" target="_blank">WM Capture</a> &#8211; $39.95</li>
<li><a href="http://www.wmrecorder.com/" target="_blank">WM Recorder</a> &#8211; $70.00</li>
</ul>
<p>The difference between Capture and Recorder are features, take a look at them both and see if there&#8217;s an advantage to going with the Recorder package, the Capture package may in fact solve all of your needs for every format out there.</p>
<p>Now once again, I&#8217;m not saying there are free alternatives, you can head over <a href="http://www.canadiancontent.net/tech/freeware/Video+Capture+Programs/" target="_blank">here</a> and skim some freeware ( and not freeware ) choices, Just be sure you know what you&#8217;re looking for.</p>
<p>Good Luck! enjoy at your own risk :) this is purely for educational purposes right? right!</p>
<h4>Incoming search terms:</h4><ul><li>"remove amazon movie drm"</li><li>amazon unbox drm</li><li>remove amazon unbox drm</li><li>wm recorder Amazon</li><li>remove drm from amazon unbox</li><li>remove drm amazon unbox</li><li>remove unbox drm</li><li>amazon unbox remove drm</li><li>how to remove drm from amazon unbox</li><li>remove drm from unbox</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.11 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/08/17/how-to-remove-drm-from-amazon-unbox-and-how-to-save-netflix-on-demand-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reduce your PPC adwords costs!</title>
		<link>http://blog.oneduality.com/2010/08/16/reduce-your-ppc-adwords-costs/</link>
		<comments>http://blog.oneduality.com/2010/08/16/reduce-your-ppc-adwords-costs/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 23:56:18 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Nerd Stuff]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1071</guid>
		<description><![CDATA[The most common mistake in affiliate marketing today is not using Google AdWords pay per click to drive traffic to their sites directly affiliated with this method is not only costly but also traffic to AdWords pay per click no convert well. Google does not like people to use pay per click services to send [...]]]></description>
			<content:encoded><![CDATA[<p>The most common mistake in affiliate marketing today is not using Google AdWords pay per click to drive traffic to their sites directly affiliated with this method is not only costly but also traffic to AdWords pay per click no convert well.<br />
<span id="more-1071"></span></p>
<p>Google does not like people to use pay per click services to send their traffic to a sales page, the goal of Google in the information content priovide its researchers not a lot of ads or sales pages and the main reason Google to increase the price of AdWords pay per click then the best solution to reduce the cost of pay per click AdWords blog is a question of traffic you receive from AdWords pay per click and the site of its subsidiary</p>
<p>Google will give you a better score when it sends traffic to your blog before driving affiliate sites, blogs and website Google love pre-sale. You can write a keyword rich content of the blog, or a quick glance you&#39;re affiliate marketing, and from there you can divert the traffic to your blog to affiliate sites are also sites called &quot;money</p>
<p><strong>Remember the contents of your score depends on these factors: </strong></p>
<p>the title of your post<br />
Domain name of your blog should contain keywords<br />
The content of your blog must contain keywords<br />
And the text that redirects to your affiliate link</p>
<p>Basically, the next time you want to promote Clickbank affiliate products as in the first place to blog and write a complete short content keyword rich content that does not have to be just a long article article brief summary will do well, remember to use keywords in the content of your article summary and does not use words like &quot;click here&quot; instead of making its content anchor text keywords such as &quot;guide on how to buy new cars&quot; Then you will use and AdWords pay per click to drive traffic to your blog, you will notice that when the same keywords you used for your Google AdWords account is the same password that you use in your blog title, the content of their articles and link text, you can reduce your AdWords pay per click prices</p>
<h4>Incoming search terms:</h4><ul><li>reducing adwords costs</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.234 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/08/16/reduce-your-ppc-adwords-costs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The difference between PPC and SEO</title>
		<link>http://blog.oneduality.com/2010/08/16/the-difference-between-ppc-and-seo/</link>
		<comments>http://blog.oneduality.com/2010/08/16/the-difference-between-ppc-and-seo/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 23:45:53 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1069</guid>
		<description><![CDATA[PPC and SEO methods are quite different. While previous work on a bidding system, or pay for keywords related to your product or service in order to reach the top rankings in search engines. Search engine optimization, however, is based on the keyword search without pay, and the popularity of building links within and outside [...]]]></description>
			<content:encoded><![CDATA[<p>PPC and SEO methods are quite different. While previous work on a bidding system, or pay for keywords related to your product or service in order to reach the top rankings in search engines. Search engine optimization, however, is based on the keyword search without pay, and the popularity of building links within and outside its website. By optimizing a site through the integration of detailed research on the most important phrases, one is able to lead their ranks the pages of the site.<br />
<span id="more-1069"></span></p>
<p>Although the latter will produce a higher return on investment because prices are relatively cheap and the volume of traffic clicking on natural search results, pay per click advertising is able to offer a boost Now your marketing campaign. Unlike SEO traffic, which often have a good idea of what they seek is able to PPC programs attract clients who were not looking for a specific product.</p>
<p>As SEO techniques can take a while to kick in, paid advertising is the ideal candidate to fill the time between the opening campaign and SEO underperformance.</p>
<p>Another aspect to consider is the life of these two strategies. Although the effects of a PPC campaign will fall as soon as the cash starts flowing, SEO requires fundamental changes to your site and how the site is updated and therefore a long term investment. Optimizing a website in search engine analysis as a basis from which the administrator can build on and continue to demonstrate significantly improved traffic and search engines.</p>
<p>It is advisable in light of this information, why invest in an SEO program for improvements, planning for long-term success of a website. However, if you have the budget and seek to improve the performance of your site until the advantages of a PPC campaign is to take advantage of.</p>
<p>Return on investment is the main factor. Although the PPC produced immediate results with profit margins less supply problems are not as great as those that can be achieved by implementing a change in site SEO experts.</p>
<h4>Incoming search terms:</h4><ul><li>wordpress blogs</li></ul><!-- SEO SearchTerms Tagging 2 plugin took -0.23 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/08/16/the-difference-between-ppc-and-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing fantastic ads!</title>
		<link>http://blog.oneduality.com/2010/08/16/writing-fantastic-ads/</link>
		<comments>http://blog.oneduality.com/2010/08/16/writing-fantastic-ads/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 23:39:24 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Nerd Stuff]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1066</guid>
		<description><![CDATA[You know how to write effective ads? seriously fantastic advertising campaigns, which would make the phone call about? It is a science and an art magazine occasions, and have the courage to declare that a small amount of luck also. The truth is, if you want to learn how to invent fantastic ads that make [...]]]></description>
			<content:encoded><![CDATA[<p>You know how to write effective ads? seriously fantastic advertising campaigns, which would make the phone call about? It is a science and an art magazine occasions, and have the courage to declare that a small amount of luck also. The truth is, if you want to learn how to invent fantastic ads that make us to be involved in your product or service, you must be aware of the release times and the keys to success. The most powerful force in the world of advertising copy writers usually assembled an incredibly talented, they know more how you buy a product that you need to change yourself! This is not a lie, it is through newspaper advertisements and magazine ads generally designed to help you think in a certain way, in some cases, even unconsciously! Imagine that!<br />
<span id="more-1066"></span><br />
Magazine ad writing techniques are numerous, but get one of these experts to offer them to you would be hard, unless you have a connection with them. But eventually a few of these secrets are disclosed to the public allows everyone to enter. It is too dangerous to allow anyone knows why you have been trawling the Internet hunting of these gems of knowledge if you want good results from your advertising campaigns magazine.</p>
<p>Only by employing more of these insider tricks of the trade magazine ads, you can literally run your sales soar. This is the hardest part for many small businesses and entrepreneurs because they believe they have the potential for their own ads, then wonder why they do not succeed, shortly after the addition of many ads in a newspaper or magazine. People who know how to compose a great magazine advertising demand is incredibly hot these days, especially with respect to this economic depression. More and more companies hoping to advertise and increase sales and profits, they must implement the advertising content that is interesting and makes consumers want to buy their products or services. The vast majority of small businesses have totally no idea how to generate good publicity for the killer, so if you have any decent writer print so it&#39;s really a truly rewarding field, you must help .</p>
<p>The moment you find out the best way to produce awesome magazine and newspaper advertisements you&#8217;ll begin to see that you can dominate a majority of these localized platforms and sit back and watch the money pour into your business. It&#8217;s because of this way that anyone will be able to create real and long lasting changes for city business owners who see their own income and net income rise whilst earning a good living for you and your family. Just as much as you might hear that newspaper and magazine advertisement are gone, it is simply far from the truth &#8211; only the best survive within this hugely demanding industry by producing fantastic advertisement copy again and again.</p>
<h4>Incoming search terms:</h4><ul><li>Best Newspaper Advertising Campaigns</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 0.252 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/08/16/writing-fantastic-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advantages of PHP</title>
		<link>http://blog.oneduality.com/2010/08/16/advantages-of-php/</link>
		<comments>http://blog.oneduality.com/2010/08/16/advantages-of-php/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 23:30:20 +0000</pubDate>
		<dc:creator>Lonnie</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.oneduality.com/?p=1060</guid>
		<description><![CDATA[PHP Hypertext Processor is a server-side internet computer computer programming language that may be embedded into hypertext markup language. PHP usages are widespread, and may include any kind of server functionality that accepts user&#8217;s input and shows or alters the input. PHP may execute on both UNIX operating system and Windows servers, which makes it [...]]]></description>
			<content:encoded><![CDATA[<p>PHP Hypertext Processor is a server-side internet computer computer programming language that may be embedded into hypertext markup language. PHP usages are widespread, and may include any kind of server functionality that accepts user&#8217;s input and shows or alters the input. PHP may execute on both UNIX operating system and Windows servers, which makes it handier than Windows (ASP). This scripting language is maturing daily. PHP5 is a fully object oriented programming language and its platform independence and speed on UNIX server helps to build big and complex World Wide Web applications.</p>
<p><span id="more-1060"></span><br />
PHP is an especially effective programing language because it allows advanced computer programing  and is easy to mix with web pages. Another advantage of PHP is that the programming language interfaces very easily with MySQL, a popular computer database. MYSQL is a commercial class database application that is made available free under the Open Source to anyone. Another plus of PHP is that it is Open Source Code. The actual computer code that is PHP is available to the public free of charge, while the source code for products such as ASP is not. Therefore PHP is very affordable. Because PHP is open source, there&#8217;s a big community of PHP coders that help one another with code. This means PHP programmers can rely on one another by using reusable pieces of code called functions and classes besides constantly reinventing the wheel. This can dramatically cut back on production time.</p>
<p>PHP is based on C++ language and the syntax used in PHP is quite similar to C/C++. C/C++ is still considered the best programing language by many programmers and people who love this language would surely feel comfier with the syntax of PHP.</p>
<p>PHP and MySQL are excellent choice for webmasters anticipating automate their sites. Now search spiders &#8220;see&#8221; all the content on a PHP page, as is way it is viewed in a browser. The creation of a php-shopping cart is surprisingly simple and when finished precision it could translate into a extremely effective and universally accepted php-shopping cart.</p>
<h4>Incoming search terms:</h4><ul><li>open source music servers linux</li></ul><!-- SEO SearchTerms Tagging 2 plugin took 0.025 ms -->]]></content:encoded>
			<wfw:commentRss>http://blog.oneduality.com/2010/08/16/advantages-of-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

