<?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>Rob Marriage {.com}</title>
	<atom:link href="http://robmarriage.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://robmarriage.com</link>
	<description>W3b G33k</description>
	<lastBuildDate>Sat, 05 May 2012 22:22:00 +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>8 Easy Ways to Keep Your WordPress Web Site Secure</title>
		<link>http://robmarriage.com/8-easy-ways-to-keep-your-wordpress-web-site-secure/</link>
		<comments>http://robmarriage.com/8-easy-ways-to-keep-your-wordpress-web-site-secure/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 01:38:13 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Intarwebs]]></category>

		<guid isPermaLink="false">http://robmarriage.com/?p=395</guid>
		<description><![CDATA[Lets face it, site security is one of the most boring subjects in web development. It&#8217;s not as sexy as site design and it&#8217;s not as geeky as feature development. It&#8217;s pretty lame. But all it takes is one site to get hacked for you to realize that it&#8217;s not something you can take for [...]]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_408" class="wp-caption alignright" style="width: 300px">
	<a href="http://www.flickr.com/photos/iamperegrino/"><img class="size-medium wp-image-408  " title="Wordpress Security" src="http://robmarriage.com/wp-content/uploads/2012/03/wp-300x225.jpg" alt="Wordpress Security" width="300" height="225" /></a>
	<p class="wp-caption-text">Flickr User Peregrino Will Reign</p>
</div>
<p>Lets face it, site security is one of the most boring subjects in web development. It&#8217;s not as sexy as site design and it&#8217;s not as geeky as feature development. It&#8217;s pretty lame. But all it takes is one site to get hacked for you to realize that it&#8217;s not something you can take for granted.  Unfortunately most security posts center around server security and if you&#8217;re on a shared hosting environment you don&#8217;t have much control over the server. Nevertheless, there are some steps you can take with your next WordPress installation to make it more secure. Before I dive in, I want to thank <a href="http://terran.birrell.us/" target="_blank">Terran Birrell</a> and the members of his WordPress User Group in Rochester, New York for many of these tips.</p>
<p>OK, here we go.</p>
<h2>1. Stop doing the one-click install at your host</h2>
<p>For a brief period I was taking advantage of my host&#8217;s &#8220;one-click&#8221; install for my WordPress sites. My reasoning was simple&#8230; why go through all that manual work, when I can just have my host set up the default WordPress site for free? Then all I would have to do is add plugins, themes and content and I had a site. Sounds good, right?</p>
<h3>Why this is bad</h3>
<p>The problem with anything automatic is that you give up control. In the case of a one-click installation, you give up control of your database name, database user name, database password, and table structure. You also miss out on another WordPress security feature: <strong>secret keys</strong>. These are all items that should be manually configured to ensure your site is secure.</p>
<h3>What to do instead</h3>
<p>Keep a folder on your computer that has a pristine copy of the latest WordPress files. In the \wp-content\plugins folder, keep all your favorite plugins and when it comes time to do a new install, create the directory on your host and then FTP all those files up (don&#8217;t forget to edit wp-config.php first!) You&#8217;re going to need the FTP connection anyway &#8211; might as well set it up during the install.</p>
<h2>2. Change your table prefixes</h2>
<p>In wp-config.php WordPress prefaces all your tables with &#8220;WP_&#8221; by default. So for example your OPTIONS table is called WP_OPTIONS.</p>
<h3>Why this is bad</h3>
<p>WordPress (and most other CMS for that matter) generally have safeguards against <a href="http://en.wikipedia.org/wiki/SQL_injection" target="_blank">SQL injection attacks</a>. But it&#8217;s still not worth taking a chance. A SQL Injection attack is initiated when a hacker posts a SQL query to your site through a form, a comment, on the URL, etc. During the early days of the Internet when people had &#8220;guest books&#8221; you could easily deface them by placing an unclosed &lt;BLINK&gt; tag in your comment, redering the rest of the page infuriatingly unreadable. (It also gave some Japanese kids seizures.) Well, the modern day equivalent is dropping into a form a piece of SQL like this:</p>
<p><code><br />
UPDATE wp_options<br />
SET &lt;evil stuff goes here&gt;<br />
</code></p>
<p>&#8230;and watching the site become a zombie attack robot. Like I said, in most cases this will fail, but if you fall behind in WordPress updates you could be exposed.</p>
<h3>What to do instead</h3>
<p>Change your table prefixes to anything other that &#8220;wp_&#8221;. To do that, look through wp-config.php for these lines:</p>
<p><code>/**<br />
* WordPress Database Table prefix.<br />
*<br />
* You can have multiple installations in one database if you give each a unique<br />
* prefix. Only numbers, letters, and underscores please!<br />
*/<br />
$table_prefix = 'wp_';<br />
</code><br />
On that last line change &#8216;wp_&#8217; to &#8216;PREFIX_&#8217;<br />
Where &#8216;PREFIX&#8217; is anything you want (letters, numbers and underscores only)</p>
<h2>3. Make your DB user name unique</h2>
<p>When you&#8217;re manually creating your database on your host it&#8217;s tempting to use the same database user for multiple databases.</p>
<h3>Why this is bad</h3>
<p>Duh. Access to one means access to all.</p>
<h3>What to do instead</h3>
<p>Create a unique user for each database. Give that user rights only to that database. Never use <code>root</code>.</p>
<h2>4. Set the secret keys at the bottom of the wp-config file</h2>
<p>WordPress allows you to set up encryption keys that keep your users&#8217; cookies safe. It&#8217;s a good idea to use them, not just for your site but also to protect your users. As the Codex says, &#8220;You don&#8217;t have to remember the keys, just make them long, random and complicated &#8212; or better yet, use the the <a href="http://api.wordpress.org/secret-key/1.1/" target="_blank">online generator</a>.&#8221;</p>
<h3>How to set the keys</h3>
<p>In your wp-config.php file, look for these lines:</p>
<pre><code>define('AUTH_KEY', 'put your unique phrase here'); </code>define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');</pre>
<p>Then click on <a href="http://api.wordpress.org/secret-key/1.1/" target="_blank">this link</a> and get the keys. You can copy the entire text on that page and paste it into the file replacing what&#8217;s already there.</p>
<h2>5. Delete the &#8220;admin&#8221; account</h2>
<p>At install, WordPress creates an administrator account called &#8220;admin&#8221; and then lets you create a password for it.</p>
<h3>Why is this bad?</h3>
<p>Access is controlled by two variables, the user name and the password. If you keep the admin account you&#8217;ve just handed over the half your credential to a would-be hacker.</p>
<h3>How to fix it</h3>
<p>The first thing you should do when you log in with this account is create a new administrator account with a name other than &#8220;admin&#8221; or &#8220;administrator&#8221; and give it the administrator right.</p>
<p>Pro tip: Oh, don&#8217;t use &#8220;webmaster&#8221; or &#8220;info&#8221; either. Those are logical next guesses. Once you&#8217;ve created the new administrator account, log in to WordPress and delete the admin account.</p>
<h2>6. Don&#8217;t use your post author name as your login name</h2>
<p>Just as we don&#8217;t want to log in with &#8220;admin&#8221; we don&#8217;t want to use the display name for your blog posts as your log in name. So for example if you post as &#8220;Rob&#8221; don&#8217;t have &#8220;Rob&#8221; as your login name. Instead this should be a user name that you don&#8217;t share with anyone.</p>
<h2>7. Use a spam blocking plugin</h2>
<p>Currently I&#8217;m using Spam Free WordPress by <a href="http://www.toddlahman.com/spam-free-wordpress/" target="_blank">Todd Lahman</a> on all my sites. It&#8217;s awesome. Zero false positives and I haven&#8217;t had to moderate a single comment about Viagra. Nonetheless, something is bound to get through eventually. And when it does I&#8217;ll begin my search anew. I don&#8217;t know what the best SPAM protection is (except maybe turning off comments altogether) but it&#8217;s worth spending the time to find one. Besides not having to deal with crap all day, by having a good SPAM blocker installed you make your site less attractive to would-be hackers.</p>
<h2>8. Finally&#8230; keep your site up to date with the latest versions of WordPress, themes and plugins</h2>
<p>Get in the habit of checking your sites regularly, and set aside time to do your updates.</p>
<p>&nbsp;</p>
<p>If you have any other tips for securing your WordPress site, please feel free to add them in the comments below. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://robmarriage.com/8-easy-ways-to-keep-your-wordpress-web-site-secure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fax.com&#8217;s Business Model: Frustrate the User</title>
		<link>http://robmarriage.com/fax-coms-business-model-frustrate-the-user/</link>
		<comments>http://robmarriage.com/fax-coms-business-model-frustrate-the-user/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 03:46:55 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://robmarriage.com/?p=390</guid>
		<description><![CDATA[I&#8217;m writing this while waiting for the &#8220;Chat Agent&#8221; to come online and take care of canceling my account. Like many people, I had a rare occasion when I needed to fax a document and not having a fax machine I decided to try out a &#8220;free&#8221; Internet Fax service. There are a ton out [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://robmarriage.com/fax-coms-business-model-frustrate-the-user/" title="Permanent link to Fax.com&#8217;s Business Model: Frustrate the User"><img class="post_image alignleft remove_bottom_margin" src="http://robmarriage.com/wp-content/uploads/2012/02/fax.jpg" width="240" height="160" alt="Just the Fax Ma'am" /></a>
</p><p>I&#8217;m writing this while waiting for the &#8220;Chat Agent&#8221; to come online and take care of canceling my account.</p>
<p>Like many people, I had a rare occasion when I needed to fax a document and not having a fax machine I decided to try out a &#8220;free&#8221; Internet Fax service.</p>
<p>There are a ton out there, but for whatever reason (the whole experience, like sending faxes, was quite forgettable) I chose Fax.com. I provided my credit card info and sent the fax. Fine.</p>
<p>A month or so later, I checked my credit card statement and there was a charge from Fax.com for $9.99. &#8220;Oh I better take care of that,&#8221; I thought and then immediately forgot about it.</p>
<p>A month after that, I checked my statement and saw the charge again. &#8220;I must cancel that,&#8221; I thought. This time I went to the site, signed in (thanks <a href="https://lastpass.com/" target="_blank">LastPass</a>!) and hunted for several minutes for a cancel option. I didn&#8217;t find one and something came up and I had to abandon my search.</p>
<p>And then 10 minutes ago I saw the charge AGAIN on my statement. I&#8217;ve now spent $30 on this &#8220;free&#8221; service to send one measly fax!! I logged on and started clicking around. Finally while viewing my bill online, I clicked on the Help icon and saw a FAQ about canceling my account. I clicked on that link and was taken to another page when I had to chat with a support rep to cancel my account. Seriously, Fax.com expects me to chat with an agent to cancel my account?</p>
<p>&#8230; Well, apparently not. After waiting for the agent for a couple of minutes, the system has told me that it&#8217;s taking too long and had me fill out a form to cancel. (I wonder if there ever was an agent in the first place.)</p>
<p>To me fax.com&#8217;s business model is &#8220;frustrate the user so he stops trying to cancel.&#8221;</p>
<p>Fax.com provides a commodity service that is fundamentally similar to its competition. It sends faxes through the Internet. And it does a fine job of it. The interface is clean and simple to use and it works exactly as promised. But it&#8217;s obvious to me after trying to cancel the service, that in my case 2/3 of Fax.com&#8217;s revenue is derived from frustrating its users. I only wanted the service for one of the three months I paid for it.</p>
<p>Another online service that derives revenue this way is PayPal. Regardless of my preferences in the past, I still have to force PayPal to complete a purchase using my credit card rather than my checking account. I have to go through that extra step every time. And on those rare occasions when I forget, I&#8217;m pissed. It throws my whole accounting system off.</p>
<p>The result is that whenever I&#8217;m given the opportunity, I&#8217;ll use <em>anything</em> but PayPal to complete a purchase. Yep, that includes Google Checkout.</p>
<p>Both Fax.com and PayPal are guilty of the same practice: they sacrifice good customer interaction for the sake of a few extra bucks.</p>
<p>If you&#8217;re a product designer remember this: Your goal is to help your users easily do what they want to do, not what you want them to do. And if they&#8217;re not both the same thing, maybe you&#8217;re doing it wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://robmarriage.com/fax-coms-business-model-frustrate-the-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A monkey using a flamethrower at Cheeburger Cheeburger</title>
		<link>http://robmarriage.com/a-monkey-using-a-flamethrower/</link>
		<comments>http://robmarriage.com/a-monkey-using-a-flamethrower/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 18:00:47 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://robmarriage.com/?p=313</guid>
		<description><![CDATA[Cheeburger Cheeburger has moved up a notch in my book. I ordered my lunch online at Cheeburger.com and in the Special Notes box I added: Please draw a picture of a monkey using a flamethrower on the wrapper/bag. Here&#8217;s what I got. One caveat though &#8211; they did call to verify the order because of [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Cheeburger Cheeburger has moved up a notch in my book. I ordered my lunch online at <a href="http://cheeburger.com/" target="_blank">Cheeburger.com</a> and in the Special Notes box I added:</p>
<blockquote><p>Please draw a picture of a monkey using a flamethrower on the wrapper/bag.</p></blockquote>
<p>Here&#8217;s what I got.<br />
<div id="attachment_315" class="wp-caption alignnone" style="width: 600px">
	<img src="http://robmarriage.com/wp-content/uploads/2011/10/IMAG0145.jpg" alt="Cheeburger Cheeburger Bag" title="IMAG0145" width="600" height="359" class="size-full wp-image-315" />
	<p class="wp-caption-text">&quot;Please draw a picture of a monkey using a flamethrower on the wrapper/bag.&quot;</p>
</div></p>
<p>One caveat though &#8211; they did call to verify the order because of the unusual request. So I had to tell them that yes indeed I wanted a burger and yes, I wanted a picture of a monkey brandishing a flamethrower on the bag.</p>
<p>Luckily for me Christine picked up lunch, which I guess she&#8217;ll be reluctant to do in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://robmarriage.com/a-monkey-using-a-flamethrower/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Birthday/Christmas Wish List</title>
		<link>http://robmarriage.com/my-birthdaychristmas-wish-list/</link>
		<comments>http://robmarriage.com/my-birthdaychristmas-wish-list/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 03:10:57 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://robmarriage.com/?p=232</guid>
		<description><![CDATA[Dear Family: Although I need nothing but your love (and my house and my laptop and my phone and my Jeep), you insist on buying me things for my birthday and Christmas. So here is the list of things that will bring a particularly wide smile to my face Christmas morning: Swiss Gear Backpack. Big, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Dear Family:<br />
Although I need nothing but your love (and my house and my laptop and my phone and my Jeep), you insist on buying me things for my birthday and Christmas. So here is the list of things that will bring a particularly wide smile to my face Christmas morning:</p>
<table>
<tbody>
<tr>
<td><a href="http://www.amazon.com/gp/product/B002SXMRO4/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B002SXMRO4"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B002SXMRO4&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B002SXMRO4&amp;camp=217145&amp;creative=399369" alt="" width="1" height="1" border="0" /></td>
<td><del><strong>Swiss Gear Backpack</strong>. Big, black, lot&#8217;s of pockets and zippers. (I liked Patrick&#8217;s bag at the cottage). Here they are at <a href="http://www.amazon.com/s?ie=UTF8&amp;redirect=true&amp;ref_=sr_nr_n_0&amp;keywords=swiss%20gear%20backpack&amp;bbn=15743161&amp;qid=1314463294&amp;rnid=15743161&amp;rh=k%3Aswiss%20gear%20backpack%2Cn%3A1036592%2Cp_4%3ASwiss%20Gear%7CSwissGear%20Travel%20Gear%7CSWISS%20GEAR%20by%20WEGNER%7CSwissgear%7CWenger%7CVictorinox%2Cn%3A%211036682%2Cn%3A15743161%2Cn%3A172470#?_encoding=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957">Amazon</a><img style="border: none !important; margin: 0px !important;" src="https://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=ur2&amp;o=1" alt="" width="1" height="1" border="0" />. I especially like <a href="http://www.amazon.com/gp/product/B002SXMRO4/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B002SXMRO4">this one</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B002SXMRO4&amp;camp=217145&amp;creative=399369" alt="" width="1" height="1" border="0" />. But I think you can find it cheaper elsewhere.</del></td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B000HDHGWU/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B000HDHGWU"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B000HDHGWU&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B000HDHGWU&amp;camp=217145&amp;creative=399369" alt="" width="1" height="1" border="0" /></td>
<td><del>I&#8217;d like a <strong>set of tools</strong> to keep in the camper. The tool set would be pretty typical of a home/apartment tool set plus some camping-specific things like duct tape, glue, paracord and the like. <a href="http://www.amazon.com/gp/product/B000HDHGWU/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399369&amp;creativeASIN=B000HDHGWU">This one is hot</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B000HDHGWU&amp;camp=217145&amp;creative=399369" alt="" width="1" height="1" border="0" />.</del></td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B004YR00NW/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B004YR00NW"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B004YR00NW&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B004YR00NW&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td><del>A <strong>charger stand</strong> for my phone. I like <a href="http://www.amazon.com/gp/product/B004YR00NW/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B004YR00NW">this one</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B004YR00NW&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /> because it can also charge a spare battery.</del></td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B0029XDZIK/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B0029XDZIK"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B0029XDZIK&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B0029XDZIK&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td><del><a href="http://www.amazon.com/gp/product/B0029XDZIK/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B0029XDZIK">I&#8217;ll always need these</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=&amp;l=as2&amp;o=1&amp;a=B0029XDZIK&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" />.</del></td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B00074T848/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B00074T848"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B00074T848&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B00074T848&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td><del><strong>Weight Lifting Gloves</strong>, black, size large. <a href="http://www.amazon.com/gp/product/B00074T848/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B00074T848">Like these.</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B00074T848&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></del></td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B004WN43IQ/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B004WN43IQ"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B004WN43IQ&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B004WN43IQ&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td>A pair of <strong>work boots</strong> <a href="http://www.amazon.com/gp/product/B004WN43IQ/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B004WN43IQ">like these</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B004WN43IQ&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" />. Note: The image only shows one boot, but I will in fact need two.</td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B002V3EC94/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B002V3EC94"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B002V3EC94&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B002V3EC94&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td>This <strong>Jeep knife</strong> is pretty cool. <a href="http://www.amazon.com/gp/product/B002V3EC94/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B002V3EC94">Jeep JP-4013 Multi-Knife</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B002V3EC94&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B001CF3IP6/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B001CF3IP6"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B001CF3IP6&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B001CF3IP6&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td>Taillight Guard for my Jeep. Needs to fit a 2000 Jeep Wrangler Sport (TJ). <a href="http://www.amazon.com/gp/product/B001CF3IP6/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B001CF3IP6">Here&#8217;s one</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B001CF3IP6&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" />.</td>
</tr>
<tr>
<td><a href="http://www.amazon.com/gp/product/B002EDXX82/ref=as_li_ss_il?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B002EDXX82"><img src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL110_&amp;ASIN=B002EDXX82&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=rvbeddingcom-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B002EDXX82&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></td>
<td><del><a href="http://www.amazon.com/gp/product/B002EDXX82/ref=as_li_ss_tl?ie=UTF8&amp;tag=rvbeddingcom-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=B002EDXX82">Moccasin Slippers</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=rvbeddingcom-20&amp;l=as2&amp;o=1&amp;a=B002EDXX82&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" />. Size 11. Target has them as well.</del></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://robmarriage.com/my-birthdaychristmas-wish-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top Article Directories</title>
		<link>http://robmarriage.com/top-article-directories/</link>
		<comments>http://robmarriage.com/top-article-directories/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 14:24:24 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://robmarriage.com/?p=225</guid>
		<description><![CDATA[I&#8217;m an avid reader of Pat Flynn&#8217;s Smart Passive Income blog and refer to it regularly. One post that I keep coming back to is THE Backlinking Strategy That Works. You can spend as much as $2,000 on a back linking course and you won&#8217;t get as much information as you will in this single [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://robmarriage.com/top-article-directories/" title="Permanent link to Top Article Directories"><img class="post_image alignleft remove_bottom_margin" src="http://robmarriage.com/wp-content/uploads/2011/09/P1000452-e1316634183437.jpg" width="200" height="150" alt="East Tilbury has nothing to do with Article Directories" /></a>
</p><p>I&#8217;m an avid reader of Pat Flynn&#8217;s <a href="http://www.smartpassiveincome.com/" target="_blank">Smart Passive Income</a> blog and refer to it regularly. One post that I keep coming back to is <a href="http://www.smartpassiveincome.com/the-backlinking-strategy-that-works/" target="_blank">THE Backlinking Strategy That Works</a>. You can spend as much as $2,000 on a back linking course and you won&#8217;t get as much information as you will in this single post. (I know this from experience.) It&#8217;s not just the original post that is valuable; the comments also contain some great discussion.</p>
<p>Simply put, article marketing continues to be one of the best ways to accumulate inbound links to your web pages. Even after the Panda update.</p>
<p>So yesterday I questioned Pat&#8217;s selection of <strong>Article Directories</strong> as I found some of them to have a low Page Rank and others were either no longer accepting articles with external links or were charging a fee. Joseph Archibald (the original author of the backlinking system) replied and confirmed my suspicions &#8211; those Article Directories were the best at the time the original post was written. But as with the fluid nature of the web, some are no longer on top.</p>
<p>Well, the long-and-short of it is I put together a list of Article Directories with a PR of 4 or higher and included their Alexa Rank and whether or not their links are rel=&#8221;nofollow&#8221;.</p>
<p>Here&#8217;s the list:<br />
<a href="https://spreadsheets.google.com/spreadsheet/ccc?key=0AgQPWcOEg-XMdEk5LUdNRG9ZWU5YcjRlaFlaWHJlbGc&#038;hl=en_US" target="_blank">Top Article Directories By Page Rank</a></p>
<p>This list is based on the Article Directory list at <a href="http://www.directorycritic.com/article-directory-list.html" target="_blank">Directory Critic</a> &#8211; but the original list is woefully out of date (even though I dutifully reported many of them).</p>
<p>Obviously rankings will change and I&#8217;m sure there are many more Article Directories out there with a PR of 4 or higher. So, let me know in the comments if you&#8217;d like to help maintain this list.</p>
]]></content:encoded>
			<wfw:commentRss>http://robmarriage.com/top-article-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn the language of beer</title>
		<link>http://robmarriage.com/learn-the-language-of-beer/</link>
		<comments>http://robmarriage.com/learn-the-language-of-beer/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 16:07:49 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Intarwebs]]></category>

		<guid isPermaLink="false">http://robmarriage.com/?p=217</guid>
		<description><![CDATA[A pretty handy guide to bring with you next time you&#8217;re out beer tasting. Plus it combines two of my favorite things, beer and infographics (not always in that order). What awesome times we live in. Behold&#8230; Source: Pimsleur Approach]]></description>
			<content:encoded><![CDATA[<p></p><p>A pretty handy guide to bring with you next time you&#8217;re out beer tasting. Plus it combines two of my favorite things, beer and infographics (not always in that order).</p>
<p>What awesome times we live in.</p>
<p>Behold&#8230;<br />
<a href="http://www.pimsleurapproach.com/blog/language-learning/learn-the-language-of-beer/"><img src="http://www.pimsleurapproach.com/blog/wp-content/uploads/2010/11/learn-language-of-beer.jpg" alt="Learn the Language of Beer (Infographic)" width="430" height="3850" border="0" /></a><br />
Source: <a href="http://www.pimsleurapproach.com">Pimsleur Approach</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robmarriage.com/learn-the-language-of-beer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

