<?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>Grape Thinking &#187; Jake</title>
	<atom:link href="http://grapethinking.com/author/jake/feed" rel="self" type="application/rss+xml" />
	<link>http://grapethinking.com</link>
	<description>Fusing Mind with Vine</description>
	<lastBuildDate>Mon, 30 Apr 2012 19:52:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Enable Curl on Xampp</title>
		<link>http://grapethinking.com/enable-curl-on-xampp</link>
		<comments>http://grapethinking.com/enable-curl-on-xampp#comments</comments>
		<pubDate>Thu, 16 Apr 2009 02:17:48 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=2085</guid>
		<description><![CDATA[I generally do my development work on a local windows machine with the latest version of Xampp installed. I was recently toying around with the tayst twitter feed, and was having trouble using curl with xampp. The problem?.. curl was not enabled by default in Xampp.  You receive the following <a href="http://grapethinking.com/enable-curl-on-xampp" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>I generally do my <a href="http://grapethinking.com/tag/development" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with development">development</a> work on a local windows machine with the latest version of <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">Xampp</a> installed. I was recently toying around with the <a href="http://www.tayst.com/twitter/" target="_blank">tayst twitter feed,</a> and was having trouble using curl with <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>.</p>
<p>The problem?.. curl was not enabled by default in <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">Xampp</a>.  You receive the following error:</p>
<ul>
<li> <strong>Fatal error</strong>:  Call to undefined function  curl_init() in <strong>C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\htdocs\tayst\<a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">twitter</a>\index.php</strong> on line <strong>4</strong></li>
</ul>
<p>The solution?  These simple steps!<span id="more-2085"></span></p>
<p><strong><span style="text-decoration: underline;">Step 1.</span></strong> Stop all <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">Xampp</a> services: Apache, Mysql, Filezilla, and Mercury.</p>
<p><strong><span style="text-decoration: underline;">Step 2.</span></strong> Open the following files in your editor of choice. (Replace C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a> with the location of your <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a> install)</p>
<ul>
<li>C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\apache\bin\php.ini</li>
<li> C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php.ini</li>
<li>C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php5.ini</li>
<li> C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php4\php.ini</li>
<li> C:\<a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a>\php\php4\php4.ini</li>
</ul>
<p><strong><span style="text-decoration: underline;">Step 3.</span></strong> Find the following code in each of the files, and remove the ; (semicolon) at the beginning of the line. You will most likely see it at line 546 or line 582.</p>
<ul>
<li>old line &#8211; <strong><em>;extension=php_curl.dll</em></strong></li>
<li>new line &#8211; <em><strong>extension=php_curl.dll</strong></em></li>
</ul>
<p><strong><span style="text-decoration: underline;">Step 4.</span></strong> Start your apache services.</p>
<p>See what an easy fix to curl on <a href="http://grapethinking.com/tag/xampp" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with xampp">xampp</a> by simply removing a few semicolons.  Happy Coding!</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/getting-rails-to-work-on-a-windows-machine-running-xampp" title="Getting Rails to Work on a Windows Machine Running Xampp (March 31, 2008)">Getting Rails to Work on a Windows Machine Running Xampp</a></li>
	<li><a href="http://grapethinking.com/what" title="What? (April 2, 2009)">What?</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/enable-curl-on-xampp/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Amazing Sand Art</title>
		<link>http://grapethinking.com/amazing-sand-art</link>
		<comments>http://grapethinking.com/amazing-sand-art#comments</comments>
		<pubDate>Mon, 13 Apr 2009 18:58:29 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[painting]]></category>
		<category><![CDATA[sand]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visual]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=2056</guid>
		<description><![CDATA[I love it when I discover a new art online.  Historically, this has come in the form of finding incredible new music, stumbling upon a battleship made of toothpicks., or just finding what may be an intriguing book. Today, I found this video by Ilana Yahav demonstrating her work &#8211; &#8220;Let&#8217;s <a href="http://grapethinking.com/amazing-sand-art" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>I love it when I discover a new <a href="http://grapethinking.com/tag/art" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Art">art</a> online.  Historically, this has come in the form of finding <a href="http://www.grapethinking.com/youtube-musical-performances" target="_blank">incredible new music</a>, stumbling upon a <a href="http://www.youtube.com/watch?v=0ODPEavGbUA" target="_blank">battleship made of toothpicks</a>., or just finding what may be <a href="http://www.seacoastonline.com/articles/20090412-ENTERTAIN-904120305" target="_blank">an intriguing book</a>.</p>
<p>Today, I found this video by Ilana Yahav demonstrating her work &#8211; &#8220;Let&#8217;s Get Together&#8221;.   This is a dynamic &#8220;painting&#8221; using sand as a medium.  Reminds me of my creative &#8220;struggles&#8221; with the etch-a-sketch when I was a kid.  The coolest thing about this, is that unlike painting, or drawing, this is a very eco-friendly / sustainable <a href="http://grapethinking.com/tag/art" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Art">art</a> form.</p>
<p><span style="color: #551a8b; text-decoration: underline;"><a href="http://www.youtube.com/watch?v=o2pLHLOnG6I"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/o2pLHLOnG6I" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/o2pLHLOnG6I"></embed></object></a></span></p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/youtube-musical-performances" title="Youtube musical performances (December 7, 2008)">Youtube musical performances</a></li>
	<li><a href="http://grapethinking.com/visit-to-vinci" title="Visit to Vinci (October 5, 2009)">Visit to Vinci</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/amazing-sand-art/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Disable Google Search Wiki</title>
		<link>http://grapethinking.com/disable-google-search-wiki</link>
		<comments>http://grapethinking.com/disable-google-search-wiki#comments</comments>
		<pubDate>Sat, 28 Mar 2009 05:36:41 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[information age]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Power station]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=1906</guid>
		<description><![CDATA[To disable google search wiki, just add the following to the end of the url after doing a search: &#38;pws=0 You can also sign out of google&#8217;s personal web search program in your account settings.   Even if you do not use the search wiki to vote results up or <a href="http://grapethinking.com/disable-google-search-wiki" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>To disable <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search wiki, just add the following to the end of the url after doing a search:</p>
<blockquote><p>&amp;pws=0</p></blockquote>
<p>You can also sign out of <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a>&#8217;s personal web search program in your account settings.   Even if you do not use the search wiki to vote results up or down, <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> does appear to be trending and custom tailoring results based upon your traffic patterns.  In doing SEO, it is important to know that the results you are looking at are not biased.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/wine-proof-pants" title="Wine Proof Pants (August 9, 2008)">Wine Proof Pants</a></li>
	<li><a href="http://grapethinking.com/wine-20" title="Wine 2.0 (December 23, 2006)">Wine 2.0</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/disable-google-search-wiki/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize The WordPress Contact Form 7 Plugin</title>
		<link>http://grapethinking.com/wordpress-contact-form-7-plugin-landing-pag</link>
		<comments>http://grapethinking.com/wordpress-contact-form-7-plugin-landing-pag#comments</comments>
		<pubDate>Fri, 13 Mar 2009 17:35:27 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[contact form]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=2032</guid>
		<description><![CDATA[I ran into an interesting problem the other day.    I&#8217;m a big fan of the WordPress Plugin Contact Form 7.  I&#8217;ve used it on many of the wordpress sites I&#8217;ve developed, and appreciate the plugin for its simple integration, nice admin interface, and the pretty ajax functionality. Unfortunately, I <a href="http://grapethinking.com/wordpress-contact-form-7-plugin-landing-pag" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>I ran into an interesting problem the other day.    I&#8217;m a big fan of the <a href="http://grapethinking.com/tag/wordpress" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with wordpress">WordPress</a> <a href="http://grapethinking.com/tag/plugin" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with plugin">Plugin</a> <a href="http://wordpress.org/extend/plugins/contact-form-7/" target="_blank">Contact Form 7</a>.  I&#8217;ve used it on many of the <a href="http://grapethinking.com/tag/wordpress" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with wordpress">wordpress</a> sites I&#8217;ve developed, and appreciate the <a href="http://grapethinking.com/tag/plugin" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with plugin">plugin</a> for its simple integration, nice admin interface, and the pretty ajax functionality.</p>
<p>Unfortunately, I recently discovered that the <a href="http://grapethinking.com/tag/plugin" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with plugin">plugin</a> does not allow you to specify custom landing page urls, or Thank You pages for the contact form.  Some of you may wonder why I care about reloading the page to say thank you vs. the sleak Ajax popup confirming that your message has been delivered.  The answer: Because I&#8217;m trying to measure performance of the contact form within my <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">Google</a> Adwords CPC account.<span id="more-2032"></span></p>
<p>You can use javascript to fire the tracking code to create a virtual page view in analytics, but you cannot properly implement the conversion tracking from Adwords without loading a separate page.    As you can imagine, I was slightly frustrated until I discovered a very quick and simple solution.</p>
<p>Important.. This solution only works if you have/want a designated landing page for all forms you are using with Contact Form 7.</p>
<p>Step 1: Browse to wp-content/plugins/contact-form-7</p>
<p>Step 2: Open the contact-form-7.js file in your favorite text editor.</p>
<p>Step 3: Look for the function:  wpcf7ProcessJson (line 63)</p>
<p>Step 4: Look for the if statement: if (1 == data.mailSent)  (line 90)</p>
<p>Step 5: Insert this line after the jquery (line 92) &#8211; location.href=&#8221;http://www.yourdomain.com/yourthankyoupage&#8221;;</p>
<p>Step 6: Save the file to your server, and test out the form.<br />
Ideally, the author of this <a href="http://grapethinking.com/tag/plugin" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with plugin">plugin</a> will make a change in the next release that allows a custom variable (url) to be stored for each contact form.  But until then.. here&#8217;s your fix !!!</p>
<p><script type="text/javascript">// < ![CDATA[
function dts(id) {var d  = document.getElementById(id);var as = d.getElementsByTagName('a');var o  = "</p>
<select style='margin-top:5px;' name='"+id+"Options' ";o += "onChange='location.href = this[this.selectedIndex].value'>";o += "
<option selected>--SELECT ONE--</option>
<p>"; for(var i=0;i<as .length;i++) {var a   = as[i];url = a.href; txt = "."+a.title;o  += "
<option value='"+url+"'>"+txt+"";} o += "</as></p>
<p>";d.innerHTML = "</p>
<div style='text-align:center;font-family:verdana;border-width:1px;border-color:#ccc;border-style:solid;width:150px;font-size:11px;background:#eee;padding:5px;'><b>File Extension Help</b>
"+o+"</div>
<p>";}
// ]]&gt;</script></p>
<div id="extensions">For .p7m files go to: <a title="p7m" href="http://www.fileextensionp7m.com">http://www.fileextensionp7m.com</a>.<br />
For .kml files go to: <a title="kml" href="http://www.fileextensionkml.net">http://www.fileextensionkml.net</a>.<br />
For .3g2 files go to: <a title="3g2" href="http://www.fileextension3g2.net">http://www.fileextension3g2.net</a>.<br />
For .itl files go to: <a title="itl" href="http://www.fileextensionitl.org">http://www.fileextensionitl.org</a>.<br />
For .bup files go to: <a title="bup" href="http://www.ifileextensionbup.com">http://www.ifileextensionbup.com</a>.<br />
For .svg files go to: <a title="svg" href="http://www.fileextensionsvg.net">http://www.fileextensionsvg.net</a>.<br />
For .part files go to: <a title="part" href="http://www.fileextensionpart.net">http://www.fileextensionpart.net</a>.<br />
For .pdf files go to: <a title="pdf" href="http://www.ifileextensionpdf.com">http://www.ifileextensionpdf.com</a>.<br />
For .jnlp files go to: <a title="jnlp" href="http://www.fileextensionjnlp.net">http://www.fileextensionjnlp.net</a>.<br />
For .ithmb files go to: <a title="ithmb" href="http://www.fileextensionithmb.com">http://www.fileextensionithmb.com</a>.</div>
<p><script type="text/javascript">// < ![CDATA[
dts('extensions');
// ]]&gt;</script></p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/popularity-contest-plugin-for-wordpress" title="Popularity Contest Plugin for WordPress (July 8, 2008)">Popularity Contest Plugin for WordPress</a></li>
	<li><a href="http://grapethinking.com/zemanta-upgrade" title="Zemanta Upgrade (February 18, 2009)">Zemanta Upgrade</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/wordpress-contact-form-7-plugin-landing-pag/feed</wfw:commentRss>
		<slash:comments>138</slash:comments>
		</item>
		<item>
		<title>Disabling Google Search Wiki</title>
		<link>http://grapethinking.com/disabling-google-search-wiki</link>
		<comments>http://grapethinking.com/disabling-google-search-wiki#comments</comments>
		<pubDate>Mon, 02 Feb 2009 20:22:28 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[techy]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=1907</guid>
		<description><![CDATA[QUICK ANSWER: add  &#38;hl=all   at the end of your google query url. For those of you out there who are Search Engine marketers, you may have been having some frustrations lately with the google search engine wiki.   Typically, I keep several browsers running at once so I can be logged <a href="http://grapethinking.com/disabling-google-search-wiki" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>QUICK ANSWER:<br />
add  &amp;hl=all   at the end of your <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> query url.</p>
<p>For those of you out there who are Search Engine marketers, you may have been having some frustrations lately with the <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search engine wiki.   Typically, I keep several browsers running at once so I can be logged in to multiple <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> accounts (personal, business, client, adwords, analytics, etc..etc..).. so having to log out to see <a href="http://grapethinking.com/tag/natural" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with natural">natural</a> results has been quite frustrating.</p>
<p>What I have found really frustrating is that every once in a while, a stray mouse click has a detrimental effect on the virgin <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> results that I am looking at by clicking on one of the <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search wiki buttons, and &#8220;BAM&#8221; a result disappears to the bottom of the page.  This gets especially frustrating when I&#8217;m looking through the SERPS and I am not sure if the results I am looking at reflect those of the general population&#8230; or our clients.  While I&#8217;m excited to see <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search wiki, and I expect that at some point it will effect <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search rankings, the inability to disable it seems appalling for usability.<span id="more-1907"></span></p>
<p>In a desperate search for an answer it was found that adding &#8220;&amp;hl=all&#8221; (without the quotes) to the end of the URL of your <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search will disable the search wiki during your browser session.  This means that if you close your browser and open it again, the custom <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> search engine wiki tool returns.</p>
<p>A pain in the ass to do this evertime you want to turn it off.. yes<br />
Confusing as to why <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> doesn&#8217;t have a link to let you do this.. yes<br />
A possibility this may do something in addition to turning off the wiki.. yes<br />
A way to turn it back on without closing your browser&#8230; yes &#8230;&#8221;&amp;hl=0&#8243;</p>
<p>I hope you find this helpful.  If you have any idea as to what other <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> options this may have an affect on, please let me know.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/search-engine-optimization" title="Search Engine Optimization (September 10, 2008)">Search Engine Optimization</a></li>
	<li><a href="http://grapethinking.com/mozilla-vs-igoogle-which-will-be-our-personal-agent" title="Mozilla vs. iGoogle &#8211; Which will be our personal agent? (May 10, 2008)">Mozilla vs. iGoogle &#8211; Which will be our personal agent?</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/disabling-google-search-wiki/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shopping Lists Made Easy</title>
		<link>http://grapethinking.com/shopping-lists-made-easy</link>
		<comments>http://grapethinking.com/shopping-lists-made-easy#comments</comments>
		<pubDate>Sun, 01 Feb 2009 17:55:16 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=2379</guid>
		<description><![CDATA[I was trying to find a way to keep tracking of a shopping list for all of my grocery shopping, and stumbled upon this facebook page..   My girlfriend and I have been eating a lot of healthy foods, and I&#8217;ve found the need to have a list so I <a href="http://grapethinking.com/shopping-lists-made-easy" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>I was trying to find a way to keep tracking of a <a href="http://list2shop.com/shopping/" target="_blank">shopping list</a> for all of my grocery shopping, and stumbled upon this <a href="http://www.facebook.com/pages/List2Shopcom/104914421584?v=wall" target="_blank">facebook page</a>..   My girlfriend and I have been eating a lot of healthy foods, and I&#8217;ve found the need to have a list so I can remember things like &#8220;<a href="http://grapethinking.com/tag/organic" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with organic">Organic</a> Brown Rice Miso Paste&#8221; and &#8220;<a href="http://grapethinking.com/tag/organic" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with organic">organic</a> nutritional yeast&#8221;&#8230; which by the way taste much better than they sound!</p>
<p>I ended up using a couple of different services to try to manage our grocery <a href="http://list2shop.com/shopping/" target="_blank">grocery shopping lists</a>, especially since prices are really varied and we have to shop at Whole Foods, Weaver Street Market, and Trader Joes, depending upon which items we want to get&#8230;  FYI Trader Joes has the best prices on Raw <a href="http://grapethinking.com/tag/organic" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with organic">Organic</a> Crunchy Almond Butter ($5 vs. everyone elses $11).   I wasn&#8217;t happy with the functionality in many of the services, but found that List2Shop was a pretty good service, as they allow you to organize your shopping lists by the store that you want to shop.</p>
<p>You can easily create a shopping list and print without signing up, but if you create an account, you can save your lists, and if you have an iPhone, login to your account and view the list while you are in the store.  What type of shopping list services do you use, and why do you think it would be better than List2Shop?</p>
]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/shopping-lists-made-easy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Reasons We Should Save The Environment</title>
		<link>http://grapethinking.com/5-reasons-we-should-save-the-environment</link>
		<comments>http://grapethinking.com/5-reasons-we-should-save-the-environment#comments</comments>
		<pubDate>Fri, 23 Jan 2009 06:57:49 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Environment]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Passion]]></category>
		<category><![CDATA[Sustainable]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[extinction]]></category>
		<category><![CDATA[global warming]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[save]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=1799</guid>
		<description><![CDATA[I&#8217;m not going to give you the old, if we don&#8217;t save the environment, we&#8217;re just signing a death wish for our [great]* grandchildren. I&#8217;m just going to list out a couple of reasons I give people during conversations on why we should save the environment.. here they are: &#160; <a href="http://grapethinking.com/5-reasons-we-should-save-the-environment" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<div>I&#8217;m not going to give you the old, if we don&#8217;t save the <a href="http://grapethinking.com/tag/environment" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Environment">environment</a>, we&#8217;re just signing a death wish for our [great]* grandchildren. I&#8217;m just going to list out a couple of reasons I give people during conversations on why we should save the <a href="http://grapethinking.com/tag/environment" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Environment">environment</a>.. here they are:</div>
<p>&nbsp;</p>
<ol>
<li>We would be <strong>keeping the bears happy</strong>&#8230;  I mean seriously.. look at this fellow.  He&#8217;s enjoying a little splash in the water without a care in the world.   If we don&#8217;t make an effort to save the <a href="http://grapethinking.com/tag/environment" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Environment">environment</a>, this is going to be a grumpy bear without any place to go other than your back yard.<br />
&nbsp;<br />
<img class="size-medium wp-image-1800 aligncenter" title="happy-bear" src="../wp-content/uploads/2009/01/happy-bear-300x239.jpg" alt="" width="151" height="121" /><br />
<span id="more-1799"></span></li>
<li><strong>Prevent extinction</strong> &#8211; I&#8217;m constantly reading about how animals are going extinct.  This isn&#8217;t animal gone from the zoo, this is animal species GONE FOREVER!!   If you <a href="http://www.iucnredlist.org/" target="_blank">do a search at iucnredlist.org</a>, you will see that in 2008, they listed 590 species as critically endangered, many with population trends continuing to decrease, and 8 species that were no longer in existance in the wild.  This article about the <a href="http://www.sciencedaily.com/releases/2008/06/080608074828.htm" target="_blank">Monk Seal Extinction</a> discusses the proof that humans are the cause of many of these extinctions.<br />
&nbsp;<br />
<a href="http://www.grapethinking.com/wp-content/uploads/2009/01/exinct.jpg"><img class="aligncenter size-thumbnail wp-image-3328" title="exinct" src="http://www.grapethinking.com/wp-content/uploads/2009/01/exinct-150x112.jpg" alt="" width="150" height="112" /></a></li>
<li><strong>Keep the planet from melting</strong> - The proof keeps stacking up that the planet is warming.  Regardless of whether this is part of a <a href="http://grapethinking.com/tag/natural" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with natural">natural</a> cycle or not, the truth is that it is most definitely happening, and that we do contribute in some part.  If we all take some action to reduce our carbon footprint, and it makes the smallest difference.. won&#8217;t that mean something?<br />
&nbsp;<br />
<img class="size-medium wp-image-1801 aligncenter" title="melting-earth-rl2" src="../wp-content/uploads/2009/01/melting-earth-rl2-300x294.jpg" alt="" width="146" height="144" /></li>
<li><strong>Save the Rainfo</strong><strong>rest</strong> &#8211; Deforestation is a huge problem.. Apparently, such a large percentage of the world is in need of <a href="http://grapethinking.com/tag/food" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Food">food</a>, that we continue to bulldoze the Rainforest to make cow pastures and corn fields&#8230; apparently noone pays attention to the fact that we grow all of this corn&#8230; TO FEED THE COWS.. maybe we should all just eat corn?   I found this pic which also explains it well..<br />
&nbsp;<br />
<a href="../wp-content/uploads/2009/01/wwf_tarzan_save_rain_forest.jpg"><img class="size-full wp-image-1802 aligncenter" title="wwf_tarzan_save_rain_forest" src="../wp-content/uploads/2009/01/wwf_tarzan_save_rain_forest.jpg" alt="" width="210" height="149" /></a></li>
<li><strong>Make Al Gore happy</strong> &#8211; Just look at this guy..  do you want his face  to get stuck like that?   Well, then do something about it.  The only  way he&#8217;s going to be happy is if he knows everyone is trying to do  something to help our <a href="http://grapethinking.com/tag/environment" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Environment">environment</a>.</li>
<p style="text-align: center;"><a href="../wp-content/uploads/2009/01/759-al-gore-fire.jpg"><img class="aligncenter" title="759-al-gore-fire" src="../wp-content/uploads/2009/01/759-al-gore-fire.jpg" alt="" width="187" height="137" /></a></p>
</ol>
<div>If you don&#8217;t feel incredibly motivated to make 1 simple change to your <a href="http://grapethinking.com/tag/lifestyle" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Lifestyle">lifestyle</a> to better the <a href="http://grapethinking.com/tag/environment" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Environment">environment</a>, then you better have a good reason!!</div>
<div></div>
<p></p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/wine-proof-pants" title="Wine Proof Pants (August 9, 2008)">Wine Proof Pants</a></li>
	<li><a href="http://grapethinking.com/wine-goes-green" title="Wine Goes Green (June 18, 2007)">Wine Goes Green</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/5-reasons-we-should-save-the-environment/feed</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>Open Request to Friendseat</title>
		<link>http://grapethinking.com/open-request-to-friendseat</link>
		<comments>http://grapethinking.com/open-request-to-friendseat#comments</comments>
		<pubDate>Thu, 15 Jan 2009 16:45:35 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[friendseat]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[thief]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=1745</guid>
		<description><![CDATA[I have a concern I would like to discuss with you. First.. Click Here. You have built an RSS parser that takes the feeds from various blogs, takes the first paragraph of content, strips out the html, and places it on your site. On this page with the scraped content, <a href="http://grapethinking.com/open-request-to-friendseat" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<div><a href="http://www.grapethinking.com/wp-content/uploads/2009/01/friendseat.jpg"><img class="size-medium wp-image-1746 alignleft" title="friendseat" src="http://www.grapethinking.com/wp-content/uploads/2009/01/friendseat-300x180.jpg" alt="Friendseat Scraping Content" width="300" height="180" /></a>I have a concern I would like to discuss with you.  </div>
<div>
<p>
<a href="http://friendseat.com/blog/article/7993/Vinowho-does-Vinowhat" target="_blank">First.. Click Here.</a>
</p>
</div>
<div>
<p>You have built an RSS parser that takes the feeds from various blogs, takes the first paragraph of content, strips out the html, and places it on your site. On this page with the scraped content, you have placed nofollow links back to the bloggers site, and have placed <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">google</a> adsense ads.</p>
</div>
<div>
<p>Long story short.. you&#8217;re making money off of bloggers content, and not even providing the value of a link back to their site.  You have not asked permission to place this content on your site, and in some cases, you don&#8217;t even credit the blog  (e.g. when the feed is through feedburner, you say provided by feedburner).</p>
</div>
<div>
<p>I do not have any problem with you using Grapethinking&#8217;s content on your site, and I am flattered that you would have our content placed there.   I just ask in return that you remove the nofollow tags, and put the grapethinking logo on the page.  It would also be nice if our site showed up in the blog search since you are scraping our content.</p>
</div>
<div>
<p>As you can tell in the link at the top of this post.. this isn&#8217;t the first time we&#8217;ve experienced this problem, and unfortunately, with many sites and their webmasters, ethics are not innate, and must be enforced.  Please resolve this issue&#8230;.. Thanks!</p>
</div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/search-engine-optimization" title="Search Engine Optimization (September 10, 2008)">Search Engine Optimization</a></li>
	<li><a href="http://grapethinking.com/obama-more-popular-than-beer-and-wine" title="Obama: More Popular than Beer and Wine (August 20, 2008)">Obama: More Popular than Beer and Wine</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/open-request-to-friendseat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If It Ain&#8217;t Real, Spit Out Your Meal</title>
		<link>http://grapethinking.com/if-it-aint-real-spit-out-your-meal</link>
		<comments>http://grapethinking.com/if-it-aint-real-spit-out-your-meal#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:00:19 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Environment]]></category>
		<category><![CDATA[holistic]]></category>
		<category><![CDATA[natural]]></category>
		<category><![CDATA[nature]]></category>
		<category><![CDATA[organic]]></category>

		<guid isPermaLink="false">http://grapethinking.com/?p=683</guid>
		<description><![CDATA[If you are what you eat&#8230; what are you?   Yellow #5, Xanthum Gum, High Fructose Corn Syrup, Dextrose, Sorbic Acid?? We&#8217;ve been following the organic movement across the world, as consumers begin to understand the level of toxins, chemicals, pesticieds, preservatives, etc.. that are injected, grown, sprayed, or bred <a href="http://grapethinking.com/if-it-aint-real-spit-out-your-meal" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p>If you are what you eat&#8230; what are you?   Yellow #5, Xanthum Gum, High Fructose Corn Syrup, Dextrose, Sorbic Acid??</p>
<p>We&#8217;ve been following the <a href="http://grapethinking.com/tag/organic" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with organic">organic</a> movement across the world, as consumers begin to understand the level of toxins, chemicals, pesticieds, preservatives, etc.. that are injected, grown, sprayed, or bred into the things we eat and drink.  In an effort to encourage  you to more closely scrutinize those items that you put in your body, we present &#8220;The Mouth Revolution&#8221; by <a title="Free Range Studios" href="http://www.freerangestudios.com/" target="_blank">Free Range Studios</a>.. the same group that brought us, <a title="Story of Stuff" href="http://storyofstuff.com" target="_blank">&#8220;The Story of Stuff&#8221;</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/fpiI9fHWUpI" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/fpiI9fHWUpI"></embed></object></p>
<p><a href="http://www.youtube.com/watch?v=fpiI9fHWUpI">Mouth Revolution</a> hones in on the fact that we need to be more considerate of what we put into our bodies, and need to promote a culture of health within our communities.  By being more conscious of those items that are harmful.. The &#8220;Mouthifesto&#8221; or &#8220;Declaration of Indegestion&#8221; is a great starting point for understanding those items you should always avoid.  <span id="more-683"></span></p>
<p>In all of its humor, we really respect the team at Free Range Studios for their creative efforts in raising awareness about these major issues that we must all face in order to better our race.  We share a similar passion for connective todays fast paced lifestyles with an understanding of our responsibilities to the planet.  </p>
<p>In case you missed it last time, you can read our post on <a title="The Story of Stuff" href="http://grapethinking.com/what-is-going-on-in-the-world" target="_self">&#8220;The Story of Stuff&#8221;</a> here.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/wine-proof-pants" title="Wine Proof Pants (August 9, 2008)">Wine Proof Pants</a></li>
	<li><a href="http://grapethinking.com/millennials-prefer-personable-eco-friendly-brands" title="Millennials Prefer Personable Eco-Friendly Brands (July 21, 2008)">Millennials Prefer Personable Eco-Friendly Brands</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/if-it-aint-real-spit-out-your-meal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you Linkbuilding for SEO?</title>
		<link>http://grapethinking.com/are-you-linkbuilding-for-seo</link>
		<comments>http://grapethinking.com/are-you-linkbuilding-for-seo#comments</comments>
		<pubDate>Thu, 11 Sep 2008 00:42:41 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[bloggers]]></category>
		<category><![CDATA[business exposure]]></category>
		<category><![CDATA[cross promotion]]></category>
		<category><![CDATA[deep linking]]></category>
		<category><![CDATA[directory submissions]]></category>
		<category><![CDATA[e zine]]></category>
		<category><![CDATA[legitimate comments]]></category>
		<category><![CDATA[marketers]]></category>
		<category><![CDATA[quality directory]]></category>
		<category><![CDATA[red flags]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[social bookmarking sites]]></category>
		<category><![CDATA[spammers]]></category>
		<category><![CDATA[tactic]]></category>
		<category><![CDATA[web marketer]]></category>

		<guid isPermaLink="false">http://grapethinking.com/?p=623</guid>
		<description><![CDATA[Every day we talk to clients and potential clients who are trying to build their business exposure through Search Engine Optimization. In most every case they come to us after trying to do their own SEO, only to find that their rankings suddenly started to fall. These cases are generally <a href="http://grapethinking.com/are-you-linkbuilding-for-seo" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://grapethinking.com/wp-content/uploads/2008/09/search-engine-optimization.jpg"><img class="alignleft size-medium wp-image-622" title="search-engine-optimization" src="http://grapethinking.com/wp-content/uploads/2008/09/search-engine-optimization-300x231.jpg" alt="" width="224" height="172" /></a>Every day we talk to clients and potential clients who are trying to build their business exposure through <a title="SEO Services by GrapeThinking" href="http://grapethinking.com/search-engine-optimization" target="_blank">Search Engine Optimization</a>.  In most every case they come to us after trying to do their own SEO, only to find that their rankings suddenly started to fall.</p>
<p>These cases are generally the result of bad linkbuilding.  There are so many varying opinions and resources for linkbuilding that as a novice web marketer, you can easily travel down the wrong path.  The problem with all of the advice you find across the web, is that most of it is outdated.</p>
<p>For example: A year ago, it was extremely popular for marketers to try and use deep-linking (linking to pages inside of their site instead of the homepage) as a means to boost the rankings for those particular pages.  Well.. this became common knowledge, spammers took advantage, and now that tactic raises red flags.  If you are a <a href="http://grapethinking.com/tag/blogger" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with blogger">blogger</a> reading this, you know that more often than not, when you link to a website, you reference the name of the site, and link to the homepage ( e.g. <a title="Fermentation" href="http://fermentation.typepad.com/" target="_blank">Fermentation Wine Blog</a> ).</p>
<p>Here are some more linkbuilding concepts that you should avoid:<span id="more-623"></span></p>
<ol>
<li>Reciprocal Linking &#8211; Yes.. it is great for cross promotion and comradery among bloggers and other sites, but it serves very littly, if any, purpose for SEO.  If I give you an apple, and you give it back to me, we net 0.</li>
<li>Directory Submissions &#8211; Unless it is a high quality directory, you&#8217;ll most likely be establishing a relationship with spammers, and do much more harm than good.</li>
<li>E-zine articles &#8211; If you want to write content to increase your SEO, write it for your own site. The rss feeds from E-zine articles get scraped by spammers, and duplicated thousands of times across the web.  Next thing you know, it looks like YOU duplicated the same article and put it out everywhere, and YOU are the spammer.</li>
<li>Excessive Submissions to Social Bookmarking Sites, Commenting on Blogs and Forums &#8211; ONLY do this if you have legitimate comments and stories. Otherwise, your site is reported as spam.</li>
<li>Links that cost less than $10 &#8211; If someone tries to sell you links for less than $10, they are most likely going to do all of the things that I just said not to do, and charge you for it.  Then you have to hire someone to clean it up. <img src='http://grapethinking.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Rapid Linkbuilding &#8211; If you are using legitimate means to linkbuild, but do it too quickly, the search engine Gods feel cheated, and you will get banned from the search engine.. (your site doesn&#8217;t even get indexed anymore)</li>
</ol>
<p>Obviously the overarching concept here is that if you want to do linkbuilding, you should do it legitimately by having a great site with great content.  If you need some help, let us know.  <a title="Link developmet" href="http://www.blogsvertise.com/advertising/register.php?rid=b14816">If you want to try linkbuilding on your own, we recommend Blogsvertise&#8230; please be sure to use this affiliate link so we get credit for telling you about their great service</a>!</p>
<p><a title="Search Engine Optimization" href="http://grapethinking.com/search-engine-optimization" target="_self">Click here to read about our SEO Services</a></p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/search-engine-optimization" title="Search Engine Optimization (September 10, 2008)">Search Engine Optimization</a></li>
	<li><a href="http://grapethinking.com/vinolin-rips-off-wine-industry" title="Duplicate Content and SEO (February 27, 2008)">Duplicate Content and SEO</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/are-you-linkbuilding-for-seo/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

