<?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>Robert Spangler&#187; Rob</title>
	<atom:link href="http://robspangler.com/blog/author/dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://robspangler.com</link>
	<description>Design - Web - Creative</description>
	<lastBuildDate>Thu, 29 Dec 2011 21:26:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Random IE8 Crashes &#8211; &#8220;This tab has been recovered&#8221;</title>
		<link>http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/</link>
		<comments>http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 18:03:49 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=477</guid>
		<description><![CDATA[An issue randomly started occurring on a few site that I had started development on last month. I was getting crashes in IE8 with the following error &#8220;Internet Explorer has encountered a problem and needs to close. We are sorry &#8230; <a href="http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An issue randomly started occurring on a few site that I had started development on last month. I was getting crashes in IE8 with the following error &#8220;<em>Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience</em>.&#8221; Followed by &#8220;<em>This tab has been recovered</em>.&#8221; when the site came back up.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-478" title="IE8 Error" src="http://robspangler.com/wp-content/uploads/2011/10/ie8error.jpg" alt="" width="427" height="271" /></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-485" title="IE8 Tab Recovered" src="http://robspangler.com/wp-content/uploads/2011/10/ie8-tab-recovered.jpg" alt="IE8 Tab Recovered" width="432" height="78" /></p>
<h2>The Solution</h2>
<p>This one was not fun to diagnose, I initially thought it was something with the HTML5,  Chrome Frame or Modernizr. I was wrong, it was a bug with jQuery.</p>
<p>It is an issue with jQuery version 1.6.2 (which was the latest version at time of development). Luckily they fixed the issue, so the fix on your end is simple&#8230; <strong>Update to the latest version of <a href="http://www.jquery.com/" target="_blank">jQuery</a></strong>.</p>
<p>Here&#8217;s the <a href="http://bugs.jquery.com/ticket/9823" target="_blank">support ticket</a> from their change log.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>JW Player for WordPress &#8211; Playlist Not Displaying</title>
		<link>http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/</link>
		<comments>http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 16:17:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=463</guid>
		<description><![CDATA[JW Player for WordPress is a great little solution to locally house and present your videos. However, I recently had an issue where my playlist for JW Player would not display. I could see that it was loading and pulling &#8230; <a href="http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>JW Player for WordPress</strong> is a great little solution to locally house and present your videos. However, I recently had an issue where my playlist for JW Player would not display. I could see that it was loading and pulling in the list of videos, but even with my Advanced Settings being correct it still wouldn&#8217;t show.</p>
<p><img style="border: 2px solid #ccc;" class="size-full wp-image-473" title="JW Player Settings" src="http://robspangler.com/wp-content/uploads/2011/10/jw-settings.png" alt="" width="597" height="304" /></p>
<p>With some help from <strong>LongTail Video Support</strong> (thank you!) I found a solution.</p>
<p>It turns out that sometimes the config attributes for the playlist are not carried over. So, you can force them in your [jwplayer] shortcode attributes.</p>
<p>Here&#8217;s some sample code to show you what I&#8217;m talking about.</p>
<p>Original:</p>
<pre class="brush: plain; title: ; notranslate">[jwplayer playlistid=&quot;123&quot;]</pre>
<p>Updated:</p>
<pre class="brush: plain; title: ; notranslate">[jwplayer playlistid=&quot;123&quot; playlist.position=&quot;bottom&quot; playlist.size=&quot;250&quot;]</pre>
<p>The key attributes being &#8220;<strong>playlist.position</strong>&#8221; and &#8220;<strong>playlist.size</strong>&#8221; I hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery .load() Doesn&#8217;t Work in Chrome</title>
		<link>http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/</link>
		<comments>http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 16:31:43 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=436</guid>
		<description><![CDATA[If you do any front-end development locally (and test in Google Chrome) you may have run into a problem using the .load() function or other AJAX requests. The functions are just unable to return any data, It boils down to &#8230; <a href="http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you do any front-end development locally (and test in Google Chrome) you may have run into a problem using the .load() function or other AJAX requests. The functions are just unable to return any data, It boils down to a permissions issue with Chrome pointing to local files.</p>
<p>You can resolve this by uploading your files to a live production server, but that is a pain, especially if you&#8217;re still in development.</p>
<p><strong>There&#8217;s a very simple solution:</strong></p>
<p>1. Close Chrome completely<br />
2. Launch Chrome from Terminal with the &#8220;&#8211;allow-file-access-from-files&#8221; argument</p>
<pre class="brush: plain; title: ; notranslate">open /Applications/Google\ Chrome.app --args --allow-file-access-from-files</pre>
<p>This will allow that session of Chrome to access local files. Note: Once you close and reopen the application you&#8217;ll no longer have access to local files again.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Introvert&#8217;s Guide to Freelancing</title>
		<link>http://robspangler.com/blog/introverts-guide-to-freelancing/</link>
		<comments>http://robspangler.com/blog/introverts-guide-to-freelancing/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:43:31 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=392</guid>
		<description><![CDATA[Early last year I took my freelancing full-time. This was a big move; I&#8217;m not the: &#8220;let&#8217;s play some golf together, see you at the after-party, and let&#8217;s take this show to the moon!&#8221; type entrepreneur. Like many creative people, I&#8217;m &#8230; <a href="http://robspangler.com/blog/introverts-guide-to-freelancing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Early last year I took my freelancing full-time. This was a big move; I&#8217;m not the: &#8220;let&#8217;s play some golf together, see you at the after-party, and let&#8217;s take this show to the moon!&#8221; type entrepreneur. Like many creative people, I&#8217;m an introvert. I dwell in my own thoughts too long, constantly play scenarios in my mind, and enjoy a nap after long networking events.</p>
<p>A freelancer is not just a designer or developer, you have a few new roles now like sales, accounting and customer service. Introverts have to work a bit differently than our outgoing counterparts. So here are some helpful tips for freelancing and keeping the business going.<span id="more-392"></span></p>
<h2>&#8220;Sir, Would You Like to Buy These Pixels?&#8221;</h2>
<p>Our biggest hurdle is sales.</p>
<p><strong>We don&#8217;t typically make good salesmen</strong>, but we can use this to our advantage. People who are serious about getting results are less interested in getting sold to and more interested in what you have to offer. Spend some time and go through your own resume, why are you qualified? Did you get results for clients at your last job? Talk about it, especially if it&#8217;s a well-known client. Be real and don&#8217;t fake it trying to sound like Joe Schmoozer, because it will show!</p>
<p>Build partnerships. Lets face it, even if we hold to the advice above, <strong>our cold calling skills aren&#8217;t going to win us a lot of business</strong>. We sound awkward, and we&#8217;re not good at holding conversations about the weather or the Dallas Cowboys. Get some friends that compliment your services. If you&#8217;re a designer start getting in touch with some development agencies (and vice versa). Even if you have to offer a discounted partner rate (and you should) partnerships will be keeping your lights on.</p>
<p><strong>Keep a great portfolio</strong>. I won&#8217;t spend time on this because it&#8217;s obvious, but the point should be made that our work is what&#8217;s going to sell what we do.</p>
<p>Take GOOD care of your clients. Your business is going to be made up of a lot of <strong>referrals and repeat customers</strong>. This is a good thing. Referral projects and projects for repeat customers cost us no advertising or sales dollars. Be sure to <strong>hook your clients up with a freebie here and there</strong>, and if you close a referral they send, give your referring client a gift or work in a cut of the profit.</p>
<h2>&#8220;Where Does This Decimal Go?&#8221;</h2>
<p>This really isn’t just a tip for introverts… but don&#8217;t be afraid to get professional help. Don&#8217;t mess around and get yourself in trouble with the IRS, <strong>find a good accountant to take care of your taxes</strong>. There are a lot of invoicing and accounting software packages that will help you out as well. Definitely check out <a href="http://www.getharvest.com/">Harvest</a>, <a href="http://www.freshbooks.com/">FreshBooks</a> and <a href="http://quickbooks.intuit.com/">QuickBooks</a> to name a few.</p>
<p>Keep yourself accountable and don&#8217;t let the freedom get the best of you! Since you no longer have a manager breathing down your neck,<strong> you’re going to need some goals</strong>. Use time-tracking software to make sure you&#8217;re still working a solid workday. Check out <a href="http://www.getharvest.com/">Harvest</a>, <a href="http://www.freshbooks.com/">FreshBooks</a> and <a href="http://basecamphq.com/">Basecamp</a> to name a few.</p>
<h2>&#8220;The Phone Keeps Shaking, and So Do I&#8221;</h2>
<p>Being a business owner you&#8217;re going to feel that need to always be connected. Do yourself a favor, <strong>turn off email notifications after business hours</strong> and give social media a break. Sure you can still check it when necessary to make sure the sky is still in place. But let&#8217;s be real, we&#8217;re quickly drained by a lot of social activity, I think this still applies on the digital world. Give yourself some time to enjoy peace and quiet. If you feel the phone shake, you&#8217;re going to check it and too much connectivity <a href="http://www.nytimes.com/2010/08/25/technology/25brain.html">can be dangerous</a>.</p>
<h2>To Conclude&#8230;</h2>
<p>There will always be ups and downs, but that&#8217;s the recipe for any good adventure. Above all things mentioned in this article, the best advice is to use what some consider to be downsides as an advantage. What you lack is networking skills make up for in solid client relationships, what you lack in sales make up for with building trust with partners and existing clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/introverts-guide-to-freelancing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Website Refresh</title>
		<link>http://robspangler.com/blog/website-refresh/</link>
		<comments>http://robspangler.com/blog/website-refresh/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 01:39:43 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=377</guid>
		<description><![CDATA[Okay, so I redesign my site more than I blog on it. Designing something for yourself is tough, but I&#8217;m really happy with this one. I hope you enjoy. Let me know if you need anything!]]></description>
			<content:encoded><![CDATA[<p>Okay, so I redesign my site more than I blog on it. Designing something for yourself is tough, but I&#8217;m really happy with this one. I hope you enjoy.</p>
<p>Let me know if you need anything!</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/website-refresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New Job</title>
		<link>http://robspangler.com/blog/my-new-job/</link>
		<comments>http://robspangler.com/blog/my-new-job/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 12:11:17 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=332</guid>
		<description><![CDATA[In case you didn&#8217;t know I switched jobs. I am now a full-time freelancer and owner of Emerge Web Studio. I&#8217;m into my second week now and things are going great, I&#8217;ve had a ton of great phone calls and &#8230; <a href="http://robspangler.com/blog/my-new-job/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In case you didn&#8217;t know I switched jobs. I am now a <strong>full-time freelancer and owner of <a href="http://emergewebstudio.com/">Emerge Web Studio</a></strong>. I&#8217;m into my second week now and things are going great, I&#8217;ve had a ton of great phone calls and meetings. Waking up for work has become really exciting. With all that being said, I look forward to showing you all the great things I&#8217;m doing.</p>
<p><a href="http://emergewebstudio.com/"><img class="aligncenter size-full wp-image-337" src="/wp-content/uploads/2010/05/emerge-logo.jpg" alt="Emerge Web Studio" /></a></p>
<p><strong>Now it&#8217;s time to sell you&#8230;</strong><br />
Emerge specializes in attractive website design for businesses, developers and agencies. I know the web really well, so as a standard my sites are always easy to update, optimized for search, and ready to promote your business (as long as it&#8217;s not shady).</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/my-new-job/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5 Doctype Template</title>
		<link>http://robspangler.com/blog/html5-doctype-template/</link>
		<comments>http://robspangler.com/blog/html5-doctype-template/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:39:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=286</guid>
		<description><![CDATA[There&#8217;s no reason to read any further, use HTML5 Boilerplate instead! It is finally time to start switching to HTML5 for projects moving forward. If you&#8217;ve been following the progress you already know that xHTML will eventually be outdated and &#8230; <a href="http://robspangler.com/blog/html5-doctype-template/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="notice">There&#8217;s no reason to read any further, use <a href="http://html5boilerplate.com/" rel="external">HTML5 Boilerplate</a> instead!</p>
<p>It is finally time to start switching to HTML5 for projects moving forward. If you&#8217;ve been following the progress you already know that xHTML will <em>eventually</em> be outdated and browsers will, <em>eventually</em>, support HTML5 functionality. So it doesn&#8217;t make sense to continue with xHTML; plus, now our clients to use HTML5 functionality as it becomes available without too many headaches.</p>
<p>Below basic doctype template I&#8217;m starting out with, please feel free to give me feedback.<br />
<span id="more-286"></span></p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;title&gt;&lt;/title&gt;
  &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
  &lt;link rel=&quot;shortcut icon&quot; href=&quot;favicon.ico&quot; type=&quot;image/x-icon&quot; /&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; /&gt;
  &lt;script src=&quot;js/jquery.min.js&quot;&gt;&lt;/script&gt;
  &lt;!--[if lt IE 8]&gt;
  &lt;![endif]--&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Note: I included a holder for JQuery and and IE specific stylesheet (just in case). These can obviously be removed if they&#8217;re not needed for the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/html5-doctype-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Intelligent Conversation</title>
		<link>http://robspangler.com/blog/intelligent-conversation/</link>
		<comments>http://robspangler.com/blog/intelligent-conversation/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 04:30:42 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=278</guid>
		<description><![CDATA[Does anyone else enjoy a good laugh? I do, I do a lot. Laughter can get me through the day sometimes. I have some hilarious co-workers. There is joy wrapped up in laughing together, a deeper connection beyond agreeing that &#8230; <a href="http://robspangler.com/blog/intelligent-conversation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Does anyone else enjoy a good laugh? I do, I do a lot. Laughter can get me through the day sometimes. I have some hilarious co-workers. There is joy wrapped up in laughing together, a deeper connection beyond agreeing that body sounds are funny.<br />
<span id="more-278"></span><br />
On the other side, what happened to deep intelligent conversation? The kind where you just want to take a seat on the couch together with a cup of joe (or tea). In a world of 140 character messages I fear that we&#8217;ve (I&#8217;ve) traded deep meaningful conversation for effortless shouts. We don&#8217;t allow for our perspectives to be changed, only voiced.</p>
<p>With that being said, we should take some time and talk about life over coffee. No phone calls, no texts, no tweets.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/intelligent-conversation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dr. Martin Luther King Jr., More Than a Great Humanitarian</title>
		<link>http://robspangler.com/blog/dr-martin-luther-king-jr-more-than-a-great-humanitarian/</link>
		<comments>http://robspangler.com/blog/dr-martin-luther-king-jr-more-than-a-great-humanitarian/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 18:54:38 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Jesus]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=254</guid>
		<description><![CDATA[While remembering Dr. Martin Luther King Jr. on Martin Luther King day is not a challenge, remembering his teachings through our lives on the other 364 days of the year becomes more difficult. It is easy to think that we&#8217;ve &#8230; <a href="http://robspangler.com/blog/dr-martin-luther-king-jr-more-than-a-great-humanitarian/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-256" src="http://www.robspangler.com/wp-content/uploads/2010/01/sandiego-dr-king.jpg" alt="Dr. Martin Luther King Jr." />While remembering Dr. Martin Luther King Jr. on Martin Luther King day is not a challenge, remembering his teachings through our lives on the other 364 days of the year becomes more difficult. It is easy to think that we&#8217;ve come far enough. It is easy to think that we&#8217;ve accomplished what needs to be accomplished.</p>
<p>Dr. Martin Luther King Jr. is a man whom I don&#8217;t know enough about, but from reflecting on his writings I am inspired. He spoke honestly about social and political injustice. He was a voice for peace, but a peace without conformity or complacency. He lived the life he preached, and the results of that are marked with the blood of his assassination in 1968.<span id="more-254"></span></p>
<p>Even though it would be easy to write him off as a great humanitarian, I don&#8217;t think that is his story. Don&#8217;t get me wrong, he made incredible strides and accomplishments for humanity. It is however impossible to separate what he did from the relationship and divine inspiration he had from our God.</p>
<p>In his sermon writings on &#8220;The Answer to a Perplexing Question,&#8221;<sup>1</sup> he referenced a scripture in Matthew 17:19: &#8220;Why could not we cast him out?&#8221; Jesus&#8217; disciples were unable to cast out an evil spirit from a man&#8217;s son.</p>
<p>We learn from Dr. King that men throughout the history of mankind have attempted to &#8220;remove evil&#8221; from this earth, but humanitarian efforts are not enough. When we base the foundation of our lives on scientific knowledge, eugenics now becomes justifiable on moral grounds. An atomic bomb becomes a solution to a problem. However, Dr. King is clear that science itself is not corrupt:</p>
<blockquote><p>&#8220;Nor would I minimize the importance of science and the great contributions which have come in the wake of the Renaissance. These have lifted us from the stagnating valleys of superstition and half-truth to the sunlit mountains of creative analysis and objective appraisal.&#8221;<sup>1a</sup></p></blockquote>
<p>There is another method of &#8220;removing evil&#8221; from this earth. We learn that others prefer the method of &#8220;praying and waiting,&#8221; or in other words, just waiting on God to rid the world of evil. However, Dr. King is clear that removing responsibility from ourselves is not the answer:</p>
<blockquote><p>&#8220;The idea that man expects God to do everything leads inevitably to a callous misuse of prayer. For if God does everything, man then asks him for anything, and God becomes little more than a &#8216;cosmic bellhop&#8217; who is summoned for every trivial need.&#8221;<sup>1b</sup></p></blockquote>
<p>Neither methods of removing evil are successful, nor are these methods godly. Dr. King says, &#8220;We must pray earnestly for peace, but we must also work vigorously for disarmament and the suspension of weapon testing. We must use our minds as rigorously to plan for peace as we have used them to plan for war.&#8221;<sup>1c</sup> God and man working together can accomplish great things. Jesus himself said, &#8220;…anyone who believes in me will do the same works I have done, and even greater works, because I am going to be with the Father.&#8221;<sup>2</sup> God gives us the grace and mercy, but <strong>we are the hands of feet of God</strong> on this earth.</p>
<p>Come, let us do greater works. Let us use our free will for good. Let us not leave the dream unfulfilled. Let us not become complacent.</p>
<h4>Some stuff I referenced&#8230;</h4>
<p><sup>1</sup>, <a href="http://www.amazon.com/Strength-Love-Martin-Luther-King/dp/0800697405/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1263838506&amp;sr=8-1">Strength to Love</a> by Dr. Martin Luther King Jr. Chapter 13<br />
<sup>1a</sup>, Page 130<br />
<sup>1b</sup>, Page 131<br />
<sup>1b</sup>, Page 132<br />
<sup>2</sup>, John 14:12</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/dr-martin-luther-king-jr-more-than-a-great-humanitarian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Look</title>
		<link>http://robspangler.com/blog/a-new-look/</link>
		<comments>http://robspangler.com/blog/a-new-look/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 02:13:15 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=246</guid>
		<description><![CDATA[Fresh new redesign! The last design was probably not as thought out as it needed to be. It placed a heavy emphasis on my blog, and let&#8217;s be real, i&#8217;m not blogging every day. This one is supposed to put &#8230; <a href="http://robspangler.com/blog/a-new-look/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Fresh new redesign! The last design was probably not as thought out as it needed to be. It placed a heavy emphasis on my blog, and let&#8217;s be real, i&#8217;m not blogging every day. This one is supposed to put more emphasis on my work, and still a little on the blog&#8230;</p>
<p>Thanks for checking it out, hope you enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/a-new-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic (User agent is rejected)
Database Caching 17/25 queries in 0.322 seconds using disk: basic

Served from: robspangler.com @ 2012-02-06 02:59:26 -->
