<?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; Twitter</title>
	<atom:link href="http://grapethinking.com/tag/twitter/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 development 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>What?</title>
		<link>http://grapethinking.com/what</link>
		<comments>http://grapethinking.com/what#comments</comments>
		<pubDate>Thu, 02 Apr 2009 13:41:17 +0000</pubDate>
		<dc:creator>Ruarri</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[#G20]]></category>
		<category><![CDATA[anarchists]]></category>
		<category><![CDATA[london riots]]></category>
		<category><![CDATA[obama in london]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[twittering the riots]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/what</guid>
		<description><![CDATA[The power of Twitter is its ability to allow multiple voices to communicate disparate opinions in unison.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.uniquedigital.co.uk"><em>What?</em></a><em> </em><span style="font-size: 10pt; font-family: Verdana;">That&#8217;s definitely the question that is being answered most at the moment – particularly through <a href="http://grapethinking.com/tag/facebook" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with facebook">Facebook</a>, <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">Google</a> status and <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a>, as in <em>what are you doing right now?</em></span></p>
<p><a href="http://www.grapethinking.com/wp-content/uploads/2009/04/twitter-g20.jpeg"><img class="size-medium wp-image-2028 alignleft" title="twitter-g20" src="http://www.grapethinking.com/wp-content/uploads/2009/04/twitter-g20-300x87.jpg" alt="What are you doing?" width="300" height="87" /></a></p>
<p><span style="font-size: 10pt; font-family: Verdana;">By and large this is a question that does not usually elicit an interesting response. However in the world of news-reporting – digital media often covers the essential <em>how, who, when</em> and <em>where</em> questions of journalism, because our communication mediums are increasingly location aware, user-specific and time stamped. <em>What</em> is a question that requires actual human input – and in the past 3 years people have been answering it in terms of <a href="http://grapethinking.com/tag/facebook" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with facebook">Facebook</a> status updates, and for the early adopters &#8211; by joining the twitterverse.<br />
</span></p>
<p><span style="font-size: 10pt; font-family: Verdana;">Yesterday, however, the answer to that burning question reached critical mass and took on historic significance. Whilst some protested and others wondered about what was going on outside their office walls, multi-tasking employees were able to get on with their work whilst receiving a blow by blow account of<a title="#G20 twitter feed" href="http://twitter.com/timeline/home#search?q=%23g20" target="_blank"> history unfolding</a>. It has been overstated to the point of cliché that the medium is the message – but yesterday the message made a medium and <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> found its place in the global setting. Beyond the news-helicopters, simple tweets turned digital enthusiasts into citizen journalists and for once, a multitude of opinions on the same subject were heard. Suddenly all the hype made sense – some of us had tweeted previously to moderate effect, but for most of us not concerned about letting the world into our daily happenings, <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> just left us scratching our heads.<br />
</span></p>
<p><span id="more-2026"></span></p>
<p><span style="font-size: 10pt; font-family: Verdana;">The power of <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> is its ability to allow multiple voices to communicate disparate opinions in unison. Of course, its fantastic to be in the loop of the wonderful world of Stephen Fry via <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">twitter</a> – but what we saw yesterday was not celebrity admiration, but rather the changing documentation of history, where instead of being written by the victors, we captured a glimpse through the eyes of the observer – raw, unfiltered and uncesorable. We have seen dictatorships stifle freedom of expression in blogs and websites – but the immediacy of <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> gives the voice on the individual more resonance than before.<br />
</span></p>
<p><span style="font-size: 10pt; font-family: Verdana;">Of course history in the making needn&#8217;t be people tweeting from Hurricane Katrina or Tiananmen Square – we all have histories, cultural histories and personal histories. A father tweeting the anxiety of being in the waiting room whilst his child his being born, a techy tweeting the anticipation at a tech-conference whilst waiting for Steve Jobs to unleash Apple&#8217;s new toy, or a Machester United fan tweeting from the stands during half-time with the score at 1-1. Every generation alters the way it communicates, and it seems that those alterations are happening more frequently. In 6 years we have gone from long-form e-mail, to group e-mails, to text message, on to <a href="http://grapethinking.com/tag/facebook" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with facebook">Facebook</a> and finally: <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a>.<br />
</span></p>
<p><span style="font-size: 10pt; font-family: Verdana;">Of course <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> has its critics, and there are those who see it as a distraction and a detraction from complete discourse. But so often when our collective brains are abuzz with thought, instead of thinking in full sentences or having complete thoughts, our minds are aflutter with neural tweets.<br />
</span></p>
<p><span style="font-size: 10pt; font-family: Verdana;">Could <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> be the closest we have come to reflecting how our society collectively thinks, sees and experiences the world?<br />
</span></p>
<p><em><br />
</em></p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/the-local-web" title="Local.com (February 27, 2009)">Local.com</a></li>
	<li><a href="http://grapethinking.com/enable-curl-on-xampp" title="Enable Curl on Xampp (April 15, 2009)">Enable Curl on Xampp</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/what/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local.com</title>
		<link>http://grapethinking.com/the-local-web</link>
		<comments>http://grapethinking.com/the-local-web#comments</comments>
		<pubDate>Fri, 27 Feb 2009 05:39:31 +0000</pubDate>
		<dc:creator>GT</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Citysearch]]></category>
		<category><![CDATA[Ebay]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[glocal]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[Local.com]]></category>
		<category><![CDATA[Superpages.com]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Yellowpages.com]]></category>
		<category><![CDATA[Yelp]]></category>

		<guid isPermaLink="false">http://www.grapethinking.com/?p=1960</guid>
		<description><![CDATA[Image via CrunchBase I&#8217;ve been thinking more about the future of the web, and I&#8217;m convinced what&#8217;s coming is not just another phase or version, but finally the real deal. Web 1.0 and Web 2.0 are going to be looked back on as alpha and beta versions of the real <a href="http://grapethinking.com/the-local-web" rel="nofollow">more...</a>]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 260px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/iphone"><img title="Image representing iPhone as depicted in Crunc..." src="http://www.crunchbase.com/assets/images/resized/0001/9797/19797v1-max-250x250.jpg" alt="Image representing iPhone as depicted in Crunc..." width="250" height="195" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>I&#8217;ve been thinking more about the future of the web, and I&#8217;m convinced what&#8217;s coming is not just another phase or version, but finally the real deal. Web 1.0 and Web 2.0 are going to be looked back on as alpha and beta versions of the real Web which is finally upon us. Techies refer to it as the semantic web, which is going to be a big part of it, but ultimately it&#8217;s going to come down to making money for businesses. Every enterprise out there is finally understanding the importance of engaging the online medium and utilizing the communities and tools built over the past decade that have captured the attention and time of the consumer. There&#8217;s a really cool site I&#8217;ve found that&#8217;s seeming to capitalize on this opportunity&#8230; fittingly enough it&#8217;s called <a href="http://local.com">Local.com</a></p>
<p><span id="more-1960"></span></p>
<p>Local combines the worlds of the big local sites out there, namely Citysearch.com, Yelp.com, Superpages.com, Yellowpages.com, all of which Local.com is partnered with. It&#8217;s <span>essentially a 1 stop shop for finding local businesses and services. </span></p>
<p>The Local.com experience is incredible. It acts like a <a href="http://www.local.com"><span>local yellowpages</span></a>, and yet so much more. It automatically picks up what city you&#8217;re in based on your IP address and then generates a list of <a href="http://www.local.com"><span>local restaurants</span></a>, local reviews, local coupons, local favorites, and even local traffic and local weather. I find it to be incredibly valuable, especially for anyone moving to a new city. The <a href="http://www.local.com"><span>local search</span></a> feature is awesome too, as it brings up a list of nearby brick and mortar businesses. I typed in &#8216;groceries&#8217; and got a great list of small hole in the wall grocers in my area.</p>
<p>This stuff is fascinating to me because it&#8217;s paving the way for a real business model on the Internet. With local businesses beginning to build a web presence, new web services will be able to track all consumer purchases, not just those made online, and evolve the Internet from the CPC (cost per click) model <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">Google</a> pioneered to a CPA (cost per affiliate) model in which web services monetize by taking a cut off consumer purchases. To make this work, however, local businesses are going to have to integrate their system in with a player like Local.com so that consumers can easily generate coupons and redeemable points. When this occurs, coupled with the proliferation of mobile technologies, the process will be seamless. You&#8217;ll find discounts in real time on your phone as you walk around through whatever web service you use. Then&#8217;ll you show up at the store, pick out what you want, and validate at the checkout counter with your iPhone&#8230; and boom you get your discount that easy.</p>
<p>Portals like Local.com, as well as the obvious <a href="http://grapethinking.com/tag/google" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with google">Google</a>, Ebay, Amazon, soon to be <a href="http://grapethinking.com/tag/facebook" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with facebook">Facebook</a> Marketplace, and the one everybody is ecstatic about&#8230; <a href="http://grapethinking.com/tag/twitter" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Twitter">Twitter</a> (check out <a href="http://cheaptweet.com/">CheapTweet</a> and <a href="http://www.twtqpon.com/">TwtQpon</a>&#8230; wow!), is what will pull local businesses into the mix, incentivizing them to offer deals, because they know it&#8217;ll result in more long-term converting customers. And the more local businesses interact and engage with the community, the more popular they will become and the more feedback they&#8217;ll gain on bettering they&#8217;re products. And consumers who engage will win big by finding discounts and deals constantly.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/210ec10e-3783-46ae-887b-69bb82f9c821/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=210ec10e-3783-46ae-887b-69bb82f9c821" alt="Reblog this post [with Zemanta]" /></a></div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://grapethinking.com/what" title="What? (April 2, 2009)">What?</a></li>
	<li><a href="http://grapethinking.com/search-engine-optimization" title="Search Engine Optimization (September 10, 2008)">Search Engine Optimization</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://grapethinking.com/the-local-web/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

