<?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>Graymerica &#187; Tidbits</title>
	<atom:link href="http://graymerica.com/wpblog/category/tidbits/feed/" rel="self" type="application/rss+xml" />
	<link>http://graymerica.com/wpblog</link>
	<description>The Blog</description>
	<lastBuildDate>Wed, 21 Apr 2010 00:47:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The pain of moving a site away from Godaddy or ********* Godaddy</title>
		<link>http://graymerica.com/wpblog/uncategorized/the-pain-of-moving-a-site-away-from-godaddy-or-godaddy/</link>
		<comments>http://graymerica.com/wpblog/uncategorized/the-pain-of-moving-a-site-away-from-godaddy-or-godaddy/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 16:25:57 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tidbits]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/?p=111</guid>
		<description><![CDATA[There is not much that makes me more angry than creating artificial barriers to exit for the purpose of forcing clients to stay with you.  Godaddy is a prime example of this.  It is a huge pain to move a website and all the files away from them.
I have a client who has outgrown Godaddy&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>There is not much that makes me more angry than creating artificial barriers to exit for the purpose of forcing clients to stay with you.  Godaddy is a prime example of this.  It is a huge pain to move a website and all the files away from them.</p>
<p>I have a client who has outgrown Godaddy&#8217;s hosting and I am moving them over to <a href="http://mediatemple.net/">MediaTemple</a>, who provides scalable hosting for high traffic and database intensive websites.</p>
<p>The site is made up of four open source web based applications:</p>
<ol>
<li><a href="http://wordpress.org">Wordpress</a> for content management</li>
<li><a href="http://www.openx.org/">OpenX</a> for banner advertisement serving</li>
<li><a href="http://www.phpbb.com/">phpBB</a> for web forums</li>
<li><a href="http://gallery.menalto.com/">Gallery2</a> for a photo gallery</li>
</ol>
<p>Each of these applications has a separate file structure and an individual database on Godaddy.  Much of the content has been uploaded to the application and the easiest way to move the site would be to Zip or Tar the entire site, backup the databases and move the files over to the new hosting.  I have probably done this thirty times in my life.  It is pretty straight forward and most of the time is spent watching files transfer.</p>
<p><strong>Godaddy has made this impossible for the following reasons.</strong></p>
<p><span id="more-111"></span></p>
<ol>
<li>They do not allow you to create Zip or Tar archives larger than 20 mb with their &#8220;file manager&#8221; tool</li>
<li>You can not run Tar or Zip from the command line without enabling SSH access, which requires that you delete all your databases for some reason.  I have seen some restrictions on SSH access before, but nothing like this.  One of my favorite host, <a href="http://www.bluehost.com/track/graymerica/">BlueHost</a>, requires that you provide a scan of your driver&#8217;s license before they enable it.  MediaTemple, makes you login to a webpage to enable it.  Godaddy gets a strike against them for their stupid requirement.</li>
</ol>
<p>I tried to archive the entire site for about an hour and tried various fixes I found on google, such as <a href="http://mgeisler.net/php-shell/">phpshell</a>, <a href="http://drupal.org/node/97492">cron</a>,  <a href="http://alvinzhang.info/?p=79">shell script</a>.  To be fair, I did not try this approach, <a href="http://www.thewebhostinghero.com/tutorials/how-to-backup-godaddy-website.html">How to backup Godaddy</a>, but it looked like it had the same limitations as the other.  After all that, I gave up and decided to just FTP the whole mess to my new server.   I logged into Mediatemple via SSH and connect via FTP to Godaddy via the FTP command from the command line.</p>
<blockquote><p>Connected to websitename.com.<br />
220&#8212;&#8212;&#8212;- Welcome to Pure-FTPd [privsep] [TLS] &#8212;&#8212;&#8212;-<br />
220-You are user number 6 of 50 allowed.<br />
220-Local time is now 09:25. Server port: 21.<br />
220-This is a private system &#8211; No anonymous login<br />
220 You will be disconnected after 3 minutes of inactivity.<br />
Name (websitename.com:andrew):</p></blockquote>
<p>The command mget (for multiple get) kept timing out and I never could get very far into the process.  Nothing is worse then getting part of the directory structure or missing files.  It will take weeks to track down missing includes and recreate the mess that missing files would result in.</p>
<p>With direct FTP access a failure I started to loose hope, but after a bit of googling I found a solution with my old standby wget.</p>
<p><a href="http://www.gnu.org/software/wget/">Wget</a> is a, according to their website, &#8220;a <a href="http://www.gnu.org/philosophy/free-sw.html">free software</a> package for retrieving files using HTTP, HTTPS and FTP, the most widely-used   Internet protocols. It is a non-interactive commandline tool, so it may   easily be called from scripts, <tt>cron</tt> jobs, terminals without   X-Windows support, etc.&#8221; It can be installed on most OS X, Linux and Windows.</p>
<p>Normally, I use it to make a backup copy of a website because it can spider through a website and download all the files, images and other pieces.  It also can turn a website with .ASP or .PHP files into an HTML website, by renaming the files and updating the links.  Overall wget is a bad-ass tool and can do a lot to save time and fix problems.  I had never however used it to FTP from a flaky ftp site.</p>
<p><strong>Here is how I did it:</strong></p>
<p>From the command line of the Media Temple site I rand the following command: (obviously, you need to use your FTP username and password)</p>
<blockquote><p>wget -rv -nc &#8211;timeout=15 &#8211;random-wait ftp://*username*:*password*@websitename.com</p></blockquote>
<p>Here is how it breaks down,</p>
<ul>
<li>-r is to recursivly download all files</li>
<li>-v is to give verbose feedback, so I can see what is going on</li>
<li>-nc is to &#8220;No Clobber&#8221; or do not redownload files if the command is restarted</li>
<li>&#8211;random-wait is to keep the Godaddy server guessing in case they have some sort of automated script to block this sort of this</li>
<li>&#8211;timeout is to set the timeout to 15 seconds.  By default the timeout is set to 900 seconds on a read of a file.  By setting this low, it will give up quickly and try again.</li>
</ul>
<p><strong>BAM</strong>, the files are all downloading and starting to show up on in my MediaTemple site.</p>
<p>The next step is to go get some lunch while it all downloads, then backup the databases and move those files.  Then all I have to do is set up the domain on Media Temple and move over the files.  Moving the files via command line is as simple as &#8220;mv oldfiles/* newlocation/&#8221; This is certainly easier than the hurdles that Godaddy set up for me.</p>
<p>Half way though the process, I did get an error for</p>
<p>&#8220;421 Too many connections (2) from this IP&#8221; but I let is sit for a while and reran the command and everything was fine.</p>
<p>All I have  to say is *%$()*) Goddady, I want the last four hours of my life back.</p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/uncategorized/the-pain-of-moving-a-site-away-from-godaddy-or-godaddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AP alleges copyright infringement of Obama image</title>
		<link>http://graymerica.com/wpblog/general/ap-alleges-copyright-infringement-of-obama-image/</link>
		<comments>http://graymerica.com/wpblog/general/ap-alleges-copyright-infringement-of-obama-image/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 04:21:35 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tidbits]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[Obama]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/?p=102</guid>
		<description><![CDATA[Let&#8217;s see the AP try and put this genie back in the barn or the horse back in the bottle.
news.yahoo.com/s/ap/20090204/ap_en_ot/obama_poster
The funny thing is the creator of the poster, also create the &#8220;Obey&#8221; brand which was started using a bootlegged photo of Andre The Giant.  Shepard Fairey, the creator, has been on both sides of the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-101" title="Obama Poster" src="http://graymerica.com/wpblog/wp-content/uploads/2009/02/capt0045032f19d94d3caf545341a38b303cobama_poster_ny126.jpg" alt="Obama Poster" width="213" height="156" />Let&#8217;s see the AP try and put this genie back in the barn or the horse back in the bottle.</p>
<p><a href="http://news.yahoo.com/s/ap/20090204/ap_en_ot/obama_poster">news.yahoo.com/s/ap/20090204/ap_en_ot/obama_poster</a></p>
<p>The funny thing is the creator of the poster, also create the &#8220;Obey&#8221; brand which was started using a bootlegged photo of Andre The Giant.  Shepard Fairey, the creator, has been on both sides of the copyright issue, and has tried to protect his images from duplication.<img class="alignright size-full wp-image-103" title="andrethegiantsticker" src="http://graymerica.com/wpblog/wp-content/uploads/2009/02/andrethegiantsticker.gif" alt="andrethegiantsticker" width="183" height="155" /></p>
<p>I wish I still  had the bootleg <strong>Radar has a posse, 1&#8242; 4&#8243; </strong> sticker that the previous tenants left in the rental home I moved into in 1998.  The sticker was made for the neighborhood cat &#8220;Radar,&#8221; and included an image of a cat.  One of my favorite version is the UNC-CH t-shirt for Jackie Manual. <img class="alignright size-full wp-image-104" title="jackiemanuelhasaposse" src="http://graymerica.com/wpblog/wp-content/uploads/2009/02/jackiemanuelhasaposse.jpg" alt="jackiemanuelhasaposse" width="150" height="169" /></p>
<p>There is a long discussion of the techniques and law here: <a href="http://www.myartspace.com/blog/2009/01/shepard-fairey-obey-copyright.html">www.myartspace.com/blog/2009/01/shepard-fairey-obey-copyright.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/general/ap-alleges-copyright-infringement-of-obama-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zombies</title>
		<link>http://graymerica.com/wpblog/tidbits/zombies/</link>
		<comments>http://graymerica.com/wpblog/tidbits/zombies/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 20:33:05 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tidbits]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/uncategorized/zombies/</guid>
		<description><![CDATA[While there is no statistical evidence that zombie outbreaks increase around Halloween, you can never be too careful.  The following are some links and resources to get you prepared for the season.
Emergency Zombie Defense Station

You can never be too prepared.  Learn how to build this important toolkit. Read more here.
The Zombie Handbook By [...]]]></description>
			<content:encoded><![CDATA[<p>While there is no statistical evidence that zombie outbreaks increase around Halloween, you can never be too careful.  The following are some links and resources to get you prepared for the season.</p>
<p><strong>Emergency Zombie Defense Station</strong></p>
<p><a href="http://graymerica.com/wpblog/tidbits/zombies/2jpg/" rel="attachment wp-att-23" title="2.jpg"><img src="http://graymerica.com/wpblog/wp-content/uploads/2007/10/2.thumbnail.jpg" alt="2.jpg" /><img src="http://graymerica.com/wpblog/wp-content/uploads/2007/10/5.thumbnail.jpg" alt="5.jpg" /></a><a href="http://www.craftster.org/forum/index.php?topic=202668.msg2158872;topicseen"></a></p>
<p>You can never be too prepared.  Learn how to build this important toolkit. <a href="http://www.craftster.org/forum/index.php?topic=202668.msg2158872;topicseen">Read more here</a>.</p>
<p><a href="http://www.randomhouse.com/crown/zombiesurvivalguide/">The Zombie Handbook By Max Brooks</a></p>
<p><a href="http://www.randomhouse.com/crown/zombiesurvivalguide/"><img src="http://graymerica.com/wpblog/wp-content/uploads/2007/10/4125b4zvxhl_aa240_.thumbnail.jpg" title="4125b4zvxhl_aa240_.jpg" alt="4125b4zvxhl_aa240_.jpg" align="right" /></a></p>
<p>&#8220;The <strong>Zombie Survival Guide</strong> is your key to survival against the hordes of undead who may be stalking you right now. Fully illustrated and exhaustively comprehensive, this book covers everything you need to know, including how to understand zombie physiology and behavior, the most effective defense tactics and weaponry, ways to outfit your home for a long siege, and how to survive and adapt in any territory or terrain.&#8221; <em>from Amazon</em></p>
<p><em>Top 10 Lessons for Surviving a Zombie Attack </em></p>
<blockquote><p>1. Organize before they rise!<br />
2. They feel no fear, why should you?<br />
3. Use your head: cut off theirs.<br />
4. Blades don’t need reloading.<br />
5. Ideal protection = tight clothes, short hair.<br />
6. Get up the staircase, then destroy it.<br />
7. Get out of the car, get onto the bike.<br />
8. Keep moving, keep low, keep quiet, keep alert!<br />
9. No place is safe, only safer.<br />
10. The zombie may be gone, but the threat lives on.</p></blockquote>
<p><strong>Video after the break.</strong></p>
<p><span id="more-22"></span></p>
<p><iframe src="http://www.snotr.com/embed/541" frameborder="0" height="330" width="400"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/tidbits/zombies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who Makes Websites: An A List Apart Survey</title>
		<link>http://graymerica.com/wpblog/tidbits/who-makes-websites-an-a-list-apart-survey/</link>
		<comments>http://graymerica.com/wpblog/tidbits/who-makes-websites-an-a-list-apart-survey/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 18:38:40 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tidbits]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/uncategorized/who-makes-websites-an-a-list-apart-survey/</guid>
		<description><![CDATA[&#8220;In April 2007, A List Apart and An Event Apart conducted a survey of people who make websites. Close to 33,000 web professionals answered the survey’s 37 questions, providing the first data ever collected on the business of web design and development as practiced in the U.S. and worldwide.&#8221;
This is an exhaustive survey of who [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;In April 2007, <cite>A List Apart</cite> and An Event Apart conducted a survey of people who make websites. Close to 33,000 web professionals answered the survey’s 37 questions, providing the first data ever collected on the business of web design and development as practiced in the U.S. and worldwide.&#8221;</p></blockquote>
<p>This is an exhaustive survey of who makes websites, including Project Managers, Webmasters, Developers and Creative Directors .</p>
<p>Some interesting results:</p>
<ul>
<li>72.5% have their own blog.</li>
<li>46.5% had a field of study unrelated to current web work.</li>
<li>32.2% have only been in their current job 1 year or less.</li>
<li>Project Managers had the highest job satisfaction (51.6%), Webmasters, lowest (40.3%)</li>
</ul>
<p>View results here <a href="http://www.alistapart.com/articles/2007surveyresults">http://www.alistapart.com/articles/2007surveyresults</a></p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/tidbits/who-makes-websites-an-a-list-apart-survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone vs BlackBerry 8820: Who will reign supreme?</title>
		<link>http://graymerica.com/wpblog/general/iphone-vs-blackberry-8820-who-will-reign-supreme/</link>
		<comments>http://graymerica.com/wpblog/general/iphone-vs-blackberry-8820-who-will-reign-supreme/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 13:27:46 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/general/iphone-vs-blackberry-8820-who-will-reign-supreme/</guid>
		<description><![CDATA[I wanted to thank the nice people at AT&#38;T and their PR firm for sending me both an iPhone and a BlackBerry 8820 to test out.  Currently, I am putting the two phones through their paces and I promise a full report on the pro and cons of both phones soon.  They are [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to thank the nice people at AT&amp;T and their PR firm for sending me both an <a href="http://www.apple.com/iphone/">iPhone</a> and a <a href="http://www.blackberry8800series.com/blackberry8820/">BlackBerry 8820</a> to test out.  Currently, I am putting the two phones through their paces and I promise a full report on the pro and cons of both phones soon.  They are giving my <a href="http://www.nseries.com/products/n70/index.html">Nokia N70</a> a run for the money but I have not made up my mind yet.  Stay tuned&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/general/iphone-vs-blackberry-8820-who-will-reign-supreme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New SBTDC Website Launched</title>
		<link>http://graymerica.com/wpblog/tidbits/new-sbtdc-website-launched/</link>
		<comments>http://graymerica.com/wpblog/tidbits/new-sbtdc-website-launched/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 14:15:30 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[SBTDC]]></category>
		<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/uncategorized/new-sbtdc-website-launched/</guid>
		<description><![CDATA[We have launched the new version of the web site for the Small Business Technology Development Center in Wilmington, NC.. (www.csb.uncw.edu/sbtdc/)
My goals in updating the site were as follows:

Streamline the navigation and make content easier to find
Build the site with current web standards and ensure ADA compliance
Update content on the site to reflect new staff [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.csb.uncw.edu/sbtdc/"></a>We have launched the new version of the web site for the <a href="http://www.csb.uncw.edu/sbtdc/">Small Business Technology Development Center in Wilmington, NC.</a>. (<a href="http://www.csb.uncw.edu/sbtdc/">www.csb.uncw.edu/sbtdc/)</a></p>
<p>My goals in updating the site were as follows:</p>
<ul>
<li>Streamline the navigation and make content easier to find</li>
<li>Build the site with current web standards and ensure ADA compliance</li>
<li>Update content on the site to reflect new staff and documents.</li>
</ul>
<p><a href="http://www.csb.uncw.edu/sbtdc/" title="New SBTDC Homepage"><img src="http://graymerica.com/wpblog/wp-content/uploads/2007/09/picture-1.thumbnail.png" title="New SBTDC Homepage" alt="New SBTDC Homepage" align="right" border="0" hspace="4" vspace="4" /></a><br />
Overall the site is a huge improvement over the previous version and can now be maintained by SBTDC administrative staff via Macromedia Contribute.</p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/tidbits/new-sbtdc-website-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Will It Blend?</title>
		<link>http://graymerica.com/wpblog/tidbits/iphone-will-it-blend/</link>
		<comments>http://graymerica.com/wpblog/tidbits/iphone-will-it-blend/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 13:55:41 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/tidbits/iphone-will-it-blend/</guid>
		<description><![CDATA[The name says it all.  This has got to be one of the best viral ad campaigns out there.  I may just have to buy on of their blenders.

It amazes me that the phone continued to work for as long as it did during the blend.
]]></description>
			<content:encoded><![CDATA[<p>The name says it all.  This has got to be one of the best viral ad campaigns out there.  I may just have to buy on of their blenders.</p>
<p><embed src="http://www.youtube.com/v/qg1ckCkm8YI" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425"></embed></p>
<p>It amazes me that the phone continued to work for as long as it did during the blend.</p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/tidbits/iphone-will-it-blend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If there is such a thing as Power Point humor, this is it.</title>
		<link>http://graymerica.com/wpblog/tidbits/if-there-is-such-a-thing-as-power-point-humor-this-is-it/</link>
		<comments>http://graymerica.com/wpblog/tidbits/if-there-is-such-a-thing-as-power-point-humor-this-is-it/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 14:15:59 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/?p=6</guid>
		<description><![CDATA[People love Power Point, I even like to use, but there are a lot of things you can do wrong. Comedian  Don McMillian hits on most of them.  
Life After Death by PowerPoint
*This is safe for work and has no improper language.
]]></description>
			<content:encoded><![CDATA[<p>People love Power Point, I even like to use, but there are a lot of things you can do wrong. Comedian  Don McMillian hits on most of them.  </p>
<p><a href="http://vids.myspace.com/index.cfm?fuseaction=vids.individual&#038;videoid=1529637984">Life After Death by PowerPoint</a><br /><embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="m=1529637984&#038;type=video" type="application/x-shockwave-flash" width="430" height="346"></embed></p>
<p>*This is safe for work and has no improper language.</p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/tidbits/if-there-is-such-a-thing-as-power-point-humor-this-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A podcast you should listen to</title>
		<link>http://graymerica.com/wpblog/tidbits/a-podcast-you-should-listen-to/</link>
		<comments>http://graymerica.com/wpblog/tidbits/a-podcast-you-should-listen-to/#comments</comments>
		<pubDate>Fri, 18 May 2007 18:59:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tidbits]]></category>

		<guid isPermaLink="false">http://graymerica.com/wpblog/?p=4</guid>
		<description><![CDATA[If you are interested in business topics such as marketing, leadership, business development, you should check out the Harvard Business Review  &#8220;Ideacast.&#8221; It is a weekly podcast on a range of topics.  Last week&#8217;s discussion of public relations gave a lot of valuable insight into the value of good PR.  There were [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.hbsp.harvard.edu/b01/en/images/misc/ideacast_logo.gif" title="HBR IdeaCast" alt="HBR IdeaCast" align="right" height="92" hspace="4" vspace="4" width="92" />If you are interested in business topics such as marketing, leadership, business development, you should check out the Harvard Business Review  &#8220;<a href="http://www.hbsp.harvard.edu/b01/en/hbr/hbr_ideacast.jhtml" title="IdeaCast">Ideacast.</a>&#8221; It is a weekly podcast on a range of topics.  Last week&#8217;s discussion of public relations gave a lot of valuable insight into the value of good PR.  There were some practical tips on how to position your organization in such a way to attract the press when they need an expert for a topic.</p>
<p>Some of the past topics have included, <em>What is Wikinomics?</em>, <em>Breakthrough Ideas of 2007,</em> and <em>Viral marketing</em>. Each episode is free and only 10 to 15 minutes long.   This is some great stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://graymerica.com/wpblog/tidbits/a-podcast-you-should-listen-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
