<?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>The Real Don Page</title>
	<atom:link href="http://www.pagedon.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pagedon.com</link>
	<description>Life would be easier if we had the source code.</description>
	<lastBuildDate>Mon, 20 May 2013 02:16:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>OpenLayers.Control.SelectFeature on Multiple Vector Layers Breaks setOpacity</title>
		<link>http://www.pagedon.com/openlayerscontrolselectfeature-multiple-vector-layers-breaks-setopacity/my_programming/</link>
		<comments>http://www.pagedon.com/openlayerscontrolselectfeature-multiple-vector-layers-breaks-setopacity/my_programming/#comments</comments>
		<pubDate>Sat, 18 May 2013 12:14:32 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[OpenLayers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bug]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=901</guid>
		<description><![CDATA[<p>If you add multiple vector Layers to a select control in OpenLayers, layer.setOpacity() no longer works. So here is a workaround I found useful.<div class="read-more"><a href="http://www.pagedon.com/openlayerscontrolselectfeature-multiple-vector-layers-breaks-setopacity/my_programming/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/openlayerscontrolselectfeature-multiple-vector-layers-breaks-setopacity/my_programming/">OpenLayers.Control.SelectFeature on Multiple Vector Layers Breaks setOpacity</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>If you add multiple vector Layers to a select control in OpenLayers, layer.setOpacity() no longer works. So here is a workaround I found useful.<br />
Just deactivate the select control, set the opacity on the layer, and reacitvate the select control.</p>
<div class="codecolorer-container javascript geshi codecolorer-noborder" 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 /></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: #003366; font-weight: bold;">var</span> selectControl <span style="color: #339933;">=</span> <br />
<span style="color: #003366; font-weight: bold;">new</span> OpenLayers.<span style="color: #660066;">Control</span>.<span style="color: #660066;">SelectFeature</span><span style="color: #009900;">(</span>vectorLayers<span style="color: #339933;">,</span> <span style="color: #009900;">{</span><br />
    hover<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span><br />
    highlightOnly<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span><br />
    toggle<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><br />
<span style="color: #009900;">}</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
<br />
selectControl.<span style="color: #660066;">deactivate</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
vectorLayer.<span style="color: #660066;">setOpacity</span><span style="color: #009900;">(</span>.5<span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
selectControl.<span style="color: #660066;">activate</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>This bug took me a while to find so I thought others might find it useful.</p>
<p>The post <a href="http://www.pagedon.com/openlayerscontrolselectfeature-multiple-vector-layers-breaks-setopacity/my_programming/">OpenLayers.Control.SelectFeature on Multiple Vector Layers Breaks setOpacity</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/openlayerscontrolselectfeature-multiple-vector-layers-breaks-setopacity/my_programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS 3.4 DomQuery Namespaces Hotfix</title>
		<link>http://www.pagedon.com/extjs-34-domquery-namespaces-hotfix/my_programming/</link>
		<comments>http://www.pagedon.com/extjs-34-domquery-namespaces-hotfix/my_programming/#comments</comments>
		<pubDate>Sat, 18 May 2013 04:15:07 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[ExtJS3.4]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=886</guid>
		<description><![CDATA[<p>You may have noticed that in ExtJS 3.4 you can't use namespaces in your Ext.dataXmlReader because DomQuery doesn't support them until ExtJS 4. Find out how you can with a hotfix.<div class="read-more"><a href="http://www.pagedon.com/extjs-34-domquery-namespaces-hotfix/my_programming/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/extjs-34-domquery-namespaces-hotfix/my_programming/">ExtJS 3.4 DomQuery Namespaces Hotfix</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>You may have noticed that in ExtJS 3.4 that you can’t use namespaces in your <a href="http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.data.XmlReader" target="_blank">Ext.dataXmlReader</a>.<br />
So a xml reader defined like the example below does not work with the following xml:</p>
<div class="codecolorer-container javascript geshi" 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 /></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: #003366; font-weight: bold;">var</span> Employee <span style="color: #339933;">=</span> Ext.<span style="color: #660066;">data</span>.<span style="color: #660066;">Record</span>.<span style="color: #660066;">create</span><span style="color: #009900;">(</span><span style="color: #009900;">[</span><br />
   <span style="color: #009900;">{</span><span style="color: #000066;">name</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">‘name’</span><span style="color: #339933;">,</span> mapping<span style="color: #339933;">:</span> <span style="color: #3366CC;">‘gml:name’</span><span style="color: #009900;">}</span><span style="color: #339933;">,</span>     <br />
   <span style="color: #009900;">{</span><span style="color: #000066;">name</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">‘gml:occupation’</span><span style="color: #009900;">}</span>                 <br />
<span style="color: #009900;">]</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
<span style="color: #003366; font-weight: bold;">var</span> myReader <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Ext.<span style="color: #660066;">data</span>.<span style="color: #660066;">XmlReader</span><span style="color: #009900;">(</span><span style="color: #009900;">{</span><br />
   record<span style="color: #339933;">:</span> <span style="color: #3366CC;">“gml|row”</span> <span style="color: #006600; font-style: italic;">// The repeated element with gml namespace (gml:row)</span><br />
<span style="color: #009900;">}</span><span style="color: #339933;">,</span> Employee<span style="color: #009900;">)</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
<p>The above should consume an xml file defined like so:</p>
<div class="codecolorer-container xml geshi" 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="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">“1.0″</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">“UTF-8″</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;dataset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;gml:row<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;gml:name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Bill<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/gml:name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;gml:occupation<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Gardener<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/gml:occupation<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/gml:row<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;gml:row<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;gml:name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Ben<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/gml:name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;gml:occupation<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Horticulturalist<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/gml:occupation<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
 <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/gml:row<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/dataset<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></td></tr></tbody></table></div>
<p>But it doesn’t…<br />
That is because ExtJS 3.4 <a href="http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.DomQuery" target="_blank">DomQuery</a> does not support namespaces. They fixed this problem in 4 but those of you still using the 3.4 framework might find my hotfix useful. If just interested in using the files themselves I have attached them at the bottom of this post. Here are the changes I made:</p>
<p>Changed:</p>
<div class="codecolorer-container javascript geshi" 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 /></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: #006600; font-style: italic;">// tagTokenRe = /^(#)?([\w\-\*]+)/,  // Removed</span><br />
tagTokenRe <span style="color: #339933;">=</span> <span style="color: #009966; font-style: italic;">/^(#)?([\w\-\*\|\\]+)/</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// Added: allows vertical bars to be included</span><br />
supportsColonNsSeparator<span style="color: #339933;">,</span>            <span style="color: #006600; font-style: italic;">// Added</span></div></td></tr></tbody></table></div>
<p>Then Changed:</p>
<div class="codecolorer-container javascript geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:750px;"><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 />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<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: #006600; font-style: italic;">//while(!(modeMatch = path.match(modeRe))){</span><br />
<span style="color: #006600; font-style: italic;">// var matched = false;</span><br />
<span style="color: #006600; font-style: italic;">// for(var j = 0; j &lt; matchersLn; j++){</span><br />
<span style="color: #006600; font-style: italic;">//    var t = matchers[j];</span><br />
<span style="color: #006600; font-style: italic;">//    var m = path.match(t.re);</span><br />
<span style="color: #006600; font-style: italic;">//    if(m){</span><br />
<span style="color: #006600; font-style: italic;">//       fn[fn.length] = t.select.replace(tplRe, function(x, i){</span><br />
<span style="color: #006600; font-style: italic;">//return m[i];</span><br />
<span style="color: #006600; font-style: italic;">//});</span><br />
<span style="color: #006600; font-style: italic;">//       path = path.replace(m[0], “”);</span><br />
<span style="color: #006600; font-style: italic;">//       matched = true;</span><br />
<span style="color: #006600; font-style: italic;">//       break;</span><br />
<span style="color: #006600; font-style: italic;">//    }</span><br />
<span style="color: #006600; font-style: italic;">// }  </span><br />
<span style="color: #006600; font-style: italic;">// if(!matched){</span><br />
<span style="color: #006600; font-style: italic;">//    throw ‘Error parsing selector, parsing failed at “‘ + path + ‘“‘;</span><br />
<span style="color: #006600; font-style: italic;">// }</span><br />
<span style="color: #006600; font-style: italic;">//}</span><br />
<span style="color: #006600; font-style: italic;">//if(modeMatch[1]){</span><br />
<span style="color: #006600; font-style: italic;">// fn[fn.length] = ‘mode=“‘+modeMatch[1].replace(trimRe, “”)+’”;’;</span><br />
<span style="color: #006600; font-style: italic;">// path = path.replace(modeMatch[1], “”);</span><br />
<span style="color: #006600; font-style: italic;">//}</span><br />
<span style="color: #000066; font-weight: bold;">while</span> <span style="color: #009900;">(</span><span style="color: #339933;">!</span><span style="color: #009900;">(</span>modeMatch <span style="color: #339933;">=</span> path.<span style="color: #660066;">match</span><span style="color: #009900;">(</span>modeRe<span style="color: #009900;">)</span><span style="color: #009900;">)</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span><br />
   <span style="color: #003366; font-weight: bold;">var</span> matched <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span><br />
   <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">(</span><span style="color: #003366; font-weight: bold;">var</span> j <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> j <span style="color: #339933;">&lt;</span> matchersLn<span style="color: #339933;">;</span> j<span style="color: #339933;">++</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span><br />
      <span style="color: #003366; font-weight: bold;">var</span> t <span style="color: #339933;">=</span> matchers<span style="color: #009900;">[</span>j<span style="color: #009900;">]</span><span style="color: #339933;">;</span><br />
      <span style="color: #003366; font-weight: bold;">var</span> m <span style="color: #339933;">=</span> path.<span style="color: #660066;">match</span><span style="color: #009900;">(</span>t.<span style="color: #660066;">re</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
      <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">(</span>m<span style="color: #009900;">)</span> <span style="color: #009900;">{</span><br />
         fn<span style="color: #009900;">[</span>fn.<span style="color: #660066;">length</span><span style="color: #009900;">]</span> <span style="color: #339933;">=</span> t.<span style="color: #660066;">select</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">(</span>tplRe<span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">(</span>x<span style="color: #339933;">,</span> i<span style="color: #009900;">)</span> <span style="color: #009900;">{</span><br />
            <span style="color: #000066; font-weight: bold;">return</span> m<span style="color: #009900;">[</span>i<span style="color: #009900;">]</span><span style="color: #339933;">;</span><br />
         <span style="color: #009900;">}</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
         path <span style="color: #339933;">=</span> path.<span style="color: #660066;">replace</span><span style="color: #009900;">(</span>m<span style="color: #009900;">[</span><span style="color: #CC0000;">0</span><span style="color: #009900;">]</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">“”</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
         matched <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span><br />
         <span style="color: #000066; font-weight: bold;">break</span><span style="color: #339933;">;</span><br />
      <span style="color: #009900;">}</span><br />
   <span style="color: #009900;">}</span><br />
<br />
   <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">(</span><span style="color: #339933;">!</span>matched<span style="color: #009900;">)</span> <span style="color: #009900;">{</span><br />
      <span style="color: #000066; font-weight: bold;">throw</span> <span style="color: #3366CC;">‘Error parsing selector, parsing failed at “‘</span> <span style="color: #339933;">+</span> path <span style="color: #339933;">+</span> <span style="color: #3366CC;">‘“‘</span><span style="color: #339933;">;</span><br />
   <span style="color: #009900;">}</span><br />
<span style="color: #009900;">}</span><br />
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">(</span>modeMatch<span style="color: #009900;">[</span><span style="color: #CC0000;">1</span><span style="color: #009900;">]</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span><br />
   fn<span style="color: #009900;">[</span>fn.<span style="color: #660066;">length</span><span style="color: #009900;">]</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">‘mode=“‘</span> <span style="color: #339933;">+</span> modeMatch<span style="color: #009900;">[</span><span style="color: #CC0000;">1</span><span style="color: #009900;">]</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">(</span>trimRe<span style="color: #339933;">,</span> <span style="color: #3366CC;">“”</span><span style="color: #009900;">)</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">’”;’</span><span style="color: #339933;">;</span><br />
   path <span style="color: #339933;">=</span> path.<span style="color: #660066;">replace</span><span style="color: #009900;">(</span>modeMatch<span style="color: #009900;">[</span><span style="color: #CC0000;">1</span><span style="color: #009900;">]</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">“”</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">}</span></div></td></tr></tbody></table></div>
<p>Hotfix:<br />
<a href="http://www.pagedon.com/wp-content/uploads/2013/05/ext-all-debug-namespaces.js">ext-all-debug-namespaces.js</a><br />
<a href="http://www.pagedon.com/wp-content/uploads/2013/05/ext-all-namespaces.js">ext-all-namespaces.js</a></p>
<p>The post <a href="http://www.pagedon.com/extjs-34-domquery-namespaces-hotfix/my_programming/">ExtJS 3.4 DomQuery Namespaces Hotfix</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/extjs-34-domquery-namespaces-hotfix/my_programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny Quotes From Presidential Debate</title>
		<link>http://www.pagedon.com/funny-quotes-presidential-debate/goodies/</link>
		<comments>http://www.pagedon.com/funny-quotes-presidential-debate/goodies/#comments</comments>
		<pubDate>Tue, 23 Oct 2012 04:05:52 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Goodies]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=871</guid>
		<description><![CDATA[<p>Some funny quotes I enjoyed from the debate. I am not trying to take a political stance here just funny stuff. PRESIDENT OBAMA: “On a whole range of issue, whether it’s the Middle East, Afghanistan, Iraq or Iran, you have been all<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.pagedon.com/funny-quotes-presidential-debate/goodies/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/funny-quotes-presidential-debate/goodies/">Funny Quotes From Presidential Debate</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Some funny quotes I enjoyed from the debate. I am not trying to take a political stance here just funny stuff.</p>
<p><strong>PRESIDENT OBAMA: </strong>“On a whole range of issue, whether it’s the <a href="http://inagist.com/search?q=Middle%20East" rel="nofollow" data-trackaction="TweetSearchClick" data-tracklabel="Middle East">Middle East</a>, Afghanistan, Iraq or Iran, you have been all over the map. ” — Obama</p>
<p><a href="http://www.pagedon.com/wp-content/uploads/2012/10/Capture.png"><img class="aligncenter size-medium wp-image-872" title="Middle East Map" src="http://www.pagedon.com/wp-content/uploads/2012/10/Capture-300x193.png" alt="Capture 300x193 Funny Quotes From Presidential Debate" width="300" height="193" /></a></p>
<p style="padding-left: 30px;">Last time I checked Afganistan, Iraq, and Iran are all in the middle east.</p>
<p><strong>MR. ROMNEY: </strong>“That’s the height of silliness. ” — Mitt</p>
<p style="padding-left: 30px;">Sounds like something Mary Poppins would say.</p>
<p><strong>MR. ROMNEY </strong>You’re wrong. You’re wrong, Mr. President.<br />
<strong>PRESIDENT OBAMA:</strong> I — no, I am not wrong.<br />
<strong>MR. ROMNEY:</strong> You’re wrong.<br />
<strong>PRESIDENT OBAMA:</strong> I am not wrong. And —<br />
<strong>MR. ROMNEY:</strong> People can look it up. You’re right.<br />
<strong>PRESIDENT OBAMA:</strong> People will look it up.<br />
<strong>MR. ROMNEY:</strong> Good.</p>
<p style="padding-left: 30px;">I’m glad they settled this argument. Lol.</p>
<p><strong>MR. ROMNEY:</strong> But I love teachers. But I want to get our private sector growing, and I know how to do it.<br />
<strong>MR. SCHIEFFER:</strong> I think we all love teachers.</p>
<p style="padding-left: 30px;">I don’t agree Mr. President. But I love diet coke.</p>
<p><strong>MR. ROMNEY:</strong> well, OK, is America going to be strong? And the answer is yes.</p>
<p style="padding-left: 30px;">Lets see what is the right answer again?</p>
<p><strong>PRESIDENT OBAMA: </strong>We had a tire case in which they were flooding us with cheap domestic tires — or — or — or cheap Chinese tires. And we put a stop to it and, as a consequence, saved jobs throughout America.</p>
<p style="padding-left: 30px;"><a href="http://www.pagedon.com/wp-content/uploads/2012/10/628x471.jpg"><img class="aligncenter size-medium wp-image-873" title="boyTirePile" src="http://www.pagedon.com/wp-content/uploads/2012/10/628x471-300x200.jpg" alt="628x471 300x200 Funny Quotes From Presidential Debate" width="300" height="200" /></a></p>
<p style="padding-left: 30px;">Thank goodness we got rid of those pesky Chinese cheap tires. They were really making it hard to get around.</p>
<p><strong>MR. ROMNEY:</strong> Well, first of all, I — I want to underscore the same point the president made…we will stand with Israel. <em>That’s number one</em>.</p>
<p><em>Number two</em>, with regards to Iran and the threat of Iran, there’s no question but that a nuclear Iran, a nuclear-capable Iran, is unacceptable to America…</p>
<p>Crippling sanctions were <em>number one</em>. And they do work…</p>
<p><em>Number two</em>, something I would add today is I would tighten those sanctions…</p>
<p><em>Secondly</em>, I’d take on diplomatic isolation efforts.</p>
<p style="padding-left: 30px;">Last time I checked 3 comes after 2.</p>
<p><strong>PRESIDENT OBAMA: </strong>Well, Governor, we also have fewer horses and bayonets — because the nature of our military’s changed. We have these things called aircraft carriers where planes land on them. We have these ships that go underwater, nuclear submarines.</p>
<p>And so the question is not a game of Battleship where we’re counting ships. It’s — it’s what are our capabilities.</p>
<p><a href="http://www.pagedon.com/wp-content/uploads/2012/10/personal-submarine.jpg"><img class="aligncenter size-medium wp-image-874" title="personal-submarine" src="http://www.pagedon.com/wp-content/uploads/2012/10/personal-submarine-300x216.jpg" alt="personal submarine 300x216 Funny Quotes From Presidential Debate" width="300" height="216" /></a></p>
<p style="padding-left: 30px;">I’m so glad we have submarines now! Thank you Obama!</p>
<p>The post <a href="http://www.pagedon.com/funny-quotes-presidential-debate/goodies/">Funny Quotes From Presidential Debate</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/funny-quotes-presidential-debate/goodies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedded C-Assembly Game Boy</title>
		<link>http://www.pagedon.com/embedded-c-assembly-game-boy/my_programming/</link>
		<comments>http://www.pagedon.com/embedded-c-assembly-game-boy/my_programming/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 04:14:11 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[game boy]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=859</guid>
		<description><![CDATA[<p>This was a project I worked on from the ground up. Built driver for the LCD and programmed my chip using a MSP430. Leave a comment if you are interested in the code used.</p><p>The post <a href="http://www.pagedon.com/embedded-c-assembly-game-boy/my_programming/">Embedded C-Assembly Game Boy</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This was a project I worked on from the ground up. Built driver for the LCD and programmed my chip using a MSP430. Leave a comment if you are interested in the code used.</p>
<iframe src="http://www.youtube.com/embed/oSV8cbQwVGM?version=3&amp;wmode=transparent" width="560" height="340" style="background-color:#000;display:block;margin-bottom:0;max-width:100%;" title="See the New Gameboy Extreme built using MSP430" frameborder="0" allowfullscreen></iframe><p style="font-size:11px;margin-top:0;"><a href="http://www.youtube.com/watch?v=oSV8cbQwVGM" target="_blank" title="Watch on YouTube">Watch this video on YouTube</a>.</p>
<p>The post <a href="http://www.pagedon.com/embedded-c-assembly-game-boy/my_programming/">Embedded C-Assembly Game Boy</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/embedded-c-assembly-game-boy/my_programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I uploaded a @YouTube video ht…</title>
		<link>http://www.pagedon.com/i-uploaded-a-youtube-video-ht/tweets/</link>
		<comments>http://www.pagedon.com/i-uploaded-a-youtube-video-ht/tweets/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 03:51:57 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/i-uploaded-a-youtube-video-ht/tweets/</guid>
		<description><![CDATA[<p>I uploaded a @YouTube video http://t.co/NsUJe9EV We Are Here To Learn — Are You Ready?</p><p>The post <a href="http://www.pagedon.com/i-uploaded-a-youtube-video-ht/tweets/">I uploaded a @YouTube video ht…</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I uploaded a @<a href="http://twitter.com/YouTube" class="aktt_username">YouTube</a> video <a href="http://t.co/NsUJe9EV" rel="nofollow">http://t.co/NsUJe9EV</a> We Are Here To Learn — Are You Ready? </p>
<p>The post <a href="http://www.pagedon.com/i-uploaded-a-youtube-video-ht/tweets/">I uploaded a @YouTube video ht…</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/i-uploaded-a-youtube-video-ht/tweets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merge Sort Example in C++</title>
		<link>http://www.pagedon.com/merge-sort/my_programming/</link>
		<comments>http://www.pagedon.com/merge-sort/my_programming/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 00:59:00 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[c++]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=850</guid>
		<description><![CDATA[<p>A merge sort is a O(n log n) sorting algorithm. I show in this example how to implement a merge sort in c++ using recursion. This algorithm is a divide &#038; conquer based algorithm.<div class="read-more"><a href="http://www.pagedon.com/merge-sort/my_programming/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/merge-sort/my_programming/">Merge Sort Example in C++</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A merge sort is a O(n log n) sorting algorithm. I show in this example how to implement a merge sort in c++ using recursion. This algorithm is a divide &amp; conquer based algorithm.</p>
<div class="codecolorer-container cpp geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:750px;"><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 />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br />81<br />82<br />83<br />84<br />85<br />86<br />87<br />88<br />89<br /></div></td><td><div class="cpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #ff0000; font-style: italic;">/*****************************************************************************<br />
* Merge Sort has O(nlogn) compute time. Splits the list into two sublists then<br />
* merges them back together sorting them<br />
*****************************************************************************/</span><br />
<span style="color: #0000ff;">void</span> mergeSort<span style="color: #008000;">(</span>list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>myList<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> listOne<span style="color: #008080;">;</span><br />
list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> listTwo<span style="color: #008080;">;</span><br />
<br />
<span style="color: #0000ff;">bool</span> sorted <span style="color: #000080;">=</span> <span style="color: #0000ff;">false</span><span style="color: #008080;">;</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span><span style="color: #000040;">!</span>sorted<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
split<span style="color: #008000;">(</span>myList, listOne, listTwo<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
<span style="color: #0000ff;">if</span> <span style="color: #008000;">(</span>listTwo.<span style="color: #007788;">size</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span> <span style="color: #000080;">==</span> <span style="color: #0000dd;">0</span><span style="color: #008000;">)</span><br />
sorted <span style="color: #000080;">=</span> <span style="color: #0000ff;">true</span><span style="color: #008080;">;</span><br />
merge<span style="color: #008000;">(</span>myList, listOne, listTwo<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #0000ff;">return</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<br />
<span style="color: #ff0000; font-style: italic;">/*****************************************************************************<br />
* Splits a list into 2 lists<br />
*****************************************************************************/</span><br />
<span style="color: #0000ff;">void</span> split<span style="color: #008000;">(</span>list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>myList, list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>listOne, list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>listTwo<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
<br />
listOne.<span style="color: #007788;">resize</span><span style="color: #008000;">(</span><span style="color: #0000dd;">0</span><span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
listTwo.<span style="color: #007788;">resize</span><span style="color: #008000;">(</span><span style="color: #0000dd;">0</span><span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
<br />
<span style="color: #666666;">//While not at end of list</span><br />
list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span><span style="color: #008080;">::</span><span style="color: #007788;">iterator</span> it <span style="color: #000080;">=</span> myList.<span style="color: #007788;">begin</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span>it <span style="color: #000040;">!</span><span style="color: #000080;">=</span> myList.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
<span style="color: #0000ff;">int</span> lastItem <span style="color: #000080;">=</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span>it <span style="color: #000040;">!</span><span style="color: #000080;">=</span> myList.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span> <span style="color: #000040;">&amp;&amp;</span> <span style="color: #000040;">*</span>it <span style="color: #000080;">&gt;=</span> lastItem<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
listOne.<span style="color: #007788;">push_back</span><span style="color: #008000;">(</span><span style="color: #000040;">*</span>it<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
lastItem <span style="color: #000080;">=</span> <span style="color: #000040;">*</span>it<span style="color: #008080;">;</span><br />
it<span style="color: #000040;">++</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<br />
lastItem <span style="color: #000080;">=</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span>it <span style="color: #000040;">!</span><span style="color: #000080;">=</span> myList.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span> <span style="color: #000040;">&amp;&amp;</span> <span style="color: #000040;">*</span>it <span style="color: #000080;">&gt;=</span> lastItem<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
listTwo.<span style="color: #007788;">push_back</span><span style="color: #008000;">(</span><span style="color: #000040;">*</span>it<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
lastItem <span style="color: #000080;">=</span> <span style="color: #000040;">*</span>it<span style="color: #008080;">;</span><br />
it<span style="color: #000040;">++</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #0000ff;">return</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<br />
<span style="color: #ff0000; font-style: italic;">/*****************************************************************************<br />
* Merges 2 lists taking the smaller number each time from both lists. Then<br />
* copies the remaining numbers over if there are any left<br />
*****************************************************************************/</span><br />
<span style="color: #0000ff;">void</span> merge<span style="color: #008000;">(</span>list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>merged, list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>listOne, list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span> <span style="color: #000040;">&amp;</span>listTwo<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
merged.<span style="color: #007788;">resize</span><span style="color: #008000;">(</span><span style="color: #0000dd;">0</span><span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span><span style="color: #008080;">::</span><span style="color: #007788;">iterator</span> itOne <span style="color: #000080;">=</span> listOne.<span style="color: #007788;">begin</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
list<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">int</span><span style="color: #000080;">&gt;</span><span style="color: #008080;">::</span><span style="color: #007788;">iterator</span> itTwo <span style="color: #000080;">=</span> listTwo.<span style="color: #007788;">begin</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span>itOne <span style="color: #000040;">!</span><span style="color: #000080;">=</span> listOne.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span> <span style="color: #000040;">||</span> itTwo <span style="color: #000040;">!</span><span style="color: #000080;">=</span> listTwo.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
<span style="color: #0000ff;">if</span> <span style="color: #008000;">(</span><span style="color: #000040;">*</span>itOne <span style="color: #000080;">&lt;</span> <span style="color: #000040;">*</span>itTwo<span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
merged.<span style="color: #007788;">push_back</span><span style="color: #008000;">(</span><span style="color: #000040;">*</span>itOne<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
itOne<span style="color: #000040;">++</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #0000ff;">else</span><br />
<span style="color: #008000;">{</span><br />
merged.<span style="color: #007788;">push_back</span><span style="color: #008000;">(</span><span style="color: #000040;">*</span>itTwo<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
itTwo<span style="color: #000040;">++</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #666666;">//Reached end of list One</span><br />
<span style="color: #0000ff;">if</span> <span style="color: #008000;">(</span>itOne <span style="color: #000080;">==</span> listOne.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008000;">)</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span>itTwo <span style="color: #000040;">!</span><span style="color: #000080;">=</span> listTwo.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
merged.<span style="color: #007788;">push_back</span><span style="color: #008000;">(</span><span style="color: #000040;">*</span>itTwo<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
itTwo<span style="color: #000040;">++</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #0000ff;">else</span> <span style="color: #666666;">//Reached end of list Two</span><br />
<span style="color: #0000ff;">while</span> <span style="color: #008000;">(</span>itOne <span style="color: #000040;">!</span><span style="color: #000080;">=</span> listOne.<span style="color: #007788;">end</span><span style="color: #008000;">(</span><span style="color: #008000;">)</span><span style="color: #008000;">)</span><br />
<span style="color: #008000;">{</span><br />
merged.<span style="color: #007788;">push_back</span><span style="color: #008000;">(</span><span style="color: #000040;">*</span>itOne<span style="color: #008000;">)</span><span style="color: #008080;">;</span><br />
itOne<span style="color: #000040;">++</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span><br />
<span style="color: #0000ff;">return</span><span style="color: #008080;">;</span><br />
<span style="color: #008000;">}</span></div></td></tr></tbody></table></div>
<p>Merge Sort Algorithm:</p>
<ol>
<li>Divide the unsorted list into <em>n</em> sublists until each list contains 1 element. If the list has 1 element it is sorted!</li>
<li>Repeatedly merge the sublists to produce new sublists until there is only 1 sublist remaining. The final list will be sorted!</li>
</ol>
<p><a href="http://www.pagedon.com/wp-content/uploads/2012/09/merge-sort-image1.gif"><img class="aligncenter size-medium wp-image-853" title="merge-sort-image" src="http://www.pagedon.com/wp-content/uploads/2012/09/merge-sort-image1-300x218.gif" alt="merge sort image1 300x218 Merge Sort Example in C++" width="300" height="218" /></a></p>
<p>The post <a href="http://www.pagedon.com/merge-sort/my_programming/">Merge Sort Example in C++</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/merge-sort/my_programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Electricity Stop Working Like In The Show Revolution?</title>
		<link>http://www.pagedon.com/electricity-stop-working-show-revolution/goodies/</link>
		<comments>http://www.pagedon.com/electricity-stop-working-show-revolution/goodies/#comments</comments>
		<pubDate>Wed, 19 Sep 2012 05:31:00 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Goodies]]></category>
		<category><![CDATA[NBC]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[TV Series]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=839</guid>
		<description><![CDATA[<p>While I am probably going to actually like this show alot because of the characters, I have a hard time just letting some things slide in this show that don't make sense.<div class="read-more"><a href="http://www.pagedon.com/electricity-stop-working-show-revolution/goodies/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/electricity-stop-working-show-revolution/goodies/">Can Electricity Stop Working Like In The Show Revolution?</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>For those looking for a quick answer to the question above: NO, unless you can explain the following.</p>
<p><a href="http://www.pagedon.com/wp-content/uploads/2012/09/images.jpg"><img class="aligncenter size-full wp-image-843" title="images" src="http://www.pagedon.com/wp-content/uploads/2012/09/images.jpg" alt="images Can Electricity Stop Working Like In The Show Revolution?" width="300" height="168" /></a></p>
<p>While I am probably going to actually like this show alot because of the characters, I have a hard time just letting some things slide in this show that don’t make sense. Those of you that don’t know, <strong>Revolution</strong> is a new <strong>TV Series</strong> on NBC. It is based upon the idea that electricity one day, stopped working. That’s right. The electricity just turned off. Not just the electricity to your house, but anything that runs on power.</p>
<p>I know what your asking. So wait, the power went out and batteries stopped working and turbines and anything like it? Lets go back to chemistry and remind ourselves how batteries work. It is a chemical reaction with an anion and a cation. So chemical reactions don’t work anymore?<br />
<img class="aligncenter size-medium wp-image-840" title="electrolysis" src="http://www.pagedon.com/wp-content/uploads/2012/09/electrolysis-199x300.jpg" alt="electrolysis 199x300 Can Electricity Stop Working Like In The Show Revolution?" width="199" height="300" /></p>
<div>
<p>What about turbines? Magnets don’t work anymore? Current just doesn’t flow? Electrons just don’t exist? I thought they would attempt to explain these questions in the first episode, but they didn’t.</p>
<p><img class="aligncenter size-medium wp-image-841" title="GE-Next-Gen-Windturbine-1" src="http://www.pagedon.com/wp-content/uploads/2012/09/GE-Next-Gen-Windturbine-1-300x221.jpg" alt="GE Next Gen Windturbine 1 300x221 Can Electricity Stop Working Like In The Show Revolution?" width="300" height="221" /></p>
</div>
<div>Now I know I am going to spend the next 4 years watching endless seasons of this show waiting for these questions to be answered just to be disappointed. Sound familiar? (LOST). At least LOST tried to sell its ideas off of magical ideas that would later be explained. Revolution takes the fictional medieval approach.  So lets just accept the no electricity thing. So why did the planes start dropping and hurling towards the ground? If they did lose power wouldn’t they just continue in a straight line slowly gliding towards the ground rather than dropping like a firefly?Anybody else notice the number of candles in the bar? You think after 10 years or so of using candles they would run out like in the first week and it would be such a high commodity. A bar that size would have no way bringing in economically what it would be spending by keeping all those candles lit. Or what is up with everyone having swords and crossbows? Swords are hard to make and would be a rare item. Not to mention, how many people do you know own crossbows? Why does everyone look like they just got out of the shower? A town the size of a neighborhood would be putting all their resources into finding food rather than teaching their kids education.</p>
<p><a href="http://www.pagedon.com/wp-content/uploads/2012/09/bill-burke-sword-fight-nbc-revolution-smalljpg.jpg"><img class="aligncenter size-medium wp-image-842" title="bill-burke-sword-fight-nbc-revolution-smalljpg" src="http://www.pagedon.com/wp-content/uploads/2012/09/bill-burke-sword-fight-nbc-revolution-smalljpg-300x204.jpg" alt="bill burke sword fight nbc revolution smalljpg 300x204 Can Electricity Stop Working Like In The Show Revolution?" width="300" height="204" /></a></p>
<p>The list goes on and on. Well I’m excited to watch it. Why? Because I’m a sucker for tv shows that give me false hope.  Let me know what you think of the show, or if you found other things that just make no sense in the comments.</p>
</div>
<p>The post <a href="http://www.pagedon.com/electricity-stop-working-show-revolution/goodies/">Can Electricity Stop Working Like In The Show Revolution?</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/electricity-stop-working-show-revolution/goodies/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Bank Of America Closed My Accounts With No Notifications</title>
		<link>http://www.pagedon.com/bank-america-closed-accounts-notifications/personal/</link>
		<comments>http://www.pagedon.com/bank-america-closed-accounts-notifications/personal/#comments</comments>
		<pubDate>Sat, 15 Sep 2012 00:58:30 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[BoA]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=832</guid>
		<description><![CDATA[<p>The story started with me trying to get gas to go on a gold prospecting trip with my cousin. Some of my credit cards broke in my wallet earlier in the week(they don’t make them the way they use to)<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.pagedon.com/bank-america-closed-accounts-notifications/personal/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/bank-america-closed-accounts-notifications/personal/">Bank Of America Closed My Accounts With No Notifications</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>The story started with me trying to get gas to go on a gold prospecting trip with my cousin. Some of my credit cards broke in my wallet earlier in the week(they don’t make them the way they use to) and another one expired. I was left to use my Bank of America credit card since it was the only option (Diane is in GA visiting family and has all her cards with her). So here I am at the gas station and the card isn’t authorizing. I go inside and the card is denied. So I call the number on the back of the card and I get a nice voice telling me the account has been closed with no option to speak to a person. So I drive home and get another number to call. Still no luck the guy can’t even hear me talking. Then I get on bank of america’s chat with maxwell. Here is the conversation I had with him. I know it is long but definitely think it will be worth the time to read.</p>
<p style="text-align: center;"><a href="http://www.pagedon.com/wp-content/uploads/2012/09/bosomething.jpg"><img class="aligncenter size-medium wp-image-833" title="bosomething" src="http://www.pagedon.com/wp-content/uploads/2012/09/bosomething-300x198.jpg" alt="bosomething 300x198 Bank Of America Closed My Accounts With No Notifications" width="300" height="198" /></a></p>
<p><strong>Maxwell: </strong>Welcome to Credit Card Chat Service! My name is Maxwell. I am here to assist you with your personal Credit card Accounts. May I know your complete name as it appears on the Credit Card or statement?</p>
<p><strong>You: </strong><span style="color: #ff0000;">unbelievable</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">Don Page</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">waited on the phone for 5 minutes and the person couldn’t even hear me talking</span></p>
<p><strong>Maxwell: </strong>Hello! Don</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">maxwell you got to help me out</span></p>
<p><strong>Maxwell: </strong>I do apologize for the inconvenience this may have caused you.</p>
<p><strong>Maxwell: </strong>Sure.</p>
<p><strong>You: </strong><span style="color: #ff0000;">I cannot use my credit card</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">stopped to get gas and no zip codes worked and tried inside and the card was denied</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">what is going on here!?</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">It is the 90s all over again nothing works</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">nightmare got to start carrying cash again</span></p>
<p><strong>Maxwell: </strong>I understand that you wish to know why your card got declined</p>
<p><strong>Maxwell: </strong>I do apologize for the inconvenience this may have caused you.</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">credit cards breaking left and right in my wallet they don’t make them the way they use to</span></p>
<p><strong>Maxwell: </strong>Thank you for bringing this to our attention and allowing me to take care of this for you.</p>
<p><strong>Maxwell: </strong>I would be more than happy to take a look at that for you.</p>
<p><strong>You: </strong><span style="color: #ff0000;">please do I am trying to get to my cousins for a gold prospecting trip but I’m here at home on the computer trying to get this worked out</span></p>
<p><strong>Maxwell: </strong>I will surely check that for you.</p>
<p><strong>You: </strong><span style="color: #ff0000;">what do you need from my end</span></p>
<p><strong>Maxwell: </strong>Thank you for your patience, I will be right with you.</p>
<p><strong>Maxwell: </strong>May I please have the last four digits of your card?</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><em><span style="color: #ff0000;">digits removed</span></em></p>
<p><strong>Maxwell: </strong>Thank you.</p>
<p><strong>Maxwell: </strong>For verification purposes, could you please provide the last four digits of your Social Security Number and date of birth?</p>
<p><strong>You: </strong><em><span style="color: #ff0000;">data removed</span></em></p>
<p><strong>Maxwell: </strong>Perfect! I appreciate you answering the verification questions!</p>
<p><strong>You: </strong><span style="color: #ff0000;">come on maxwell you got to help me out here. why is my card not working and how can I get it working asap</span></p>
<p><strong>Maxwell: </strong>Sure.</p>
<p><strong>Maxwell: </strong>Let me get you the complete information.</p>
<p><strong>Maxwell: </strong>I have reviewed your account and I have checked and would like to inform you that your account ending in — <em>data removed </em>is in blocked status. It means that the card is closed. The card was closed by the bank.</p>
<p><strong>Maxwell: </strong>Your card was closed on 03/21/2012</p>
<p><strong>You: </strong><span style="color: #ff0000;">you got to be kidding me!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">impossible</span></p>
<p><strong>Maxwell: </strong>In order to use the card again, you will need to place a request for the re-opening of your account.</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">a payment was made on 4/28/2012</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">19.62</span></p>
<p><strong>You: </strong>how in the world can they close my account and I still make a payment</p>
<p><strong>You: </strong><span style="color: #ff0000;">something isn’t right here…first they close my checking, then my savings, then my credit card!</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">and they wonder why they aren’t my primary choice when it comes to banking</span></p>
<p><strong>Maxwell: </strong>I certainly understand your point of view</p>
<p><strong>You: </strong><span style="color: #ff0000;">maxwell how in the world can I get this account opened again. I live 5 hours from the nearest branch!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">we got to get this opened online</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">it is the only card in my wallet that is not broken</span></p>
<p><strong>Maxwell: </strong>You need not to go anywhere to place a request to re-open the account</p>
<p><strong>Maxwell: </strong>Yes, I am able to submit the request to re-open your Credit Card account for which I need some additional information.</p>
<p><strong>Maxwell: </strong>Is that okay with you?</p>
<p><strong>You: </strong><span style="color: #ff0000;">you bet its ok with me! wasn’t ok with me to close the account but nobody asked me then</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">what is in the past is in the past now</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">lets get this account opened so I can make my trip this weekend</span></p>
<p><strong>Maxwell: </strong>Sure.</p>
<p><strong>Maxwell: </strong>Do you authorize card services to review your credit and employment histories and other information in order to process your request, service your account and manage your relationship with us?</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">is card services a third party company here?</span></p>
<p><strong>Maxwell: </strong>No, it is Bank Of America</p>
<p><strong>You: </strong><span style="color: #ff0000;">well you bet I authorize them</span></p>
<p><strong>Maxwell: </strong>Thank you.</p>
<p><strong>Maxwell: </strong>We can look into having your account re-opened. Please keep in mind, Federal law requires that we collect income information to determine your ability to pay. I just need to ask you a few questions?</p>
<p><strong>You: </strong><span style="color: #ff0000;">ask away</span></p>
<p><strong>Maxwell: </strong>Thank you.</p>
<p><strong>Maxwell: </strong>May I have, your mailing address, income please, your occupation, Current employer’s name, your designation and the length of the service please?</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;"><em>data removed</em></span></p>
<p><strong>You: </strong><span style="color: #ff0000;">my income is ..<em>data removed</em>. I am a full time student and graduate in December. Work with the school as a student developer– Brigham Young University — I have employment with them until the end of the year. </span></p>
<p><strong>You: </strong><span style="color: #ff0000;">I’m only able to work 20 hours a week at the moment</span></p>
<p><strong>Maxwell: </strong>Thank you.</p>
<p><strong>You: </strong><span style="color: #ff0000;">got to pay the bills and support the family</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">you know how it is maxwell you got kids?</span></p>
<p><strong>Maxwell: </strong>I certainly understand that</p>
<p><strong>Maxwell: </strong>No, I am not married yet. But, I love kids!</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">they cost a fortune</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">which is why I’m in school man</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">hopefully this weekend my cousin and I can find some gold</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">hoping you can get me going with the only credit card left in my wallet</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">my wife’s bank is closed</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">she’s out in GA visiting family</span></p>
<p><strong>Maxwell: </strong>Yes, I am helping you in placing the request to re-open the account</p>
<p><strong>You: </strong><span style="color: #ff0000;">how long does it take after the request to re-open the account?</span></p>
<p><strong>Maxwell: </strong>I would like to inform you that once the request will be submitted, you will be notified about the decision within 5 to 7 business days</p>
<p><strong>Maxwell: </strong>I have checked and would like to inform you  that we have a different address on the account</p>
<p><strong>You: </strong><span style="color: #ff0000;">of course you do we moved last week before this semester started</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">old address was <em>data removed</em></span></p>
<p><strong>You: </strong><span style="color: #ff0000;">just down the block</span></p>
<p><strong>Maxwell: </strong>Yes, we have <em>data removed</em></p>
<p><strong>Maxwell: </strong>Do you wish me to update <em>data removed</em>?</p>
<p><strong>You: </strong><span style="color: #ff0000;">yes please update but maxwell</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">5 days!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">you got to be kidding me</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">I’ll be dead by then</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">you got to help me out.…5 days!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">my other credit cards that broke will be in the mail by then</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">call the man in charge up and let him now I need this account activated now</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">you can’t tell me that its normal for a bank to close a guys credit card account with no reason or notification even after he continues to make payments on it and expect the guy to wait 5 days for it to be reopened!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">you got to be KIDDING ME!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">UNBELIEVABLE</span></p>
<p><strong>Maxwell: </strong>I certainly understand the urgency of the card</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">well then you understand 5 days won’t get me gas in my car</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">I got 4 broken credit cards and one that is useless</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">and just why exactly does it take 5 days!?</span></p>
<p><strong>Maxwell: </strong>This is the standard timeframe for the account to be reviewed by our Credit department</p>
<p><strong>You: </strong><span style="color: #ff0000;">your telling me it takes someone 5 days to look at an account</span></p>
<p><strong>Maxwell: </strong>Once the account is reviewed for re-opening request, then within 5 to 7 business days , they send you the letter with the decision</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">look its not like I’m opening a credit card account for the first time</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">getting a NEW credit card account takes a total of 30 seconds to run a credit score and bam your in</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">but reopening an account takes 14,400 times that amount of time</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">think about that for a second something isn’t right here</span></p>
<p><strong>Maxwell: </strong>Yes, I do understand that but while re-opening the account, your Credit check is also done which required sometime for the account to be re-opened</p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">you know what</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">forget about it</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">Its obvious I can’t get anywhere with this bank</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">I’m DONE</span></p>
<p><strong>Maxwell: </strong>No, it is not like that</p>
<p><strong>You: </strong><span style="color: #ff0000;">It is exactly like that</span></p>
<p><strong>Maxwell: </strong>I am trying my best to assist you in the best possible manner</p>
<p><strong>You: </strong><span style="color: #ff0000;">but maxwell let me put it this way</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">you go to a restaraunt and they serve you trash. They treat you like a king but serve you trash. The customer service isn’t the issue here. You are assisting me, but the product is trash</span></p>
<p><strong>You:<span style="color: #ff0000;"> </span></strong><span style="color: #ff0000;">5 days is unacceptable</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">closing accounts with NO notice is unacceptable</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">so you just don’t go back to the restaurant</span></p>
<p><strong>Maxwell: </strong>I certainly understand your point if view</p>
<p><strong>You: </strong><span style="color: #ff0000;">The services a bank provides is suppose to serve and make your life easier</span></p>
<p><strong>Maxwell: </strong>I apologize for the typing error.</p>
<p><strong>Maxwell: </strong>of*</p>
<p><strong>You: </strong><span style="color: #ff0000;">did BOA make my life any easier?</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">I would have been better to keep cash in my wallet</span></p>
<p><strong>Maxwell: </strong>I wish I could help you further regarding to expedite the request for account re-open</p>
<p><strong>You: </strong><span style="color: #ff0000;">unless you expedite the request for today then you can’t help me</span></p>
<p><strong>Maxwell: </strong>If I could have been able to do it, I would have certainly done it for you</p>
<p><strong>You: </strong><span style="color: #ff0000;">Maxwell cancel the request I don’t want my credit score to be pulled AGAIN!</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">I am officially done with BOA</span></p>
<p><strong>You: </strong><span style="color: #ff0000;">has nothing to do with America</span></p>
<p><strong>Maxwell: </strong>I have not placed any request so far</p>
<p><strong>You: </strong><span style="color: #ff0000;">I guess this would be the time for me to request to close my accounts but thank you BOA, you made that easier by already closing them all without my request.</span></p>
<p>The post <a href="http://www.pagedon.com/bank-america-closed-accounts-notifications/personal/">Bank Of America Closed My Accounts With No Notifications</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/bank-america-closed-accounts-notifications/personal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>George Polya Four Point Summary</title>
		<link>http://www.pagedon.com/george-polya-point-summary/goodies/</link>
		<comments>http://www.pagedon.com/george-polya-point-summary/goodies/#comments</comments>
		<pubDate>Tue, 11 Sep 2012 19:57:04 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Goodies]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/?p=826</guid>
		<description><![CDATA[<p>Problem Solving is an art and like any art can only be learned through practicing. Here are George Polya's four point summary steps in how to solve problems.<div class="read-more"><a href="http://www.pagedon.com/george-polya-point-summary/goodies/">Read more &#8250;</a></div><!-- end of .read-more --></p><p>The post <a href="http://www.pagedon.com/george-polya-point-summary/goodies/">George Polya Four Point Summary</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3 style="text-align: center;"><a href="http://www.pagedon.com/wp-content/uploads/2012/09/k669.gif"><img class="aligncenter size-medium wp-image-828" title="How to Solve It" src="http://www.pagedon.com/wp-content/uploads/2012/09/k669-198x300.gif" alt="k669 198x300 George Polya Four Point Summary" width="198" height="300" /></a></h3>
<h3 style="text-align: center;"><span style="text-decoration: underline;">George Polya’s <strong>four point summary</strong> from his book <strong>How To Solve It</strong></span></h3>
<p>Problem Solving is an art and like any art can only be learned through practicing. Here are George Polya’s four point summary steps in how to solve problems.</p>
<p><strong>1. Understand the Problem (SEE)<br />
</strong>You have to understand the problem at hand. What is the data? What are the unknowns. Divide the problem. Draw a picture. What is the condition? Is it possible to satisfy the condition?</p>
<p><strong>2. Devise a</strong> <strong>Plan (PLAN)</strong><br />
Find a connection between the data and the unknown. Have you seen this before? Do you know a related problem? Restate the problem. Restate it differently. Can you solve a part of the problem?</p>
<p><strong>3. Carry Out the Plan (DO)<br />
</strong> Carry out the plan while checking each step. Can you prove or clearly see that the step is correct?</p>
<p><strong>4. Looking Back (CHECK)<br />
</strong> Check the result. Can you derive the solution differently? Can you use the result for some other problem?</p>
<p>The post <a href="http://www.pagedon.com/george-polya-point-summary/goodies/">George Polya Four Point Summary</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/george-polya-point-summary/goodies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Testing Humor #10: To…</title>
		<link>http://www.pagedon.com/software-testing-humor-10-to-2/tweets/</link>
		<comments>http://www.pagedon.com/software-testing-humor-10-to-2/tweets/#comments</comments>
		<pubDate>Sun, 26 Aug 2012 17:29:44 +0000</pubDate>
		<dc:creator>Don</dc:creator>
				<category><![CDATA[Tweets]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.pagedon.com/software-testing-humor-10-to-2/tweets/</guid>
		<description><![CDATA[<p>Software Testing Humor #10 To err is human; to find the errors requires a tester.</p><p>The post <a href="http://www.pagedon.com/software-testing-humor-10-to-2/tweets/">Software Testing Humor #10: To…</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Software Testing Humor #<a href="http://search.twitter.com/search?q=%2310" class="aktt_hashtag">10</a>  To err is human; to find the errors requires a tester. </p>
<p>The post <a href="http://www.pagedon.com/software-testing-humor-10-to-2/tweets/">Software Testing Humor #10: To…</a> appeared first on <a href="http://www.pagedon.com">The Real Don Page</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pagedon.com/software-testing-humor-10-to-2/tweets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
