<?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>Inside Chris&#039;s Head &#187; Blogging</title>
	<atom:link href="http://chris2x.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://chris2x.com</link>
	<description>One man&#039;s view of life in Silicon Valley from Chris Christensen - a podcaster, blogger, social media consultant</description>
	<lastBuildDate>Sun, 20 May 2012 20:24:07 +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>Increase WordPress Website Speed for Free (using .htaccess and robots.txt)</title>
		<link>http://chris2x.com/2011/11/14/increase-wordpress-website-speed-for-free-using-htaccess-and-robots-txt/</link>
		<comments>http://chris2x.com/2011/11/14/increase-wordpress-website-speed-for-free-using-htaccess-and-robots-txt/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 01:50:58 +0000</pubDate>
		<dc:creator>Chris Christensen</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1766</guid>
		<description><![CDATA[I run this websites and a few others, including my more popular Amateur Traveler website on a bluehost.com account. I started to run into problems with performance as my site started to push past 2000 page views a day, especially when I would get bursts of traffic from sites like StumbleUpon. I started to get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://chris2x.com/2011/11/14/increase-wordpress-website-speed-for-free-using-htaccess-and-robots-txt/screen-shot-2011-11-14-at-8-18-44-pm/" rel="attachment wp-att-1767"><img class="aligncenter size-large wp-image-1767" title="robots.txt" src="http://chris2x.com/files/2011/11/Screen-Shot-2011-11-14-at-8.18.44-PM-500x92.png" alt="" width="500" height="92" /></a></p>
<p>I run this websites and a few others, including my more popular <a href="http://AmateurTraveler.com">Amateur Traveler</a> website on a <a href="http://www.kqzyfj.com/click-2788716-10376682">bluehost.com</a> account. I started to run into problems with performance as my site started to push past 2000 page views a day, especially when I would get bursts of traffic from sites like StumbleUpon. I started to get issues where the CPU on my website was &#8220;throttled&#8221; as much as half of the day. I investigated more expensive hosting options but eventually found I could get better performance from my WordPress hosted site for free using a few small changes to two files: .htaccess and robots.txt.</p>
<p>Before you implement these changes I would also recommend using a caching plugin like <strong>WP Super Cache</strong> or <strong>W3 Total Cache</strong>.</p>
<h2>.htaccess</h2>
<p>Most hosting websites use a free webserver program called Apache to run their websites. With Apache you can change the local configuration for a site using a file called .htaccess which lives in the top directory of your WordPress site. It should be in the same directory as wp-config.php.</p>
<p><strong>Caching</strong></p>
<p>The first set of changes to add to this file are a series of commands that make certain static files like images save for longer in the user&#8217;s browser. Setting these commands will allow fewer and fewer downloads of files from your server as a user returns to your site. There is a risk here that as you need to change an image, for instance, you will need to rename the image file so that a user&#8217;s browsers will download it promptly. So you might not want to increase the caching time on your css and javascript files if you plan on changing them constantly.<code></code></p>
<p><code><br />
# Expire images header<br />
ExpiresActive on<br />
ExpiresDefault "access plus 7 day"<br />
ExpiresByType image/gif "access plus 3 months"<br />
ExpiresByType image/jpg "access plus 3 months"<br />
ExpiresByType image/png "access plus 3 months"<br />
ExpiresByType image/jpeg "access plus 3 months"<br />
ExpiresByType text/javascript "access plus 1 month"<br />
ExpiresByType application/x-javascript "access plus 1 month"<br />
ExpiresByType text/css "access plus 7 days"<br />
ExpiresByType text/html "access plus 1 day"<br />
ExpiresByType text/plain "access plus 1 day"<br />
ExpiresByType application/x-shockwave-flash "access plus 3 months"<br />
</code></p>
<p><strong>Spiders</strong></p>
<p>The way that search engines work is that they send a program (called a &#8220;bot&#8221; or a &#8220;spider&#8221;) to grab the contents of your website periodically. You can make these bots more efficient by using a plugin like <strong>Google XML Sitemaps</strong> (or <strong>WPMU Google Sitemap</strong> on a multi-site configuration) to create a file with a map of all of the pages of your site. Normally you can communicate with these programs via a file called <strong>robots.txt</strong> which we will deal with in a minute.</p>
<p>I did find that one spider from the Chinese site Baidu was ignoring the content of my robots.txt file so I am blocking that spider via the following lines of code in the .htaccess file. The reason that I am blocking Baidu is that I found that the spider was hitting my site a thousand times a day but only sending me maybe 6 page views a day of user traffic. Note that access from spiders will not show up in Google Analytics so you will have to look at your webserver logs to see what kind of traffic you are receiving.</p>
<p><code><br />
RewriteEngine On<br />
RewriteCond %{HTTP_USER_AGENT} Baiduspider [NC]<br />
RewriteRule ^.* - [F,L]<br />
</code></p>
<h2>Robots.txt</h2>
<p>The file robots.txt should also be in the top level directory of your website. It tells the robots/bots/spiders how they should deal with your website. It tells them what content they should and what content they should not spider. The less content they spider then the less load on your system. So what you want to do is tell the spiders not to look at content that you do not want to show up on Google.</p>
<p>When you install a sitemap creating plugin mentioned above then you can tell the various bots about where they can find your sitemap in your robots.txt file. You can also tell Google via the <a href="http://www.google.com/webmasters/">Google Webmasters tool</a>.<br />
<code><br />
Sitemap: http://chris2x.com/sitemap.xml.gz<br />
</code></p>
<p>These commands block the comments form, directories that should be hidden, trackback&#8217;s and other dynamic pages.</p>
<p><code><br />
User-agent: *<br />
Disallow: /cgi-bin<br />
Disallow: /wp-admin<br />
Disallow: /wp-includes<br />
Disallow: /wp-content/plugins<br />
Disallow: /wp-content/cache<br />
Disallow: /wp-content/themes<br />
Disallow: /trackback<br />
Disallow: /feed<br />
Disallow: /comments<br />
Disallow: /category/*/*<br />
Disallow: */trackback<br />
Disallow: */feed<br />
Disallow: */comments<br />
Disallow: /*?*<br />
Disallow: /*?<br />
Allow: /wp-content/uploads</code></p>
<p>Another bot that I found that was spidering my sites a lot, but not sending any appreciable traffic was the Majestic12 bot which is part of an open source search project. These lines block that bot. You could put other bots here but if, for instance, you block the Google bot then you are saying you don&#8217;t want traffic from Google.</p>
<p><code>User-agent: www.majestic12.co.uk<br />
Disallow:</code></p>
<p>You can also slow down how often various bots will crawl your site. These two lines tell Google and MSN not to crawl my pages more than once every 1 minute and every 5 minutes respectively.</p>
<p><code>User-agent: msnbot<br />
Crawl-delay: 300<br />
User-agent: Googlebot<br />
Crawl-delay: 60</code></p>
<p>With just these changes I found that I could get more performance from my website for what it was intended, serving pages to real users.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2011/11/14/increase-wordpress-website-speed-for-free-using-htaccess-and-robots-txt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Improve Your Writing &#8211; Tell A Story</title>
		<link>http://chris2x.com/2011/08/12/improve-your-writing-tell-a-story/</link>
		<comments>http://chris2x.com/2011/08/12/improve-your-writing-tell-a-story/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 23:08:43 +0000</pubDate>
		<dc:creator>Chris Christensen</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1747</guid>
		<description><![CDATA[I had a non-profit pitch a story for the Amateur Traveler recently and in the process of getting that story ready for publication I think there is a valuable lesson. What the author had missed was the chance to make the story personable and therefore more memorable. The first version of the story about volunteer [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Old stories, well told by Unhindered by Talent, on Flickr" href="http://www.flickr.com/photos/nicmcphee/477111054/"><img src="http://farm1.static.flickr.com/205/477111054_c46b205e3a.jpg" alt="Old stories, well told" width="500" height="333" /></a></p>
<p>I had a non-profit pitch a story for the <a href="http://AmateurTraveler.com">Amateur Traveler</a> recently and in the process of getting that story ready for publication I think there is a valuable lesson. What the author had missed was the chance to make the story personable and therefore more memorable. The first version of the story about volunteer travel destinations started like this:</p>
<blockquote><p>From its humble beginnings in the 1960’s, volunteer travel has grown into a hugely popular phenomenon, offering an immensely rewarding and highly varied world of opportunity.</p>
<p>Today’s volunteer traveller is spoilt for choice; since this particular strand of tourism began in the 60’s, the possibilities have grown enormously from their initial focus on conservation into a broad and seemingly endless list of projects.</p>
<p>Whether you are embarking on a voluntary project in order to gain valuable experience in a particular field for your future career, or simply for the love of helping out, there really is something for anyone and everyone.</p></blockquote>
<h3>Your Own Experience</h3>
<p>There is nothing wrong with those paragraphs per say, but neither do they leap from the page and shout &#8220;read on&#8221;!  So I wrote back to the author with this advice:</p>
<blockquote><p>I like the article but the first set or paragraphs buries the lede. I think the article would be a lot punchier without as much of this. You might think about starting with your own experience.</p></blockquote>
<p>The author returned a second try at the opening paragraph:</p>
<blockquote><p>My unforgettable experiences in the remote rainforests of Peru saw me taking part in a wide range of exciting activities, from midnight river-trips in search of caiman, to feeding the jaguar at the rehabilitation centre. However, this type of project is only one of many different areas of conservation you can get involved in.</p></blockquote>
<h3>Show Me Don&#8217;t Tell Me</h3>
<p>The problem that I ha with the new paragraph is that it told me he had had interesting experiences or at least it told me about them but it still didn&#8217;t engage or involve me.  I replied:</p>
<blockquote><p>That&#8217;s better, but you still missed a chance to actually tell your story. You mentioned a &#8220;midnight river-trips in search of caiman&#8221;. That&#8217;s both sounds like your best content and the best advertisement&#8230; but you didn&#8217;t tell the story. What I am looking for is compelling first person narrative in the first and maybe last paragraph. Picture how much better this article would be if you started with something like:</p>
<p>We panned the murky waters with the beams of our flashlights. The hair on the back of my neck stood up as I wondered what might be watching us form the jungle as I was looking for the twin reflections of the eyes of a caiman. A relative of the alligator, the caiman hunts by ambush. I am sitting in a boat, in the dark in the middle of the night, on the Amazon. &#8220;What&#8217;s the worst thing that could happen?&#8221;, I asked myself.</p></blockquote>
<p>And received a third version and the final opening of the story:</p>
<blockquote><p>Slowly edging our way along the river bank, the light from our torch scanned for the unmistakable orange glint reflected in the eyes of this night-time killer. A close relative of the alligator, the caiman is a highly evolved predator, always ready to pounce. As we made our silent approach, my heart was pounding; this was my chance to finally catch this incredible creature. My hand shook as I reached down to the murky water, tales of lost fingers echoing in my head. And then nothing; it had seen me coming. As we moved on, I sighed with relief disguised as disappointment.</p>
<p>Caiman hunting really was the tip of the iceberg during my time in the remote Peruvian rainforest. By the end of those three months, I had witnessed many of the animals I had grown up watching on documentaries with amazement. From feeding the jaguar at the rehabilitation centre, to early morning outings in search of the mysterious giant otters, my experience was unforgettable. A voluntary wildlife conservation project really can involve a vast variety of different issues. Not only could you be going to some of the most exciting, remote and beautiful places on earth, but you could also encounter the incredibly diverse and important species that these locations have to offer. Taking part in a wildlife conservation project is a worthwhile and memorable experience, wherever you choose to go.</p></blockquote>
<h3>Tell A Story</h3>
<p>The final article &#8220;<a title="Permanent Link to Wildlife Conservation Projects around the World" href="http://amateurtraveler.com/2011/08/12/wildlife-conservation-projects-around-the-world/" rel="bookmark">Wildlife Conservation Projects around the World</a>&#8221; may not yet be ready for a Lowell Thomas award, but compare it to the first draft. I receive a lot of articles like the first version lest you think I am picking on the author and even more articles that are not worth putting more time into. The writing and editing on my blog has been influenced by a class I took at the <strong>Book Passage Writing</strong> conference last year from Spud Hilton. Some of the advice he gave includes:</p>
<ol>
<li>Have a point to the article. Too many articles I get say &#8220;I went here and I did that&#8221;. They are a journal entry not an article.</li>
<li>Don&#8217;t bury the lede. Your opening sentence is very important. I recall the sample opening sentence he gave us form a travel story: &#8220;Don&#8217;t worry the turbaned man grinned, the snake around your daughter&#8217;s neck is not poisonous.&#8221; That&#8217;s a sentence that makes you want to read more.</li>
<li>Get to your point quickly and then get rid of the paragraphs that don&#8217;t support your point. Perhaps you can save all that other information for another article with an appropriate point.</li>
<li>How would a good story teller capture the attention of the audience. They might not start chronologically. When I tell of my trip to New Zealand last year I start with the experience of &#8220;blackwater rafting&#8221;, spelunking with a wetsuit and an inner-tube. I don&#8217;t start, &#8220;I got off the plane and headed into customs&#8221;.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2011/08/12/improve-your-writing-tell-a-story/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blogging for Profit &#8211; Short Course &#8211; November 20th</title>
		<link>http://chris2x.com/2010/08/10/blogging-for-profit-short-course-november-20th/</link>
		<comments>http://chris2x.com/2010/08/10/blogging-for-profit-short-course-november-20th/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 21:22:07 +0000</pubDate>
		<dc:creator>Chris Christensen</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1691</guid>
		<description><![CDATA[On November 20th  I will be teaching a one day short course at DeAnza College called &#8220;Blogging for Profit&#8221;. COURSE DESCRIPTION: This course will look at How to pick a topic for blogging How to use keyword research How to setup and maintain a blog using WordPress How to personalize your blog using templates and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://chris2x.com/wp-content/blogs.dir/1/files/blogging-20100810-142048.jpg" alt="blogging" width="500" height="366" /></p>
<p>On November 20th  I will be teaching a one day short course at DeAnza College called &#8220;Blogging for Profit&#8221;.</p>
<p><strong>COURSE DESCRIPTION:</strong><br />
This course will look at</p>
<ul>
<li>How to pick a topic for blogging</li>
<li> How to use keyword research</li>
<li> How to setup and maintain a blog using WordPress</li>
<li> How to personalize your blog using templates and plugins</li>
<li> How to maintain your blog</li>
<li> How to get advertising for your blog</li>
<li> How to sell products using affiliate links</li>
<li> How to use your blog to build your reputation</li>
<li> How to work with PR firms</li>
</ul>
<p>There is no materials fee, but blog hosting is recommended and costs around $7 a month and other tools will be discussed but not required.</p>
<p><strong>INSTRUCTOR BIOGRAPHY:</strong><br />
Chris left his day job in January 2010 to focus on consulting, podcasting and blogging including his popular Amateur Traveler podcast / blog. He was the Executive Vice President of Engineering and Operations for a company in Silicon Valley (LiveWorld) that runs online communities for companies like eBay, Marriott, American Express, Campbells, Kimberly Clark, A&amp;E, and Mini Cooper.</p>
<p><strong>SCHEDULE:</strong><br />
November 20, 2010 &#8211; 1 Week(s) &#8211; Sat &#8211; 9 AM to 5 PM</p>
<p><strong>REGISTRATION:</strong></p>
<p>Registration will open later in August at <a href="http://www.shortcourses.fhda.edu/">Impact Short Courses</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2010/08/10/blogging-for-profit-short-course-november-20th/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Discovering My Tribe&#8230; and the Value of a Mailing List</title>
		<link>http://chris2x.com/2009/03/31/discovering-my-tribe-and-the-value-of-a-mailing-list/</link>
		<comments>http://chris2x.com/2009/03/31/discovering-my-tribe-and-the-value-of-a-mailing-list/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 15:39:19 +0000</pubDate>
		<dc:creator>chris2x</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[tribes]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1489</guid>
		<description><![CDATA[When I read Seth Godin&#8217;s book Tribes about discovering the group of people who want/need you to lead them I understood it and appreciated it. But I think I didn&#8217;t get it in quite the same way as I did this week. the problem As many of you know my podcast the Amateur Traveler was [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.amazon.com/dp/1591842336?tag=chrischrissho-20&amp;camp=0&amp;creative=0&amp;linkCode=as1&amp;creativeASIN=1591842336&amp;adid=1MBRSMDMEZSA4J0VY9QA&amp;"><img src="/wp-content/blogs.dir/1/book-tribes.jpg-20090330-095625.jpg" alt="book-tribes.jpg" width="175" height="252" style="border:1px solid #ccc;padding: 3px;margin-left: 10px" align="right" /></a>When I read Seth Godin&#8217;s book <a href="https://www.amazon.com/dp/1591842336?tag=chrischrissho-20&amp;camp=0&amp;creative=0&amp;linkCode=as1&amp;creativeASIN=1591842336&amp;adid=1MBRSMDMEZSA4J0VY9QA&amp;">Tribes</a> about discovering the group of people who want/need you to lead them I understood it and appreciated it. But I think I didn&#8217;t get it in quite the same way as I did this week.</p>
<p><strong>the problem</strong></p>
<p>As many of you know my podcast the <a href="http://AmateurTraveler.com">Amateur Traveler</a> was in the running for a Lonely Planet Blog Award. This competition had two phases. The first phase was a popularity vote and the second phase was a vote of the judges. I was confident I would do well with the judges but I have always hated the popularity vote. In high school I was neither a social pariah nor was I class president. As a shy person by nature I hate shilling for votes. But this was a contest I wanted to win. When the contest started I was about 500 votes down before I even knew I was in the running. I sent emails to my small email list, twittered, got my friends to twitter for me, brought it up at work, mentioned the contest on my podcast and I closed the gap some but I was still way behind.</p>
<p><strong>the power of mailing lists</strong></p>
<p>But then my friend Craig Martin of the <a href="http://indietravelpodcast.com/">Indie Travel Podcast</a> sent an email to his mailing list and rocketed into first place. So I went to my email box and found the emails for people who had written me about the show and ask them to vote for the show. A funny thing happened. They voted and in great numbers. When I send a twitter message my typical response rate is around one click for every 50 people who follow me. This was more like one response for every 3 emails. That was amazing enough but the next part is what really surprised me.</p>
<p><strong>my tribe</strong></p>
<p>No one wrote me and said to stop bothering them. Instead many people wrote emails like these:</p>
<blockquote>
<p>I voted for you.  I love your show, although I don&#8217;t get a chance to listen to it quite as often since my daughter Chloe was born in August.  The first time I did listen to Amateur Traveler after she was born the topic was Acadia National Park.  That was a great surprise because we live in Maine  (about 4 hours south of the park), and although I&#8217;ve done a lot of traveling around the country and in Europe, I haven&#8217;t been to Acadia since I was 8 years old.</p>
<p>It was a nice reminder that even though our travel experiences will be different now, there are some great places to explore right in our own state.  I also purchased a state park pass recently, and can&#8217;t wait for summer!  Now if only this snow would go away&#8230;</p>
<p>Thanks for taking the time to put out the show.  It is appreciated.</p>
<p><em>Nicole</em></p>
<p>I voted for you and I really enjoy the show. Best of luck.</p>
<p><em>Thelma in Missouri</em></p>
<p>Done. It´s a pleasure to help you and give something in return for your great podcast</p>
<p><em>Jose</em></p>
<p>Good luck Chris!  Thanks for all the great shows and all the time and effort you devote to them.</p>
<p><em>Lottie</em></p>
<p>Thanks for the email.  Already voted for you &#8211; both from home and at work, so the site won&#8217;t accept another email from me.  <img src='http://chris2x.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Good luck, and thanks for your continued dedication to the podcast.  I thoroughly enjoy it.  You continue to open up small pieces of the world to those of us who have an interest in travel but limited opportunity. It truly is appreciated.</p>
<p>Thanks, again, and keep up the good work.  Blessings,</p>
<p><em>Gerry</em></p>
</blockquote>
<p>Thanks for the email? People were thanking me for asking them to do me a favor. People were actually glad to help. Oh, that&#8217;s <a href="http://sethgodin.typepad.com/seths_blog/2008/01/tribal-manageme.html">what Seth Godin meant</a>!</p>
<blockquote><p>It starts with permission, the understanding that the real asset most organizations can build isn&#8217;t an amorphous brand but is in fact the privilege of delivering anticipated, personal and relevant messages to people who want to get them.</p></blockquote>
<p>Building a tribe is about providing value. When people appreciate what you have been doing for them they are glad to return the favor.</p>
<p><strong>postscript</strong></p>
<p>Ironically, I won the vote handily and then lost the judging. The judges were not in my tribe. I can live with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2009/03/31/discovering-my-tribe-and-the-value-of-a-mailing-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Twitter &#8211; Twitter as a Survey Tool for Bloggers</title>
		<link>http://chris2x.com/2008/11/25/how-to-twitter-twitter-as-a-survey-tool-for-bloggers/</link>
		<comments>http://chris2x.com/2008/11/25/how-to-twitter-twitter-as-a-survey-tool-for-bloggers/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 16:03:36 +0000</pubDate>
		<dc:creator>chris2x</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1442</guid>
		<description><![CDATA[Writer&#8217;s block comes eventually to all bloggers. You know you want to write a &#8220;7 ways to &#8230;&#8221; style article and you can only come up with 5 ways to do anything. What do you do? Like the song says, I get by with a little help from my friends. In this case my friends [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/blogs.dir/1/twitter-survey-20081125-074434.jpg" alt="twitter-survey" style="border:1px solid #ccc;padding: 3px;margin-left: 10px" align="right" width="347" height="244" />Writer&#8217;s block comes eventually to all bloggers. You know you want to write a &#8220;7 ways to &#8230;&#8221; style article and you can only come up with 5 ways to do anything. What do you do? Like the song says, I get by with a little help from my friends. In this case my friends were my twitter followers.</p>
<p>The article I was writing yesterday was &#8220;<a href="http://blog.amateurtraveler.com/2008/11/24/7-things-you-should-packbring-when-you-travel-to-san-francisco/">7 Things You Should Pack/Bring When You Travel To San Francisco</a>&#8220;. Once you have mentioned to take warm clothing and a camera, what&#8217;s left? So I sent out a tweat:</p>
<blockquote><p>I am writing a blog post on &#8220;7 things you should pack when you travel to San Francisco&#8221;. I am a few short. Ideas? </p></blockquote>
<p>Within about a half an hour I had five good responses from slightly over 1000 followers. That is about a .5% response rate, but I only needed two ideas and I had at least one I would not have thought of.</p>
<blockquote><p><a href="http://twitter.com/MikeTRose">MikeTRose</a> @<a href="http://twitter.com/chris2x">chris2x</a> Allergy medications. For some reason, East Coasters like me get the sniffles in SF.</p></blockquote>
<p>That made perfect sense to me with the dampness of San Francisco, but it was outside my experience so it would not have occurred to me.</p>
<p>I think there are takeaways from this experience:</p>
<ul>
<li>I might do this in the future even if I can come up with 7 things on my own. Why not write a list of 9 things instead.</li>
<li>People helped me out so I gave them credit because fair is fair.</li>
<li>I had a 3rd takeaway a minute ago, what am I missing? <img src='http://chris2x.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2008/11/25/how-to-twitter-twitter-as-a-survey-tool-for-bloggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogger Outreach &#8211; Do Your Homework</title>
		<link>http://chris2x.com/2008/10/20/blogger-outreach-do-your-homework/</link>
		<comments>http://chris2x.com/2008/10/20/blogger-outreach-do-your-homework/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:00:44 +0000</pubDate>
		<dc:creator>chris2x</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Cell Phones]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1433</guid>
		<description><![CDATA[I am still surprised and flattered when someone asks my opinion so that is probably why I said yes when I was offered the chance to evaluate a cell phone handset for a major cell phone manufacturer. As the blogger/podcaster I did not really do my homework. I assumed that the company was asking me [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/wp-content/blogs.dir/1/cell-phone-20081019-222541.jpg" alt="cell-phone" width="130" height="116" align="right" />I am still surprised and flattered when someone asks my opinion so that is probably why I said yes when I was offered the chance to evaluate a cell phone handset for a major cell phone manufacturer. As the blogger/podcaster I did not really do my homework. I assumed that the company was asking me because I do a <a href="http://AmateurTraveler.com">travel podcast</a>. So I assumed the handset was one of their new video enabled phones which I was anxious to try out. That was not the case. The phone was a music player phone aimed at a young audience. This is not the sort of product that I blog about. I am not the sort of blogger/podcaster that writes for their target audience so it was obvious that they did not do their homework either.</p>
<p>When I finally got around to trying out the phone I was also surprised that the music library contained some surprising choices. Am I a prude? Yes, probably I am. I was not expecting that their list of music genres would include a very Anglo-Saxon word for the sex act. I was expecting to see words like rock, pop, or blues. When you are sending a phone to someone to review who also happens to produce a <a href="http://TheBibleStudyPodcast.com">bible study podcast</a> I also wonder about the wisdom of songs with artist labels like &#8220;Anti-Christ&#8221;.</p>
<p>I don&#8217;t feel the need to slam the phone or the phone&#8217;s maker because I think this mismatch was partly my fault for not asking more questions. I also feel no need to endorse the phone as I think this is a product that might be a bit &#8220;off-brand&#8221; for me. A little more homework on my part or theirs might have prevented what was a waste of time and what could have been a PR disaster.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2008/10/20/blogger-outreach-do-your-homework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&quot;What is this website about?&quot;</title>
		<link>http://chris2x.com/2008/09/08/what-is-this-website-about/</link>
		<comments>http://chris2x.com/2008/09/08/what-is-this-website-about/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 16:58:36 +0000</pubDate>
		<dc:creator>chris2x</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1413</guid>
		<description><![CDATA[I have changed the slogan for the Amateur Traveler to: &#8220;Amateur Traveler &#8211; The Amateur Traveler is a travel show that helps you find the best places to travel to. It includes both a weekly audio podcast and a twice monthly video podcast. It also includes travel news and resources.&#8221; This is an ongoing effort [...]]]></description>
			<content:encoded><![CDATA[<p>I have changed the slogan for the Amateur Traveler to:</p>
<p>&#8220;<a href="http://AmateurTraveler.com">Amateur Traveler</a> &#8211; The Amateur Traveler is a travel show that helps you find the <a href="http://amateurtraveler.com/best-places-to-travel">best places to travel</a> to. It includes both a weekly audio podcast and a twice monthly video podcast. It also includes travel news and resources.&#8221;</p>
<p>This is an ongoing effort to refine the description of the site.</p>
<p>When I created the Amateur Traveler site I made what  I think is a classic error. The tag line I used at the time was &#8220;travel for the love of it&#8221;. I was trying to explain why I had chosen the name Amateur Traveler. But what I did not do is explain to someone why they would want to come to this site at all. It is difficult when you are familiar with a website to see if with the same eyes as someone who has never been there.</p>
<p><strong>How many seconds do you have before someone forms an impression of your site?</strong></p>
<p>Try showing your site to someone who has not seen it before and ask them what this site is about and why someone would want to go there. If they can&#8217;t tell you, you have a problem.</p>
<p><strong>What is a visitors first impression?</strong></p>
<p>Since a visitor may not stay long on your site their first impression may be their only impression.</p>
<p><strong>What draws the eye of a new visitor?</strong></p>
<p>Show your site to someone and ask them before you show it to point to the first thing that gets their attention. It may not be as accurate as eye tracking software but it is a lot cheaper.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2008/09/08/what-is-this-website-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4.5 Blogging Tips For the Spelling/Typing Disabled (but Mac Enabled)</title>
		<link>http://chris2x.com/2008/06/05/45-blogging-tips-for-the-spellingtyping-disabled-but-mac-enabled/</link>
		<comments>http://chris2x.com/2008/06/05/45-blogging-tips-for-the-spellingtyping-disabled-but-mac-enabled/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 00:18:29 +0000</pubDate>
		<dc:creator>chris2x</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[spelling]]></category>
		<category><![CDATA[typing]]></category>

		<guid isPermaLink="false">http://chris2x.com/?p=1386</guid>
		<description><![CDATA[I love English. I know no language better than my native tongue. But as someone who thinks in a logical fashion I personally know of at least 4 languages where I can probably spell with better results (German, Turkish, Italian, Spanish) than in the eddies and riptides which comprise English spelling. Personally I blame the [...]]]></description>
			<content:encoded><![CDATA[<p>I love English. I know no language better than my native tongue. But as someone who thinks in a logical fashion I personally know of at least 4 languages where I can probably spell with better results (German, Turkish, Italian, Spanish) than in the eddies and riptides which comprise English spelling. Personally I blame the Norman invaders and the creator of the first commercially successful English dictionary, but that is a rant for another time. If you couple my inability to spell with the fact that I never took a typing class you could easily conclude that it is unwise to release me upon the blog reading public&#8230; and that is no doubt true. But blog I do. Fortunately the Mac has a few tricks up its sleeve to help someone just like me.</p>
<ol>
<li><strong>Check Spelling While Typing</strong> &#8211; I can turn on a feature right here in my browser (Safari) to spell check as I go. Right click (or command click in a text area to bring up a menu. From the Spelling and Grammar menu select &#8220;Check Spelling While Typing&#8221;. Now as I type, words will be spell checked.</li>
<li><strong><a href="http://ettoresoftware.com/EttoreSoftware/About_TypeIt4Me.html">TypeItForMe</a></strong> &#8211; This wonderful tool can allow me to create aliases for frequently typed phrases like the name of my most popular podcast so that I can type &#8220;atp&#8221; and get &#8220;Amateur Traveler&#8221;.</li>
<li><strong>TypeItForMe 4.0</strong> &#8211; The latest version of TypeItForMe can also correct my simple typos as I go. If I type &#8220;tihs&#8221; I get &#8220;this&#8221;. It also has the ability to replace misspelled words.</li>
<li><strong>Speech</strong> &#8211; I am bad editor. My brain tends to correct typos and grammar errors when I read. But I am a much better audio editor. You can have the Mac speak any section of text. From the Application menu (such as &#8220;Safari&#8221; from within the browser) select &#8220;Services&#8221; then &#8220;Speech&#8221; then &#8220;Start Speaking Text&#8221; to have your Mac read back to you the selected text.</li>
<li><strong>Google</strong> &#8211; When in doubt remember that the google spelling dictionary is one of the better ones. If you can spell the word close to the correct spelling, Google might be able to get you the rest of the way.</li>
<li>
</li>
</ol>
<p>To see these techniques in action, watch the attached video.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2008/06/05/45-blogging-tips-for-the-spellingtyping-disabled-but-mac-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Did Amateur Become a Dirty Word?</title>
		<link>http://chris2x.com/2008/03/10/when-did-amateur-become-a-dirty-word/</link>
		<comments>http://chris2x.com/2008/03/10/when-did-amateur-become-a-dirty-word/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 02:16:13 +0000</pubDate>
		<dc:creator>chris2x</dc:creator>
				<category><![CDATA[Baseball]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Podcasting]]></category>
		<category><![CDATA[amateur]]></category>
		<category><![CDATA[journalism]]></category>
		<category><![CDATA[professional]]></category>

		<guid isPermaLink="false">http://chris2x.com/2008/03/10/when-did-amateur-become-a-dirty-word/</guid>
		<description><![CDATA[It seems over the last few years main stream media has increasingly taken the position that main stream media is &#8220;professional&#8221; and that bloggers and podcasters are &#8220;amateurs&#8221;. When did &#8220;amateur&#8221; become a dirty word? I am an amateur, after all I have a podcast that proudly proclaims myself the &#8220;Amateur Traveler&#8220;. But what&#8217;s so [...]]]></description>
			<content:encoded><![CDATA[<p>It seems over the last few years main stream media has increasingly taken the position that main stream media is &#8220;professional&#8221; and that bloggers and podcasters are &#8220;amateurs&#8221;. When did &#8220;amateur&#8221; become a dirty word? I am an amateur, after all I have a podcast that proudly proclaims myself the &#8220;<a href="http://AmateurTraveler.com">Amateur Traveler</a>&#8220;. But what&#8217;s so bad about being an amateur?</p>
<p>The word &#8220;amateur&#8221; does not mean a beginner or someone who is bad at doing something, or at least it did not originally mean this. An amateur was someone who did something for the &#8220;love of it&#8221;. A century ago it was the professional who was under a cloud of suspicion as someone with impure motives.</p>
<p><img src="/wp-content/blogs.dir/1/jim-thorpe.jpg" width="125" height="150" alt="jim thorpe" style="border:1px solid #ccc;padding: 3px;margin-left: 10px" align="right" />Lets take the example of <a href="http://www.cmgww.com/sports/thorpe/bio2.htm">Jim Thorpe</a>, sometimes called the &#8220;greatest athlete of all times&#8221;:</p>
<blockquote><p>At the tender age of 24, Thorpe sailed with the American Olympic team to Antwerp, Belgium for the 1912 Olympic Games. Remarkably, he trained aboard the ship on the journey across sea. He blew away the competition in both the pentathlon and the decathlon and set records that would stand for decades. King Gustav V presented Thorpe with his gold medals for both accomplishments. As stated in Bob Berontas&#8217; &#8220;Jim Thorpe, Sac and Fox Athlete&#8221;: &#8220;Before Thorpe could walk away, the king grabbed his hand and uttered the senta3ence that was to follow for the rest of his life. &#8216;Sir,&#8217; he declared, &#8216;you are the greatest athlete in the world,&#8217; Thope, never a man to stand on ceremony, answered simple and honestly, &#8216;Thanks King.&#8217;&#8221;</p>
<p>Thorpe&#8217;s glorious Olympic wins were jeopardized in 1913 when it came out that he played two semi-professional seasons of baseball. The Olympics Committee had strict rules about Olympians receiving monetary compensation for participating in professional athletics. Thorpe, who stated he played for the love of the game and not the money, was put under the microscope. Ultimately, it was decided that his baseball experience adversely affected his amateur status in the track and field events. His name was removed from the record books and his gold medals were taken away.</p></blockquote>
<p><img src="/wp-content/blogs.dir/1/Albert_Einstein.jpg" width="198" height="214" alt="Albert Einstein" align="right" style="border:1px solid #ccc;padding: 3px;margin-left: 10px" />When Scientific American used to run a column called the <a href="http://amasci.com/amateur/sciamdx.html#52-AA">Amateur Scientist</a> from (1958 to 1978) they were not trying to encourage stupid people to build proton accelerators in their basements (Accelerator, proton. how to construct, 1971 Aug, pg 106). They were instead harkening back to the days of the renaissance man (or woman). It used to be encouraged for people to dabble in science out of a genuine interest without regard to what they did for a living. And why not, the most influential theory of the 20th century was proposed by an amateur scientist who worked as a patent clerk.</p>
<p><img src="/wp-content/blogs.dir/1/blogs.dir/1/mark-spitz.jpg" width="200" height="250" align="left" style="border:1px solid #ccc;padding: 3px;margin-left: 10px" alt="mark spitz" /><a href="http://en.wikipedia.org/wiki/Mark_Spitz">Mark Spitz</a> was an amateur athlete as were all Olympic athletes of his day. One could be an amateur and still be the best. Barry Bonds and Roger Clemens are professional athletes. Jose Conseco was a professional athlete so a professional may not show professionalism any more than an amateur needs to be amateurish.</p>
<p>It is not my intention to try and swing the pendulum back to the days of Jim Thorpe or the early days of the internet when any hint of commercialism was seen as wrong. Rather we should see that whether or not a person is paid for their endeavors is not the sole measure of the value of their work. <a href="http://en.wikipedia.org/wiki/Edward_R._Murrow">Edward R. Murrow</a> was a professional journalist, but so was <a href="http://en.wikipedia.org/wiki/William_Randolph_Hearst">William Randolph &#8220;You furnish the pictures and I&#8217;ll furnish the war&#8221; Hearst</a>. A professional journalist can make making money their sole goal or they can aim somewhat higher.</p>
<p>So let&#8217;s not, as if we could, strive for an internet void of commercial interests but instead evaluate work based on value and quality remembering that the Ark was built by an amateur, the Titanic was built by professionals.</p>
]]></content:encoded>
			<wfw:commentRss>http://chris2x.com/2008/03/10/when-did-amateur-become-a-dirty-word/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/

Served from: chris2x.com @ 2012-05-22 19:11:55 -->
