<?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>The 42nd Estate</title>
	<atom:link href="http://www.the42ndestate.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the42ndestate.com</link>
	<description>We are you are us.</description>
	<lastBuildDate>Thu, 24 Aug 2017 22:41:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.6.30</generator>
	<item>
		<title>Don&#8217;t Panic! The 42nd Estate is dissolving</title>
		<link>http://www.the42ndestate.com/dont-panic-the-42nd-estate-is-dissolving/</link>
		<pubDate>Thu, 03 Nov 2016 11:45:55 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1458</guid>
		<description><![CDATA[<p>After eight years of being a one stop web shop, we&#8217;ve decided to dissolve The 42nd Estate and are shutting down on December 31, 2016.</p>
<p>We did not start The 42nd Estate with the intent to end up here but everyone we&#8217;ve &#8230;</p>]]></description>
				<content:encoded><![CDATA[<p>After eight years of being a one stop web shop, we&#8217;ve decided to dissolve The 42nd Estate and are shutting down on December 31, 2016.</p>
<p>We did not start The 42nd Estate with the intent to end up here but everyone we&#8217;ve worked with through the past eight years has made the journey itself worthwhile and more meaningful than the final destination. Thank you so very much for your support.</p>
<p>The words of the author who inspired our name, Douglas Adams, are much more eloquent than we can be in this moment:</p>
<blockquote><p>I may not have gone where I intended to go, but I think I have ended up where I needed to be.</p></blockquote>
<p>&#8220;So long, and thanks for all the fish!&#8221;,</p>
<p>Adam, Josh, Eddie, John &#038; Justin | The 42nd Estate</p>
]]></content:encoded>
			</item>
		<item>
		<title>How To: Migrate Thesis SEO values to Hybrid SEO values</title>
		<link>http://www.the42ndestate.com/how-to-migrate-thesis-seo-values-to-hybrid-seo-values/</link>
		<comments>http://www.the42ndestate.com/how-to-migrate-thesis-seo-values-to-hybrid-seo-values/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:52:01 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[hybrid]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1433</guid>
		<description><![CDATA[Having recently moved my personal blog from the Thesis theme to the Hybrid theme, I had to also migrate over a bunch of SEO values from the Thesis data set to the Hybrid set. It all went rather smoothly and only took a few minutes. Here’s how to move your Thesis post meta values over to Hybrid.]]></description>
				<content:encoded><![CDATA[<p>Having recently moved <a href="http://adamp.com">my personal blog</a> from the Thesis theme to the <a href="http://themehybrid.com/">Hybrid theme</a>, I had to also migrate over a bunch of SEO values from the Thesis data set to the Hybrid set. It all went rather smoothly and only took a few minutes. Here&#8217;s how to move your Thesis post meta values over to Hybrid.</p>
<p>Since these steps are similar to <a href="http://www.the42ndestate.com/how-to-move-all-in-one-seo-values-into-thesis/">moving All in One SEO values to Thesis SEO values</a>, please refer back to that post for detailed instructions on backing up your database and accessing the database.</p>
<ol>
<li>Backup your database</li>
<p>Before making any huge changes to your database, you should always <a href="http://codex.wordpress.org/Backing_Up_Your_Database">back it up first</a>. </p>
<li>Access MySQL</li>
<p>There are a multitude of ways to access MySQL, the two most common being phpMyAdmin and the good ol&#8217; command line. Whichever way you choose, you&#8217;ll need to get to your database and run a SQL query.</p>
<li>Running the SQL Query</li>
<p>If we&#8217;ve lost you up to this point, please do refer back to our super detailed post on changing database values. Once you get to the section titled &#8216;Copy, Paste, Go!&#8217;, come back here and grab the below query code.</p>
<p>Otherwise, if you&#8217;ve been following along simply grab the below code and run it.</p>
<pre class="brush: sql">
insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Title&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_title&#039;);

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Description&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_description&#039;);

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Keywords&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_keywords&#039;);

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, &#039;Thumbnail&#039;, meta_value
from wp_postmeta where meta_key in (&#039;thesis_post_image&#039;);
</pre>
<p>Line by line, this code will insert into each posts meta values a Title, Description, Keywords, and thumbnail URL, using your values from Thesis.</p>
<p>After each set, you should see a message noting how many records were changed:</p>
<blockquote><p>
Query OK, 66 rows affected (0.01 sec)<br />
Records: 66  Duplicates: 0  Warnings: 0
</p></blockquote>
<h3>Addendum: Deleting Thesis database values</h3>
<p>After migrating over your meta values to Hybrid, there&#8217;s no need to keep the old Thesis meta values cluttering up your database. After checking to make sure the values transferred over correctly, run this command to wipe the database clean:</p>
<pre class="brush: sql">
delete from wp_postmeta where meta_key = &#039;thesis_title&#039;;
delete from wp_postmeta where meta_key = &#039;thesis_description&#039;;
delete from wp_postmeta where meta_key = &#039;thesis_keywords&#039;;
delete from wp_postmeta where meta_key = &#039;thesis_post_image&#039;;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/how-to-migrate-thesis-seo-values-to-hybrid-seo-values/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 Timezone and Scheduled Posts Missed Fixes</title>
		<link>http://www.the42ndestate.com/wordpress-2-9-timezone-and-scheduled-posts-missed/</link>
		<comments>http://www.the42ndestate.com/wordpress-2-9-timezone-and-scheduled-posts-missed/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 01:41:33 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[2.9.1]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[scheduled posts]]></category>
		<category><![CDATA[timezone]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1404</guid>
		<description><![CDATA[On sites running Wordpress 2.9, we’ve noticed a small bug appear on a few installations. After the upgrade it appears the timezone settings get misconfigured AND scheduled posts don’t publish on time. If the timezone was manually set (e.g. using UTC +/-), after the upgrade it would reset to a value one lower/higher and on certain server configurations scheduled posts simply wouldn’t publish.]]></description>
				<content:encoded><![CDATA[<p>On sites running WordPress 2.9, we&#8217;ve noticed a small bug appear on a few installations. After the upgrade it appears the <a href="http://core.trac.wordpress.org/ticket/11558">timezone settings get misconfigured</a> AND <a href="http://core.trac.wordpress.org/ticket/11505">scheduled posts don&#8217;t publish</a> on time. If the timezone was manually set (e.g. using UTC +/-), after the upgrade it would reset to a value one lower/higher and on certain server configurations scheduled posts simply wouldn&#8217;t publish.</p>
<p>There were a few other bugs, such as <a href="http://www.sportsfan4.com/">Josh Gans&#8217;</a> personal pet peeve, <a href="http://core.trac.wordpress.org/ticket/11502">square buttons in the administration panels</a>. The <a href="http://wordpress.org/development/2009/12/wordpress-2-9-1-beta-1/">beta for WordPress 2.9.1 is already out</a> but if you can&#8217;t wait a day or two, keep reading for fixes to the timezone and scheduled posts bugs.</p>
<h2>Timezone Fix</h2>
<p>In this blog we&#8217;re in the UTC -5 timezone [Eastern Standard Time], but after the upgrade the timezone was listed as UTC -4, throwing off the local time by one hour. </p>
<p>The fix for the timezone is easy, go into Settings &#8211;> General &#8211;> Timezone and choose a city that&#8217;s in the same timezone as you rather than using a manual offset. Yes Bostonians, that means you&#8217;ll have to swallow a small bit of pride and choose New York as your timezone.</p>
<p>On some WP 2.9 installs, this quick fix took care of scheduled posts not publishing. On others, we had to take a few extra steps.</p>
<h2>Scheduled Posts Missed Fix</h2>
<p>Scheduled posts are a great feature of WordPress, allowing you to write articles in advance and set them to publish automatically. Unfortunately, in WordPress 2.9 a small change in the cron code (cron is the process which publishes your posts for you, it&#8217;s a part of your Unix based server, not WordPress) causes scheduled posts to fail on some setups.</p>
<p class="alert"><strong>Important Note: </strong> If you&#8217;re hosted by The 42nd Estate, you should not experience this bug. If you do, please let us know!</p>
<p>The above timezone fix may also fix your scheduled posts error (it did on this install of wordpress), but if you&#8217;re on a very slow shared server or missing certain functions cron.php requires, it may not. If you&#8217;re scheduled posts are still not working after re-adjusting the timezones you&#8217;ll have to make a minor tweak to a core WordPress file to get scheduled posts working. </p>
<p>In your wp-includes folder, open up cron.php. On line 229 (or around there), you&#8217;ll see the below line:</p>
<pre class="brush: php">
$cron_url = get_option( &#039;siteurl&#039; ) . &#039;/wp-cron.php?doing_wp_cron&#039;;
        wp_remote_post( $cron_url, array(&#039;timeout&#039; =&gt; 0.01, &#039;blocking&#039; =&gt; false, &#039;sslverify&#039; =&gt; apply_filters(&#039;https_local_ssl_verify&#039;, true)) );
&lt;/pre&gt;
</pre>
<p>Change it to:</p>
<pre class="brush: php">
$cron_url = get_option( &#039;siteurl&#039; ) . &#039;/wp-cron.php?doing_wp_cron&#039;;
        wp_remote_post( $cron_url, array(&#039;timeout&#039; =&gt; 5, &#039;blocking&#039; =&gt; false, &#039;sslverify&#039; =&gt; apply_filters(&#039;https_local_ssl_verify&#039;, true)) );
&lt;/pre&gt;
</pre>
<p>Basically, we changed the timeout setting to a larger number. From reading through some of the Trac tickets out there, the cause may be due to a slow server, improperly configured server, or a bug in Curl. You can change the 5 to anything above 1, it seems some servers would round .01 down to zero, in effect causing an infinite loop that never got resolved.</p>
<h2>WordPress 2.9.1</h2>
<p>The awesome WordPress team is already hard at work cranking out version 2.9.1 that&#8217;ll fix these issues and a <a href="http://core.trac.wordpress.org/query?status=closed&#038;group=resolution&#038;order=priority&#038;milestone=2.9.1&#038;resolution=fixed">few other errors</a>. If you have a few minutes please <a href="http://wordpress.org/development/2009/12/wordpress-2-9-1-beta-1/">download and install the 2.9.1 beta</a> to help the WordPress team debug the latest release and confirm that any issues from 2.9 are resolved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/wordpress-2-9-timezone-and-scheduled-posts-missed/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Where to Find Batch Plugin Update in WordPress 2.9</title>
		<link>http://www.the42ndestate.com/where-to-find-batch-plugin-update-in-wordpress-2-9/</link>
		<comments>http://www.the42ndestate.com/where-to-find-batch-plugin-update-in-wordpress-2-9/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 17:41:53 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[batch update]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress 2.9]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1401</guid>
		<description><![CDATA[One feature that I struggled using was the Batch Plugin Updater. Not because it’s hard to use (it’s quite the opposite), but because I couldn’t find it! Turns out the batch plugin updater is tucked in under Tools –> Upgrade.]]></description>
				<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2009/12/wordpress-2-9/">WordPress 2.9 was released today</a> and features a ton of additions. Amongst the new features and fixes:</p>
<ol>
<li>Batch Plugin updates (a-w-e-s-o-m-e)</li>
<li>Built-in Image Editor</li>
<li>oEmbed support</li>
<li>Trash can (awesome &#8211; prevent accidents)</li>
<li>Post Thumbnails (awesome)</li>
<li>Sidebar Descriptions</li>
<li>Better Custom Post Type API integration</li>
</ol>
<p>and a bunch more features.</p>
<p>One feature that I struggled using was the Batch Plugin Updater. Not because it&#8217;s hard to use (it&#8217;s quite the opposite), but because I couldn&#8217;t find it! Turns out the batch plugin updater is tucked in under Tools &#8211;> Upgrade.</p>
<p>Personally, I feel a more intuitive spot would be right on the plugins page, perhaps in the Updates Available tab or as a bulk option in the existing bulk options drop down menu, but that&#8217;s a minor quibble with an awesome feature that&#8217;ll save time for everyone using WordPress 2.9.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/where-to-find-batch-plugin-update-in-wordpress-2-9/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Spotlight: The Lost Jacket</title>
		<link>http://www.the42ndestate.com/spotlight-the-lost-jacket/</link>
		<comments>http://www.the42ndestate.com/spotlight-the-lost-jacket/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:02:35 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[agency]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[fat footer]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1386</guid>
		<description><![CDATA[Stuart Foster from The Lost Jacket approached us to simplify his existing site and transform its look from a blog into an agency site. We were very happy to do so as we’re big fans of the content on The Lost Jacket. Stuart had a great vision for the site, which we took and expanded upon to create a clean, simplified layout that promotes the services of The Lost Jacket while also giving his content a clean and easy to read feel.]]></description>
				<content:encoded><![CDATA[<p>Stuart Foster from <a href="http://thelostjacket.com/">The Lost Jacket</a> approached us to simplify his existing site and transform its look from a blog into an agency site. We were very happy to do so as we&#8217;re big fans of <a href="http://thelostjacket.com/blog">the content</a> on The Lost Jacket. Stuart had a great vision for the site, which we took and expanded upon to create a clean, simplified layout that promotes the services of The Lost Jacket while also giving his content a clean and easy to read feel that is a hallmark of the Thesis theme.</p>
<h3>A New Homepage Layout</h3>
<p>The first thing we did was to restructure The Lost Jacket&#8217;s homepage. Stuart wanted a slider effect so we integrated a jquery slider that lists The Lost Jacket&#8217;s services, the latest blog post, about the agency, a contact form and social media presence.</p>
<p>Stuart also wanted a focus on converting visitors into RSS subscribers. To help with the cause the homepage lists several options on how to subscribe to the blog via RSS, email and Google Reader. It also lists the current number of subscribers to give social proof that The Lost Jacket&#8217;s content really is top-notch.</p>
<p><a href="http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket1.png" rel="shadowbox[sbpost-1386];player=img;"><img src="http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket1-300x508.png" alt="The Lost Jacket" title="The Lost Jacket" width="300" height="508" class="aligncenter size-medium wp-image-1393" srcset="http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket1-300x508.png 300w, http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket1-604x1024.png 604w, http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket1.png 1200w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<h3>A New Blog Layout</h3>
<p>Previously, The Lost Jacket featured a three column layout, where the content resided to the left, with two columns in the right sidebar. We encouraged TLJ to drop the sidebars to allow for bigger, easier to read content. When we showed a mockup of the idea, The Lost Jacket loved it and told us to roll with it.</p>
<p>To help maintain some of the features from the sidebar, we added a fat footer to the bottom of the site that lists latest posts, latest comments, and latest Posterous posts. There&#8217;s also a few links to main pages such as contact, about, and the <a href="http://thelostjacket.com/archives">archives</a>, with the biggest categories (Branding, Marketing, Public Relations, and Social Media) featured again, with unique introductions to each archive.</p>
<p><a href="http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket-Blog1.png" rel="shadowbox[sbpost-1386];player=img;"><img src="http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket-Blog1-300x631.png" alt="The Lost Jacket Blog" title="The Lost Jacket Blog" width="300" height="631" class="aligncenter size-medium wp-image-1392" srcset="http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket-Blog1-300x631.png 300w, http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket-Blog1-486x1024.png 486w, http://www.the42ndestate.com/images/2009/11/The-Lost-Jacket-Blog1.png 1200w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<h3>The Result</h3>
<p>We think the end site came out really well. Stuart&#8217;s initial vision and willingness to hand over the reins to us while still keeping an open communication line in place allowed for new ideas to flourish up and become integrated into the site. It was a great process and we feel it helped make the end product great as a result. </p>
<p>Go check out The Lost Jacket&#8217;s <a href="http://thelostjacket.com/services">social media, PR, and marketing services</a>. Let us know what you think of the new design, we hope you enjoy it!</p>
<p>A special thank you to Miss Gordon for lending her <a href="http://missgordon.com/">color &#038; typography expertise</a> to really make the new look sing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/spotlight-the-lost-jacket/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Emergent Group at Boston Young Entrepreneurs</title>
		<link>http://www.the42ndestate.com/emergent-group-at-boston-young-entrepreneurs/</link>
		<pubDate>Fri, 30 Oct 2009 16:40:57 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[boston young entreprenuers]]></category>
		<category><![CDATA[emergent energy group]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1383</guid>
		<description><![CDATA[We’re big fans of the City of Boston run group Boston Young Entreprenuers, having received excellent advice and met tons of awesome people via BYE. The featured company for November’s meeting has been announced and it’s Emergent Energy Group.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.the42ndestate.com/boston-young-entrepreneurs-presentation/">We&#8217;re big fans</a> of the City of Boston run group <a href="http://www.bostonyoungentrepreneurs.com/">Boston Young Entreprenuers</a>, having received excellent advice and met tons of awesome people via BYE. The featured company for November&#8217;s meeting has been announced and it&#8217;s <a href="http://emergentgroup.com/">Emergent Energy Group</a>.</p>
<p>Emergent is all about finding the best alternative energy sources for landowners, developers, businesses, municipalities and academic institutions. They began as a wind power consulting firm and have since expanded to solar energy and other sustainable resources. Emergent was recently named one of the <a href="http://www.businessweek.com/smallbiz/content/oct2009/sb2009106_810168.htm">Top 25 Young Entreprenuers of 2009</a> by Business Week.</p>
<p>They&#8217;re based in Boston and are led by four individuals. November&#8217;s BYE meeting will be held at <a href="http://workbarboston.com/">WorkBar</a>, a great little place that combines fun with work.</p>
<p>Here are a few more details on the <a href="http://www.bostonyoungentrepreneurs.com/events/bye-november-business-plan-emergent-group/">Emergent&#8217;s BYE meeting</a>:</p>
<p>Date: Wednesday, November 11th<br />
Time: 6:00pm to 8:00pm<br />
Location: WorkBar, 129 South Street, Boston<br />
RSVP: Devin.Cole.BRA@CityofBoston.gov or on <a href="http://www.facebook.com/ONEin3Boston#/event.php?eid=165865590926">Facebook</a></p>
<p>Hope to see you at WorkBar on the 11th!</p>
]]></content:encoded>
			</item>
		<item>
		<title>Five Free Tools to Check if Your Site is Up</title>
		<link>http://www.the42ndestate.com/five-free-tools-to-check-if-your-site-is-up/</link>
		<comments>http://www.the42ndestate.com/five-free-tools-to-check-if-your-site-is-up/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 12:32:51 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[uptime]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1373</guid>
		<description><![CDATA[A great site that is search engine friendly and more importantly useful to your visitors serves no purpose if the server struggles and doesn’t keep the site up consistently and reliably. Monitoring your sites for uptime is a crucial aspect of running a successful web-site. If you’re not already keeping track of your site’s uptime, here’s five free tools to check if your site is up and running.]]></description>
				<content:encoded><![CDATA[<p>So, you&#8217;ve designed and developed a great site that <a href="http://www.the42ndestate.com/top-ten-ways-to-write-a-top-ten-ways-post/">visitors find extremely useful</a> and that <a href="http://www.the42ndestate.com/how-page-rank-5-two-months/">search engines love to crawl</a>. You no have no worries, right?</p>
<p><strong>Wrong!</strong></p>
<p>A great site that is <a href="http://www.the42ndestate.com/five-things-to-look-for-in-source-code-for-seo/">search engine friendly</a> and more importantly useful to your visitors serves no purpose if the server struggles and doesn&#8217;t keep the site up consistently and reliably. Monitoring your sites for uptime is a crucial aspect of running a successful web-site. If you&#8217;re not already keeping track of your site&#8217;s uptime, here&#8217;s five free tools to check if your site is up and running.</p>
<ol>
<h3>
<li>Down for everyone or just me?</li>
</h3>
<p>You just tried accessing your web-site and it&#8217;s not loading. Uh-oh, time to panic? Not quite. The first thing you should check if your site is not loading on your computer is if it&#8217;s actually down or if it&#8217;s an issue with your Internet Service Provider. </p>
<p><a href="http://downforeveryoneorjustme.com/">Down for everyone or just me?</a> is a great single-purpose web-site that will check any site on the web and report back if it&#8217;s actually down or if it&#8217;s just an issue with your internet connection.</p>
<h3>
<li>Pingdom</li>
</h3>
<p>While finding out if your site is down for just you or everyone is a great tool, it&#8217;s unreasonable to constantly refresh your site and then go and check if it&#8217;s really down. Site monitoring tools allow you to set it and forget.</p>
<p><a href="http://pingdom.com/">Pingdom</a> is such a tool, where you can point it towards your site(s) or server(s) and if the site goes down you&#8217;ll receive an e-mail, text message, or even a tweet or DM that Pingdom had trouble accessing your site. Pingdom can be set to check your site once a minute and it also has tons of graphs that show uptime and load time historically for your site(s). </p>
<p>You can sign up for a free account that will track one site or one server and send up to 20 SMS alerts.</p>
<h3>
<li>Are My Sites Up?</li>
</h3>
<p>What if you have more than one site but can&#8217;t afford a premium Pingdom account? Well, <a href="http://aremysitesup.com/">Are My Sites Up?</a> is a great monitoring service that is free and allows you to track up to five sites with 25 daily checks. Are My Sites Up also offers a premium service that allows for more sites and more checks. You can receive alerts via RSS, text message, Twitter, e-mail or via a nifty iPhone application.</p>
<h3>
<li>mon.itor.us</li>
</h3>
<p>Similar to Pingdom, <a href="http://mon.itor.us/">mon.itor.us</a> will track your site&#8217;s uptime and offers a plethora of graphs to show site performance over time. The service is completely free and you can receive alerts that your site is down via e-mail, instant message, RSS or SMS. </p>
<h3>
<li>Binary Canary</li>
</h3>
<p>Last but not least, <a href="http://binarycanary.com/">Binary Canary</a> has a free monitoring account that allows you to watch up to 5 sites at a 15 minute frequency. If the site goes down you can be alerted via e-mail or SMS by e-mail. You can also purchase SMS and phone credits to receive alerts that way.</p>
</ol>
<p>Ensuring your site stays up is an important aspect of running a successful web-site. With these five free tools, you have no excuse to not monitor your site&#8217;s uptime and load time performance. Have you got a favorite free monitoring tool you use to ensure your site is up? Let us know in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/five-free-tools-to-check-if-your-site-is-up/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>SEO Presentation from City of Boston Marketing Workshops</title>
		<link>http://www.the42ndestate.com/seo-presentation-from-city-of-boston-marketing-workshops/</link>
		<comments>http://www.the42ndestate.com/seo-presentation-from-city-of-boston-marketing-workshops/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 12:45:18 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1367</guid>
		<description><![CDATA[So far, the Marketing workshops organized by the BRA and the City of Boston have been a great success. The crowd yesterday was awesome, involved and asked lots of questions. If you were at either of the events this week and have any questions or suggestions, feel free to leave a comment below or send us an e-mail.]]></description>
				<content:encoded><![CDATA[<p>So far, the Marketing workshops organized by the BRA and the City of Boston have been a great success. The crowd yesterday was awesome, involved and asked lots of questions. If you were at either of the events this week and have any questions or suggestions, feel free to leave a comment below or <a href="http://www.the42ndestate.com/contact/">send us an e-mail</a>.</p>
<p>Below are the slides from <a href="http://www.the42ndestate.com/speaking-about-seo/">my SEO presentation</a> at the Marketing workshops organized by the City of Boston. I&#8217;m planning on recording audio to go along with the slides this weekend and will update this post when it&#8217;s up. There&#8217;s two options below for viewing the slides, the first is a Google Doc, the second is a Slideshare doc.</p>
<p>And if you enjoyed the presentation, please <a href="http://feeds2.feedburner.com/the42ndestate/">subscribe to our blog</a>, <a href="http://www.facebook.com/The42ndEstate">fan us on Facebook</a>, and <a href="http://twitter.com/the42ndestate">follow us on Twitter</a>!</p>
<h3>Google Doc</h3>
<p><iframe src="http://docs.google.com/present/embed?id=dd6dvdrr_10d6qfq6gr&#038;size=m" frameborder="0" width="555" height="451"></iframe></p>
<h3>Slideshare</h3>
<div style="width:425px;text-align:left" id="__ss_2334839"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/The42ndEstate/seo-presentation-bra-the-42nd-estate" title="SEO Presentation - The 42nd Estate - BRA - City of Boston">SEO Presentation &#8211; The 42nd Estate &#8211; BRA &#8211; City of Boston</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seo-presentation-bra-the-42nd-estate-091024050050-phpapp02&#038;rel=0&#038;stripped_title=seo-presentation-bra-the-42nd-estate" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seo-presentation-bra-the-42nd-estate-091024050050-phpapp02&#038;rel=0&#038;stripped_title=seo-presentation-bra-the-42nd-estate" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/The42ndEstate">The 42nd Estate</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/seo-presentation-from-city-of-boston-marketing-workshops/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Justin Wright Survives Self-Employement</title>
		<link>http://www.the42ndestate.com/justin-wright-survives-self-employement/</link>
		<comments>http://www.the42ndestate.com/justin-wright-survives-self-employement/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 21:15:59 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[freelancing]]></category>
		<category><![CDATA[Justin Wright]]></category>
		<category><![CDATA[lessons]]></category>
		<category><![CDATA[self-employement]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1363</guid>
		<description><![CDATA[Member of The 42nd Estate, Justin Wright, today celebrates one year of self-employement. Head over to his blog and join in the celebration. He uses the occasion to drop ten self employment lessons he’s learned over the past twelve months that’ll come in handy whether you’re just starting out on your own or have been at it for a while.]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.the42ndestate.com/meet-the-members-justin-wright/">Member of The 42nd Estate</a>, <a href="http://www.lifeofjustin.com/">Justin Wright</a>, today celebrates one year of self-employement. Head over to his blog and join in the celebration. He uses the occasion to drop <a href="http://www.lifeofjustin.com/self-employment-lessons-3239/">ten self employment lessons</a> he&#8217;s learned over the past twelve months that&#8217;ll come in handy whether you&#8217;re just starting out on your own or have been at it for a while.</p>
<p>Here&#8217;s two of my favorite lessons from Justin:</p>
<blockquote>
<h3>5. Money Isn’t Everything</h3>
<p>However, working for myself quickly made me realize how unimportant money is. Yes we need it to survive, but that’s it. Other than food/water, clothes, and a place to sleep, we really don’t NEED much else. Instead, we WANT everything we see on TV. The key is to use your money wisely.</p></blockquote>
<p>Very true. The less you spend, the less you need to earn, the less you need to work and the more time you have to enjoy life.</p>
<blockquote>
<h3>9. You Will Learn (A Lot)</h3>
<p>Of all the things I’ve mentioned so far, nothing has been more enjoyable than learning. It’s absolutely amazing how many things I have learned over the course of one year. I can easily predict that I’ve learned at least 5 (maybe 10) times as much as I did from high school and college combined. I’ve learned valuable things about business, life, and everything in-between.
</p></blockquote>
<p>100% true. I&#8217;ve personally learned a lot more working at The 42nd Estate than I ever did in college or high school. A lot of people struggle with this concept of learning (more) after college, but it can be true. If you&#8217;re in a cubicle, you can slide by without learning anything new. With entrepreneurship/freelancing, <strong>it must be true</strong> or else your skills become irrelevant. </p>
<p>Congratulations Justin and here&#8217;s to another year for you and <a href="http://www.the42ndestate.com/whoa-were-old/">another year for The 42nd Estate</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.the42ndestate.com/justin-wright-survives-self-employement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8.5 Released &#038; Exploit Scanner Recommended</title>
		<link>http://www.the42ndestate.com/wordpress-2-8-5-released-exploit-scanner-recommended/</link>
		<pubDate>Wed, 21 Oct 2009 03:11:58 +0000</pubDate>
		<dc:creator><![CDATA[Adam Pieniazek]]></dc:creator>
				<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[new release]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.the42ndestate.com/?p=1358</guid>
		<description><![CDATA[Wordpress 2.8.5 has just been released. The main additions are security tweaks, which makes the update a must download.]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.the42ndestate.com/images/2009/10/wordpress-logo-stacked-rgb.png" alt="wordpress-logo-stacked-rgb" title="wordpress-logo-stacked-rgb" width="500" height="310" class="aligncenter size-full wp-image-1359" srcset="http://www.the42ndestate.com/images/2009/10/wordpress-logo-stacked-rgb.png 500w, http://www.the42ndestate.com/images/2009/10/wordpress-logo-stacked-rgb-300x186.png 300w" sizes="(max-width: 500px) 100vw, 500px" /></p>
<p><a href="http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/">WordPress 2.8.5 has just been released</a>. The main additions are security tweaks, which makes the update a must download. The updates in this release include:</p>
<blockquote>
<ul>
<li>A fix for the Trackback Denial-of-Service attack that is currently being seen.</li>
<li>Removal of areas within the code where php code in variables was evaluated.</li>
<li>Switched the file upload functionality to be whitelisted for all users including Admins.</li>
<li>Retiring of the two importers of Tag data from old plugins.</li>
</ul>
</blockquote>
<p>The WordPress crew is also recommending users download the <a href="http://ocaoimh.ie/exploit-scanner/">WordPress Exploit Scanner plugin</a> to search for any exploits that might be installed on your server. We use the exploit scanner on several of our sites and it&#8217;s a good step to take to harden your WordPress installation for security.</p>
]]></content:encoded>
			</item>
	</channel>
</rss>
