<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jerry Bell&#039;s World</title>
	<atom:link href="http://www.jerry-bell.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jerry-bell.com</link>
	<description>Utter Crap</description>
	<lastBuildDate>Sun, 22 Jan 2012 03:58:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>High Tech Thermostats</title>
		<link>http://www.jerry-bell.com/high-tech-thermostats/</link>
		<comments>http://www.jerry-bell.com/high-tech-thermostats/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 03:39:12 +0000</pubDate>
		<dc:creator>jerry</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[nest]]></category>
		<category><![CDATA[thermostat]]></category>

		<guid isPermaLink="false">http://www.jerry-bell.com/?p=208</guid>
		<description><![CDATA[A few weeks ago, I first heard about the Nest thermostat a few weeks ago.  It is slick to say the least.  Nest has brought sex appeal to the thermostat.  Wifi, web programmable, updatable firmware, intelligence to learn how to best heat and cool your house &#8211; it&#8217;s sweet. Being a security guy, I started [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I first heard about the <a href="http://www.nest.com/">Nest thermostat</a> a few weeks ago.  It is slick to say the least.  Nest has brought sex appeal to the thermostat.  Wifi, web programmable, updatable firmware, intelligence to learn how to best heat and cool your house &#8211; it&#8217;s sweet.</p>
<p>Being a security guy, I started wondering how hackable they are&#8230;  Can I go driving around and penetrate the Nest devices and have a giant bot net of spamming, DDOSing thermostats?  While interesting, that&#8217;s passe.  I&#8217;m sure we&#8217;ll get into the habit of rebooting our thermostats on patch Tuesday.  Maybe there will be a new industry of A/V for such things as well.</p>
<p>What intrigues me more is that the thermostat is not just a thermostat any more.  Previously just a box on the wall that would likely serve reliably for decades, the unassuming thermostat is being replaced with a miniature computer, who&#8217;s software, hardware and protocols will become obsolete with time.  We are signing up to add another device to the growing mountain of disposable devices &#8211; our phones, our PC&#8217;s, our TV&#8217;s, DVD players, ipods, ipads all desire to be replaced on short intervals, but those are entertainment devices.  We&#8217;re now adding a key infrastructure element of our house to that list.</p>
<p>Don&#8217;t misunderstand &#8211; I am going to be forking out some serious money when they are available to order again, but it&#8217;s depressing to know that I&#8217;ll be eagerly looking to replace them in 3 years with the latest model that has some new killer application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerry-bell.com/high-tech-thermostats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization For The Simple Machines Forum</title>
		<link>http://www.jerry-bell.com/search-engine-optimization-for-the-simple-machines-forum/</link>
		<comments>http://www.jerry-bell.com/search-engine-optimization-for-the-simple-machines-forum/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 00:45:29 +0000</pubDate>
		<dc:creator>jerry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jerry-bell.com/?p=91</guid>
		<description><![CDATA[There are several simple but effective SEO tricks to optimizing a Simple Machines forum. URLs First, is the URL structure. Search engines value the descriptiveness of a URL. By default, SMF uses URL&#8217;s that are worthless for SEO. An SMF mod, called Pretty URLs, will rewrite your URLs to be far more useful for a [...]]]></description>
			<content:encoded><![CDATA[<p>There are several simple but effective SEO tricks to optimizing a <a href="http://www.simplemachines.org/">Simple Machines forum</a>.</p>
<p><em><strong>URLs</strong></em></p>
<p>First, is the URL structure. Search engines value the descriptiveness of a URL. By default, SMF uses URL&#8217;s that are worthless for SEO. An SMF mod, called <a href="http://custom.simplemachines.org/mods/index.php?mod=636">Pretty URLs</a>, will rewrite your URLs to be far more useful for a search engine. Pretty URLs is very simple to install, but a common problem is to ensure that .htaccess is writable, and that the root directory is writable.</p>
<p>Notice the difference (these links all go to the same post):</p>
<ul>
<li>Default SMF URLs: http://www.cyvin.com/index.php?topic=2969.0</li>
<li>Search Engine Friendly URLs: http://www.cyvin.com/index.php/topic,2969.0.html</li>
<li>Pretty URLs: http://www.cyvin.com/offtopic/unleaded-gas/</li>
</ul>
<p>Pretty URLs use the title of the post topic as part of the URL.  This will help search engines to properly classify the page and build a stronger connection between the the page and the title of the post in search results.</p>
<p><span id="more-91"></span></p>
<p><em><strong>Robots.txt</strong></em></p>
<p>Next is duplicate content. Search engines will generally penalize the appearance of the same content multiple times. The interpretation is that the site is trying to &#8220;stuff&#8221; in content to make the site more favorable for certain keywords. This is a problem because each message is individually accessible, as well as the thread, and then there is a separate view of the same content in a printer friendly format. What we want the search engines to do is simply index whole threads only, thus avoiding content duplication. All of this is easy to fix with a robots.txt file in the root html directory that looks like this:</p>
<p style="padding-left: 30px;">User-agent: *<br />
Disallow: /*?action*<br />
Disallow: /*sort=*<br />
Disallow: /*msg*</p>
<p><em><strong>H1 Tags</strong></em></p>
<p>Next is the H1 tag. Like the URL, H1 tags are used heavily by search engines to classify the content on a page. I have not found any SMF themes that take advantage of this fact, though I have not looked at more than 10 or 20. Unfortunately, there is no easy way to do this with a mod. It requires some modification of the theme you are using. Most themes have a navigation section that indicates where you are currently at in the forum. The objective is to modify the theme so that the end node (the current page) is wrapped in the &lt;h1&gt; &lt;/h1&gt; tag. This will also require a change to the css stylesheet.</p>
<p><em><strong>Google Tagged</strong></em></p>
<p>Google Tagged is mod that tracks search engine referrals to various threads, along with what search term lead to the visit, and displays those tags in a tag cloud style box (<a href="http://www.syslog.org/forum/index.php?action=tagged">Example</a>).  When visiting a thread, it will also show what search terms have lead to that thread in the past at the bottom of the page (<a href="http://www.syslog.org/forum/syslog-and-syslogd/event-viewer-andgtsyslog/">Example</a>).  It is not pure SEO, but it does reinforce keywords with the search engines.</p>
<p><em><strong>Meta Tags</strong></em></p>
<p>Meta tags are another tool that search engines use to classify sites.  Edit the &#8220;meta description&#8221; in the index.template.php file to describe the site.  Users of SMF version 2 can use the <a href="http://custom.simplemachines.org/mods/index.php?mod=1138">vBulletin Style Meta Tags</a> mod to update the tags based on the thread that is being displayed.</p>
<p><strong><em>Header and Footer</em></strong></p>
<p>For an easy easy way to add content to the header and footer of an SMF forum, use the <a href="http://custom.simplemachines.org/mods/index.php?mod=351">Global Headers and Footers</a> mod.  Descriptive text can be an essential element in search engines properly classifying the contents of your forum.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jerry-bell.com/search-engine-optimization-for-the-simple-machines-forum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

