<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Dane Morgan</title>
	<atom:link href="http://danemorgan.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://danemorgan.com</link>
	<description>Dane Morgan &#124; Blogger &#124; Marketer &#124; Freelancer &#124; WordPress Fan</description>
	<lastBuildDate>Wed, 06 Jan 2010 19:22:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>2006-2007 </copyright>
		<managingEditor>danemorgan@danemorgan.com (Dane Morgan)</managingEditor>
		<webMaster>danemorgan@danemorgan.com (Dane Morgan)</webMaster>
		<category>posts</category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Dane Morgan | Blogger | Marketer | Freelancer | WordPress Fan</itunes:summary>
		<itunes:author>Dane Morgan</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>Dane Morgan</itunes:name>
			<itunes:email>danemorgan@danemorgan.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://danemorgan.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://danemorgan.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Dane Morgan</title>
			<link>http://danemorgan.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>How To Use CSS To Make Rollover Effects Using A Single Image And No Javascript</title>
		<link>http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript</link>
		<comments>http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 19:07:24 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=24</guid>
		<description><![CDATA[Sometimes you need to use an image for a link. Commonly places like menus are good candidates for this because you don't want the text of those links on your page. Mostly this is for SEO reasons, otherwise, text is all good, right? But what about when you want a rollover effect, and you don't really want to spend the time creating every image twice, or making every reader download two copies of every image? And compound that even further if you need special "active", "first" or "last" states in the menu. That means even more images, and the javascript to make it all run. But I have a method that uses CSS and a single image. No duplicated images and no javascript.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>There are a lot of different ways to make rollover effects on menu items these days. Most of these involve two separate images with color changes between the two copies of the image. Most of them also involve using javascript to cause the images to swap when the reader hovers their mouse over the image.</p>
<p>Some designers, like myself, eschew this path because we like things light. An extra image and a bunch of extra javascript just don&#8217;t feel right. Many of us simply use CSS to style rollover effects on text elements like anchors or list items. That actually works pretty well, but has a serious limitation.</p>
<p>Sometimes you just don&#8217;t want the text on the page. For SEO reasosn, generally, you don&#8217;t want to use text in the anchors for the rollover links. In these cases, I&#8217;ve always reverted back to the two image, javascript rollover, but now I&#8217;ve stumbled on another way of doing this.</p>
<p>I really can&#8217;t believe I never thought of this before. I&#8217;m sure someone else has been doing it for ages, maybe you already know about it and I&#8217;m just behind the times here.</p>
<p>Basically the trick is to use a transparent .png image to create the &#8220;button&#8221; look for your rollover and then apply color changes to the container element when the user hovers over it.</p>
<p>Here&#8217;s what it looks like:</p>
<div class="pngtest">
<ul>
<li><a href="#" ><img src="http://danemorgan.com/wp-content/uploads/2010/01/home.png" alt="" title="home" width="150" height="25" /></a></li>
<li><a href="#" ><img src="http://danemorgan.com/wp-content/uploads/2010/01/blog.png" alt="" title="home" width="150" height="25" /></a></li>
<li><a href="#" ><img src="http://danemorgan.com/wp-content/uploads/2010/01/more.png" alt="" title="home" width="150" height="25" /></a></li>
</ul>
</div>
<p style="clear:both">
<p>Here&#8217;s the html code</p>
<pre class="brush: xml;">
&lt;div class=&quot;pngtest&quot;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;home.png&quot; alt=&quot;PNG Test Btn 1&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;blog.png&quot; alt=&quot;PNG Test Btn 2&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;good.png&quot; alt=&quot;PNG Test Btn 3&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>and the css</p>
<pre class="brush: css; highlight: [20,23,24,25];">
.pngtest {
margin: 0;
padding: 0;
}

.pngtest ul{
list-style-type: none;
margin: 0;
padding: 0;
}

.pngtest li {
margin:0;
padding:0;
width: 150px;
height: 25px;
display: inline;
float: left;
background: #660066;
overflow: hidden;
}

.pngtest li a:hover {
background: #fe6700;
}
</pre>
<p>Initially I used this code to highlight the list item behind the image, and that works in Firefox, but not in Internet Explorer.</p>
<pre class="brush: css; first-line: 23;">
.pngtest li:hover {
background: #fe6700;
}
</pre>
<p>Highlighting the anchor as in this code still works in Firefox, and it also works in Internet Explorer, so this is the way to go.</p>
<pre class="brush: css; first-line: 23;">
.pngtest li a:hover {
background: #fe6700;
}
</pre>
<p>The overflow: hidden; is there on line 20 because for whatever reason Internet Explorer insisted on adding space to the list items beyond the image borders even with all of the boundaries specified for &#8216;0&#8242;. This resulted in a band of about 5px tall colored below the image row. adding the hidden overflow statement removed this color band.</p>
<p>Of course, if you don&#8217;t need the button look, and you are just doing this to hide the text from the search spiders, you can always just use an image with the text on a transparent background. Then it will llok and behave like a traditional CSS/XHTML menu class, but the text won&#8217;t be there. You would probably want to additioanlly name the images with numbers instead of the text you are hiding. I gave these names just to make it more apparent what is happening in the code.</p>
<p>If you have a lot of readers using Internet Explorer 5.5 or older browsers, the transparent .pngs will not be transparent, but will have an ugly gray background. You can look for a png fix for this, but they are not always 100% and i don&#8217;t understand why some work sometimes but not other times, so I can&#8217;t recommend any. Hardly anyone visits my site using an old browser, so i have decided i really just don&#8217;t care enough for the extra effort involved. Especially since i don&#8217;t have a copy of the old browsers to test with and have to rely on annoying procedures like using <a href="http://thumbshots.org" class="liexternal">ThumbShots</a> for each test and tweak.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/&amp;title=How+To+Use+CSS+To+Make+Rollover+Effects+Using+A+Single+Image+And+No+Javascript" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/&amp;t=How+To+Use+CSS+To+Make+Rollover+Effects+Using+A+Single+Image+And+No+Javascript" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/&amp;title=How+To+Use+CSS+To+Make+Rollover+Effects+Using+A+Single+Image+And+No+Javascript" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+To+Use+CSS+To+Make+Rollover+Effects+Using+A+Single+Image+And+No+Javascript+-+http://su.pr/2903VZ+(via+@danemorgan)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/" rel="nofollow" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/&amp;submitHeadline=How+To+Use+CSS+To+Make+Rollover+Effects+Using+A+Single+Image+And+No+Javascript&amp;submitSummary=There%20are%20a%20lot%20of%20different%20ways%20to%20make%20rollover%20effects%20on%20menu%20items%20these%20days.%20Most%20of%20these%20involve%20two%20separate%20images%20with%20color%20changes%20between%20the%20two%20copies%20of%20the%20image.%20Most%20of%20them%20also%20involve%20using%20javascript%20to%20cause%20the%20images%20to%20swap%20when%20the%20reader%20hovers%20their%20mouse%20over%20the%20im&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/&amp;title=How+To+Use+CSS+To+Make+Rollover+Effects+Using+A+Single+Image+And+No+Javascript" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/how-to-use-css-to-make-rollover-effects-using-a-single-image-and-no-javascript/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>K&#8217;tala Singing Rudolph the Red Nosed Reindeer</title>
		<link>http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ktala-singing-rudolph-the-red-nosed-reindeer</link>
		<comments>http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 16:33:46 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Live]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[ktala]]></category>
		<category><![CDATA[rudolph the red nosed reindeer]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=22</guid>
		<description><![CDATA[My daughter definitely sees things her own way. God love her. Here is an audio of her version of Rudolph at age 5.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>She has her own style, this one. Here&#8217;s K&#8217;tala&#8217;s version of Rudolph<br />
<a href="http://danemorgan.com/wp-content/uploads/2009/12/IMG_0340.JPG" ><img src="http://danemorgan.com/wp-content/uploads/2009/12/IMG_0340.JPG" alt="K&#039;tala" title="K&#039;tala" class="alignleft size-full wp-image-23" /></a><br />
<div class="ssg-gplayer" style="width:380px;">
								<script type="text/javascript">
									swfobject.registerObject("ssg_gplayer_object-022", "9.0.0", "http://danemorgan.com/wp-content/plugins/ssg-wordpress-google-audio-player/swfobject/expressInstall.swf");
								</script>
								<span class="title">Rudolph</span>
								
								<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="380" height="27" id="ssg_gplayer_object-0">
									<param name="movie" value="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=http://danemorgan.com/wp-content/uploads/2009/12/Rudolph.mp3" />
									<!--[if !IE]>-->
									<object type="application/x-shockwave-flash" data="http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl=http://danemorgan.com/wp-content/uploads/2009/12/Rudolph.mp3" width="380" height="27">
									<!--<![endif]-->
										<a href="http://www.adobe.com/go/getflashplayer">
											<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
										</a>
									<!--[if !IE]>-->
									</object>
									<!--<![endif]-->
								</object>
								
							</div></p>
<p>[Insert] This picture was taken by Devan on the kid&#8217;s camera. [/insert]</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/&amp;title=K%27tala+Singing+Rudolph+the+Red+Nosed+Reindeer" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/&amp;t=K%27tala+Singing+Rudolph+the+Red+Nosed+Reindeer" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/&amp;title=K%27tala+Singing+Rudolph+the+Red+Nosed+Reindeer" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=K%27tala+Singing+Rudolph+the+Red+Nosed+Reindeer+-+http://su.pr/8aIxKA+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/&amp;submitHeadline=K%27tala+Singing+Rudolph+the+Red+Nosed+Reindeer&amp;submitSummary=She%20has%20her%20own%20style%2C%20this%20one.%20Here%27s%20K%27tala%27s%20version%20of%20Rudolph%0D%0A%0D%0ARudolph%0D%0A%0D%0A%5BInsert%5D%20This%20picture%20was%20taken%20by%20Devan%20on%20the%20kid%27s%20camera.%20%5B%2Finsert%5D&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/&amp;title=K%27tala+Singing+Rudolph+the+Red+Nosed+Reindeer" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/ktala-singing-rudolph-the-red-nosed-reindeer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://danemorgan.com/wp-content/uploads/2009/12/Rudolph.mp3" length="522577" type="audio/mpeg" />
		</item>
		<item>
		<title>WordPress 2.9 Looks Like A Winning Update</title>
		<link>http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=wordpress-2-9-looks-like-a-winning-update</link>
		<comments>http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 01:46:29 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[automattic]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[post types]]></category>
		<category><![CDATA[scribd]]></category>
		<category><![CDATA[taxonomies]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=20</guid>
		<description><![CDATA[WordPress 2.9 is here! is it time to get upgraded? There are plenty of cool new features for all types of users in this release. Some of these features are the most exciting advancements to the WordPress core to date in my mind! Extensible User Profiles, Custom Taxonomies and Post Types, oh my!]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><a href="http://automattic.com/" title="Automattic" class="liexternal">Automattic</a> <a href="http://wordpress.org/development/2009/12/wordpress-2-9/" title="WordPress 2.9 - Carmen" class="liwp">released WordPress 2.9</a> today with a lot of simply exciting <a href="http://codex.wordpress.org/Version_2.9" title="New Features in WordPress 2.9" class="liwp">new features</a>. There are plenty of new goodies to go around in this release for end users and for developers alike. Some folks are calling this the final release for 2009, but this is WordPress, and I&#8217;d say that 2.9.1 has better than even odds of beating the new year out the gate.</p>
<p>A couple of features that are going to excite most users are a new image editor, offering the ability to edit images directly in the dashboard and an embed engine that will embed media objects from popular sites like <a href="http://youtube.com/" title="Your Video on the Web" class="liexternal">YouTube</a>, <a href="http://flickr.com/" title="Your Pictures on the Web" class="liexternal">Flickr</a>, <a href="http://scribd.com/" title="Your Documents on the Web" class="liexternal">Scribd</a> and several more by simply adding a link to the resource on its own line.</p>
<p>As for me, the most exciting changes are the improved support for custom taxonomies, custom post types and extensible user profiles. I think that these elements are going to get a lot of play in the near future and are going to represent some of the coolest new developments in WordPress design.</p>
<p>A lot of what went into the new features for 2.9 seems, at least partly, an attempt to free bloggers from developers to some extent. Many of the new features will make it a lot easier for novice users to add some of the more difficult, or advanced, features many of them desire to their own blogs. Other features will make developers lives easier in the long haul, but there is a lot of code that&#8217;s going to need reworking and some that needs ripping out of many of the newer and more involved themes. Just one example is added built-in support for canonical URIs. I spent a good amount of time adding this to many of my themes; now I get to spend the time yanking it back out. But really, that&#8217;s a net good. I&#8217;m not bitter at all, really. <img src='http://danemorgan.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/&amp;title=WordPress+2.9+Looks+Like+A+Winning+Update" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/&amp;t=WordPress+2.9+Looks+Like+A+Winning+Update" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/&amp;title=WordPress+2.9+Looks+Like+A+Winning+Update" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=WordPress+2.9+Looks+Like+A+Winning+Update+-+http://su.pr/16Wkp7+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/&amp;submitHeadline=WordPress+2.9+Looks+Like+A+Winning+Update&amp;submitSummary=Automattic%20released%20WordPress%202.9%20today%20with%20a%20lot%20of%20simply%20exciting%20new%20features.%20There%20are%20plenty%20of%20new%20goodies%20to%20go%20around%20in%20this%20release%20for%20end%20users%20and%20for%20developers%20alike.%20Some%20folks%20are%20calling%20this%20the%20final%20release%20for%202009%2C%20but%20this%20is%20WordPress%2C%20and%20I%27d%20say%20that%202.9.1%20has%20better%20th&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/&amp;title=WordPress+2.9+Looks+Like+A+Winning+Update" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/wordpress-2-9-looks-like-a-winning-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Personal Spaces vs. Public Spaces On Line</title>
		<link>http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=personal-spaces-vs-public-spaces-on-line</link>
		<comments>http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 20:29:32 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Live]]></category>
		<category><![CDATA[business networking]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[personal space]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=19</guid>
		<description><![CDATA[How do you separate your personal and public spaces online? Do you have a strategy? Do you reserve someplace like facebook for just personal friends? Or are your personal and public on line personae one and the same? I'm not sure i really have the answers, but it's something I'm thinking about. I want to do something about having a purely personal space where I share myself outside the blogging / social media context. I think Facebook may be the venue, but how to best proceed remains an open question.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>This post really isn&#8217;t about the Facebook privacy settings changes, though that debate has me thinking more about something I&#8217;ve been thinking about for a couple of months now. I really don&#8217;t care who reads my status updates <a href="http://www.facebook.com/dane.a.morgan" title="Dane Morgan on Facebook" class="liexternal">@Dane on Facebook</a>. Indeed, I&#8217;ve had my profile set for public display from the start. I don&#8217;t see any reason to close people off from the things i discuss with my friends and family.</p>
<p>If I have something really sensitive or private to say to someone I don&#8217;t say it in a status update on Facebook or anywhere else for that matter.</p>
<p>But, as I said, the debate raging about Facebook&#8217;s changes in privacy settings has given my thoughts about the nature of my Facebook use vs. other social spaces I use. Most of the people in my Facebook friends list are people I am related to, went to school with and or have known in person and closely. There is a growing set of Facebook friends that are different though.</p>
<p>Increasingly I&#8217;m being found on Facebook by people I know from professional circles and from the on-line blogging and internet Marketing communities. Some of these people are close to me as well, and even if we have never met face to face I consider them close personal friends. Some of us have sacrificed for each other, and that is a big part of what friendship is for a guy like me.</p>
<p>Now, the thing is, I sometimes publish things about my on-line business life to Facebook, which really, is a more personal space. I know that the reason for this is the friends from on-line who are into this sort of thing. But it causes a disjointed flow for my other friends.</p>
<p>I know that I am going to make a concerted effort to separate what I publish to my blogs and to places like twitter more rigorously. I am going to reserve Facebook as a purely personal space. I&#8217;m going to stop publishing things about blogging, social media, WordPress and Internet Marketing there. I have no problem with people reading whatever I do publish there, and for those interested in getting to know and understand me as a person, are welcome to view my wall anytime.</p>
<p>But what about who I add as a friend. Should I continue to add just anyone who requests, or should I limit my friends list to just those who I am personally close to? This is the big question. Part of the question has me leaning toward unfriending anyone I don&#8217;t have some personal connection to. Anyone I have never shared personal communications with.</p>
<p>They are all still welcome to read my wall, but it doesn&#8217;t entangle the two worlds so much and allows me to make Facebook a more personal space. My online business associates and I can connect in other places like <a href="http://www.linkedin.com/in/experimentalblogger" title="Dane Morgan on LinkedIn" class="liexternal">LinkedIn</a> and <a href="http://twitter.com/danemorgan" title="Dane Morgan on Twitter" class="liexternal">Twitter</a>.</p>
<p>How do you separate your personal and public spaces on-line? Do you draw a distinction? Do you find the line getting blurred at times? What strategies do you have for dealing with it?</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/&amp;title=Personal+Spaces+vs.+Public+Spaces+On+Line" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/&amp;t=Personal+Spaces+vs.+Public+Spaces+On+Line" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/&amp;title=Personal+Spaces+vs.+Public+Spaces+On+Line" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Personal+Spaces+vs.+Public+Spaces+On+Line+-+http://su.pr/1BiOt9+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/&amp;submitHeadline=Personal+Spaces+vs.+Public+Spaces+On+Line&amp;submitSummary=This%20post%20really%20isn%27t%20about%20the%20Facebook%20privacy%20settings%20changes%2C%20though%20that%20debate%20has%20me%20thinking%20more%20about%20something%20I%27ve%20been%20thinking%20about%20for%20a%20couple%20of%20months%20now.%20I%20really%20don%27t%20care%20who%20reads%20my%20status%20updates%20%40Dane%20on%20Facebook.%20Indeed%2C%20I%27ve%20had%20my%20profile%20set%20for%20public%20display%20from%20&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/&amp;title=Personal+Spaces+vs.+Public+Spaces+On+Line" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/personal-spaces-vs-public-spaces-on-line/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>High Content Value Newsletters</title>
		<link>http://danemorgan.com/high-content-value-newsletters/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=high-content-value-newsletters</link>
		<comments>http://danemorgan.com/high-content-value-newsletters/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 07:41:12 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[andy williams]]></category>
		<category><![CDATA[chris garrett]]></category>
		<category><![CDATA[clayton makepeace]]></category>
		<category><![CDATA[duncan carver]]></category>
		<category><![CDATA[email newsletter]]></category>
		<category><![CDATA[ezinearticles]]></category>
		<category><![CDATA[mailing lists]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=16</guid>
		<description><![CDATA[I'm tired of offer lists, how about you?. I want to reward the folks who care enough about the trust I gave with my email address to offer me some real meat. Learn why I'm unsubscribing from the lists and rewarding the newsletters. it may be more efficient to publish a list, but as readers we should make it more effective to publish a newsletter.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Sometime back, I&#8217;d say it was early or mid 2008 if you asked me to pin it down — though I must admit to being temporally challenged — many newsletter publishers discovered that it was more profitable to run advertising driven lists than it was to run content driven newsletters.</p>
<p>There were even a couple of e-books published about the fact that running content heavy newsletters were not the best use of a publisher&#8217;s time. And some marketers actually ran split tests to decide whether the dropout  rates outweighed the purchase rates after slashing the content. It seems that in many cases the content light, lists ran more profitably than the content heavy newsletters.</p>
<p>Now, I don&#8217;t begrudge these marketers their profits one bit. If that is what puts their kids through school, then I am all for it and I wish them well. On the other hand, as a reader, I must confess I get inordinately more pleasure from reading articles than I do from reading ads.</p>
<p>I ignore a lot of emails these days.</p>
<p><a href="http://noahfleming.com/blog/" title="Noah Fleming, Great Marketer and All Around Nice Guy" class="liexternal">Noah Fleming</a>, who runs the <a href="http://rich-jerks.com/" title="Internet Marketing Alliance" class="liexternal">Rich Jerks Marketing Alliance</a>, once suggested to his membership that they simply un-subscribe from their lists as a way of reducing the noise that so often gets in the way of productivity. Many of the members reported beneficial results from this exercise.</p>
<p>I never took  that drastic a step, but I did move my email to Google Aps and take advantage of the excellent filtering features available there to filter these lists into separate folders. There are a number of folders that, quite honestly, I haven&#8217;t opened in months. Some of these have more than a thousand emails, not one of which have I so much as read the subject line.</p>
<p>The idea of just un-subscribing from lists en masse has made a few rounds through the various Internet marketing forums. One group will argue that it is the best thing people can do to decrease distraction and information overload, while another will argue that the lists offer the best free education in writing ads and offers available. Both sides have their merit, though I would tend to say there is more merit in reducing noise.</p>
<p>In truth, the high content newsletter publishers include ads in their newsletters and some, most really, even send out straight ads to their lists as well. So the opportunity to read ads is still there, and since most of the guys publishing these newsletters are aware of and promote many of the same things the list publishers promote, you aren&#8217;t really all that likely to miss out on the next big thing — though, perhaps it wouldn&#8217;t be such a terrible thing for some if this weren&#8217;t the case.</p>
<p>What I am proposing to do here is start a list of <a href="http://danemorgan.com/high-content-value-newsletters" title="Real newsletters that publish real content, not just offers." class="liinternal">High Content Value Newsletters</a>. In order for a newsletter to make it to the list it should meet certain quality guidelines. It should;</p>
<ul>
<li>be published with some frequency, at least monthly;</li>
<li>offer genuine information content consistently — the content is actionable;</li>
<li>not be overrun with ads — content should make up 70 percent or more of a typical issue;</li>
<li>be published by a qualified publisher;</li>
<li>be written at least partly by the publisher — guest writers are fins, but the publisher&#8217;s writing should add continuity and authority to the newsletter.</li>
</ul>
<p>There is no problem with making offers and publishing ads, but many people are doing nothing but that, and that&#8217;s where I am objecting. I want to reward those who put in the effort to build the value in their publication. I want to cast my vote for the best of the best with my continued readership.</p>
<p>Now, I&#8217;m not talking about after the sale lists. I&#8217;m talking about the lists that you sign up for at a landing page or from a form on another page before you buy anything. often, you need to stay on after the sale lists and pay attention to them for product updates and support, that&#8217;s a different thing.</p>
<p>I&#8217;m setting up a page to list these newsletters. I&#8217;ll list the first couple of them in this post, but I&#8217;ll be updating and maintaining a list on the <a href="../high-content-value-newsletters" title="Real newsletters that publish real content, not just offers." class="liinternal">Official High Content Value Newsletter page here</a>.</p>
<p>I&#8217;m going start voting. I&#8217;ll be going through my archives. If it&#8217;s not an after sale support list, and it&#8217;s full of nothing but offers, I&#8217;ll be un-subscribing from the list. If it&#8217;s a high quality newsletter with real, actionable content, I&#8217;ll be sharing it with you.</p>
<p>Here are a couple, in no particular order, to get you started:</p>
<p>While <a href="http://ezseonews.com/" title="Andy Williams Easy SEO Newsletter" class="liexternal">Andy Williams</a> no longer publishes the copy in the email, he still emails the alert when he puts up the newsletter, and it&#8217;s a great newsletter.</p>
<p><a href="http://www.onlinemarketingtoday.com/" title="Duncan Carver's Online Marketing Today" class="liexternal">Duncan Carver</a> publishes great information. I don&#8217;t think enough of you know about him at all.</p>
<p><a href="http://subscriptions.ezinearticles.com/" title="EzineArticles Newsletters for Article Writers." class="liexternal">EzineArticles</a> has a core set of newsletters that really deliver. if you write articles (or blog posts) you really should consider a subscription to a couple of them. There are also feeds for each category that you can have sent announcing each new article posted to the category.</p>
<p>Clayton Makepeace&#8217;s <a href="http://www.makepeacetotalpackage.com/" title="The Total Package marketing News" class="liexternal">The Total Package</a> is about 50 percent offers and 50 percent news. Clayton writes about half of the articles, and the content is always great.</p>
<p><a href="http://www.chrisg.com/subscribe/" title="Chris Garrett on New Media" class="liexternal">Chris Garrett</a> publishes an info packed newsletter edition of his New Media blog. It gets delivered straight to your e-mail in-box. This is a valuable subscription, especially if you are a blogger.</p>
<p>That&#8217;s all for now. I&#8217;ll get a page up and start adding more shortly. In the mean time, be sure to let me know about any newsletters you think i should add to the list in the comment form below. Just remember, if you post more than two links in a comment, it&#8217;ll trigger the moderation queue and I&#8217;ll have to approve it before it gets published.</p>
<p>What do you think about rewarding the content publisher and un-subscribing the list publishers? Do you know of any high quality newsletter that I should add to my list? Let me know, the comments are open.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/high-content-value-newsletters/&amp;title=High+Content+Value+Newsletters" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/high-content-value-newsletters/&amp;t=High+Content+Value+Newsletters" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/high-content-value-newsletters/&amp;title=High+Content+Value+Newsletters" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/high-content-value-newsletters/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=High+Content+Value+Newsletters+-+http://su.pr/2AyWUU+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/high-content-value-newsletters/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/high-content-value-newsletters/&amp;submitHeadline=High+Content+Value+Newsletters&amp;submitSummary=Sometime%20back%2C%20I%27d%20say%20it%20was%20early%20or%20mid%202008%20if%20you%20asked%20me%20to%20pin%20it%20down%20%E2%80%94%20though%20I%20must%20admit%20to%20being%20temporally%20challenged%20%E2%80%94%20many%20newsletter%20publishers%20discovered%20that%20it%20was%20more%20profitable%20to%20run%20advertising%20driven%20lists%20than%20it%20was%20to%20run%20content%20driven%20newsletters.%0D%0A%0D%0AThere%20were%20eve&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/high-content-value-newsletters/&amp;title=High+Content+Value+Newsletters" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/high-content-value-newsletters/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/high-content-value-newsletters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Loosing My Religion: Quality Writing and Content Mills</title>
		<link>http://danemorgan.com/loosing-my-religion-quality-writing/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=loosing-my-religion-quality-writing</link>
		<comments>http://danemorgan.com/loosing-my-religion-quality-writing/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 18:49:35 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Write]]></category>
		<category><![CDATA[allvoices.com]]></category>
		<category><![CDATA[angela hoy]]></category>
		<category><![CDATA[associatedcontent.com]]></category>
		<category><![CDATA[carson brackney]]></category>
		<category><![CDATA[content mills]]></category>
		<category><![CDATA[deb ng]]></category>
		<category><![CDATA[ehow.com]]></category>
		<category><![CDATA[examiner.com]]></category>
		<category><![CDATA[freelance writing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=14</guid>
		<description><![CDATA[Some people think sub par writing is killing the Internet, or at least parts of it. They also point to poor quality writing on 'content mills' being responsible for dragging down wages for writers in general. I have my own take on this, of course. Not everyone needs a high level of quality, and any quality above need is waste. Additionally, there are factors involved in content acquisition decisions that go far beyond the subjective quality of the writing. Businesses can not operate on the same principles as art endowment organizations.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><a href="http://www.writersweekly.com/the_latest_from_angelahoycom/005741_12022009.html" title="Are Content Mills Lowering the Quality of " rel="source" class="liexternal">Angela Hoy</a> of writersweekly.com recently posted an article, <em>&#8220;Are Content Mills Lowering the Quality of &#8220;News&#8221; on the Internet?&#8221;</em>, on the sorry state of quality writing ushered in by the &#8220;content mills&#8221;. She specifically cited allvoices.com, examiner.com, associatedcontent.com and ehow.com for transgressions of poor quality writing. Among the examples she shares is the use of loose where lose was what the author really meant. <a href="http://www.examiner.com/x-608-Early-Childhood-Parenting-Examiner%7Ey2009m3d31-Wii-for-weightloss-How-moms-are-using-this-game-system-to-drop-baby-weight-and-more" title="To Loose or to lose? That is the question." class="liexternal">Wii for weightloss</a> is one article she mentions by way of example. Throughout the article she hits several articles of questionable quality from these &#8220;content mills&#8221;. Her quality questions focus on the sole point of spelling and grammar, including typos.</p>
<p><a href="http://carsonbrackney.com/2009/12/content-mills-angela-hoy-search-engines-and-the-quality-of-online-writing/" title="Content Millse, Angela Hoy, Search Engines and the Quality of Writing on the Web" class="liexternal">Carson Brackney</a> weighs in with his take on Angela&#8217;s article, pointing out that she never really reaches a conclusion to her question about content mills being responsible for a general decline in writing on the Internet. He points out too, that quality is a subjective thing, and her article makes no real statement about the measure she uses, save her mentions of grammatical errors. In short, the reader is left to make their own connections between her premise and her citations, using innuendo as the sole glue between the two. Carson&#8217;s main problems with the article center on Angela&#8217;s treatment of her agenda in the piece and her failure to complete her argument.</p>
<p><a href="http://www.freelancewritinggigs.com/2009/12/on-bad-writing-bad-proofreading-and-responsibility/comment-page-1" title="On Bad Writing, Bad Proofreading and Responsibility" class="liexternal">Deb Ng</a> posted her take on both Angela&#8217;s and Carson&#8217;s articles and made a couple of points I liked. &#8220;There’s a difference between bad writing and bad proofreading.&#8221; and &#8220;The problem here is the content site’s purpose.&#8221; are two thoughts she puts out there, that I think could be expanded on further. While she admits that loose/lose is a peeve of her&#8217;s and she believes that poorly proofread articles should not be published, she takes the tack that the quality of the idea and the quality of the presentation are not necessarily joined at the hip. This is a position I have maintained for as long as I care to remember.</p>
<p>So to get to the point, I have a couple of thoughts on this topic I felt like sharing.</p>
<ul>
<li>Writers do bear a responsibility to correctly presenting their ideas. When poor grammar is employed, or misspellings are ignored, the meaning of your message can be altered or lost. I can&#8217;t come up with a sentence right off-hand, but I am sure there is something that could be said that would differentiate between loose and lose critical to understanding and context would not help the reader make their own correction. Also, when we use the wrong word, as in the weight loss article cited, even if the reader can correct the error on the fly, they have to come out of the thought to do so, which makes our message less accessible. The sole point of writing is communicating a message and that is more difficult when we make it hard for the reader to stay with the thought.</li>
<li>Readers who judge quality based solely on things like grammar, typos and misspellings, miss much that is good. We can argue from now to eternity whether poor writing makes an article poor even if the content is good. But that argument misses the point if your goal is to learn. Not everyone is a gifted writer, but I believe everyone has a story to tell, from which I can benefit. if the person who&#8217;s story you need now has poor spelling and grammar skills, you&#8217;re going to have to get over it. If you just decided that an article was crap because of spelling and grammar, and failing to read it missed a key piece of information you need now, who lost more?</li>
<li>Quality of message and quality of delivery are not so much divorced as they have never been married. There are garbage ideas that are expressed with great eloquence and there are brilliant ideas that are expressed with great dullness. It&#8217;s up to the reader, in a marketplace of free ideas to discern between the two.</li>
<li>Thomas Jefferson said <em>&#8220;Were it left to me to decide whether we should have a government without newspapers, or newspapers without a government, I should not hesitate a moment to prefer the latter.&#8221;</em> In a similar fashion, were I to choose between widely available personal publishing with no grammatical quality and perfectly written articles without the freedom of personal publishing I would choose the former in a heartbeat. I would never look back or regret that decision.</li>
<li>Finally, what about lean? The simple fact is that writer&#8217;s just like everyone else are living in a recession. In recessionary times sensible people practice lean. The core of lean is waste reduction and a core aspect of waste reduction is that any quality above what is necessary is waste. For the content mills, or indeed most other sites on-line, the level of writing quality they need to get the job done just isn&#8217;t all that high. I know this will ruffle some feathers, but it&#8217;s a simple business fact. Hiring $1.00 / word authors is not going to earn these companies a single dime more than hiring 1 or 5 cent / word writers will. So any quality they pay for beyond that is waste. There are plenty of outlets that do need higher quality levels and the quality needs of one outlet has no influence on those of another.</li>
</ul>
<p>So are the &#8220;content mills&#8221; destroying the quality writing Internet? I doubt it. They aren&#8217;t the first thing down the pipe that was going to destroy the Internet, I doubt they&#8217;ll be the last. Both sides in the debate have their points, even if they sometimes fail to actually make them. Higher quality delivery will make content more accessible and ignoring content for poor delivery will cost opportunity.</p>
<p>One more point I have to make here is that sometimes, on the internet, things really are different. really.</p>
<p>We do things on-line that we wouldn&#8217;t do off-line, because on-line, they work out for us. &#8220;Loosing weight&#8221; now enjoys a full 14 percent of the search share for &#8220;losing weight&#8221;.</p>
<p style="margin-left:12px";><script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;up__property=empty&amp;up__search_terms=Loosing+Weight%7CLosing+Weight&amp;up__location=empty&amp;up__category=0&amp;up__time_range=12-m&amp;up__compare_to_category=false&amp;synd=ig&amp;w=500&amp;h=350&amp;lang=en-US&amp;title=Google+Insights+for+Search&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
</p>
<p>And if we switch to &#8220;lose&#8221; vs. &#8220;loose&#8221; the search share for the misspelling climbs to 17 percent.</p>
<p style="margin-left:12px";><script type="text/javascript" src="http://www.gmodules.com/ig/ifr?url=http%3A%2F%2Fwww.google.com%2Fig%2Fmodules%2Fgoogle_insightsforsearch_interestovertime_searchterms.xml&amp;up__property=empty&amp;up__search_terms=Loose+Weight%7CLose+Weight&amp;up__location=empty&amp;up__category=0&amp;up__time_range=12-m&amp;up__compare_to_category=false&amp;synd=ig&amp;w=500&amp;h=350&amp;lang=en-US&amp;title=Google+Insights+for+Search&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script></p>
</p>
<p>Most &#8220;content mills&#8221; live and die on the strength of their search traffic, and &#8220;loosing&#8221; may be more of a business decision than an editorial one. It&#8217;s becoming an outmoded method, but there is a long tradition of keyword targeting misspellings to gain more search traffic. Right now Google will display the results for the correctly spelled &#8220;losing weight&#8221; when you search for &#8220;loosing weight&#8221;, but Google is Google and not all search engines play the game at that level, so there may still be value in this approach.</p>
<p>It is worth pointing out that the article in question also uses &#8220;weightloss&#8221; instead of the correct &#8220;weight loss&#8221;, and that there are similar search relationships between these spellings. Indeed, Google suggests the correct spelling on this search, but still displays search results for the term as it stands. There can be big money in grammar and spelling mistakes.</p>
<p>What do you think is the right approach here? Should all website strive for some artificial quality level? Is the search game changing in ways that will raise the quality requirements anyways? Should authors stick to their guns and demand a certain pay as a group? Or should free market forces reign supreme? Is there something in the middle?</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/loosing-my-religion-quality-writing/&amp;title=Loosing+My+Religion%3A+Quality+Writing+and+Content+Mills" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/loosing-my-religion-quality-writing/&amp;t=Loosing+My+Religion%3A+Quality+Writing+and+Content+Mills" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/loosing-my-religion-quality-writing/&amp;title=Loosing+My+Religion%3A+Quality+Writing+and+Content+Mills" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/loosing-my-religion-quality-writing/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Loosing+My+Religion%3A+Quality+Writing+and+Content+Mills+-+http://su.pr/2gXmis+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/loosing-my-religion-quality-writing/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/loosing-my-religion-quality-writing/&amp;submitHeadline=Loosing+My+Religion%3A+Quality+Writing+and+Content+Mills&amp;submitSummary=Angela%20Hoy%20of%20writersweekly.com%20recently%20posted%20an%20article%2C%20%22Are%20Content%20Mills%20Lowering%20the%20Quality%20of%20%22News%22%20on%20the%20Internet%3F%22%2C%20on%20the%20sorry%20state%20of%20quality%20writing%20ushered%20in%20by%20the%20%22content%20mills%22.%20She%20specifically%20cited%20allvoices.com%2C%20examiner.com%2C%20associatedcontent.com%20and%20ehow.com%20for%20transgr&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/loosing-my-religion-quality-writing/&amp;title=Loosing+My+Religion%3A+Quality+Writing+and+Content+Mills" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/loosing-my-religion-quality-writing/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/loosing-my-religion-quality-writing/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>DotSpots &#8211; Brings a New Cool to Social News Sharing</title>
		<link>http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dotspots-brings-a-new-cool-to-social-news-sharing</link>
		<comments>http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 05:20:37 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Socialize]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[citizen journalism]]></category>
		<category><![CDATA[dotspots]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[social sharing]]></category>
		<category><![CDATA[social surfing]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=15</guid>
		<description><![CDATA[DotSpots isn't doing anything new really, they're just doing it in a whole new way. The implementation is cool. It offers great social sharing potential, and makes it drop dead simple. Time will tell whether they add the things that make it a killer social sharing tool. I'd say it has a lot of potential and I will be using it to see where it goes.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I decided to take the plunge and upgrade to the new <a href="http://www.google.com/intl/en/landing/chrome/beta/" title="Cutting Edge Chromium" class="liexternal">Chrome beta</a> so I could try out some extensions. First extension I chose to try is <a href="http://dotspots.com" title="Spot the Truth - Connect the dots." class="liexternal">DotSpots</a>. I made <a href="http://dotspots.com/#dot/22tsi/view" title="Dane's First Dot - To Andy Beards Dell SEO article" class="liexternal">my first dot</a> , on an article by Andy Beard about <a href="http://andybeard.eu/2529/dell-better-at-social-media-than-seo.html" title="Dell Better at Social networking than SEO" class="liexternal">Dell and SEO</a> just a couple of minutes later.</p>
<blockquote><p>DotSpots has this to say about the project.</p>
<p><em>Dots are &#8220;distributed objects of thought,&#8221; highly portable mini-blog posts that are easy to connect into content, share and improve by each person who interacts with them.</em></p></blockquote>
<p>When you create a dot, which is as simple as highlighting something on a page and waiting a second for the link to pop up, a reference is placed in line on the page linking to an AJAX box containing your comments on the article. other people with the dots extension loaded can see this &#8220;dot&#8221; and interact with it.</p>
<p>Dots are wiki like information. Any user can propose an edit to a dot, and then the originator can approve or disapprove the edit. Dotters can also suggest reference links for the dot, leading to news and blog sources relevant to the dotted work. As I understand from the site, the system also looks for connections in news sources automatically from among thousands of news and blog venues.</p>
<p>I&#8217;m not sure the world needs another social sharing site, but this one definitely has a certain &#8220;cool&#8221; fator that many others lack. I&#8217;ve been using a <a href="http://su.pr/" title="Bookmark, get traffic and track it." class="liexternal">su.pr</a> / <a href="http://stumbleupon.com" title="Stuble the Web" class="liexternal">stumbleupon</a> combo for 95 percent of my bookmarking because of the traffic and tracking combination offered. It doesn&#8217;t generate the most traffic, or offer the best tracking, but it is an 80/20 solution that ties both up in a neat, easy package. In fact I rarely even visit stumbleupon any more, I just add a review from the su.pr AJAX page when I bookmark.</p>
<p>At this point DotSpots doesn&#8217;t seem to offer any tracking data at all, and its traffic driving potential is unknown, but I&#8217;ll still be using I think, along with my current system, just because i like the implementation. There are extensions available for Chrome (you&#8217;ll have to opt for the beta as of now to try it) or for FireFox. Internet Explorer, however, seemed incapable of even loading the style sheet at DotSpots so I can&#8217;t tell your for sure whether the extension is available for that browser.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/&amp;title=DotSpots+-+Brings+a+New+Cool+to+Social+News+Sharing" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/&amp;t=DotSpots+-+Brings+a+New+Cool+to+Social+News+Sharing" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/&amp;title=DotSpots+-+Brings+a+New+Cool+to+Social+News+Sharing" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=DotSpots+-+Brings+a+New+Cool+to+Social+News+Sharing+-+http://su.pr/1jhSvB+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/&amp;submitHeadline=DotSpots+-+Brings+a+New+Cool+to+Social+News+Sharing&amp;submitSummary=I%20decided%20to%20take%20the%20plunge%20and%20upgrade%20to%20the%20new%20Chrome%20beta%20so%20I%20could%20try%20out%20some%20extensions.%20First%20extension%20I%20chose%20to%20try%20is%20DotSpots.%20I%20made%20my%20first%20dot%20%2C%20on%20an%20article%20by%20Andy%20Beard%20about%20Dell%20and%20SEO%20just%20a%20couple%20of%20minutes%20later.%0D%0ADotSpots%20has%20this%20to%20say%20about%20the%20project.%0D%0A%0D%0ADots%20ar&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/&amp;title=DotSpots+-+Brings+a+New+Cool+to+Social+News+Sharing" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/dotspots-brings-a-new-cool-to-social-news-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I want to write a post for YOUR blog!</title>
		<link>http://danemorgan.com/i-want-to-write-a-post-for-your-blog/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-want-to-write-a-post-for-your-blog</link>
		<comments>http://danemorgan.com/i-want-to-write-a-post-for-your-blog/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 15:06:52 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Freelance]]></category>
		<category><![CDATA[article writing]]></category>
		<category><![CDATA[guest post]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[Write]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=10</guid>
		<description><![CDATA[I'm building my freelance portfolio, and that means I need to write more articles on more subjects than usual for me. Here's a win/win proposition. Let me know what you need and I'll write your next blog post for you!]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I&#8217;m working on developing a portfolio for doing freelance writing. Now, by and large nearly all of my work centers around topics directly related to blogging. It&#8217;s just something I find fascinating.</p>
<p>I need to build a portfolio of articles that are about other things and rather than set up dozens of blogs with just a post or two on them I figure, why not write for you and let you post the article on your blog.</p>
<p>some conditions on this deal.</p>
<p>1. G-rated preferred, PG=13 possibly considered anything beyond that not considered.<br />
2. Preferably you need something NOT in the blogging, social media, entrepreneurial fields.<br />
3. I get a small picture of me with an about Dane blurb and a link back to my freelance portfolio page at the bottom of the article.<br />
4.The article is 100% unique. I maintain copyright but neither of us is permitted to repost the article elsewhere.</p>
<p>Post the topic you want an article on and url of the blog you would like me to consider.</p>
<p>You can post the info here in the comments section, on my shout box at <a href="http://www.blogcatalog.com/user/DaneMorgan" title="Dane @ BlogCatalog" rel="me" class="liexternal">BlogCatalog</a> or at <a href="heydane.com/index.php?act=tickets&#038;code=open" title="contact Dane" rel="me" class="liinternal">Hey Dane!</a> just submit a ticket in the &#8220;freelance&#8221; department.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/&amp;title=I+want+to+write+a+post+for+YOUR+blog%21" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/&amp;t=I+want+to+write+a+post+for+YOUR+blog%21" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/&amp;title=I+want+to+write+a+post+for+YOUR+blog%21" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=I+want+to+write+a+post+for+YOUR+blog%21+-+http://su.pr/9piEty+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/&amp;submitHeadline=I+want+to+write+a+post+for+YOUR+blog%21&amp;submitSummary=I%27m%20working%20on%20developing%20a%20portfolio%20for%20doing%20freelance%20writing.%20Now%2C%20by%20and%20large%20nearly%20all%20of%20my%20work%20centers%20around%20topics%20directly%20related%20to%20blogging.%20It%27s%20just%20something%20I%20find%20fascinating.%0D%0A%0D%0AI%20need%20to%20build%20a%20portfolio%20of%20articles%20that%20are%20about%20other%20things%20and%20rather%20than%20set%20up%20dozens%20&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/i-want-to-write-a-post-for-your-blog/&amp;title=I+want+to+write+a+post+for+YOUR+blog%21" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/i-want-to-write-a-post-for-your-blog/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/i-want-to-write-a-post-for-your-blog/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>So I&#8217;m Going To Tax School</title>
		<link>http://danemorgan.com/so-im-going-to-tax-school/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=so-im-going-to-tax-school</link>
		<comments>http://danemorgan.com/so-im-going-to-tax-school/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:54:52 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Freelance]]></category>
		<category><![CDATA[freelance assignments]]></category>
		<category><![CDATA[odesk]]></category>
		<category><![CDATA[sikeston]]></category>
		<category><![CDATA[tax preparation business]]></category>
		<category><![CDATA[temporary agency]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=9</guid>
		<description><![CDATA[I'm going to be attending tax school to be able to work as a tax preparer this coming tax season. And I might even start a blog to journal the whole process. I'm calling this my first freelance gig, and while that might not be completely accurate, that's my story and I'm sticking it to the tax man.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I got a call earlier this evening from a tax preparation business. It&#8217;s one of the large regional chains and the shop is over in Sikeston.</p>
<p>I had mentioned to one of the employees there that I might be interested in doing work for them during the upcoming tax season, and they dropped my number on the boss.</p>
<p>So, on Monday evening I&#8217;m going to be starting tax school to learn how to help people do their taxes.</p>
<p>I know this isn&#8217;t like &#8220;really&#8221; freelancing, but in a way it is, because I&#8217;ll be temporary but not through a temporary agency, so I&#8217;m calling it freelance work.</p>
<p>I&#8217;m also going to be putting my bid in on a minimum of 10 writing and 5 design freelance assignments on oDesk this evening. I&#8217;m ramping up my efforts to land some paying freelance work. I&#8217;ll post more about that is a couple of hours.</p>
<p>I has occurred to me that a blog on the adventures of a guy in tax school might be mildly interesting, and with some of the keywords involved, potentially lucrative as well. So I&#8217;m thinking about setting up a blog to journal the whole experience and earning a double income from the process.</p>
<p>So what do you think? Would you read a blog about the adventures of a neophyte tax guy? How about if I passed on some tricks and tips for stiffing the tax man?</p>
<p>PS. See, I really <b>can</b> write a short post! <img src='http://danemorgan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/so-im-going-to-tax-school/&amp;title=So+I%27m+Going+To+Tax+School" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/so-im-going-to-tax-school/&amp;t=So+I%27m+Going+To+Tax+School" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/so-im-going-to-tax-school/&amp;title=So+I%27m+Going+To+Tax+School" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/so-im-going-to-tax-school/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=So+I%27m+Going+To+Tax+School+-+http://su.pr/1dFbcM+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/so-im-going-to-tax-school/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/so-im-going-to-tax-school/&amp;submitHeadline=So+I%27m+Going+To+Tax+School&amp;submitSummary=I%20got%20a%20call%20earlier%20this%20evening%20from%20a%20tax%20preparation%20business.%20It%27s%20one%20of%20the%20large%20regional%20chains%20and%20the%20shop%20is%20over%20in%20Sikeston.%0D%0A%0D%0AI%20had%20mentioned%20to%20one%20of%20the%20employees%20there%20that%20I%20might%20be%20interested%20in%20doing%20work%20for%20them%20during%20the%20upcoming%20tax%20season%2C%20and%20they%20dropped%20my%20number%20on%20&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/so-im-going-to-tax-school/&amp;title=So+I%27m+Going+To+Tax+School" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/so-im-going-to-tax-school/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/so-im-going-to-tax-school/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dominating Niche Markets Starts With Research</title>
		<link>http://danemorgan.com/dominating-niche-markets-starts-with-research/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dominating-niche-markets-starts-with-research</link>
		<comments>http://danemorgan.com/dominating-niche-markets-starts-with-research/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 05:11:24 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Market]]></category>
		<category><![CDATA[jonathan leger]]></category>
		<category><![CDATA[keyword research tools]]></category>
		<category><![CDATA[niche markets]]></category>
		<category><![CDATA[organic growth]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=5</guid>
		<description><![CDATA[When you have the right tools, you can easily extract the information you need to find the best routes to dominating a niche market. And you can determine which markets are worth dominating. NicheHorde is a new tool with a fresh new approach to targeting niches to make money in.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I was fortunate enough to have gotten in on beta testing a brand new <strong>niche market research tool</strong> that I think you will want to pay attention to.</p>
<p>Niche marketing is nothing new, and neither are <em>keyword tools</em> that allow researching niches to market in. Most of us have a few <em>keyword research tools</em>, and even a couple of subscriptions to niche research sites. There are a lot of different approaches to the problem of finding the right words to target to <strong>dominate a niche market</strong>.</p>
<h3>So do we really need another keyword tool?</h3>
<p>Most likely another new keyword tool hitting the market isn&#8217;t going to excite you too much. But every now and then something does come along that deserves closer attention.</p>
<p>Jonathan Leger believes he has just such a tool.</p>
<p>This tool is rooted in a system for <a href="http://www.jonathanleger.com/finding-niche-markets-to-dominate-in-google/" title="Dominate Niches In Google" class="liexternal"><strong>finding niche markets to dominate</strong></a> that Jonathan first described in a post about having achieved forty-six page one rankings on Google in just seven days.</p>
<p>After talking about this method with several people and being asked repeatedly to share the exact method he used to dominate these small but profitable niches, Jonathan decided to go one better. He actually created a <strong>niche keyword research tool called <a href="http://danemorgan.com/go/NicheHorde" title="Niche Keyword Research Tool" class="liinternal">Niche Horde</a></strong> that automatically finds these niches for you.</p>
<p>And find them it does. The <a href="http://danemorgan.com/go/NicheHorde" title="Niche Keyword Research Tool" class="liinternal"><strong>Niche Horde</strong></a> database has added over a million (That&#8217;s million with an m) new niches in the last couple of days. It&#8217;s amazing to just watch that number grow.</p>
<h3>What&#8217;s New about this tool?</h3>
<p>There are two things that primarily interest me in this new <em>niche research tool</em>.</p>
<p>The first really interesting thing is that it is driven by an organic growth model. Members (it is a <a href="http://danemorgan.com/go/NicheHorde" title="Niche Keyword Research Tool" class="liinternal">low cost membership</a> based tool) run a small software application in the background that gathers data about keywords from Google.</p>
<p>Each client only accesses Google once each sixty seconds, and even on my dial up connection it is barely noticeable. But the cumulative results of each of these individual clients mining and <strong>reverse engineering niches</strong> on Google is staggering.</p>
<p>The number of niche groups available in the database grows constantly. every time you refresh the &#8220;latest Niches&#8221; page you have a whole new view of potentially explosive niche markets to explore.</p>
<p>The second thing that excites me is the &#8220;Strength Of Competition&#8221; measurement that Jonathan uses.</p>
<p>Most keyword research tools and systems use an &#8220;exact match&#8221; or allintitle: search to determine the competition for a given phrase. Jonathan builds the case that this is not true. In order to determine the actual competition for a given niche phrase you need to use the allinanchor: operator.</p>
<p>This returns a listing of pages that are linked to with a link containing the niche phrase as the anchor text. If someone uses the phrase on their site, or even if they use it in their title, this does not really indicate that they are competing for that phrase. If they use it in a link anchor pointing back to their site, that is a whole other story. </p>
<p>That&#8217;s an intentional action designed to tell Google that they are providing that information. That&#8217;s competition.</p>
<p>So, looking at the numbers involved can suddenly give you a completely different impression of the landscape in any given niche market. Some things may have thousands and thousands of pages with the target phrase somewhere on the page, but none of those pages might actually be competing for the phrase, while other phrases might have just a few hundred pages, but they are all competing fiercely for the term.</p>
<p>Using this method you will know this up front, and can make a decision based on this whether or not you want to dive in. Or you can even just change your campaign slightly to maximize your opportunities to get pages to the top of Google using less competitive, but still highly relevant words.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/dominating-niche-markets-starts-with-research/&amp;title=Dominating+Niche+Markets+Starts+With+Research" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/dominating-niche-markets-starts-with-research/&amp;t=Dominating+Niche+Markets+Starts+With+Research" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/dominating-niche-markets-starts-with-research/&amp;title=Dominating+Niche+Markets+Starts+With+Research" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/dominating-niche-markets-starts-with-research/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Dominating+Niche+Markets+Starts+With+Research+-+http://su.pr/2j7UjY+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/dominating-niche-markets-starts-with-research/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/dominating-niche-markets-starts-with-research/&amp;submitHeadline=Dominating+Niche+Markets+Starts+With+Research&amp;submitSummary=I%20was%20fortunate%20enough%20to%20have%20gotten%20in%20on%20beta%20testing%20a%20brand%20new%20niche%20market%20research%20tool%20that%20I%20think%20you%20will%20want%20to%20pay%20attention%20to.%0D%0A%0D%0ANiche%20marketing%20is%20nothing%20new%2C%20and%20neither%20are%20keyword%20tools%20that%20allow%20researching%20niches%20to%20market%20in.%20Most%20of%20us%20have%20a%20few%20keyword%20research%20tools%2C%20a&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/dominating-niche-markets-starts-with-research/&amp;title=Dominating+Niche+Markets+Starts+With+Research" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/dominating-niche-markets-starts-with-research/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/dominating-niche-markets-starts-with-research/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Social Conscience?</title>
		<link>http://danemorgan.com/a-social-conscience/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=a-social-conscience</link>
		<comments>http://danemorgan.com/a-social-conscience/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 15:08:16 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Care]]></category>
		<category><![CDATA[bloggers]]></category>
		<category><![CDATA[bloggers unite]]></category>
		<category><![CDATA[human rights]]></category>
		<category><![CDATA[libertarian]]></category>
		<category><![CDATA[social ideals]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=6</guid>
		<description><![CDATA[A hopeful Libertarian, and a rabid capitalist, I still, somehow, manage to maintain a fairly liberal outlook on most social issues. I believe that in most cases of social injustice, it is not capitalism, but the lack of it that often exacerbates the problem. And I see nearly all issues in terms of human rights. Rights that are equally owned by and owed to all humans regardless of any kind of distinction you might imagine.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><div id="attachment_7" class="wp-caption alignright" style="width: 243px"><a href="http://www.bloggersunite.org/user/DaneMorgan" ><img src="http://danemorgan.com/wp-content/uploads/2009/10/bloggersunite.png" alt="Bloggers with Social Conscience" title="Bloggers Unite" width="233" height="68" class="size-full wp-image-7" /></a><p class="wp-caption-text">Bloggers with Social Conscience</p></div>There are probably a handful of people out there who would just be shocked to hear the idea that I have a Social Conscience. After all, I am an unabashed Laissez-faire Capitalist and Libertarian. I&#8217;m very right leaning in my economic ideals. So it comes as a surprise to some that I am pretty left leaning in my social ideals.</p>
<p>Others, who know me more closely aren&#8217;t nearly as surprised. I reject such notions as Gay Rights, Women&#8217;s Rights, Men&#8217;s Rights&#8230; Well, lets cut that list short and just say that I believe that a right is a human dight or it is not a right at all.</p>
<p>If marriage is a right, then it is a right that belongs to all people everywhere, notwithstanding their personal hormone soup or that of their partner&#8217;s hormone soup. If speech and expression are rights, then they belong as much to the nazi as to the preacher, as much to the hater as the lover (unpopular expression is the only reason to regard such a right).</p>
<p>Now, I fully understand that this category is going to dilute this blog to some extent. This is not a political blog, or a policy blog. It isn&#8217;t a charitable blog or and activist blog. This blog, ultimately is intended to become a for profit venture. Yes, Virginia, I just said I want your money; Remember I <strong>did</strong> say I was a Laissez-faire Capitalist.</p>
<p>But the fact remains, whatever the impression some may have of me, that I do have this social conscience.</p>
<p>To that end, I have registered with <a href="http://www.bloggersunite.org/user/DaneMorgan" title="Dane Morgan @ Bloggers Unite" class="liexternal">Bloggers Unite</a>, a site that provides bloggers with events to blog about on specific days for social change. The goal is to have all of these bloggers posting about a specific subject on a specific day to help raise awareness of the issue.</p>
<p>Now I probably won&#8217;t do every issue that comes along, there are just a lot of issues out there. But I will be joining at least one event each month and posting about it in the Social Conscience category on this blog.</p>
<p>Up front, I am partial to issues that deal with children, and to those that deal with veterans. So I&#8217;ll be looking for events that involve those, but there are other things I care about as well, and I will remain open to many things.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/a-social-conscience/&amp;title=A+Social+Conscience%3F" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/a-social-conscience/&amp;t=A+Social+Conscience%3F" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/a-social-conscience/&amp;title=A+Social+Conscience%3F" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/a-social-conscience/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=A+Social+Conscience%3F+-+http://su.pr/2QcF3K+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/a-social-conscience/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/a-social-conscience/&amp;submitHeadline=A+Social+Conscience%3F&amp;submitSummary=There%20are%20probably%20a%20handful%20of%20people%20out%20there%20who%20would%20just%20be%20shocked%20to%20hear%20the%20idea%20that%20I%20have%20a%20Social%20Conscience.%20After%20all%2C%20I%20am%20an%20unabashed%20Laissez-faire%20Capitalist%20and%20Libertarian.%20I%27m%20very%20right%20leaning%20in%20my%20economic%20ideals.%20So%20it%20comes%20as%20a%20surprise%20to%20some%20that%20I%20am%20pretty%20left%20le&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/a-social-conscience/&amp;title=A+Social+Conscience%3F" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/a-social-conscience/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/a-social-conscience/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My First Facebook App</title>
		<link>http://danemorgan.com/my-first-facebook-app/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-first-facebook-app</link>
		<comments>http://danemorgan.com/my-first-facebook-app/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 08:16:41 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Experiment]]></category>
		<category><![CDATA[experimental blogger]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[freelancers]]></category>
		<category><![CDATA[social networking sites]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://danemorgan.com/?p=4</guid>
		<description><![CDATA[Experimental Blogger updates are now available for your facebook profile. You can keep up with this blog right on facebook.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><div style="float:right;">
<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US"></script><script type="text/javascript">FB.init("d26cdf739d377799372194baa32d3ba0");</script><fb :fan profile_id="318016465248" stream="0" connections="10" width="300"></fb>
<div style="font-size:8px; padding-left:10px"><a href="http://www.facebook.com/apps/application.php?id=318016465248" class="liexternal">Experimental Blogger on Facebook</a> </div>
</div>
<p>I&#8217;ve published my first facebook app. Yay me!</p>
<p>Well, to be completely honest, I cheated a little.</p>
<p>I used <a href="http://johneckman.com/" Title="John Eckman's Blog" class="liexternal">John Eckman&#8217;s</a> <a href="http://www.openparenthesis.org/code/wp/" title="turn your WP blog into a facebook app" class="liexternal">WPBook plugin</a> which guides you through the whole process of creating an application to share your <a href="http://wordpress.org/" title="personal publishing platform" class="liwp">WordPress Blog</a> directly on fans profile pages.</p>
<p>One glitch that took me a bit of figuring was that I had a framebreaker script installed when I started out. That simply doesn&#8217;t work for getting your blog on facebook. I disabled the framebreaker and things went well. Later I&#8217;ll look into the code and see about selectively unincluding the script for just facebook frames.</p>
<p>This process creates both the facebook application and a facebook page. Here&#8217;s the <a href="http://www.facebook.com/apps/application.php?id=318016465248" class="liexternal">Experimental Blogger App Page</a>. Or you can go straight to the <a href="http://apps.facebook.com/experimentalblogger/" title="Get Experimental Blogger Updates on Facebook" class="liexternal">Experimental Blogger Facebook App</a>.</p>
<p>This is the first step of many that I will be taking to expand my reach through social networking sites. I&#8217;ll be adding more stuff on facebook as well, including more apps to do different things for bloggers, writers and freelancers.</p>
<p>And I&#8217;ll be doing some special facebook only promotions, so make sure you click through and click the fan link to stay up dated. While you&#8217;re there you can go ahead and add <a href="http://apps.facebook.com/experimentalblogger/" title="Get Experimental Blogger Updates on Facebook" class="liexternal">Experimental Blogger</a> to your facebook profile and help spread the word.</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/my-first-facebook-app/&amp;title=My+First+Facebook+App" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/my-first-facebook-app/&amp;t=My+First+Facebook+App" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/my-first-facebook-app/&amp;title=My+First+Facebook+App" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/my-first-facebook-app/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=My+First+Facebook+App+-+http://su.pr/8PkCCS+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/my-first-facebook-app/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/my-first-facebook-app/&amp;submitHeadline=My+First+Facebook+App&amp;submitSummary=%0D%0AFB.init%28%22d26cdf739d377799372194baa32d3ba0%22%29%3BExperimental%20Blogger%20on%20Facebook%20%0D%0A%0D%0AI%27ve%20published%20my%20first%20facebook%20app.%20Yay%20me%21%0D%0A%0D%0AWell%2C%20to%20be%20completely%20honest%2C%20I%20cheated%20a%20little.%0D%0A%0D%0AI%20used%20John%20Eckman%27s%20WPBook%20plugin%20which%20guides%20you%20through%20the%20whole%20process%20of%20creating%20an%20application%20to%20share%20&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/my-first-facebook-app/&amp;title=My+First+Facebook+App" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/my-first-facebook-app/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/my-first-facebook-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Tricks For An Old Blog</title>
		<link>http://danemorgan.com/new-tricks-for-an-old-blog/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-tricks-for-an-old-blog</link>
		<comments>http://danemorgan.com/new-tricks-for-an-old-blog/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 03:00:59 +0000</pubDate>
		<dc:creator>Dane Morgan</dc:creator>
				<category><![CDATA[Experiment]]></category>
		<category><![CDATA[8020]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[take action]]></category>
		<category><![CDATA[wordpress blog]]></category>

		<guid isPermaLink="false">http://danemorgan.com/blog-experiment/new-tricks-for-an-old-blog/</guid>
		<description><![CDATA[Sometimes decisive action is required. And sometimes even doing the wrong thing is better than doing nothing at all. It's time to move this blog forward. I've deleted the old blog and I'm starting fresh with a new course and a battle plan for victory.]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Well, as you can see I did it.</p>
<p>If you don&#8217;t know what I did, that&#8217;s okay, I&#8217;ll explain in just a minute.</p>
<p>For the handful who do know what I&#8217;m talking about, I decided not to wait for a consensus. One of the new rules is not waiting. No pondering. Any action, even the wrong action, is better than inaction.</p>
<p><a href="http://andtbeard.eu/" Title="Andy Beard's Blog" class="liexternal">Andy Beard</a> and <a href="http://mikepaetzold.com/" title="Mike Paetzold's Blog" class="liexternal">Mike Paetzold</a> both saw the last post on the old blog and commented. I&#8217;m not really sure if they had the chance to see my replies to their comments or not, but as is always the case with these two, they were very useful comments and I really want to express my gratitude to both of them for years of great ideas and inspiration.</p>
<p>I consider myself a pretty fair blogger and <a href="http://wordpress.org" title="code is poetry" class="liwp">WordPress</a> guy, but these are a couple of the guys I look for to learn something new in this field.</p>
<h3>So, lets start with some back story, shall we?</h3>
<p>I had a WordPress blog here for a long, long time. and one day i had the brilliant idea of expanding it into something more than a blog. I determined to turn it into a full fledged CMS with all kinds of features, departments, bells and whistles. I tested a bunch of things and settled on <a href="http://drupal.org/" title="community plumbing" class="liexternal">drupal</a>. I installed it on the site and backed up the posts I had already amassed into a &#8220;legacy&#8221; section of the site.</p>
<p>But it never really worked out for me. The CMS approach just never fit for what I really wanted to do here. This site just should be a blog in my mind, and I never put my whole heat into the community concept.</p>
<p>I continued to blog, using drupal as a battleship in a bathtub solution for about a year, but I just wasn&#8217;t happy with the results.</p>
<p>Don&#8217;t get me wrong. <em>I love drupal</em>. I just don&#8217;t love drupal as a blog. Eventually I decided to experiment with this blog. I just quit posting altogether. I only very very rarely responded to comments.</p>
<h3>The Blog Would Not Die!</h3>
<p>And yet it would not die. I mean, there was nothing earth shaking going on, but I was still getting between 50 and 80 visitors a day (with an 84% unique visitor and a 75% bounce rate).</p>
<p>And they were commenting! Sure a lot of the comments were just attempts to get a link and some were outright abusive spam, but many of them were genuine comments. Probably 4 or 5 a week on average.</p>
<p>And <a href="http://google.com" title="unevil search?" class="liexternal">Google</a> was the chief pusher of the traffic; Followed by <a href="http://danemorgan.stumbleupon.com" class="liexternal">StumbleUpon</a> and then a group of about 14 blogs that had linked to me in old posts (sorry about breaking those links guys, I&#8217;ll be fixing any links you have out there with 301s shortly).</p>
<h3>And came the anniversary.</h3>
<p>So the plan had been to let the blog sit fallow for a year until it was good and dead, then kill it off and start fresh.</p>
<h3>The tabula rasa effect, right?</h3>
<p>Nope.</p>
<p>I checked in last month after a year of neglect and realized that the simple fact was that in order to start fresh I would have to actually delete what was already there.</p>
<p>A month of agonized consideration ensued.</p>
<p>And then, Last week I did something rash. I quit my day job. Not like all of the other marketers you are so familiar with. Not because I was making enough money to do so. But because I simply could not endure another day working at that job.</p>
<p>Guts? Stupidity? I&#8217;ll report and let you decide.</p>
<p>But you know what. Action is what makes things happen. <strong>I know I can earn a good living online</strong>.</p>
<p>I&#8217;ve made money on line. <em>I know why</em> I haven&#8217;t made consistent money online so far.</p>
<p>I&#8217;m correcting that starting now. By the by, a nod to <a href="http://www.robertplank.com/" title="The success addict" class="liexternal">The Success Addict, Robert Plank</a> is in order here. I&#8217;ve been absorbing a number of his products lately, and I&#8217;m deploying a lot of what I&#8217;m learning from him here on this blog.</p>
<p>One thing from the start is New Rule No. One. <strong>TAKE ACTION</strong>. This theme aint ready for prime time. Stuff I want here aint ready to go. But I ain&#8217;t waiting. I&#8217;m getting content up now. I&#8217;ll continue making things more like what I want, but forward momentum is the order of the day.</p>
<p>For instance. In the past I&#8217;ve made my own themes. Not this one. I downloaded something close, hacked it just enough to get it looking a little different and I&#8217;m publishing. I&#8217;ll continue to work on it. But it&#8217;s going to take some time. The content comes first. Starting when I push that publish button in just a couple of minutes.</p>
<p>I&#8217;m living the 8020 rule I&#8217;m doing the 20 and getting the 80 from here on in. No more working for 100% and getting nothing because 100% is never reached.</p>
<p>I&#8217;d love to read your thoughts on this post. Please take just a minute to leave me a comment. Am I nuts? Completely starkers? Shrewd? Gutsy? Let me know what you think!</p>
<!-- google_ad_section_end -->

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center sexy-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danemorgan.com/new-tricks-for-an-old-blog/&amp;title=New+Tricks+For+An+Old+Blog" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" class="liexternal">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danemorgan.com/new-tricks-for-an-old-blog/&amp;t=New+Tricks+For+An+Old+Blog" rel="nofollow" title="Share this on Facebook" class="liexternal">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://danemorgan.com/new-tricks-for-an-old-blog/&amp;title=New+Tricks+For+An+Old+Blog" rel="nofollow" title="Share this on del.icio.us" class="liexternal">Share this on del.icio.us</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://danemorgan.com/new-tricks-for-an-old-blog/" rel="nofollow" title="Share this on Technorati" class="liexternal">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=New+Tricks+For+An+Old+Blog+-+http://su.pr/1XAFx2+(via+@danemorgan)" rel="nofollow" title="Tweet This!" class="liexternal">Tweet This!</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://danemorgan.com/new-tricks-for-an-old-blog/" rel="nofollow" title="Sphinn this on Sphinn" class="liexternal">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danemorgan.com/new-tricks-for-an-old-blog/&amp;submitHeadline=New+Tricks+For+An+Old+Blog&amp;submitSummary=Well%2C%20as%20you%20can%20see%20I%20did%20it.%0D%0A%0D%0AIf%20you%20don%27t%20know%20what%20I%20did%2C%20that%27s%20okay%2C%20I%27ll%20explain%20in%20just%20a%20minute.%0D%0A%0D%0AFor%20the%20handful%20who%20do%20know%20what%20I%27m%20talking%20about%2C%20I%20decided%20not%20to%20wait%20for%20a%20consensus.%20One%20of%20the%20new%20rules%20is%20not%20waiting.%20No%20pondering.%20Any%20action%2C%20even%20the%20wrong%20action%2C%20is%20better%20th&amp;submitCategory=business&amp;submitAssetType=text" rel="nofollow" title="Buzz up!" class="liexternal">Buzz up!</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danemorgan.com/new-tricks-for-an-old-blog/&amp;title=New+Tricks+For+An+Old+Blog" rel="nofollow" title="Digg this!" class="liexternal">Digg this!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://danemorgan.com/new-tricks-for-an-old-blog/feed" rel="nofollow" title="Subscribe to the comments for this post?" class="liinternal">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://danemorgan.com/new-tricks-for-an-old-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
