<?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>A Blog by Franklin Pettit &#187; Blogging</title>
	<atom:link href="http://www.fpettit.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fpettit.com</link>
	<description>Tech, Life, &#38; Stuff...</description>
	<lastBuildDate>Fri, 18 Jun 2010 02:18:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://www.fpettit.com</link>
<url>http://www.fpettit.com/favicon.ico</url>
<title>A Blog by Franklin Pettit</title>
</image>
		<item>
		<title>Wordpress Tip: Function is_user_logged_in</title>
		<link>http://www.fpettit.com/2009/01/24/wordpress-tip-function-is_user_logged_in/</link>
		<comments>http://www.fpettit.com/2009/01/24/wordpress-tip-function-is_user_logged_in/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 20:48:33 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=385</guid>
		<description><![CDATA[A PHP function is available in Wordpress called is_user_logged_in that is very useful if you want to know if a user is logged in.  Why on earth would you want to know this?  Have you ever thought about adding custom content to your blog that only you can see or only logged in (registered users) [...]]]></description>
			<content:encoded><![CDATA[<p>A PHP function is available in <a class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org">Wordpress</a> called <a href="http://codex.wordpress.org/Function_Reference/is_user_logged_in">is_user_logged_in</a> that is very useful if you want to know if a user is logged in.  Why on earth would you want to know this?  Have you ever thought about adding custom content to your blog that only you can see or only logged in (registered users) can see?</p>
<p>If so this function is for you.  I recently updated my blog’s theme and realized that it has some space that could be used for secondary navigation.  <a href="http://www.fpettit.com/wp-content/uploads/2009/01/nolinks1.png" rel="lightbox[385]"><img style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" title="nolinks1" src="http://www.fpettit.com/wp-content/uploads/2009/01/nolinks1-thumb.png" border="0" alt="nolinks1" width="427" height="168" /></a> The area in red seemed to me like a great place for additional links.</p>
<p>This is where the function <em><strong>is_user_logged_in</strong></em> can help me out.   In this case the area highlighted in red has its own <a href="http://www.w3schools.com/tags/tag_DIV.asp">div tag</a>.  It currently looks like this:</p>
<blockquote><p>&lt;div id=&#8221;nav-space&#8221;&gt;&lt;/div&gt;</p></blockquote>
<p>Inside the div tag I place the following 2 lines.</p>
<blockquote><p>&lt;?php if (is_user_logged_in()){ ?&gt;<br />
&lt;?php } ?&gt;</p></blockquote>
<p>The 2 lines call the function is_user logged_in and evaluate the return value with my if statement. The second statement simply closes or ends the if. Do not worry if you do not understand.  Let me just tell you what it does.</p>
<p>Suffice it to say that anything you put between the 2 lines will be seen by logged in users only. For this example I am going to insert a link.</p>
<blockquote><p>&lt;div id=&#8221;nav-space&#8221;&gt;<br />
&lt;?php if (is_user_logged_in()){ ?&gt;<br />
&lt;a href=”http://www.google.com”&gt;Google&lt;/a&gt;<br />
&lt;?php } ?&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>In the example just above a link to <a href="http://www.google.com">Google</a> will be placed in the red area above that can only be seen by a logged in user.  In this case, me!</p>
<p>Now let’s put it in to practice.    I have added 3 links to the red bar section.  I now have access to <a class="zem_slink" title="Facebook" rel="homepage" href="http://facebook.com">facebook</a>, <a class="zem_slink" title="FriendFeed" rel="homepage" href="http://friendfeed.com">friendfeed</a>, and <a class="zem_slink" title="Twitter" rel="homepage" href="http://www.twitter.com/">twitter</a> right in my header section. I like this.  I think I will add some additional links later.</p>
<p>Now remember they will only display if you are logged in.  If you are like me you mainly use the same computers and stay logged in.  As long as you are logged in you will see your links.</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto" src="http://www.fpettit.com/wp-content/uploads/2009/01/mylinks3.png" alt="" /></p>
<p>Do you hang out on your own blog alot?  Would you like to use your own blog for a mini portal? Do you have free navigation space available?</p>
<p>This is great for me and adds functionality for my purposes but leaves the blog crisp and clean for visitors.  Try this Wordpress trick in your theme today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2009/01/24/wordpress-tip-function-is_user_logged_in/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Writing From Shower Thoughts</title>
		<link>http://www.fpettit.com/2009/01/22/writing-from-shower-thoughts/</link>
		<comments>http://www.fpettit.com/2009/01/22/writing-from-shower-thoughts/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 22:10:03 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=391</guid>
		<description><![CDATA[
Do you ever have an idea for a blog post but then it spirals out of control and you end up with more ideas, less ideas, or nowhere at all?
I began this morning with a “shower thought.”  I will define a shower thought as; the half asleep thoughts or fuzzy brainstorming that just seems to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-393" title="showersmall" src="http://www.fpettit.com/wp-content/uploads/2009/01/showersmall.png" alt="showersmall" width="620" height="413" /></p>
<p>Do you ever have an idea for a blog post but then it spirals out of control and you end up with more ideas, less ideas, or nowhere at all?</p>
<p>I began this morning with a “shower thought.”  I will define a shower thought as; <em>the half asleep thoughts or fuzzy brainstorming that just seems to flow just after you wake up that sometimes occur while taking a shower.</em></p>
<p>Your brain and body still half asleep combine to form what seem like good ideas.  Before I knew it I had an idea for a blog post.</p>
<p>Later when trying to write from concept (maybe nothing more than a title) you end up with a post, 3, or nothing writable at all.  Some shower thoughts end up nowhere.</p>
<p>This morning I had a shower thought and had a title for what I thought could be a single blog post.   In this case a rough <a class="zem_slink" title="Outline" rel="wikipedia" href="http://en.wikipedia.org/wiki/Outline">outline</a> revealed up to 3 possible posts not just 1.</p>
<p>I have heard others say they keep paper and pen with them at all times night or day to record a fleeting idea.  Inspiration may strike like lightening at the strangest times.</p>
<p>When I write based upon a &#8220;shower thought&#8221; I usually start with a rough outline or notes.  Then I just start writing the post and see how far it goes.  You never know where it will end up.</p>
<p>I do not worry about where I start.  I just write and see where the post takes me.  I do not know if the outcome will be  great or not I just go down the path to find out.</p>
<p>At the end of the road if the result is not <a href="http://www.fpettit.com/2008/11/18/post-worthy/">post worthy</a> or incomplete then you can always wait for the next shower thought.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/85dd5c30-2f78-4837-89de-bad0b2fa6a4d/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=85dd5c30-2f78-4837-89de-bad0b2fa6a4d" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2009/01/22/writing-from-shower-thoughts/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>5 Ways to Make 2009 The Year Of The Blog</title>
		<link>http://www.fpettit.com/2009/01/15/5-ways-to-make-2009-the-year-of-the-blog/</link>
		<comments>http://www.fpettit.com/2009/01/15/5-ways-to-make-2009-the-year-of-the-blog/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 21:50:33 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Formulas]]></category>
		<category><![CDATA[Rules]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=377</guid>
		<description><![CDATA[
History will decide the fate of 2009.  Happy New Year!  A new year means a new start and new opportunities.  I am looking forward to a great year both personally and professionally.
Take advantage of the new year by updating your blog.  Make a new years resolution to blog more often.
I tried blogging several times but [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fpettit.com/wp-content/uploads/2009/01/broadcastsmall.png" rel="lightbox[377]"><img style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" title="Broadcast your Blog!" src="http://www.fpettit.com/wp-content/uploads/2009/01/broadcastsmall-thumb.png" border="0" alt="Broadcast your blog" width="611" height="384" /></a></p>
<p>History will decide the fate of 2009.  Happy New Year!  A new year means a new start and new opportunities.  I am looking forward to a great year both personally and professionally.</p>
<p>Take advantage of the new year by updating your blog.  Make a new years resolution to blog more often.</p>
<p>I tried blogging several times but never got the hang of it.  2008 was the year for me after trying 3 or 4 times at blogging.</p>
<p>You can make 2009 the year for you.  Blogging can be time consuming.  If you failed at blogging in 2008 it&#8217;s ok because it&#8217;s 2009.  After failing at it several times I have realized several things the new blogger should think about.  So here are 5 pointers for the “new blogger” or the “try again blogger.”</p>
<ol>
<li><strong>Personal Look and Feel.</strong> &#8211; Your blog is yours and yours alone.  Choose a theme, layout, and look that suits your taste.  Change it as often you like.  Do not listen to anyone telling you what it should look like.  Do not listen to those that preach a consistent look.  That really is not important.  Look and Feel is personal and should be what you want.  I totally recommend <a href="http://www.wordpress.org">Wordpress</a> as a blogging platform.  A <a href="http://wordpress.org/extend/themes/">multitude of themes</a> are available.  I just updated this blog to a theme called <a href="http://www.myokyawhtun.com/">WP-Bats</a> that I custom modified to suit me.  Its suits me today.  If one day it doesn’t then I will change.  Wordpress is great because most themes do not require modification they just work.</li>
<li><strong>Realistic Goals.</strong> Set realistic goals for your blog.  Look most of have full-time jobs, families, activities, and many other things to take our time.  If you want to blog its ok to be realistic.  Set a goal to post once a month.  If it works out then maybe twice a month.  Pace yourself.  The web is not going anywhere and your blog will probably still be there.  If you want an audience just know things take time.  Content is important but just do your best.  It is your blog.</li>
<li><strong>No pressure.</strong> &#8211; Blog because you want to.  Blog for any reason.  Blog because you feel like it.  Blog when you want to record something or broadcast something.  If you fail at a goal it is ok.  It really does not matter.  Do not read, listen, or hear, the naysayers about how to blog or what to do.  Do not feel pressured that there is a right way to blog.  You blog in your own way.</li>
<li><strong>Fun.</strong> First and foremost have fun with it.  You should enjoy what you are writing or posting about.  Your enjoyment means the blog will probably get more attention, more content, and most all more time in your busy schedule.  Second, audiences (readers) generally like to have fun also.  Blogging is about enjoyment through words, pictures, audio, or video and it is a 2 way street.  So if you are having fun the audience probably is too.</li>
<li><strong>No Rules Just You. </strong>I believe this more than anything else about blogging.  Forget the rules, <a href="http://www.fpettit.com/2008/07/08/forget-the-blogging-formulas/">forget the blogging formulas</a>, forget the rhetoric pushed out out by the large blogs telling everyone what to do.  You see they are laughing all the way to the bank.  They are making money by telling lots of eyeballs how, when, where, why, and what they should blog about.  <a href="http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/">Write what you want when you want</a>.</li>
</ol>
<p>2009 can be the year of the blog.  If at first you don’t succeed try, try again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2009/01/15/5-ways-to-make-2009-the-year-of-the-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Post Worthy</title>
		<link>http://www.fpettit.com/2008/11/18/post-worthy/</link>
		<comments>http://www.fpettit.com/2008/11/18/post-worthy/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 03:16:16 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/2008/11/18/post-worthy/</guid>
		<description><![CDATA[ As a blogger do you hold yourself to a posting standard?&#160; The blogs about blogging would certainly say so.&#160; 
I have always thought the blogs about blogging amusing.&#160; You know which ones I mean.&#160; The blogs that tell you what, when, and how to write, be successful and oh yeah get rich from your [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline; margin: 0px 10px 10px 0px" src="http://www.fpettit.com/wp-content/uploads/2008/06/write1-300x225.jpg" align="left" /> As a blogger do you hold yourself to a posting standard?&#160; The blogs about blogging would certainly say so.&#160; </p>
<p>I have always thought the blogs about blogging amusing.&#160; You know which ones I mean.&#160; The blogs that tell you what, when, and how to write, be successful and oh yeah get rich from your blog.&#160; </p>
<p>Yeah you know which ones I am talking about.&#160; Those sites that discuss how to make money on your blog and give out pointers are some of the only blogs actually making money. </p>
<p>So my theory slash tip slash advice would be for someone that wants to make money on their blog should totally give advice about how to make money on your blog. </p>
<p>But anyway I totally digress.&#160; This post I called “Post Worthy.”</p>
<p>As a blogger do you hold yourself to a posting standard?&#160; Should you?&#160; Is there a quality or threshold for content before it hits your blog?</p>
<p>My answer has and always will be the same.&#160; Whatever makes <strong>You</strong> happy.&#160; A blog should be about you first and foremost.&#160; I blog when I want, about what I choose, when I can.&#160;&#160;&#160; </p>
<p><a href="http://www.fpettit.com/2008/07/08/forget-the-blogging-formulas/">Forget the blogging formulas</a>, and <a href="http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/">write when and what you want</a>.&#160; </p>
<p>But, back to post worthy.&#160; Is&#160; it worth it to post drivel? Should you post for the sake of posting?&#160; </p>
<p>Yes and No.&#160; The answers are relative.&#160; </p>
<p>Yeah not sure this post is worthy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/11/18/post-worthy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FriendFeed on My Blog</title>
		<link>http://www.fpettit.com/2008/08/20/friendfeed-on-my-blog/</link>
		<comments>http://www.fpettit.com/2008/08/20/friendfeed-on-my-blog/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 15:10:18 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[jeffisageek]]></category>
		<category><![CDATA[michael phelps]]></category>
		<category><![CDATA[olympics]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=215</guid>
		<description><![CDATA[It has been a while since I have posted. I have been working on several projects in my spare time. Most of my free time has been spent lately working on a Wordpress theme from scratch and watching the Olympics. Michael Phelps is the man!
But, I have still been feed reading and staying up to [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 294px"><a href="http://www.flickr.com/photos/sayco/2777125315/"><img style="margin: 5px;  border: 0px;" title="Beijing 2008 Michael Phelps" src="http://farm4.static.flickr.com/3075/2777125315_09a6829eee_o.jpg" alt="Beijing 2008 Michael Phelps" width="284" height="239" /></a><p class="wp-caption-text">Beijing 2008 Michael Phelps</p></div>
<p>It has been a while since I have posted. I have been working on several projects in my spare time. Most of my free time has been spent lately working on a <a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/">Wordpress theme from scratch</a> and watching the <a href="http://www.nbcolympics.com">Olympics</a>. Michael Phelps is the man!</p>
<p>But, I have still been feed reading and staying up to date via <a href="http://www.friendfeed.com/fpettit">FriendFeed</a>. Jeff of <a href="http://www.jeffisageek.net/">Jeffisageek.net</a> <a href="http://www.jeffisageek.net/blog/2008/08/12/making-my-site-more-friendfeedly/">posted</a> a great post about getting friendfeed to your website. In fact he went so far as to add it as the main content on his site.</p>
<p>Today I have added a friendfeed link at the <a href="http://www.fpettit.com/friendfeed/">top of the page</a>. I simply wrote a <a href="http://codex.wordpress.org/Pages#Creating_your_own_Page_Templates">Wordress page template</a> and embedded my FriendFeed content using the instructions from <a href="http://www.friendfeed.com/jeffisageek">Jeff</a>.</p>
<p>I am working on several new posts so stay tuned. But when my posting is sparse though find out what I am doing by checking <a href="http://www.fpettit.com/friendfeed">my FriendFeed page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/08/20/friendfeed-on-my-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bloggers Will You Proofread For Links?</title>
		<link>http://www.fpettit.com/2008/08/06/bloggers-will-you-proofread-for-links/</link>
		<comments>http://www.fpettit.com/2008/08/06/bloggers-will-you-proofread-for-links/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 15:15:26 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Editing]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Grammar]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Proofreading]]></category>
		<category><![CDATA[Spelling]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=186</guid>
		<description><![CDATA[ Errors
I am a horrible speller.  Yes, I said horrible, and I mean horrific.  I am uncertain the reasons why but spell check is my friend.  When I write a blog post I spell check and proofread every time.
As I have said on this blog before quality of content is important to me.  I will [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.fpettit.com/wp-content/uploads/2008/08/proofread.jpg" rel="lightbox[186]"><img style="border: 0pt none; margin: 5px;" title="ProofRead" src="http://www.fpettit.com/wp-content/uploads/2008/08/proofread-thumb.jpg" border="0" alt="ProofRead" width="244" height="184" align="left" /></a> Errors</strong></p>
<p>I am a horrible speller.  Yes, I said horrible, and I mean horrific.  I am uncertain the reasons why but spell check is my friend.  When I write a blog post I spell check and proofread every time.</p>
<p>As I have said on this blog before quality of content is important to me.  I will <a href="http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/">post when and what I want</a> but I want to produce some level of quality content.  I have a sense as I write a post that a certain value of content should be reached.</p>
<p>I have <a href="http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/">established</a> that I strive for a level of excellence but more often than not I fall short.  I always find typographical errors in the form of misspelled words and left out words.</p>
<p>I seem to always leave out words.  Always!  I can read a post 10 times but the moment I have released it to the wild I find a left out word.</p>
<p>I published a post titled “<a href="http://www.fpettit.com/2008/07/29/down-with-friendfeed-etiquette/">Down with FriendFeed Etiquette</a>.”  I had worked on this post for quite sometime.  I wrote the bulk of the writing last week and had done the research weeks before that.  Despite the effort in crafting a post I still have numerous errors in it.  I found links that do not work, words that were missing, and sentences that simply made no sense.  The spelling was correct in this case.  Well, maybe I did not find any spelling errors.</p>
<p><strong>Trusted Editors</strong></p>
<p>The best candidates for proofreading my blog posts would be trusted individuals.</p>
<p>Friends and family make great although unsuspecting proofreaders and potential editors.  But, in this case I am looking for some expertise in the subject matter of the post.</p>
<p>Friends and Family can do a great job at simple editing.  They can find missing words and assist with general editing.</p>
<p><strong>Proofreaders for Hire</strong></p>
<p>Here is my proposal.  If you are a blogger and would be willing to proofread a blog post I will give you link credit as a proofreader.</p>
<p>Interested?  Sign up as a proofreader and when I get ready to post I will email you several hours in advance.  As a proofreader you promise confidentiality of the post content until released.</p>
<p>Then your job as the proofreader would be to look for spelling, grammar, and general nonsense in the post.  I am looking for the following questions to be answered:</p>
<ol>
<li><em>Are there any spelling and grammar issues?</em></li>
<li><em>Do the post links work?</em></li>
<li><em>Do the sentences make sense?</em></li>
<li><em>Can you understand what I am talking about is it clear?</em></li>
</ol>
<p>As for style and general sentence structure my style is obviously my style.  I am looking for help proofreading not rewriting or critique.</p>
<p>After proofreading you the reader would email me what you found.  If you were helpful I will include a line at the bottom of the post stating:</p>
<blockquote><p><em>Proofread by: Joe of Joe’s Blog, John of John’s Deer, David of TechBlog, &amp; Mary of TechStuff</em></p></blockquote>
<p>Each name will be linked to each blogger&#8217;s blog.  Would you like to join my proofreading squad?</p>
<p>I will choose arbitrarily a squad of 5 people or so.  If you would like to try leave a comment on this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/08/06/bloggers-will-you-proofread-for-links/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Forget the Blogging Formulas</title>
		<link>http://www.fpettit.com/2008/07/08/forget-the-blogging-formulas/</link>
		<comments>http://www.fpettit.com/2008/07/08/forget-the-blogging-formulas/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 19:02:50 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Copybloger]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=131</guid>
		<description><![CDATA[“Write what you want to because the rest is bologna” was a post I wrote about breaking the blogging formulas.  This is a followup post to make a different point.
Forget the blogging formulas.  Blogging is not an exact science.  That is why we are all different.  As human beings there are no 2 bloggers who [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-108" style="border: 0pt none; margin: 5px; float: right;" title="write1" src="http://www.fpettit.com/wp-content/uploads/2008/06/write1-300x225.jpg" alt="" width="300" height="225" />“<a href="http://www.fpettit.com/index.php/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/">Write what you want to because the rest is bologna</a>” was a post I wrote about breaking the blogging formulas.  This is a followup post to make a different point.</p>
<p>Forget the blogging formulas.  Blogging is not an exact science.  That is why we are all different.  As human beings there are no 2 bloggers who write exactly the same. Writing / Blogging is an expression of one&#8217;s thoughts and ideas.  Some bloggers are good at it and some are not.</p>
<p>I read a post today from CopyBlogger titled “<em><a href="http://www.copyblogger.com/blog-post-length/">3 Things to Consider When Deciding How Long Your Blog Posts Should Be</a></em>.”  There are no three things to consider when determining the length of your blog post.  The CopyBlogger post listed <em>&#8220;TONE, POSTING FREQUENCY, and POSTING SCHEDULE&#8221;</em> as the three things to consider.</p>
<p>I could not disagree more with the Copyblogger post.</p>
<p><strong>Formulaic Consistency</strong></p>
<p>The three things suggested seem to center around creating a consistency for your blog.  Consistency in posting, in style and topic, and in posting schedule.</p>
<p>If I read 100 feeds in my feed reader I do not expect consistency from all posts of the blogs I read. I like the fact that when I open Google Reader I will get a new post with a different take.  I do not expect consistency and really do not desire it.  I like variety, new, and different content from the same sources.</p>
<p>Consistency is one of the formulaic things that can limit content.   I want fresh content.  I want fresh ideas.  I want bloggers that I read to write when and what they want to.</p>
<p><strong>Blogging Motivation</strong></p>
<p>Another problem I have with the CopyBlogger post is there are not 3 things to consider when determining post length.  Blogging with a blogging formula seems to me to be a misplacement of motivation for writing.</p>
<p>Why do you blog?  Who is your blogging for?  Do you blog only for SEO?</p>
<p>I do not think content should be geared solely around SEO.    What will my readers like? What will be popular?  What is relevant for post success?  Those are questions that are not valid to me.</p>
<p>Forget the blogging formulas.  Are you blogging because you like to write or is there some other purpose?</p>
<p>The only thing I consider when writing a blog post is did I get my point across.  Do I need more words to express the point of the post?  If the answer is &#8220;Yes&#8221; then I continue to write and if the answer is &#8220;No&#8221; I am finished.</p>
<p><strong>Mythical Blogging Rules </strong></p>
<p>The CopyBlogger post stated:</p>
<blockquote><p><em>&#8220;Many bloggers are afraid of breaking the “rules” because they want to succeed so bad. Conformism is a social more many are afraid to break across many spectrums; not just in business. But, sometimes success comes when you break all the rules.&#8221;</em></p></blockquote>
<p>I agree in part.  You will be successful when you come to the realization that there are no rules.  The &#8220;rules&#8221; are a myth.</p>
<p>Forget the Blogging Formulas.  Write what you want when you want because the rest is just bologna.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/07/08/forget-the-blogging-formulas/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Blog Has Been Louis Grayed!</title>
		<link>http://www.fpettit.com/2008/07/03/my-blog-has-been-louis-grayed/</link>
		<comments>http://www.fpettit.com/2008/07/03/my-blog-has-been-louis-grayed/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 14:24:30 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[GoogleReader]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Colin Walker]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Louis Gray]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=127</guid>
		<description><![CDATA[Yes this is a good thing.  In fact it is a very good thing.   Louis Gray is one of the premier Tech bloggers writing today.  I visit his site daily and even have an email subscription to make sure I do not miss a post.
Louis has shown great interest and respect for the small unknown [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.louisgray.com/live"><img class="alignleft" style="border: 0pt none ; margin: 5px; float: left;" src="http://www.fpettit.com/wp-content/fpphoto/lgraycomlogo.jpg" alt="" width="100" height="100" /></a>Yes this is a good thing.  In fact it is a very good thing.   Louis Gray is one of the premier Tech bloggers writing today.  I visit his site daily and even have an email subscription to make sure I do not miss a post.</p>
<p>Louis has shown great interest and respect for the small unknown blogger.  Since March he has been profiling 5 Blogs a month.   <a href="http://www.louisgray.com/live/2008/03/5-blog-candidates-for-tomorrows.html">March</a>, <a href="http://louisgray.com/live/2008/04/five-more-blogs-you-should-be-reading.html">April</a>, <a href="http://www.louisgray.com/live/2008/05/five-social-media-bloggers-to-watch.html">May</a> and <a href="http://louisgray.com/live/2008/06/five-blogs-for-june-on-your-summer.html">June</a>.  The small blogs he has spotlighted have taken off and many are must reads in my <a class="zem_slink" title="Google Reader" rel="homepage" href="http://www.google.com/reader">google reader</a> now.  These blogs have included <a href="http://bhc3.wordpress.com/">Hutch Carpenter</a>, <a href="http://anzman.blogspot.com/">Charlie Anzman</a>, <a href="http://www.shegeeks.net/">SheGeeks</a>, <a href="http://julianbaldwin.com/blog/">Julian Baldwin</a>, <a href="http://michaelfruchter.com/blog/">Michael Fruchter</a>, <a href="http://broadcasting-brain.com/"><span class="subscribed">Mark Dykeman</span></a>, <a href="http://colinwalker.me.uk/">Colin Walker</a>, <a href="http://vanelsas.wordpress.com/">Alexander van Elsas</a>, and many other outstanding blogs.</p>
<p>I am honored to be included in <a href="http://www.louisgray.com/live/2008/07/julys-jewels-five-obscure-blogs-that.html">the list for July</a>.  I am included in great company.  I already subscribe to two of them.  I have already been reading Nathaniel Payne&#8217;s NerdFlood and David Risley but can not wait to check out the other two as well.  Here is the list:</p>
<p>1) Bob Warfield / SmoothSpan Blog (<a href="http://smoothspan.wordpress.com/" target="new">smoothspan.wordpress.com</a>)</p>
<p>2) Jesse Stay / Stay N&#8217; Alive (<a href="http://www.jessestay.com/" target="new">www.jessestay.com</a>)</p>
<p>3) Franklin Pettit / FPettit.com (<a href="../" target="new">www.fpettit.com</a>)</p>
<p>4) Nathaniel Payne / NerdFlood (<a href="http://www.nerdflood.com/" target="new">www.nerdflood.com</a>)</p>
<p>5) David Risley / DavidRisley.com (<a href="http://www.davidrisley.com/" target="new">www.davidrisley.com</a>)</p>
<p>Thanks Louis for the <a href="http://www.louisgray.com/live/2008/07/julys-jewels-five-obscure-blogs-that.html">link and mention</a>.   I am honored to be in the company of your monthly featured bloggers.  I better get posting.  I currently have 33 open drafts in <a class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org/">Wordpress</a>.  It is time to finish some off and put out more content.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/16e98573-7cda-4204-aac9-5d7126a7370a/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=16e98573-7cda-4204-aac9-5d7126a7370a" alt="Zemanta Pixie" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/07/03/my-blog-has-been-louis-grayed/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>FriendFeed Temperature Taking</title>
		<link>http://www.fpettit.com/2008/06/26/friendfeed-temperature-taking/</link>
		<comments>http://www.fpettit.com/2008/06/26/friendfeed-temperature-taking/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 16:45:36 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Louis Gray]]></category>
		<category><![CDATA[Mike Fruchter]]></category>
		<category><![CDATA[Toluu]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=117</guid>
		<description><![CDATA[Early Adopters
Louis Gray recently wrote his feelings about the stages of an early adopter.  Early adopters may be fickle at times but many are currently on the same page it seems in love with the lifestreaming service FriendFeed.  I admit FriendFeed is the place to be in my opinion.
FriendFeed is currently the hangout [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Photo by Harraz via Flcikr" href="http://www.flickr.com/photos/harraz/"><img class="alignright" style="border: 0pt none; margin: 5px; float: right;" src="http://farm1.static.flickr.com/96/244142778_6f83320e2b_m.jpg" alt="" width="161" height="240" /></a><strong>Early Adopters</strong></p>
<p><a href="http://friendfeed.com/louisgray">Louis Gray</a> recently wrote his feelings about the <a href="http://www.louisgray.com/live/2008/06/five-stages-of-early-adopter-behavior.html">stages of an early adopter</a>.  Early adopters may be fickle at times but many are currently on the same page it seems in love with the lifestreaming service <a title="FriendFeed" href="http://www.FriendFeed.com">FriendFeed</a>.  I admit FriendFeed is the place to be in my opinion.</p>
<p>FriendFeed is currently the hangout du jour for early adopters. But the broad early adopter appeal for FriendFeed goes far beyond mere lifestreaming. The service has become a place for community, a sounding board, a peer hangout, an industry watercooler, and certainly many more things.</p>
<p>As a result FriendFeed is being used as a place for research, analysis, and early adopter community feeling on many social media issues.</p>
<p>Early Adopters are the heavy social media users of the Web 2.0 products.  Start up developers like <a href="http://www.Toluu.com">Toluu</a> founder <a href="http://friendfeed.com/calebelston">Caleb Elston</a> are able to use <a href="http://www.twitter.com">Twitter</a>, FriendFeed, and a specific <a href="http://friendfeed.com/rooms/toluu">FriendFeed Toluu room</a> as an avenue for user feedback, feelings, and product appeal.</p>
<p>With a community freely giving feedback an opportunity exists via the web that previously did not.   Web 2.0 start-ups can gain valuable user opinions earlier in the development cycle with no cost to the start-up by utilizing a social network like FriendFeed.</p>
<p><strong>Blog Post Material</strong></p>
<p>From the obvious department let me just state: If you need a blog post idea hop on over to FriendFeed.  The conversation is on every topic and you can begin the conversation yourself.</p>
<p>Many have taken conversations that occurred on FriendFeed and expounded upon the conversation to become detailed blog posts.  This is good.  Fractured conversation on FriendFeed is often conversation that would have never taken place otherwise and leads to more content.</p>
<p><strong>Taking Temperatures </strong></p>
<p>In the realm of gathering research many are using FriendFeed for direct research by temperature taking the early adopters.  I am seeing this practice grow.  <a href="http://friendfeed.com/fruchter">Mike Fruchter</a> in particular has used the discussion for later blog post material.</p>
<p>I have seen him ask direct questions on several occasions directly in what I would describe as a user polling temperature taking method.</p>
<p>This is a fabulous concept.  If you have a group of people that have similar interests all in the same place it certainly is a good opportunity to ask them a question.  Asking a question like this one:</p>
<blockquote><p><em>“Research post &#8211; What are your dislikes about del.icio.us? What features is del.icio.us lacking?”</em></p></blockquote>
<p>This was <a href="http://friendfeed.com/e/2b2a5c2e-dcd8-419d-90d5-e62aa377f179/Research-post-What-are-your-dislikes-about-del/">asked today</a> by <a href="http://michaelfruchter.com/blog/">Mike Fruchter</a> and generated beneficial discussion to Mike for post research but could potentially be great feedback for the del.icio.us team.  It also was very beneficial to other users like me who might want to weigh and measure a product like del.icio.us against its competitors.</p>
<p>I <a href="http://friendfeed.com/e/2b2a5c2e-dcd8-419d-90d5-e62aa377f179/Research-post-What-are-your-dislikes-about-del/">commented</a> the following in the middle of the conversation to Mike: &#8220;I like the way you have been using FriendFeed for research and early adopter temperatures.  It is a good idea.&#8221;  His response:</p>
<blockquote><p><em>&#8220;@Franklin thanks. Friendfeed has truly become a powerful research tool, in some aspects more powerful then Google. It&#8217;s amazing watching this rapid transformation take place.&#8221;</em></p></blockquote>
<p>I agree with him the power of FriendFeed as a research tool is astounding.  The current merit, usefulness, and value of FriendFeed seems to be nearly boundless with potential appearing limitless as well.  Early adopter temperature taking is just another benefit of the simple but complex addictive life-streaming service FriendFeed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/06/26/friendfeed-temperature-taking/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Write When and What You Want To: The Rest Is Bologna</title>
		<link>http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/</link>
		<comments>http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 01:46:50 +0000</pubDate>
		<dc:creator>Franklin Pettit</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[FriendFeed]]></category>
		<category><![CDATA[Google Reader]]></category>

		<guid isPermaLink="false">http://www.fpettit.com/?p=107</guid>
		<description><![CDATA[Write what you want and when you want to because the rest is just bologna.  I read posts all the time with hints, tips, and these grand thoughts about blogging.  They instruct you on how to grow your readership, encourage visitors, and some even give pointers for monetizing your blog.
You are either adept [...]]]></description>
			<content:encoded><![CDATA[<p><a title="write1" rel="lightbox" href="http://www.fpettit.com/wp-content/uploads/2008/06/write1.jpg" rel="lightbox[107]"><img class="alignleft size-medium wp-image-108" style="border: 0pt none; margin: 5px; float: left;" title="write1" src="http://www.fpettit.com/wp-content/uploads/2008/06/write1-300x225.jpg" alt="" width="258" height="194" /></a>Write what you want and when you want to because the rest is just bologna.  I read posts all the time with hints, tips, and these grand thoughts about blogging.  They instruct you on how to grow your readership, encourage visitors, and some even give pointers for monetizing your blog.</p>
<p>You are either adept at writing interesting content or you are not.  Some people are good at writing and some are not.  I read blogs that are absolute CRAP everyday.  I love <a class="zem_slink" title="FriendFeed" rel="homepage" href="http://friendfeed.com">FriendFeed</a> and enjoy the noise to a certain extent but let&#8217;s get real.  The river of noise is full of poorly written bad content.   That is fact.  Crap existing in the stream of the blogosphere.  But it is ok, this is what can distinguish your blog from the noise.</p>
<p>Blogging is more about luck than anything.    These hints from the blogosphere are just pointers to increase your chances to be successful.  It really is all about luck.  Don&#8217;t believe all the problogger &amp; copyblogger stuff.   Did you read the words let me type them again: It really is all about luck!</p>
<p>I read several blogs not in the tech field that are very well written but not very interesting to most.  They have a consistent readership under 20.</p>
<p>Does it matter what they write about? Not really they write because they want to. They are not in the obsessed tech blogger mode of checking stats 10 times per day.  They could care less about publishing breaking news or timely posts.</p>
<p>They write to record their thoughts.  What they post is thoughtful and interesting to their small audience.  But even with readers under 20 because the content is well written all 20 readers hang on that bloggers every posted word.</p>
<p>So how does that apply to tech blogging.  Write what you want to when you want to.  If you write content that is well thought out and well written you will grow a following.   But it will take time and luck as well.</p>
<p>Another thing I read about is <a href="http://www.scribkin.com/2008/06/10/strike-while-the-iron-is-hot/">posting timely</a>. This really does not matter.</p>
<p>I posted <a href="http://www.fpettit.com/index.php/2008/06/11/toluu-enhances-feed-pages-gets-speed-enhancements/">today</a> right after a product enhancement roll out and announcement.  I posted literally 1 minute after the launch time.  But I am a small blog.  My exposure is limited.</p>
<p>I feel like I posted a well thought out solidly written post but it did not really matter.  The posts later in the day by more well known bloggers got the majority of the page views.  Post when you want.  Even if it is old news if your insight or take is different and interesting a well written post can do well.</p>
<p>I was first today but it didn&#8217;t matter. Perhaps I should have posted tomorrow.  Do page views matter? What is your goal as a blogger?  Ultimately to grow your blog. I was happy with the post and the traffic was ok.</p>
<p>However last week I wrote a <a href="http://www.fpettit.com/index.php/2008/06/03/better-google-reader/">quick post</a> about a Firefox extension and the post ended up on Scoble&#8217;s <a class="zem_slink" title="Google Reader" rel="homepage" href="http://www.google.com/reader">Google Reader</a> shared items feed.   That was the single best traffic day ever for this blog.</p>
<p>This is just a perfect example of the luck involved in being a new blogger.  A post that you spend the most time on may not be the highest in page views while a quick post may go viral.  You just never know.</p>
<p>But what you can control is quality.  If you have the God given ability to write well then write well.  Produce quality content.</p>
<p>Now another thing I read about being a successful blogger is to post more posts.  Post daily or even more often.  Well look unless you are blogging full-time this is not very realistic.  Post when you can what you can.  I have a day job.  Blogging can become a hobby but as a hobby daily posting is nearly impossible for me.  Do what you can when you can.</p>
<p>To be successful you need a lot of luck.  But what you can control is quality, interesting, well written content.   But don&#8217;t worry about readership your audience will arrive just be patient.</p>
<p>Always write what you want and when you want to because the rest is just bologna.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fpettit.com/2008/06/11/write-when-and-what-you-want-to-the-rest-is-bologna/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
