<?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>kelpdesign &#187; Google</title>
	<atom:link href="http://www.kelpdesign.com/keys/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kelpdesign.com</link>
	<description>We build easy to manage websites.</description>
	<lastBuildDate>Tue, 20 Jul 2010 01:14:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>New Asynchronous Google Analytics tracking code</title>
		<link>http://www.kelpdesign.com/tech-talk/new-asynchronous-google-analytics-tracking-code/</link>
		<comments>http://www.kelpdesign.com/tech-talk/new-asynchronous-google-analytics-tracking-code/#comments</comments>
		<pubDate>Wed, 19 May 2010 02:02:07 +0000</pubDate>
		<dc:creator>rob</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.kelpdesign.com/?p=1130</guid>
		<description><![CDATA[In December 2009 Google released new asynchronous tracking code for Analytics tracking on websites. The benefits of this, from the Google blog are: Faster tracking code load times for your web pages due to improved browser execution Enhanced data collection &#38; accuracy Elimination of tracking errors from dependencies when the JavaScript hasn&#8217;t fully loaded The [...]]]></description>
			<content:encoded><![CDATA[<p>In December 2009 Google released new asynchronous tracking code for Analytics tracking on websites. The benefits of this, from the Google blog are:</p>
<ul>
<li>Faster tracking code load times for your web pages due to improved browser execution</li>
<li>Enhanced data collection &amp; accuracy</li>
<li>Elimination of tracking errors from dependencies when the JavaScript hasn&#8217;t fully loaded</li>
</ul>
<p>The way the new asynchronous code works is that most browsers will load the asynchronous tracking code in parallel with other scripts on the page, thus reducing the web page load time.</p>
<p><a href="http://code.google.com/apis/analytics/docs/tracking/asyncTracking.html" target="_blank">The new code can be found here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/new-asynchronous-google-analytics-tracking-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto track outgoing links with Google Analytics using jQuery</title>
		<link>http://www.kelpdesign.com/tech-talk/howto-track-outgoing-links-with-google-analytics/</link>
		<comments>http://www.kelpdesign.com/tech-talk/howto-track-outgoing-links-with-google-analytics/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:28:58 +0000</pubDate>
		<dc:creator>tim</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=319</guid>
		<description><![CDATA[Simply include these lines and the jQuery library in your document. $&#40;document&#41;.ready&#40;function&#40;&#41; &#123; $&#40;'a[href^=http]:not(&#34;[href*=://' + document.domain + ']&#34;)'&#41;.click&#40;function&#40;&#41; &#123; pageTracker._trackPageview&#40;'/out/'+$&#40;this&#41;.attr&#40;&#34;href&#34;&#41;&#41;; &#125;&#41;; &#125;&#41;; (please indent them!) Cheers]]></description>
			<content:encoded><![CDATA[<p>Simply include these lines and the <a href="http://jquery.com/">jQuery</a> library in your document.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[href^=http]:not(&quot;[href*=://'</span> <span style="color: #339933;">+</span> document.<span style="color: #660066;">domain</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">']&quot;)'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
pageTracker._trackPageview<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'/out/'</span><span style="color: #339933;">+</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;href&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>(please indent them!)</p>
<p>Cheers</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/howto-track-outgoing-links-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wolfram vs Google?</title>
		<link>http://www.kelpdesign.com/tech-talk/wolfram-vs-google/</link>
		<comments>http://www.kelpdesign.com/tech-talk/wolfram-vs-google/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:15:35 +0000</pubDate>
		<dc:creator>Lexi</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=98</guid>
		<description><![CDATA[There&#8217;s a brand new shiny search engine due to be released this May, which many have tipped to rival Google. The idea behind the idea The Wolfram blog post The Quest for Computable Knowledge: A Longer View cites the idea of Gottfried Leibniz, a German philosopher and mathematician; &#8220;He really had pretty much the whole [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wolframalpha.com" target="_blank"><img class="alignnone size-full wp-image-100" title="wolframalpha" src="http://kelpdesign.com/wp-content/uploads/2009/05/wolframalpha.jpg" alt="wolframalpha" width="560" height="130" /></a></p>
<p>There&#8217;s a brand new shiny search engine due to be released this May, which many have tipped to rival Google.<br />
<span id="more-98"></span><br />
<strong>The idea behind the idea</strong></p>
<p>The Wolfram blog post  <a href="http://blog.wolframalpha.com/2009/04/29/the-quest-for-computable-knowledge-a-longer-view/" target="_blank">The Quest for Computable Knowledge: A Longer View</a> cites the idea of Gottfried Leibniz, a German philosopher and mathematician; <em>&#8220;He really had pretty much the whole idea of Wolfram|Alpha—300 years ago. At the end of the 1600s he came to believe that somehow there must be a way to mechanize the resolution of all human arguments&#8221;</em>. Simply said, there is a way to rationalise our discourse, or a computer can find the answers to our questions. </p>
<p><strong>Head to head</strong></p>
<p><a href="http://www.technologyreview.com/web/22585/page1/" target="_blank">Technology Review</a> provide a good blow by blow account of the differences between the two search engines in their article <a href="http://www.technologyreview.com/web/22585/page1/" target="_blank">Wolfram Alpha and Google Face Off</a>, where they test various search terms and analyse the results. Their finding was that <em>&#8220;on many common questions for which there is no obvious data element, you will not get much help.&#8221;</em></p>
<p><strong>Fair rivals?</strong></p>
<p>At present, it reads as though Wolfram|Alfa is not quite there yet. A closer description of what it is currently could be that of <a href="http://searchengineland.com/wolfram-alpha-fact-engine-18431" target="_blank">Search Engine Land</a>who brand it a &#8220;Fact Engine&#8221;. Wolfram themselves describe it as a <a href="http://blog.wolframalpha.com/2009/05/13/stephen-wolframs-introduction-to-wolframalpha/" target="_blank">&#8220;computational knowledge engine&#8221;</a>, which suggests they are looking to take it a step further than what we think of today as a &#8220;search engine&#8221;. </p>
<p>This is not to say that things won&#8217;t improve in the future; <em>&#8220;Building the ultimate computational knowledge engine is a highly ambitious and long-term project. The Wolfram|Alpha that you will get to start exploring next week is really just the beginning&#8221;</em>. </p>
<p>For more information check out the <a href="http://blog.wolframalpha.com/" target="_blank">Wolfram blog</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/wolfram-vs-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to get from A to B using Google maps</title>
		<link>http://www.kelpdesign.com/tech-talk/how-to-get-from-a-to-b-using-google-maps/</link>
		<comments>http://www.kelpdesign.com/tech-talk/how-to-get-from-a-to-b-using-google-maps/#comments</comments>
		<pubDate>Wed, 13 May 2009 22:05:54 +0000</pubDate>
		<dc:creator>Lexi</dc:creator>
				<category><![CDATA[Tech Talk]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://kelpdesign.com/?p=25</guid>
		<description><![CDATA[Have you every been stuck for directions or unsure about what roads to take? It&#8217;s a common problem that people (in particular men) hate to stop to ask for directions. Google maps can be a great tool to alleviate this problem (and guys, you can even do this before you get on the road; a [...]]]></description>
			<content:encoded><![CDATA[<p>Have you every been stuck for directions or unsure about what roads to take? It&#8217;s a common problem that people (in particular men) hate to stop to ask for directions. <a href="http://maps.google.co.nz" target="_blank">Google maps</a> can be a great tool to alleviate this problem (and guys, you can even do this before you get on the road; a great way to impress the ladies).<br />
<span id="more-25"></span></p>
<p><strong>Long distance:</strong></p>
<p>My cousin recently had to drive from Queenstown to Christchurch on her own, but couldn&#8217;t quite remember how to get there. Before she left I suggested she have a quick look on <a href="http://maps.google.co.nz" target="_blank">Google Maps</a> (http://maps.google.com).</p>
<p style="text-align: center;"><img class="size-full wp-image-41 aligncenter" title="google-directions" src="http://kelpdesign.com/wp-content/uploads/2009/05/google-directions.jpg" alt="google-directions" width="372" height="223" /></p>
<ul>
<li>Step 1: Go to <a href="http://maps.google.co.nz" target="_blank">http://maps.google.com</a> and click on &#8220;Get Directions&#8221;</li>
<li>Step 2: Enter your location, and then enter your destination in the &#8220;A&#8221; &amp; &#8220;B&#8221; boxes</li>
<li>Step 3: Click &#8220;Get directions&#8221; to search the map</li>
</ul>
<p><strong><em>Tip:</em></strong> If you&#8217;re going to a specific address you can type this in too e.g. &#8220;Crowne Plaza, Christchurch, New Zealand&#8221; &#8211; give it a try!</p>
<p style="text-align: center;"><a href="http://kelpdesign.com/wp-content/uploads/2009/05/google-result.jpg" target="_blank"><br />
<img class="size-medium wp-image-48 aligncenter" title="google-result" src="http://kelpdesign.com/wp-content/uploads/2009/05/google-result-300x208.jpg" alt="google-result" width="300" height="208" /></a><br />
The result (click to enlarge) </p>
<p><strong>Short distance:</strong></p>
<p>&#8220;Ahh&#8221; she said, &#8220;I hate Christchurch&#8217;s one way road system&#8221;. No problem. <a href="http://maps.google.co.nz" target="_blank">Google Maps</a> will take this into account. If you zoom in on your destination using the &#8220;+ -&#8221; buttons you can see the road directions.</p>
<p style="text-align: center;"><a href="http://kelpdesign.com/wp-content/uploads/2009/05/google-detail.jpg" target="_blank"><br />
<img class="size-medium wp-image-47 aligncenter" title="google-detail" src="http://kelpdesign.com/wp-content/uploads/2009/05/google-detail-300x241.jpg" alt="google-detail" width="300" height="241" /></a><br />The result (click to enlarge)</p>
<p><strong>Other uses:</strong></p>
<ul>
<li>A great tool for getting from the airport to your hotel, when you&#8217;re in a different country</li>
<li>It&#8217;s great for judging distances &#8211; if you&#8217;re not sure whether you should walk or take a car</li>
<li>Avoiding toll roads &#8211; click on &#8220;show options&#8221;</li>
</ul>
<p>Where are you going? How has this helped? Any other tips or ideas? Please leave your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kelpdesign.com/tech-talk/how-to-get-from-a-to-b-using-google-maps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
