<?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"
	>

<channel>
	<title>NetDummy</title>
	<atom:link href="http://www.netdummy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.netdummy.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 10 Nov 2008 15:02:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>How To Create LinkedIn Search For Your Company Site</title>
		<link>http://www.netdummy.com/2008/11/10/how-to-create-linkedin-search-for-your-company-site/</link>
		<comments>http://www.netdummy.com/2008/11/10/how-to-create-linkedin-search-for-your-company-site/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 14:37:16 +0000</pubDate>
		<dc:creator>Dave Taylor</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=23</guid>
		<description><![CDATA[I&#8217;ve been building a reference site for use inside my company and am wondering if there&#8217;s any way to hack LinkedIn so that we can have a LinkedIn search box for individuals who work
in our company? Yeah, we should have a company directory, but the boss is a huge LinkedIn fan&#8230;

Dave&#8217;s Answer:
Well, that&#8217;s a novel [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been building a reference site for use inside my company and am wondering if there&#8217;s any way to hack LinkedIn so that we can have a LinkedIn search box for individuals who work<br />
in our company? Yeah, we should have a company directory, but the boss is a huge LinkedIn fan&#8230;</p>
<p><span id="more-23"></span></p>
<p>Dave&#8217;s Answer:</p>
<p>Well, that&#8217;s a novel use of LinkedIn. You do realize that each person who uses the search will have different results, because it&#8217;s <em>their LinkedIn account</em> that will be used as the basis of how LinkedIn will actually present the results, right?  And that the people whose records match will still have mostly non-functional data entries for your employee because if you aren&#8217;t linked to someone you can&#8217;t see most of their profile?</p>
<p>I don&#8217;t quite understand your logic here, but I can still show you how to reverse engineer the LinkedIn people search and create what you seek nonetheless.</p>
<p>The easiest way to accomplish this seems like it would be the basic people search that you see on the top right of most LinkedIn pages:</p>
<p><img src="http://www.askdavetaylor.com/2-blog-pics/linkedin-search-people.png" border="0" alt="linkedin search people" width="395" height="70" /></p>
<p>However, it&#8217;s not a freeform box a la Google, so you can&#8217;t do a search like &#8220;company: Microsoft name:smith,john&#8221;, so in fact it won&#8217;t work. Instead, we&#8217;re left having to explore the far more complicated &#8220;Advanced Search&#8221;, which is easily reached by clicking on &#8220;Advanced&#8221;.  Now we&#8217;re in more sophisticated territory:</p>
<p><img src="http://www.askdavetaylor.com/2-blog-pics/linkedin-advanced-people-search.png" border="0" alt="linkedin advanced people search" width="448" height="368" /></p>
<p>Before we crack open the hood and look inside, though, let&#8217;s try doing a search and see if we can reverse the URL instead. I&#8217;m skeptical this will work because of the sheer number of variables involved, but let&#8217;s see. I&#8217;m going to specify a search for lastname = Taylor, company = Boeing and the constraint that it&#8217;s the current company only.</p>
<p>The resultant URL:</p>
<div class="code">http://www.linkedin.com/search?search=&amp;lname=taylor&amp;distance=-1&amp;newnessType=Y&amp;company=boeing&amp;viewCriteria=</div>
<div class="code">1&amp;currentCompany=co&amp;searchLocationType=Y&amp;proposalType=Y&amp;pplSearchOrigin=ADVS&amp;sortCriteria=Relevance</div>
<p></p>
<p>Rather to my surprise, this does work!  You can see that last name is &#8220;lname&#8221;, company is &#8220;company&#8221; and that &#8220;currentCompany&#8221; is the restriction parameter. Nice!</p>
<p>My first question at this point is whether we can simply delete all the other criteria and have it work properly:</p>
<div class="code">http://www.linkedin.com/search?lname=taylor&amp;company=boeing&amp;currentCompany=co</div>
<p></p>
<p>Nope. Too much removed and the search didn&#8217;t work.</p>
<p>Through some experimentation, I have ascertained that this is the minimal set of criteria needed to be specified for the search to work:</p>
<div class="code">http://www.linkedin.com/search?search=&amp;lname=taylor&amp;distance=-1&amp;company=boeing&amp;currentCompany=co</div>
<p></p>
<p>Now it&#8217;s a matter of figuring out which of these values we want to let vary and which we want to keep constant. We also need to add a first name option, which proves to be &#8220;fname&#8221;, no surprise.</p>
<p>Unwrapping everything, we now know that we need:</p>
<ul>
<li>&#8220;search=&#8221; &#8212; to have it work properly</li>
<li>&#8220;lname=<em>last name</em>&#8221; &#8212; the last name we&#8217;re using as a search value</li>
<li>&#8220;distance=-1&#8243; &#8212; since there&#8217;s no default value for distance from our location, &#8220;-1&#8243; specifies that LinkedIn should ignore geographic constraints.</li>
<li>&#8220;company=<em>company name</em>&#8221; &#8212; this will be a set value, the name of your company.</li>
<li>&#8220;currentCompany=co&#8221; &#8212; constrains search to just people who work at the company today, not those that have worked there in the past.</li>
</ul>
<p>There&#8217;s one more thing we can ascertain from examining this URL: the address of the search engine itself. That&#8217;s everything <em>before</em> the &#8220;?&#8221; in the URL: &#8220;http://www.linkedin.com/search&#8221;.</p>
<p>Now we can create our own rough HTML form that uses hidden variables for things we don&#8217;t want to vary and regular text input boxes for those we do:</p>
<div class="code">&lt;form method=&#8221;get&#8221; action=&#8221;http://www.linkedin.com/search&#8221;&gt;</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;search&#8221; value=&#8221;" /&gt;</p>
<p>firstname: &lt;input type=&#8221;text&#8221;   name=&#8221;fname&#8221; /&gt;</p>
<p>&amp;nbsp; &amp;nbsp;</p>
<p>lastname: &lt;input type=&#8221;text&#8221;   name=&#8221;lname&#8221; /&gt;</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;distance&#8221; value=&#8221;-1&#8243; /&gt;</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;company&#8221; value=&#8221;boeing&#8221; /&gt;</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;currentCompany&#8221; value=&#8221;co&#8221; /&gt;</p>
<p>&lt;input type=&#8221;submit&#8221; value=&#8221;search LinkedIn&#8221; /&gt;</p>
<p>&lt;/form&gt;</p></div>
<p>
It looks like this:</p>
<hr />
<form action="http://www.linkedin.com/search" method="get">
<input name="search" type="hidden" />firstname:</p>
<input name="fname" size="12" type="text" /> lastname:</p>
<input name="lname" size="12" type="text" />
<input name="distance" type="hidden" value="-1" />
<input name="company" type="hidden" value="boeing" />
<input name="currentCompany" type="hidden" value="co" />
<input type="submit" value="search LinkedIn" /></form>
<hr />
<p>It&#8217;s not pretty, but if you try it you&#8217;ll find that it does indeed work as a simple way to search for Boeing employees at LinkedIn.</p>
<p>That&#8217;s the core of what you need for your project. I hope it works out for you!</p>
<p><a href="http://www.askdavetaylor.com/create_linkedin_company_person_search_form.html">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/11/10/how-to-create-linkedin-search-for-your-company-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Setup a LinkedIn Group Step-by-Step</title>
		<link>http://www.netdummy.com/2008/10/29/how-to-setup-a-linkedin-group-step-by-step/</link>
		<comments>http://www.netdummy.com/2008/10/29/how-to-setup-a-linkedin-group-step-by-step/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 14:57:03 +0000</pubDate>
		<dc:creator>Aurora Brown</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=22</guid>
		<description><![CDATA[LinkedIn groups function much the same way basic groups do on other networking sites; you can’t do much more than post messages, reply to them, leave comments and add new stories. However, they are a great way to create a community for your service, website, product or company.
So how do you create a LinkedIn Group? [...]]]></description>
			<content:encoded><![CDATA[<p>LinkedIn groups function much the same way basic groups do on other networking sites; you can’t do much more than post messages, reply to them, leave comments and add new stories. However, they are a great way to create a community for your service, website, product or company.</p>
<p>So how do you create a LinkedIn Group? Read on for a step-by-step guide…</p>
<p><span id="more-22"></span></p>
<p>1) First, login to your linked in profile. To the left hand side of your profile, you’ll see a tab that says “Groups.”</p>
<div id="attachment_467" class="wp-caption alignleft" style="width: 242px;"><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-13.jpg"><img class="size-full wp-image-467" title="linkedin-discussion-13" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-13.jpg" alt="LinkedIn Group Step 1" width="232" height="650" /></a></p>
<p class="wp-caption-text">LinkedIn Group Step 1</p>
</div>
<p>2) Click on the plus sign next to groups and a list of the groups you belong to/have created will drop down. If you want to edit your group, click on the one you wish edit (you can only edit the ones you created - in this case I clicked on the Authority Domains one I set up for the purpose of this example).</p>
<p>To create a group, click the “Create a Group” tab:</p>
<div id="attachment_458" class="wp-caption alignleft" style="width: 603px;"><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-4.jpg"><img class="size-full wp-image-458" title="linkedin-discussion-4" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-4.jpg" alt="LinkedIn Group Creation - Step 3.5" width="593" height="601" /></a></p>
<p class="wp-caption-text">LinkedIn Group Creation - Step 2.5</p>
</div>
<p>3) After you click the “Create a Group,” you’ll see the screen below (it takes you directly to “Manage”). Simply fill out the information accordingly (its pretty self-explanatory–remember to use your keywords in both the Group Name, Summary and Description). Save the changes:<a name="resume"></a></p>
<p><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/manageinfoandsettings.jpg"><img class="alignleft size-full wp-image-470" title="manageinfoandsettings" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/manageinfoandsettings.jpg" alt="" width="700" height="1100" /></a></p>
<p>4) As soon as you’ve saved the changes, you’ll see a page under the Overview tab. This tab does exactly what it says: it gives you an overview of all the activity that’s been going on with your group:</p>
<div id="attachment_461" class="wp-caption alignleft" style="width: 783px;"><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-7.jpg"><img class="size-full wp-image-461" title="linkedin-discussion-7" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-7.jpg" alt="LinkedIn Group Creation Overview - Step 4" width="700" height="707" /></a></p>
<p class="wp-caption-text">LinkedIn Group Creation Overview - Step 4</p>
</div>
<p>5)<strong> Discussion tab</strong> - You can see what members of your group are talking about:</p>
<div id="attachment_455" class="wp-caption alignleft" style="width: 743px;"><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion.jpg"><img class="size-full wp-image-455" title="linkedin-discussion" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion.jpg" alt="LinkedIn Group Discussions" width="700" height="362" /></a></p>
<p class="wp-caption-text">LinkedIn Group Discussions</p>
</div>
<p>6) <strong>News tab</strong> - You can see the latest news submitted to the group:</p>
<p><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-6.jpg"><img class="alignleft size-full wp-image-460" title="linkedin-discussion-6" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-6.jpg" alt="" width="700" height="350" /></a></p>
<p>7)<strong> Updates</strong> - You can see what updates people have made</p>
<p><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-2.jpg"><img class="alignleft size-full wp-image-456" title="linkedin-discussion-2" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-2.jpg" alt="" width="700" height="280" /></a></p>
<p><img class="wp-smiley" src="http://www.authoritydomains.com/blogs/wp-includes/images/smilies/icon_cool.gif" alt="8)" /><strong>Members</strong> - Here is a list of members; only managers can edit this area:</p>
<p><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-9.jpg"><img class="alignleft size-full wp-image-463" title="linkedin-discussion-9" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-9.jpg" alt="" width="700" height="280" /></a></p>
<p>9) <strong>Settings </strong>- Here you can modify your group settings as needed:</p>
<p><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/manageinfoandsettings.jpg"><img class="alignleft size-full wp-image-470" title="manageinfoandsettings" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/manageinfoandsettings.jpg" alt="" width="500" height="746" /></a></p>
<p>10) <strong>Manage</strong> - Here you can manage your account and settings, add up to ten people as managers, add , block or delete members, delete the group, pre-approve members, invite them, edit info &amp; settings and change owner:</p>
<p><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-11.jpg"><img class="alignleft size-full wp-image-465" title="linkedin-discussion-11" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-11.jpg" alt="" width="700" height="445" /></a></p>
<p>11) When you first login and click on groups, you’ll see a notification that looks like this when someone has applied to join your group:</p>
<div id="attachment_464" class="wp-caption alignleft" style="width: 783px;"><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-10.jpg"><img class="size-full wp-image-464" title="linkedin-discussion-10" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-10.jpg" alt="LinkedIn Joined Group Notification" width="700" height="490" /></a></p>
<p class="wp-caption-text">LinkedIn Joined Group Notification</p>
</div>
<div class="mceTemp">Just click on “1 request to join” and it will take you to the Manage page, where you can then approve the member.</div>
<div class="mceTemp">Alternately, you can go straight to manage and click on “Requests to Join.”</div>
<div class="mceTemp">After you’ve clicked on one of the links above, you’ll see page that looks like the one below. Make sure the radio button is selected, then choose the action you want to take for that member:</div>
<div class="mceTemp"><a href="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-8.jpg"><img class="alignleft size-full wp-image-462" title="linkedin-discussion-8" src="http://www.authoritydomains.com/blogs/wp-content/uploads/2008/10/linkedin-discussion-8.jpg" alt="" width="700" height="408" /></a></p>
<p><a href="http://www.authoritydomains.com/blogs/social-networking/how-do-i-create-a-linkedin-group.php">Comments</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/10/29/how-to-setup-a-linkedin-group-step-by-step/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What to Do When Starting a New Blog</title>
		<link>http://www.netdummy.com/2008/10/14/what-to-do-when-starting-a-new-blog/</link>
		<comments>http://www.netdummy.com/2008/10/14/what-to-do-when-starting-a-new-blog/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 13:39:34 +0000</pubDate>
		<dc:creator>Rohit Bhargava</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=21</guid>
		<description><![CDATA[Starting a blog is not for everyone. There are lots of reasons not to blog, including having the time to keep a blog up to date, having something to say, and the fact that blogging is becoming an increasingly crowded space making it far tougher to stand out than it may have been in the [...]]]></description>
			<content:encoded><![CDATA[<p>Starting a blog is not for everyone. There are lots of reasons not to blog, including having the time to keep a blog up to date, having something to say, and the fact that blogging is becoming an increasingly crowded space making it far tougher to stand out than it may have been in the past. Why would I start a post about successful blogging with all these cautions against blogging? Mostly to make sure that if you are going to start a blog, you are getting into it without a false expectation that it can solve all your problems or how much work it will be.</p>
<p>Assuming you have the right idea in mind, the question I get asked most often is how you can make your blog as successful as possible. Here are some tips for new bloggers on what you may want to focus on in your first 90 days of blogging:<br />
<span id="more-21"></span></p>
<p><span style="text-decoration: underline;"><strong>DAYS 1 TO 15:</strong></span></p>
<p><strong>1. Find a good niche. </strong>Think hard about what you want to write about. It has to be something you are passionate about and interested in, otherwise it won&#8217;t work. The more specific you can get, the better. You can also broaden it later, but in the beginning you need to find a subject that you can own.</p>
<p><strong>2. Choose a name and URL.</strong> This is a tough thing, but just as many companies these days do, you should let available URLs drive how you name your blog. If you can&#8217;t get the URL, don&#8217;t use the name. And make sure you plan to put your blog on a specific URL, whether you are using Typepad or Blogspot or any other service. Trust me on this, you&#8217;ll eventually wish you built your blog on your own URL, whether you think so today or not.</p>
<p><strong>3. Grab a template and launch quickly.</strong> The biggest paralysis new bloggers have is wanting to get their new blog just right. In the first few weeks of your blog, the most important thing is to find your voice - so forget about design just launch it with a ready made template. Chances are remote that search engines will list it that quickly, and you&#8217;ll have a few weeks to get it right.</p>
<p><strong>4. Add Google Analytics.</strong> Google has a free tool called Google Analytics which gives you some great metrics on your blog all for free. It requires you to do a bit of tricky cutting and pasting to add certain code to your blog, but it is totally worth it to do it early so you&#8217;ll have metrics from the first days of your blog to compare to and see how far you have come.</p>
<p><strong>5. Create an editorial calendar. </strong>Some football coaches head into games scripting out their first 10 plays as part of their gameplan. You should do the same. Figure out the topics for your first ten posts, and then write them steadily. Not only does this get you thinking ahead, it also gives you a sense of how many posts per week you can realistically write.</p>
<p><span style="text-decoration: underline;"><strong>DAYS 15 TO 30:</strong></span></p>
<p><strong>6. Reevaluate your blog title. </strong>At this point, you will likely have several blog posts to look at and a better sense of what you enjoy writing about. It&#8217;s the perfect time to check the title of your blog and theme that you set earlier and make sure it still accurately describes what you want to write about. If it doesn&#8217;t, now is the perfect time to fix it.<a name="resume"></a></p>
<p><strong>7. Design your blog brand.</strong> Now that you have your theme and several posts, you can design your blog. At this stage, you may just want to add a logo to an existing template or do something more custom. Either way, by having your blog brand set and several posts in your archive, you can really see what your design will look like.</p>
<p><strong>8. Get your blog listed.</strong> It&#8217;s also time in these two weeks to get your blog listed on all the search engines by submitting it. You should also claim it on Technorati, and submit it to any other sites in your particular industry or area of focus. Remember, you don&#8217;t need to focus on promotion right now, this is just about getting your site listed.</p>
<p><strong>9. Set up your feeds. </strong>Many bloggers today (including me) are using Feedburner to syndicate their RSS feeds and offer email subscriptions to their blog. Whether you choose to use Feedburner or not, setting up your feeds and making them available to readers will be important as you start to grow your blog.</p>
<p><strong>10. Learn the art of headlining. </strong>In blog posts, titles make a big difference. Particularly because many readers will be accessing your content through RSS and the title may be the only thing you see. To deal with this truth, you need to think like a copywriter and treat your blog post titles like headlines. Learning to write good blog post titles will be a major skill you will use all the time.</p>
<p><span style="text-decoration: underline;"><strong>DAYS 30 TO 60:</strong></span></p>
<p><strong>11. Set your targets. </strong>You&#8217;ll probably be getting close to finishing your first ten posts by now, or at least worrying about what you&#8217;ll write about next. Based on what you&#8217;ve been able to do in the first month, set a target for yourself of how many posts you will try to write per week. My target is three and I usually stick to it.</p>
<p><strong>12. Learn the <a href="http://www.slideshare.net/rohitbhargava/the-25-basic-styles-of-blogging-and-when-to-use-each-one/">25 styles</a>.</strong> More than a year ago, I wrote a presentation designed to answer the common question from bloggers of what to write about. To help you fight &#8220;bloggers block&#8221; - <a href="http://www.slideshare.net/rohitbhargava/the-25-basic-styles-of-blogging-and-when-to-use-each-one/">view the presentation</a> and learn the techniques. They will help you figure out what to write about, as they have helped me.</p>
<p><strong>13. Contact your influencers.</strong> Now that you have a month of blogging experience, it&#8217;s also time to start asking for advice and introducing yourself to those who inspire you. Create a list of bloggers that you look up to and then religiously email one person from that list after you do a post. Ideally it will be someone who would be interested in your post and likely to respond to it.</p>
<p><strong>14. Actively share your posts.</strong> In addition to emailing them to your influencers, you should start finding appropriate social networks and sites on which to share your blog posts. This could mean submitting them to Digg, or posting them onto del.icio.us with keyword tags. Essentially, you want to try a few tools to get your blog posts out there tagged and saved.</p>
<p><strong>15. Integrate your blog into your profiles.</strong> At the point when you start your blog, you are probably already using other social networks such as Facebook or LinkedIn. After the first month when you have some good activity on your blog, you can add the URL to your profiles and make sure that your network knows you have a blog.</p>
<p><span style="text-decoration: underline;"><strong>DAYS 60 TO 90:</strong></span></p>
<p>In these days, your main focus should be on content and connections. Try to create the best blog posts you can. Those that have insights, a strong point of view, and are highly shareable. If you can really succeed at having this great content, people will pass it along and your blog will have the greatest chance of getting passed along too. At this stage you should also make sure that you are using all of your social networks to also spread the word about your blog and your posts. The reason I don&#8217;t have specific lessons at this stage is that you&#8217;re starting to get into the point where you will probably be finding your own way and techniques that work for you. The best advice I can offer at this stage and moving ahead beyond 90 days is to try and stay as consistent as possible, and continue to create the best content you can, and share it with people in your network most likely to help you spread the word.</p>
<p>Good luck with your blog! And if you have a blog where you used these suggestions to help you launch, please leave a comment and let other readers know how these suggestions worked for you.</p>
<p><a href="http://rohitbhargava.typepad.com/weblog/2008/10/how-to-launch-a.html">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/10/14/what-to-do-when-starting-a-new-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Properly Structure Your Site</title>
		<link>http://www.netdummy.com/2008/10/01/how-to-properly-structure-your-site/</link>
		<comments>http://www.netdummy.com/2008/10/01/how-to-properly-structure-your-site/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 15:26:01 +0000</pubDate>
		<dc:creator>Peter Da Vanzo</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=20</guid>
		<description><![CDATA[I&#8217;d like to take a look at an area often overlooked in SEO.
Site architecture.
Site architecture is important for SEO for three main reasons:

To focus on the most important keyword terms
Control the flow of link equity around the site
Ensure spiders can crawl the site

Simple, eh. Yet many webmasters get it wrong.
Let&#8217;s take a look at how [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to take a look at an area often overlooked in SEO.</p>
<p>Site architecture.</p>
<p>Site architecture is important for SEO for three main reasons:</p>
<ul>
<li>To focus on the most important keyword terms</li>
<li>Control the flow of link equity around the site</li>
<li>Ensure spiders can crawl the site</li>
</ul>
<p>Simple, eh. Yet many webmasters get it wrong.</p>
<p>Let&#8217;s take a look at how to do it properly.</p>
<p><strong>Evaluate The Competition</strong></p>
<p><span id="more-20"></span><br />
One you&#8217;ve decided on your <a href="http://www.seobook.com/Align%20Your%20SEO%20Strategy%20With%20Site%20Structure">message</a>, and your plan, the next step is to layout your site structure.</p>
<p>Start by evaluating your competition. Grab your list of keyword terms, and search for the most popular sites listed under those terms. Take a look at their navigation. What topic areas do they use for their main navigation scheme? Do they use secondary navigation? Are there similarities in topic areas across competitor sites?</p>
<p>Open a spreadsheet, and list their categories, and title tags, and look for keyword patterns. You&#8217;ll soon see similarities. By evaluating the navigation used by your competition, you&#8217;ll get a good feel for the tried-n-true &#8220;money&#8221; topics.</p>
<p>You can then run these sites through metrics sites like Compete.com.</p>
<p><img src="http://www.seobook.com/images/competecars.jpg" alt="" /></p>
<p>Use the most common, heavily trafficked areas as your core navigation sections.</p>
<p><strong>The Home Page Advantage</strong></p>
<p>Those who know how Page Rank functions can skip this section.</p>
<p>Your home page will almost certainly have the highest level of authority.</p>
<p>While there are a lot of debates about the merits of PageRank when it comes to ranking, it is fair to say that PageRank is rough indicator of a pages&#8217; level of authority. Pages with more authority are spidered more frequently and enjoy higher ranking than pages with lower authority. The home page is often the page with the most links pointing to it, so the home page typically has the highest level of authority. Authority passes from one page to the next.</p>
<p>For each link off a page, the authority level will be split.</p>
<p>For example - and I&#8217;m simplifying* greatly for the purposes of illustration - if you have a home page with a ten units of link juice, two links to two sub-pages would see each sub-page receive 5 points of link juice. If the sub-page has two links, each sub-sub would receive two units of link juice, and so on.</p>
<p>The important point to understand is that the further your pages are away from the home page, generally the less link juice those pages will have, <em>unless</em> they are linked from external pages. This is why you need to think carefully about site structure.</p>
<p>For SEO purposes, try to keep your money areas close to the home page.</p>
<p>*Note: Those who know how Page Rank functions will realise my explaination above is not technically correct. The way Page Rank splits is more sophisticated than that given in my illustration. For those who want a more technical breakdown of the Page Rank calculations, check out Phils post at <a href="http://www.webworkshop.net/pagerank.html">WebWorkshop</a>.</p>
<p><strong>How Deep Do I Go? </strong></p>
<p>Keeping your site structure shallow is a good rule of thumb. So long as you main page is linked well, all your internal pages will have sufficient authority to be crawled regularly. You also achieve clarity and focus.</p>
<p>A shallow site structure is not just about facilitating crawling. After all, you could just create a <a href="https://www.google.com/webmasters/tools/docs/en/protocol.html">Google Site Map</a> and achieve the same goal. Site structure is also about selectively passing authority to your money pages, and not wasting it on pages less deserving. This is straightforward with a small site, but the problem gets more challenging as you site grows.</p>
<p>One way to mange scale is by grouping your keyword terms into primary and secondary navigation.</p>
<p><strong>Main &amp; Secondary Navigation</strong></p>
<p>Main navigation is where you place your core topics i.e. the most common, highly trafficked topics you found when you performed your competitive analysis. Typically, people use tabs across the top, or a list down the left hand side of the screen. Main navigation appears on all other pages.</p>
<p>Secondary navigation consists of all other links, such as latest post, related articles, etc. Secondary navigation does not appear on every page, but is related to the core page upon which it appears.</p>
<p>One way to split navigation is to organize your core areas into the main navigation tabs across the top, and provide secondary navigation down the side.</p>
<p>For example, let&#8217;s say you main navigation layout looked like this:</p>
<p><img src="http://www.seobook.com/images/carsite1.jpg" alt="" /></p>
<p>Each time I click a main navigation term, the secondary navigation down the left hand side changes. The secondary navigation are keywords related to the core area.</p>
<p><img src="http://www.seobook.com/images/carsite2.jpg" alt="" /></p>
<p>For those of you who are members, Aaron has an indepth video demonstration on <a href="http://training.seobook.com/site-architecture-internal-linking">Site Architecture And Internal Linking</a>, as well as instruction on how to integrate and mange keywords.</p>
<p><strong>Make Navigation Usable</strong></p>
<p>Various studies indicate that humans are easily confused when presented with more than seven choices. Keep this in mind when creating your core navigation areas.</p>
<p>If you offer more than seven choices, find ways to break things down further. For example, by year, manufacturer, model, classification, etc.</p>
<p>You can also break these areas down with an &#8220;eye break&#8221; between each. Here&#8217;s a good example of this technique on <a href="http://www.chocolate.com">Chocolate.com</a>:</p>
<p><img src="http://www.seobook.com/images/chocolate.jpg" alt="" /></p>
<p>Search spiders, on the other hand, aren&#8217;t confused by multiple choices. Secondary navigation, which includes links within the body copy, provides plenty of opportunity to place keywords in links. Good for usability, too.</p>
<p>As your site grows, new content is linked to by secondary navigation. The key is to continually monitor what content produces the most money/visitor response. Elevate successful topics higher up you navigation tree, and relegate loss-making topics.</p>
<p>Use your analytics package to do this. In most packages, you can get breakdowns of the most popular, and least popular, pages. Organise this list by &#8220;most popular&#8221;. Your most popular pages should be at the top of your navigation tree. You also need to consider your business objectives. Your money pages might not be the same pages as your most popular pages, so it&#8217;s also a good idea to set up funnel tracking to ensure the pages you&#8217;re elevating also align with your business goals.</p>
<p>If  a page is ranking well for a term, and that page is getting good results, you might want to consider adding a second page targeting the same term. Google may then group the pages together, effectively giving you listings #1 and #2.</p>
<p><strong>Subject Themeing</strong></p>
<p><img src="http://www.seobook.com/images/pyramid.jpg" alt="" /></p>
<p>A variant on Main &amp; Secondary Navigation is subject themeing.</p>
<p>Themeing is a controversial topic in SEO. The assumption is that the search engines will try and determine the general theme of your site, therefore you should keep all your pages based around a central theme.</p>
<p>The theory goes that you can find out what words Google places in the same &#8220;theme&#8221; by using the tilde <strong>~</strong> command in Google. For example, if you search on <strong>~ cars</strong>, you&#8217;ll see &#8220;automobile&#8221;, &#8220;auto&#8221;, &#8220;bmw&#8221; and other related terms highlighted in the SERP results. You use these terms as headings for pages in your site.</p>
<p>However, many people feel that themes do not work, because search engines return individual pages, not sites. Therefore, it follows that the topic of other pages on the site aren&#8217;t directly attributable to the ranking of an individual page.</p>
<p>Without getting into a debate about the the existence or non-existence of theme evaluation in the algorithm, themeing is a great way to <em>conceptually</em> organize your site and research keywords.</p>
<p>Establish a central theme, then create a list of sub-topics made up of related (<strong>~</strong>) terms. Make sub-topics of sub-topics. Eventually, your site resembles a pyramid structure. Each sub-topic is organized into a directory folder, which naturally &#8220;loads&#8221; keywords into URL strings, breadcrumb trails, etc. The entire site is made up of of keywords related to the main theme.</p>
<p>Bruce Clay provides a good overview of <a href="http://www.bruceclay.com/newsletter/volume29/themepartone.html">Subject Themeing</a>.</p>
<p><strong>Bleeding Page Rank?</strong></p>
<p>You might also wish to balance the number of outgoing links with the number of internal links. Some people are concerned about this aspect, i.e. so-called &#8220;bleeding page rank&#8221;. A page doesn&#8217;t lose page rank because you link out, but linking does effect the level of page rank available to pass to other pages. This is also known as link equity.</p>
<p>It is good to be aware of this, but not let it dictate your course of action too much. Remember, outbound linking is a potential advertisement for your site, in the form of referral data in someone else logs. A good rule of thumb is to balance the number of internal links with the the number of external links. Personally, I ignore this aspect of SEO site construction and instead focus on providing visitor value.</p>
<p><strong>Link Equity &amp; No Follow</strong></p>
<p>Another way to control the link equity that flows around your site is to use the <a href="http://www.seobook.com/archives/000630.shtml">no-follow</a> tag. For example, check out the navigational links at the bottom of the page:</p>
<p><img src="http://www.seobook.com/images/carsite3.jpg" alt="" /></p>
<p>As these target pages aren&#8217;t important in terms of ranking, you could no-follow these pages ensure your main links have more link equity to pass to other pages.</p>
<p><strong>Re-Focus On The Most Important Content</strong></p>
<p>This might sound like sacrilege, but it can often pay not to let search engines display all the pages in your site.</p>
<p>Let&#8217;s say you have twenty pages, all titled &#8220;Acme&#8221;. Links containing the keyword term &#8220;Acme&#8221; point to various pages. What does the algorithm do when faced with these pages? It doesn&#8217;t display all of them for the keyword term &#8220;Acme&#8221;. It choses the one page it considers most worthy, and displays that.</p>
<p>Rather than leave it all to the algorithm, it often pays to pick the single most relevant page you want to rank, and 301 all the other similarly-themed pages to point to it. Here&#8217;s some instructions on <a href="http://www.seobook.com/archives/000215.shtml">how to 301 pages</a>.</p>
<p>By doing this, you focus link equity on <em>the</em> most important page, rather than splitting it across multiple pages.</p>
<p><strong>Create Cross Referenced Navigational Structures</strong></p>
<p>Aaron has a good tip regarding <a href="http://www.seobook.com/archives/002332.shtml">cross-referencing within the secondary page body text</a>. I&#8217;ll repeat it here for good measure:</p>
<blockquote><p>This idea may sound a bit complex until you visualize it as a keyword chart with an x and y axis.</p>
<p>Imagine that a, b, c, &#8230; z are all good keywords.<br />
Imagine that 1, 2, 3, &#8230; 10 are all good keywords.</p>
<p>If you have a page on each subject consider placing the navigation for a through z in the sidebar while using links and brief descriptions for 1 through 10 as the content of the page. If people search for d7, or b9, that cross referencing page will be relevant for it, and if it is done well it does not look too spammy. Since these types of pages can spread link equity across so many pages of different categories make sure they are linked to well high up in the site&#8217;s structure. These pages works especially well for categorized content cross referenced by locations.</p></blockquote>
<p><a href="http://www.seobook.com/align-your-seo-strategy-site-structure">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/10/01/how-to-properly-structure-your-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Crafting Top Dollar Title Tags &#038; Headlines</title>
		<link>http://www.netdummy.com/2008/09/17/crafting-top-dollar-title-tags-headlines/</link>
		<comments>http://www.netdummy.com/2008/09/17/crafting-top-dollar-title-tags-headlines/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 15:39:42 +0000</pubDate>
		<dc:creator>Peter Da Vanzo</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=19</guid>
		<description><![CDATA[One old-skool marketing technique that will always hold true is the value of the catchy headline. 
The headline, given its power to convey meaning quickly, is more important than ever. Attention spans are limited. Media messages flood the channels. We&#8217;re busy. The function of the headline is to grab our attention and pull us deeper [...]]]></description>
			<content:encoded><![CDATA[<p>One old-skool marketing technique that will always hold true is the value of the catchy headline. </p>
<p>The headline, given its power to convey meaning quickly, is more important than ever. Attention spans are limited. Media messages flood the channels. We&#8217;re busy. The function of the headline is to grab our attention and pull us deeper into the message. </p>
<p>Many books have been written on how to craft great headlines. I&#8217;m going to quote from the advertisers bible on the topic, Tested Adverting Methods by John Caples. Caples identifies three main classes of successful headlines. </p>
<p><span id="more-19"></span></p>
<h3>The Three Main Classes Of Successful Headlines</h3>
<ul>
<li><b>Self-Interest:</b> The best headlines are those that appeal to self interest. They offer the reader benefits that they want, and they can get from you. For example, <b>RETIRE AT 30</b></li>
<li><b>News</b> - Humans are pre-disposed to seek out what is new and different in their environment. For example, <b>NEW, CHEAPER IPHONE CALL PLANS RELEASED</b></li>
<li><b>Curiosity</b> Appeal to our curious nature. <b>LOST: $1 BILLION DOLLARS</b></li>
</ul>
<p>Of the three, by far the most effective headline in advertising is the self interest headline. Our self interest usually trumps our curiosity, and news, especially when time is short. </p>
<p>Compare these two headlines: </p>
<p>PUT UP OR SHUT UP</p>
<p>FIVE TOTALLY NEW WAYS TO GET TOP RANKING IN GOOGLE</p>
<p>The first says nothing that appeals to our self interest. We don&#8217;t even know what it is about. But you&#8217;d be hard pressed <i>not</i> to click on the second headline. The self-interest is just too strong. This is why the second form is used so often in link-baiting and social media. It screams for attention, and then makes a strong appeal to self-interest. </p>
<p>There is a downside to such headlines, however. Modern audiences have become jaded and cynical, especially where marketing messages are concerned. Overplay the benefit, and you&#8217;ll come off as a shark. Link-baiting, a useful SEO tactic, has developed a bad reputation through overuse of this approach. </p>
<p>Eventually, people tune out. </p>
<h3>Get Your Tone Right</h3>
<p>We can twist the overused appeal-to-self interest headline strategy slightly to make it work for us. The key to getting the appeal to self-interest right is to get the tone right. Understand both the audiences&#8217; desires <i>and</i> the tone of &#8220;voice&#8221; they respond to.  </p>
<p>For example, look at Digg. A cynic might argue that a surefire way to get top page on Digg is to write a headline that includes the following subject matter, and do so using an irreverent tone: </p>
<ul>
<li>Criticism of Bush</li>
<li>Anything about Digg itself  </li>
<li>Pumping Linux</li>
<li>Dumping DRM</li>
<li>Some crazy-weird activity from a country no-one has ever heard of <img src='http://www.netdummy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>By the way, if anyone can come up with a headline that includes of those elements, feel free to add it to the comments <img src='http://www.netdummy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The headline needs to be crafted in such a way as to appeal to Diggs demographic, which is mostly young, tech-savvy males. This demographic tends to respond to a tone that is cynical, flippant and irreverent. Get that tone wrong - i.e. play it too straight, or too advertorial - and it doesn&#8217;t matter how strong the self-interest angle, it&#8217;s unlikely to work.  </p>
<h3>How To Use Headline Strategy In SEO.</h3>
<p>SEO has an additional challenge. </p>
<p>For SEO to work well, the headline, which is often also used as the title tag, should include a keyword term. Many studies have shown that a SERP or Adword that includes the keyword term results in more clicks. In order to get the headline strategy to work for SEO, try amalgamating the keyword term with one of the three formats. </p>
<p>For example, where the keyword term is &#8220;high speed routers&#8221;, try:</p>
<ul>
<li>High Speed Routers- How To Get Routers At Half Price  (appeal to self interest)</li>
<li>High Speed Routers- Latest Features To Insist On (news, with a hint of self interest)</li>
<li>High Speed Routers- How We Blew Our Budget (Curiosity)</li>
</ul>
<p>Even if you&#8217;re not #1 in the serps for that term, you&#8217;re more likely to attract a click than the guy who simply uses &#8220;High Speed Routers&#8221;, by itself. </p>
<p>Your headline (i.e. the title tag) competes with at least ten other SERPs on the page, along with a various Adwords listings along the top and down the side. The top three SERP poitions are gold, but if you can add a touch of appeal-to-self-interest, or news, or curiosity, you&#8217;ll up your chances of getting the click. </p>
<p>If you want to go one step further with this tactic, use it as a way to segment visitors. The first example I gave is likely to attract those people who are ready to buy, and who are buying on price.  </p>
<p>You then need to include your title as a heading on the page, which confirms to they visitor their click has got them where they wanted to be. They&#8217;re now far more likely to read beyond the headline.  </p>
<p><a href="http://www.seobook.com/how-craft-kick-ass-title-tags">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/09/17/crafting-top-dollar-title-tags-headlines/feed/</wfw:commentRss>
		</item>
		<item>
		<title>When Should You Develop a Domain Name?</title>
		<link>http://www.netdummy.com/2008/09/03/when-should-you-develop-a-domain-name/</link>
		<comments>http://www.netdummy.com/2008/09/03/when-should-you-develop-a-domain-name/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 15:06:00 +0000</pubDate>
		<dc:creator>Bill Hartzer</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=18</guid>
		<description><![CDATA[How many domain names do you own? One? Five? Over one hundred? You would probably be surprised about how many domain names I own and how many I have developed. Some are currently parked using a domain parking service. Yet some of the domain names I own redirect to currently developed web sites. And I [...]]]></description>
			<content:encoded><![CDATA[<p>How many <a href="http://en.wikipedia.org/wiki/Domain_name">domain names</a> do you own? One? Five? Over one hundred? You would probably be surprised about how many domain names I own and how many I have developed. Some are currently parked using a domain parking service. Yet some of the domain names I own redirect to currently developed web sites. And I acquired them just for that purpose: to redirect to an existing web site. Enough about me, though. Let’s think about your existing domain names, what you’re doing with all of them right now, and domain names that you could acquire in the future.</p>
<p><strong>Domain names you’re not using</strong><br />
<br />
If you own more than one domain name, then what are you doing with the other ones? Did you register them and they’re just sitting there…making someone else money? Seriously. Like many people, they have bought domain names and they never did anything with them. Nothing. Nada. Zilch. If you typed them in the browser right now they would come up with a “Godaddy web page” or other landing page by the domain registrar…advertising that Registrar’s service and (you might now know this) it is making that registrar money when people click on the PPC ads on that domain name.</p>
<p><img class="alignnone size-full wp-image-558" title="domain parking" src="http://www.billhartzer.com/wp-content/uploads/2008/08/domain-parking.jpg" alt="" width="350" height="265" /><br />
<br />
<span id="more-18"></span><br />
<br />
Did you know that if you simply went to a domain parking service like <a href="https://www.sedo.co.uk/services/tour_parking.php?tracked=&amp;partnerid=37924&amp;language=e">Sedo.com</a> to park your domain names. All you have to do is sign up, change the nameservers on your domains, and tell the parking company what your domain name is about: give them a keyword phrase. That’s it. If you’re just sitting on some domain names that you’re not using, then you should consider parking them, selling them, or developing them.</p>
<p><strong>Redirecting <a class="lingo_link" style="border-bottom: 1px dotted; text-decoration: none; cursor: pointer; display: inline; font-family: helvetica,arial,verdana,sans-serif; font-size: 12px; font-style: normal;" rel="nofollow" href="javascript:void(0)">Domain Names</a></strong><br />
There is a unique group of people out there that use the 301 Permanent Redirect to their advantage: they acquire domain names that have links and traffic: and they redirect them to their current web sites. That is an option that you have if you own a domain name that has links and traffic. But I would only redirect it to a “live” web site if you are certain that the former topic of that domain name is in line with the domain name you are redirecting it to. So, if you own a former automotive site that has 100 backlinks that are good automotive links then it might make sense to redirect it to your existing automotive web site. There are other factors, and I plan on discussing those factors–and buying domain names for links–at a future date.</p>
<p><strong>How do you know when do develop a domain?</strong><br />
Developing a domain name, whether you install <a href="http://www.wordpress.org/">WordPress</a> on the domain name and make it a blog or a site or you hire a development team, a web designer, and a writer should depend on several factors. Developing a domain name, whether you do it yourself or not, means time and money. Let’s take a a look at an example of how you could determine, from an Search Engine Optimization perspective, whether or not you should develop the domain name you own or not.</p>
<p>Ultimately, “Should I develop this domain name or not?” is a question only you can answer. But, I would like to give you my unique perspective on this and how I go about logically determining (from my SEO perspective) whether or not to develop a domain or not.</p>
<p><img class="alignnone size-full wp-image-560" title="Google search nailer kit" src="http://www.billhartzer.com/wp-content/uploads/2008/08/google-search-nailer-kit.jpg" alt="" width="210" height="101" /></p>
<p>There a few things that you can do that will might help you decide if you want to develop the domain or not. Here’s what I do. I will use “nailerkit.com” as an example, as it is a lot easier to use a real domain as an example. I currently own that domain name and plan on developing it at some later date.</p>
<p>I would also like to point out that this technique is good for “generic” domain names, ones that contain keywords or keyword phrases (keyword-rich), and do not contain a trademark.</p>
<p>1. First, go to Google and search for the domain name’s primary keyword phrase. In this case, I am using “<a href="http://www.google.com/search?hl=en&amp;q=nailer+kit&amp;btnG=Google+Search&amp;aq=f&amp;oq=">nailer kit</a>“. Are there Google AdWords ads for that phrase? In this case, there are. Companies believe that it’s a good enough keyword phrase for them to actually pay for ads for that keyword phrase.</p>
<p><img class="alignnone size-full wp-image-562" title="google keyword tool nailer kit" src="http://www.billhartzer.com/wp-content/uploads/2008/08/google-keyword-tool-nailer-kit.jpg" alt="" width="282" height="147" /></p>
<p>2. Go to the <a href="https://adwords.google.com/select/KeywordToolExternal">Google Keyword Tool</a> and search for the the phrase or keyword. I searched for “nailer kit” without quotes and I see that Google says that there are about 40,500 searches for that phrase, and 25 related phrases. That means that there IS traffic for the phrase, there are people who search for it, and there’s 25 potential pages for the site (one page per related keyword). So, I could fairly easily create a 26 page site.</p>
<p>3. Back to the search results for “<a href="http://www.google.com/search?hl=en&amp;q=nailer+kit&amp;btnG=Google+Search&amp;aq=f&amp;oq=">nailer kit</a>“. I look at the search results’ top 10 to see if someone else is using a domain with keywords in the URL and they’re ranking in the top 10. In this case there is not.</p>
<p>I look at the top 5 search results to see if any of those sites that are ranking are actually targeting that phrase as their main keyword (and they’re not for ‘nailer kit’).</p>
<p>I look at the top 5 search results and <a href="https://siteexplorer.search.yahoo.com/">check the backlinks</a> to those pages that are ranking. I take the actual page that’s ranking and check it’s links in Yahoo!. In this case, there are 34 links to that page. But, what is important to note is that there are 34 links from the same domain name, Lowes.com, and not from other domain names. If a web site has on-topic links from several different domain names there is a better chance that it will “beat out” a page that only has internal links from one domain name pointing to it. There are a lot of other factors involved in a <a class="lingo_link" style="border-bottom: 1px dotted; text-decoration: none; cursor: pointer; display: inline; font-family: helvetica,arial,verdana,sans-serif; font-size: 12px; font-weight: 400; font-style: normal;" rel="nofollow" href="javascript:void(0)">search engine ranking,</a> but since I should be able to get lots of on-topic links to a whole entire site about “nailer kits” then I stand a good chance of ranking well for “nailer kit” and “nailer kits”.</p>
<p>4. Some other considerations will include questions like:</p>
<p>- How easily can I create the content? How much will it cost to hire someone to write 26 pages of material about nailer kits? I could write it myself (probably about 1 day of time to write the content) or I could get someone else to write it (I have a writer who will write unique content for me at $7 an article or page).</p>
<p>I could also see a very good “link bait” type of articles on the site, one about “how to use a nailer” and “how to use framing nailers” and “how to pick the right nailer”. This is the type of content that other sites like to link to. And they tend to do well in the social media, which will help.</p>
<p>- Can I easily monetize the site? In this case, I can use a combination of Google AdSense and Yahoo! Publisher Network ads as well as affiliate product ads (using affiliate programs, potentially through popshops.com). I can find a lot of “nailer kits” and nailers to sell on the site.</p>
<p>- Would someone want to purchase the domain at a later date if it has traffic, is developed, has a revenue stream, and is a good generic domain? Yes, I think so.</p>
<p>- What is the link strategy? How are you going to get on-topic links to the site? In this case, once the site has enough content (I have already found 26 different pages for the site), submitting it to dmoz.org, botw.org, business.com, yahoo directory, and various home improvement sites will help. Spending about $500 on links and on directory listings will help. Using the content and the link bait articles on the site to promote the site in the social media will potentially help get links to it.</p>
<p>At this point, I have decided that it IS worth it to take the time to develop nailerkit.com. There’s enough potential traffic for the topic and I could develop it. Actually developing it will increase that domain name’s value in the long run and it will appeal the the “sellability” of the domain in the future. By searching for the site’s main keyword phrase, by doing some basic <a class="lingo_link" style="border-bottom: 1px dotted; text-decoration: none; cursor: pointer; display: inline; font-family: helvetica,arial,verdana,sans-serif; font-size: 12px; font-weight: 400; font-style: normal;" rel="nofollow" href="javascript:void(0)">keyword research,</a> and by looking at the overall potential for the domain name’s advertisers or your “potential profitability”, you should be able to determine whether or not you should develop the domain name or not.</p>
<p>Do you have questions? Do you have a domain name that you’re thinking of developing and want me to take a look at its overall marketability? Let me know.</p>
<p>Are you looking for marketing services such as social media optimization, search engine marketing, pay per click program management or consulting, or search engine optimization services? Feel free to <a href="http://www.billhartzer.com/contact/">contact me</a>.</p>
<p><a href="http://www.billhartzer.com/pages/how-to-know-when-you-should-develop-a-domain-name/">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/09/03/when-should-you-develop-a-domain-name/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Difference Between Bold and Strong Tags</title>
		<link>http://www.netdummy.com/2008/08/19/the-difference-between-bold-and-strong-tags/</link>
		<comments>http://www.netdummy.com/2008/08/19/the-difference-between-bold-and-strong-tags/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 16:32:18 +0000</pubDate>
		<dc:creator>Dave Taylor</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=17</guid>
		<description><![CDATA[Just a quick question: as I&#8217;m figuring out HTML, I&#8217;ve learned that &#8220;&#60;b&#62;&#60;/b&#62;&#8221; will make the inner text bold, but why are we seeing &#8220;&#60;strong&#62;&#8221; being used these days? Is there a difference?
Dave&#8217;s Answer:
While you would think that something so rudimentary as the markup language for Web pages wouldn&#8217;t be a place where you&#8217;d find [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick question: as I&#8217;m figuring out HTML, I&#8217;ve learned that &#8220;&lt;b&gt;&lt;/b&gt;&#8221; will make the inner text bold, but why are we seeing &#8220;&lt;strong&gt;&#8221; being used these days? Is there a difference?</p>
<p><em>Dave&#8217;s Answer:</em></p>
<p>While you would think that something so rudimentary as the markup language for Web pages wouldn&#8217;t be a place where you&#8217;d find great controversy, in fact there are two different quite fervent camps in site design that are represented in this debate. What we&#8217;re talking about is whether markup should be functional or whether it should be presentation-based.</p>
<p>If you were on the functional side, you would say that when you&#8217;re writing content for online publication, you want to simply note how that element relates to the content overall. So &#8220;&lt;cite&gt;&#8221; for citations, &#8220;&lt;a&gt;&#8221; for anchor text (hypertext links), and so on. How it&#8217;s rendered, how the tool that the reader is using to view your content, is up to their tool&#8217;s preferences.  Some users might prefer citations in yellow with a dark blue background, while others might want to simply have it underlined: it&#8217;s &#8220;up to the browser&#8221;.<br />
<br />
<span id="more-17"></span><br />
<br />
In fact, when I teach web design classes, that&#8217;s our mantra, because however much you tweak things, the user&#8217;s tools, preferences and settings can and will doubtless change how they see your material.</p>
<p>Now, on the presentation side, designers would point out that while all of this is well and good with something like a citation, there&#8217;s such a difference between bold and italic in terms of how you read and process the information on the screen that it&#8217;s of great importance that the content producer have greater control over how it&#8217;s displayed.</p>
<p>While functional designers would use &#8220;&lt;strong&gt;&#8221; and &#8220;&lt;em&gt;&#8221; for words that should be emphasized or &#8220;stronger&#8221;, a presentation designer would eschew it completely and use &#8220;&lt;b&gt;&#8221; for bold and &#8220;&lt;i&gt;&#8221; for italics.</p>
<p>Which is right?  Well, it&#8217;s hard to say. If you like having more control over the presentation of your material, then the presentation approach is going to be a better match. If you want to focus on your content and let the reader (or, more accurately, their reading tool) do the work, then a more functional approach may be for you.</p>
<p>As it turns out, this is somewhat of a moot point given the rise of Cascading Style Sheets (or CSS). CSS brings a far greater level of sophistication to presentation markup and while it initially seems a lot more complicated, the greater power makes it well worth learning.</p>
<p>In CSS, however, the markup &#8220;&lt;bold!&gt;&#8221; changes rather dramatically to &#8220;&lt;span style=&#8217;font-weight:bold;&#8217;&gt;bold!&lt;/span&gt;&#8221;. A lot more complex, but as you might guess, there are dozens of different transformations you can apply to text with CSS elements &#8212; like wrapping the text with a thin border &#8212; that just aren&#8217;t even an option with HTML.</p>
<p>While I am a big fan of CSS and use it with astonishing frequency for even the most simple tasks, it&#8217;s definitely more complicated and, more of a problem, many Web sites let you use rudimentary HTML where you can&#8217;t use CSS. A great example is that most online forums and blogs allow &#8220;&lt;b&gt;&#8221; notation in your comments to let you emphasize words, but very few allow &#8220;&lt;span&gt;&#8221; to let you use the full power of CSS to really pretty up your prose.</p>
<p>Therefore it does behoove you to learn at least the dozen basic HTML markup tags for just those situations. In fact, I have a brief article on my Web site that gives you just this list, with a helpful explanation of each tag: <a href="http://www.askdavetaylor.com/what_are_the_essential_html_tags_i_need_for_blogging.html" target="_blank">Essential HTML tags bloggers need to know</a>.</p>
<p>My recommendation for when you must use HTML?  Use the presentation-based approach, not the functional approach.</p>
<p>In a word, &#8220;Go &lt;b&gt; go!&#8221;</p>
<p><a href="http://www.askdavetaylor.com/what_html_tag_to_use_b_or_strong.html" class="bluelink">Comments</a><br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/08/19/the-difference-between-bold-and-strong-tags/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Open Directory Project or DMOZ Descriptions</title>
		<link>http://www.netdummy.com/2008/08/06/the-open-directory-project-or-dmoz-descriptions/</link>
		<comments>http://www.netdummy.com/2008/08/06/the-open-directory-project-or-dmoz-descriptions/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 15:12:17 +0000</pubDate>
		<dc:creator>Barry Welford</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=16</guid>
		<description><![CDATA[Human beings sometimes work with concepts and may use different words to express the same idea. This human intelligence is not easily mimicked by a computer which is digital. True or false, that is the way the computer sees it. For example the Title and the Heading of a blog are two distinct entities. People [...]]]></description>
			<content:encoded><![CDATA[<p>Human beings sometimes work with concepts and may use different words to express the same idea. This human intelligence is not easily mimicked by a computer which is digital. True or false, that is the way the computer sees it. For example the Title and the Heading of a blog are two distinct entities. People sometimes get confused between the two and call the headline the title of the blog post. This is incorrect. The title is what appears at the top of the screen: the heading is the headline that appears in the view window of the browser. As is discussed elsewhere, the simplest explanation is that <a href="http://blog.cre8asite.net/bwelford/2008/03/write-seo-titles-for-high-rankings/">Headlines are for humans, while titles are for robots</a>.</p>
<p>Where it can get really complicated is where the same word is used with two quite distinct meanings. Unfortunately this has happened to one of the most important words relating to a web page: the <strong>description</strong>.  One place the word description is used extensively is in the <a href="http://www.dmoz.org/">Open Directory Project or DMOZ</a>. This site started off just over 10 years ago as GnuHoo, switching to NewHoo, before being acquired by Netscape. Being featured in the Open Directory Project provides a useful link for any site in gaining search engine visibility. In consequence many people have gone through the DMOZ submission process.</p>
<p><span id="more-16"></span><br />
The Open Directory Project has human editors who prepare descriptions for all web pages. However a submitter can offer a description, which may be used or may be slightly modified. The guidance given for such a description includes the following:</p>
<blockquote><p>Keep the description of your site brief - no longer than 25-30 words. A well-written, objective description will make listing your site easier.</p>
<ul>
<li>Write in complete sentences and/or descriptive phrases using proper grammar, punctuation and correct spelling.</li>
<li>Avoid using promotional language and strings of key words and search terms.</li>
</ul>
</blockquote>
<p>Another place where this word Description is used is in the <strong>Description Meta tag</strong>, which is part of the Head section of any web page. If the Description Meta tag is provided then this will often be used by Google in preparing the explanatory snippet, which is provided in any keyword query report page. Since <a href="http://blog.cre8asite.net/bwelford/2008/08/ideal-google-snippets-to-target-your-prospects/">a good snippet may channel prospects to your website</a>, it is worth putting a little effort into getting it right.</p>
<p>Google in its <strong>Webmaster Help Center</strong> offers the following advice on <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=35264">creating effective Description Meta tags</a>.</p>
<blockquote><p><strong>Include clearly tagged facts in the description.</strong><br />
The meta description doesn’t just have to be in sentence format; it’s also a great place to include structured data about the page. For example, news or blog postings can list the author, date of publication, or byline information. This can give potential visitors very relevant information that might not be displayed in the snippet otherwise. Similarly, product pages might have the key bits of information - price, age, manufacturer - scattered throughout a page. A good meta description can bring all this data together. For example, the following meta description provides detailed information about a book.</p>
<p>&lt;META NAME=”Description” CONTENT=”Author: A.N. Author, Illustrator: P. Picture, Category: Books, Price: $17.99, Length: 784 pages”&gt;</p>
<p>In this example, information is clearly tagged and separated.</p></blockquote>
<p>This clearly shows the conflict. DMOZ requires sentences. Google prefers tagged information. The content of the description meta tag should be written the way Google prefers it. To be absolutely sure that Google uses what is offered in the meta tag rather than the description that may exist in the Open Directory Project, the following meta tag can be used:</p>
<p>&lt;meta name=”robots” content=”noodp”&gt;</p>
<p>This prevents all search engines (that support the meta tag) from using the Open Directory Project information in any way.</p>
<p>To specifically prevent Google from using that information as a page’s description, you can use the following:</p>
<p>&lt;meta name=”googlebot” content=”noodp”&gt;</p>
<p><a href="http://blog.cre8asite.net/bwelford/2008/08/dmoz-descriptions-do-not-work-for-google/">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/08/06/the-open-directory-project-or-dmoz-descriptions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Navigate Using Search Engines Not the Address Bar</title>
		<link>http://www.netdummy.com/2008/07/21/navigate-using-search-engines-not-the-address-bar/</link>
		<comments>http://www.netdummy.com/2008/07/21/navigate-using-search-engines-not-the-address-bar/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 13:18:22 +0000</pubDate>
		<dc:creator>Roderick Ioerger</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=15</guid>
		<description><![CDATA[Marhsall Kirkpatrick of Read Write Web makes a supposition that may be inherently incorrect.
A huge number of people online don&#8217;t know the difference between their browser&#8217;s address bar and search bar. Let&#8217;s keep that in perspective.  What will it take for them to learn?

That particular point has created a great conversation over at Read [...]]]></description>
			<content:encoded><![CDATA[<p>Marhsall Kirkpatrick of Read Write Web makes a supposition that may be inherently incorrect.</p>
<blockquote><p>A huge number of people online don&#8217;t know the difference between their browser&#8217;s address bar and search bar. Let&#8217;s keep that in perspective.  What will it take for them to learn?</p></blockquote>
<p>
That particular point has created a great conversation over at Read Write Web including an extremely well thought out response from <a href="http://www.johnon.com/">John Andrews</a>.</p>
<blockquote><p>The path to Amazon.com via Google is a richer experience for her [a user] than the direct navigation path, without much cognitive overhead and without much perceived risk.</p></blockquote>
<p>
To read John&#8217;s entire response head on over to <a href="http://www.readwriteweb.com/archives/will_mainstream_users_ever_learn.php">Read Write Web</a>.  I however believe that another commenter, Jahbuh, got it right when he said;</p>
<blockquote><p>The answer is very simple - People feel safer with Google correcting their mistakes than the typo sending them to a virus, porn laden site. How many times has a slip of the finger sent you to a site you would never visit? Do a Google search and even if you do a typo somehow Google still points you to the site you want to go to.</p></blockquote>
<p>
<span id="more-15"></span><br />
I don&#8217;t believe it is the advertising industry wanting to take advantage of inexperienced consumers, I don&#8217;t think it is a design issue of the navigation bar, and I don&#8217;t believe it is user ignorance that drives users to use Google and the other search engines for direct navigation.</p>
<p>I believe the majority of users use the search box for direct navigation because it provides a higher level of convenience and safe surfing.  Should a user mistype a URL, if they are using a search engine, it will try to guess what the user actually intended and provide a set of search results that are free of any malicious software while providing the user with the opportunity to avoid any unwanted content.</p>
<p>For a number of years I believe a few individuals in the search marketing industry and some decision makers in companies promoting products that were perceived as malicious made business decisions that allowed them to make a lot of money while hardening users to the dangerous realities of the internet. This type of behavior and decision making is what changed the way users interact with the web.</p>
<p>Using search engines for direct navigation has almost become a common sense approach for many users because so many people in the past were infected with software that they didn&#8217;t want and had enormously difficult times removing.  Gator was the name that became synonymous with the term &#8220;spy ware&#8221; and it along with other similar types of software I believe are what really changes the browsing habits of the general public.</p>
<p>What do you think, in this day and age can users really not tell the difference between a search engine&#8217;s search box and the navigation bar or is there a deeper relationship between users and search engines?</p>
<p><a href="http://www.marketingpilgrim.com/2008/07/using-search-engines-instead-of-the-address-bar-to-navigate.html">Comments</a><br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/07/21/navigate-using-search-engines-not-the-address-bar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Essential Steps to Enhance your Search Engine Rankings</title>
		<link>http://www.netdummy.com/2008/07/09/essential-steps-to-enhance-your-search-engine-rankings/</link>
		<comments>http://www.netdummy.com/2008/07/09/essential-steps-to-enhance-your-search-engine-rankings/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 20:20:13 +0000</pubDate>
		<dc:creator>Navneet Kaushal</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.netdummy.com/?p=14</guid>
		<description><![CDATA[For all the those small businesses, who aren&#8217;t able to afford expensive search marketers or do not have time to spare to attend search engine marketing conferences or read SEO related books, there is finally a remedy to improve your search engine rankings. Over at Pandia, there is a very interesting and a highly informative [...]]]></description>
			<content:encoded><![CDATA[<p>For all the those small businesses, who aren&#8217;t able to afford expensive search marketers or do not have time to spare to attend search engine marketing conferences or read SEO related books, there is finally a remedy to improve your search engine rankings. Over at <a href="http://www.pandia.com/sew/681-search-engine-rankings.html">Pandia</a>, there is a very interesting and a highly informative post, highlighting 5 essential steps aimed towards enhanced search engine rankings. However, these tips and suggestions should only be applied by those, whose websites and blogs aren&#8217;t targeting a very competitive area.</p>
<ol>
<li><strong><span style="text-decoration: underline;">Identify Right Keywords and Incorporate Them in Your Headlines:</span></strong> Find out what search terms your target audience will use when looking for the kind of information, goods or services your site provides. You need to use relevant keywords in your headline to make the search engines identify your website as per the user query. It would be advisable for you to use <a href="http://www.wordtracker.com/">Wordtracker</a> for such a task as it is known to one of the best tools in this field.</li>
<p>
<span id="more-14"></span></p>
<li><strong><span style="text-decoration: underline;">Get Inbound Links from Similar Websites:</span></strong> It is essential that you find some high-quality websites that offer the same products or services as your website does and include them in a resource section on your website. It is quite possible that, your visitors will bookmark your &#8216;resources&#8217; page as they will appreciate the hard work you&#8217;ve done for them. Maybe the website, whose link you&#8217;ve provided in your site, may link back to you as well. Linking to higher, authoritative websites provide a larger scope for increased search engine rankings.</li>
<p></p>
<li><strong><span style="text-decoration: underline;">Write Periodic Reviews of Relevant Websites:</span></strong> It is always beneficial for your website, if you write good, honest and useful reviews of the websites that are relevant to your website. Your reviews will greatly impress the visitors and also the owners of the websites that you&#8217;ve reviewed. A good coverage will lead to greater amount of inbound links. It is always better to send an e -mail to the websites as soon as your review is published. But, remember not to beg them for a link back.</li>
<p></p>
<li><strong><span style="text-decoration: underline;">Monitor your Website Traffic:</span></strong> It is always advisable to monitor your site traffic. This will inform you about the pages that have succeeded and those that haven&#8217;t. You can also use feedburner that would allow you to get simple statistics on web traffic.</li>
<p></p>
<li><strong><span style="text-decoration: underline;">Content is Very Important:</span></strong> All the above points would prove useless, if the content of your website isn&#8217;t able to compliment above four steps. Remember, your website is as good as its content is. If you are running a blog, then you should maintain constant activity on your blog and publish regularly. It is better to publish fewer high quality posts than many of low quality, ones. If you publish too much, readers may find it hard to identify the good posts from the casual ones and get frustrated. You don&#8217;t want that!</li>
</ol>
<p>Following the above steps, will help you to increase your website rankings in the search engine results, without shedding tons of money and wasting your precious time.</p>
<p><a href="http://www.pagetrafficblog.com/enhance-search-engine-rankings-5-essential-steps/4887/">Comments</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.netdummy.com/2008/07/09/essential-steps-to-enhance-your-search-engine-rankings/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
