<?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>Random Rants and Raves of an SEO Coder&#187; Marketing</title>
	<atom:link href="http://www.esoomllub.com/category/marketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.esoomllub.com</link>
	<description>Coding special solutions</description>
	<lastBuildDate>Wed, 17 Feb 2010 17:20:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Google Website Optimizer / SEO?</title>
		<link>http://www.esoomllub.com/2008/07/14/google-website-optimizer-seo/</link>
		<comments>http://www.esoomllub.com/2008/07/14/google-website-optimizer-seo/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 13:29:12 +0000</pubDate>
		<dc:creator>esoomllub</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.esoomllub.com/?p=40</guid>
		<description><![CDATA[I just read a post on the top 3 SEO tools over at NoDoubtMarketing. Their list included an expected keyword  tool and a backlink checker.  Their third tool (actually the first on their list), was Google Website Optimizer.  I don&#8217;t personally view Google website optimizer as an SEO tool. However, it is a great tool [...]]]></description>
			<content:encoded><![CDATA[<p>I just read a post on the <a title="No Doubt Marketing" href="http://www.nodoubtmarketing.com/2008/07/13/the-top-three-seo-tools/" target="_blank">top 3 SEO tools</a> over at NoDoubtMarketing. Their list included an expected keyword  tool and a backlink checker.  Their third tool (actually the first on their list), was Google Website Optimizer.  I don&#8217;t personally view Google website optimizer as an SEO tool. However, it is a great tool for those in to Internet marketing.</p>
<p>In a concise little nutshell <a title="Google website optimizer" href="https://www.google.com/analytics/siteopt/splash?hl=en" target="_blank">Google website optimizer</a> allows for A/B testing of on page elements to determine effectiveness.  It does so via Javascript writing of page elements (thus my assertion that is has not real SEO bearing), and then tracking of conversions.  An awesome tool for Internet marketers given the price (free). If you have not seen it before, and would like to do some testing of your landing pages, give it a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esoomllub.com/2008/07/14/google-website-optimizer-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find the Google Keyword in 2 Lines of Code</title>
		<link>http://www.esoomllub.com/2007/12/03/find-the-google-keyword-in-2-lines-of-code/</link>
		<comments>http://www.esoomllub.com/2007/12/03/find-the-google-keyword-in-2-lines-of-code/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 18:48:53 +0000</pubDate>
		<dc:creator>esoomllub</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.esoomllub.com/2007/12/03/find-the-google-keyword-in-2-lines-of-code/</guid>
		<description><![CDATA[Ok, this is not meant to say I can find the Google keyword search phrase that led the user to your site in less lines of code than anyone else.  It is just meant to say that it is not some giant bulk of code that a non-programmer would find impossible to use. Here [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, this is not meant to say I can find the Google keyword search phrase that led the user to your site in less lines of code than anyone else.  It is just meant to say that it is not some giant bulk of code that a non-programmer would find impossible to use. Here it is:</p>
<pre>   preg_match_all( '/google.com/search?q=([^&amp;]*)/i', $_SERVER['HTTP_REFERER'], $match );
   $keywords = urldecode( $match[1][0] );
</pre>
<p>Your junior PHP programmer should be able to implement this without even trying to decode anything.  Actually, your junior PHP programmer should be able to take this snippet, and with very little effort extend it to all of the major search engines so that you could see not only what the user searched on to find your site, but also which engine they came from.</p>
<p>Now, you might be thinking&#8230; &#8220;whoop-de-do, how does this help me?&#8221;.  Well, ever thought about targetting affiliate links to users on your site?  Your programmer (yes, the junior programmer), should be able to take the keyword, and with little effort drop in a few related Amazon product links.  Or EBay links. Or other large brand affiliate links.  I say large brand, because you will want a program that can return related products for a wide range of search keywords. </p>
<p>Half of the battle to earning affiliate bucks is getting the right offer in front of the user. Well, the half of the battle is largely addressed with this. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.esoomllub.com/2007/12/03/find-the-google-keyword-in-2-lines-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is It Better to be a Programmer or a Marketer?</title>
		<link>http://www.esoomllub.com/2007/08/13/programmer-or-marketer/</link>
		<comments>http://www.esoomllub.com/2007/08/13/programmer-or-marketer/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 21:28:38 +0000</pubDate>
		<dc:creator>esoomllub</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.esoomllub.com/2007/08/13/programmer-or-marketer/</guid>
		<description><![CDATA[I don&#8217;t get this exact question all the time, but I do get a variation of it.  Nearly all my programmer friends wonder why I would give a damn about Internet marketing.  I&#8217;d guess they think it is too touchy/feely, as opposed to the logical world of coding.  I mean, in coding [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t get this exact question all the time, but I do get a variation of it.  Nearly all my programmer friends wonder why I would give a damn about Internet marketing.  I&#8217;d guess they think it is too touchy/feely, as opposed to the logical world of coding.  I mean, in coding nearly everything you do is based on a true versus false comparison.  Marketing is definitely not so cut and dry. I love the mixture of coding and marketing.</p>
<p>So my formal education is in economics.  My best comparison of economics to this question is that economics is very much the attempt to put logical true versus false comparisons on a touchy/feely situation.  The best (neh worst) of both worlds.  And that is exactly why I went the econmics route in college.  I very much like to see things in a true versus false world, but I have a strong yearning for touchy/feely.</p>
<p>Back to the original question though, the answer in my mind then is that I think it is best to be a combination of both marketer and programmer, if you already have the programming skills.  If you are starting from the programming side and can bring yourself to open your mind, build up your marketing skills.  However, if you are on the marketing side&#8230;. find a good programmer.  The Internet is littered with people who tried to leap into programming from another side (ie, designer, marketer, even content writer). I read your code when I get contracted to either add features or fix bugs on the sites you&#8217;ve written. I see all of the security holes in your code (I would not exploit them except in a proof of concept manner, probably).  When you are capturing user data, and as such are assumed to be protecting that data, you need to know what you are doing &#8212; leave that work to the professional coder.</p>
<p>Programmers &#8212; you need to read more, start to learn about <a href="http://www.stuntdubl.com" title="A good starting point" target="_blank">Internet marketing</a>, <a href="http://www.seomoz.org/" title="A good starting point" target="_blank">SEO</a>, and <a href="http://www.askshawncollins.com/" title="A good starting point" target="_blank">monetizing websites</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esoomllub.com/2007/08/13/programmer-or-marketer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
