<?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>{5} Setfive - Talking to the World &#187; mashup</title>
	<atom:link href="http://shout.setfive.com/tag/mashup/feed/" rel="self" type="application/rss+xml" />
	<link>http://shout.setfive.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Jan 2012 21:09:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Facebook: How-to force users to LIKE page</title>
		<link>http://shout.setfive.com/2011/12/16/facebook-how-to-force-users-to-like-page-to-access-content/</link>
		<comments>http://shout.setfive.com/2011/12/16/facebook-how-to-force-users-to-like-page-to-access-content/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 20:39:41 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=1122</guid>
		<description><![CDATA[With Facebook&#8217;s move to deprecate FBML for tabs the documentation around how to make a &#8220;please Like! before&#8230;&#8221; has become much more choppy and inconsistent. Anyway, I recently found myself in a position where I needed to make this happen so here goes. With in-line FBML deprecated, the only way to accomplish this without using [...]]]></description>
			<content:encoded><![CDATA[<p>With Facebook&#8217;s move to deprecate <a href="https://developers.facebook.com/docs/reference/fbml/" target="_blank">FBML</a> for tabs the documentation around how to make a &#8220;please Like! before&#8230;&#8221; has become much more choppy and inconsistent. Anyway, I recently found myself in a position where I needed to make this happen so here goes. </p>
<p>With in-line FBML deprecated, the only way to accomplish this without using a third party branded solution is to create a Facebook iframe app. Here are the steps you need to take to get something up using PHP and the Facebook PHP SDK.</p>
<p><strong>1.</strong> Create a new Facebook Application at https://developers.facebook.com/apps</p>
<p><strong>2.</strong> Configure your new Facebook App the enable &#8220;Website&#8221; and &#8220;Page Tab&#8221;. You&#8217;ll need to enter a valid URL for the following fields:</p>
<ul>
<li>Site URL</li>
<li>Page Tab URL</li>
<li>Secure Page Tab URL</li>
</ul>
<p>You&#8217;ll also want to use a HTTPs URL since Facebook sessions default to HTTPs by default and your iframe will be marked insecure if its over vanilla HTTP. For this walk through, lets assume were using https://www.setfive.com/fb/index.php? as the URL.</p>
<p><strong>3.</strong> Now, you&#8217;ll want to add your new App to a Facebook Page. The easiest way to do this is to use this URL https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&#038;next=YOUR_URL replacing YOUR_APP_ID and YOUR_URL with your App ID and then a URL that is derived from your endpoint (or even just your endpoint). When you load that URL, you&#8217;ll be prompted to add your app to a page &#8211; select the page you want and submit the form.</p>
<p><strong>4.</strong> The final piece is throwing together the actual PHP script. You&#8217;ll need the Facebook PHP SDK available on GitHub &#8211; https://github.com/facebook/php-sdk. Clone that and then this is the PHP script you&#8217;ll need:</p>
<pre name="code" class="php">

&lt;?php
require 'php-sdk/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  =&gt; 'YOUR_APP_ID',
  'secret' =&gt; 'YOUR_APP_SECRET',
));

$req = $facebook-&gt;getSignedRequest();
?&gt;

&lt;!DOCTYPE html&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;xmlns:fb=&quot;http://ogp.me/ns/fb#&quot;&gt;

&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot; /&gt;
    &lt;title&gt;&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;

&lt;?php if( $req[&quot;page&quot;][&quot;liked&quot;] ): ?&gt;

	Content for users that have LIKED the page.

&lt;?php else: ?&gt;

	Content for users that HAVE NOT LIKED the page.

&lt;?php endif; ?&gt;

&lt;/body&gt;

&lt;/html&gt;
</pre>
<p>And thats it! Now you&#8217;ll be able to gate content from non-fans while growing the fanbase of your Facebook Page.</p>
<p>Drop any questions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2011/12/16/facebook-how-to-force-users-to-like-page-to-access-content/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FanFeedr Widgets Are Live!</title>
		<link>http://shout.setfive.com/2009/09/30/fanfeedr-widgets-are-live/</link>
		<comments>http://shout.setfive.com/2009/09/30/fanfeedr-widgets-are-live/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 15:31:42 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[Launch]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=290</guid>
		<description><![CDATA[Over the past few weeks we had the opportunity to work with FanFeedr to put together some widgets for their sports news platform. Previously, FanFeedr had been using Sprout to build their widgets but this required someone to hand build a Flash widget for every &#8220;resource&#8221; on FanFeedr (there are a lot). In addition, since [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few weeks we had the opportunity to work with <a href="http://www.fanfeedr.com" target="_blank">FanFeedr</a> to put together some widgets for their sports news platform. Previously, FanFeedr had been using <a href="http://sproutinc.com/solution/sprout-builder/" target="_blank">Sprout</a> to build their widgets but this required someone to hand build a Flash widget for every &#8220;resource&#8221; on FanFeedr (there are a lot). In addition, since the Sprout widgets are Flash they aren&#8217;t easily crawled by search engines.</p>
<p>Our widgets are different. They allow FanFeedr to generate widgets on the fly for any of their pages and allow users to customize the color schemes. Check out a widget builder for the NY Yankees <a href="http://services.setfive.com/fanfeedr/build.php?resource_name=NY+Yankees&#038;resource_url=team://mlb/ny_yankees" target="_blank">here</a>.</p>
<p>Basically, our widget builder works by allowing users to customize the size and colors used in the widget. This data is serialized as a JSON object and then base64 encoded so that it can be sent to the &#8220;generator&#8221; on the server. Then, the server unpacks the payload and builds a widget according to the data specified in the JSON object. In addition, our embed code includes a noscript tags so that search engines pick up the links in the widget as well.</p>
<p>Anyway, working with FanFeedr was a great experience and we hope to continue our relationship moving forward. Go build yourself a widget! </p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2009/09/30/fanfeedr-widgets-are-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Redline Challenge</title>
		<link>http://shout.setfive.com/2009/09/27/redline-challenge/</link>
		<comments>http://shout.setfive.com/2009/09/27/redline-challenge/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 22:26:43 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Launch]]></category>
		<category><![CDATA[fun stuff]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=287</guid>
		<description><![CDATA[For one reason or another we decided to sponsor a pub crawl this weekend. The plan was hatched over some beers at Underbones on Thursday night for a Saturday morning go time. We knew we basically needed three things: a list of bars, some swag (tshirt?), and obviously a website. We decided that the route [...]]]></description>
			<content:encoded><![CDATA[<p>For one reason or another we decided to sponsor a pub crawl this weekend. The plan was hatched over some beers at <a href="http://www.underbones.com/" target="_blank">Underbones</a> on Thursday night for a Saturday morning go time. We knew we basically needed three things: a list of bars, some swag (tshirt?), and obviously a website. We decided that the route of the crawl should follow the <a href="http://www.mbta.com/schedules_and_maps/subway/lines/?route=RED" target="_blank">MBTA Redline</a> so that we could start downtown and then finish in Somerville. This made picking bars pretty simple, gave us some branding, and of course we registered<br />
<a href="http://www.redlinechallenge.com/" target="_blank">REDLINECHALLENGE.COM</a>.</p>
<p>We wanted the website to have some informative information, live location updates, and of course pictures of the debauchery. The biggest problem was that neither <a target="_blank" href="http://www.vertmob.com/wp-content/uploads/2009/03/zack-morris-phone.jpg">Daum</a> nor I have location aware phones. To get around this, we decided to update <a href="http://www.twitter.com" target="_blank">Twitter</a> with our current location along with a “#loc” hashtag and then have the site update based on that. Since we were all ready using Twitter, we decided to use <a href="http://www.twitpic.com" target="_blank">Twitpic</a> to allow us to post pictures to twitter on the fly. Additionally, we took advantage of Verizon Wireless’s email to SMS service and allowed people to contact us via the website. All told, we built the site in about 3 hours and it proved to be pretty useful. People used it to find us on the crawl and to contact us while we were out. Everyone also got a kick of seeing a live photo stream.</p>
<p>What’s next? Clearly, The Greenline Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2009/09/27/redline-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Calendar API create on alternate calendar</title>
		<link>http://shout.setfive.com/2009/07/26/google-calendar-api-create-on-alternate-calendar/</link>
		<comments>http://shout.setfive.com/2009/07/26/google-calendar-api-create-on-alternate-calendar/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 04:47:30 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[GData]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=197</guid>
		<description><![CDATA[A few months ago we integrated Google calendar into an application that we built for a client. Anyway, today I sat down to customize which calendars certain events were being created on. We’re using the Zend Framework’s GData package to interact with Google Calendar and surprisingly the documentation is pretty lacking. Specifically, I was looking [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago we integrated Google calendar into an application that we built for a client. Anyway, today I sat down to customize which calendars certain events were being created on. We’re using the Zend Framework’s GData package to interact with Google Calendar and surprisingly the documentation is pretty lacking.</p>
<p>Specifically, I was looking to create events on a calendar that was not the “primary” calendar for a user. After poking around and experimenting, I finally got things to work.</p>
<p>First, you can retrieve the list of available calendars with:</p>
<pre name="code" class='php'>
$service = Zend_Gdata_Calendar::AUTH_SERVICE_NAME;
$user = sfConfig::get("app_gcal_user");
$pass = sfConfig::get("app_gcal_password");

$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service);
self::$service = new Zend_Gdata_Calendar($client);
$calFeed = self::$service-&gt;getCalendarListFeed();

$arr = array();
foreach ($calFeed as $calendar) {
  $arr[] = array( “title” =&gt; $calendar-&gt;title-&gt;text, “uri” =&gt; $calendar-&gt;getEditLink(“alternate")-&gt;href   );
}
</pre>
<p>Next, when creating the events pass in the uri and the events will appear on the alternate calendar.</p>
<pre class="php" name="code">
self::$service-&gt;insertEvent($event, $arr[1][“uri”]);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2009/07/26/google-calendar-api-create-on-alternate-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client side RSS aggregator</title>
		<link>http://shout.setfive.com/2009/02/25/client-side-rss-aggregator/</link>
		<comments>http://shout.setfive.com/2009/02/25/client-side-rss-aggregator/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 00:37:23 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=110</guid>
		<description><![CDATA[One of our clients came to us a few days ago asking us if we could build something to aggregate several RSS feeds and then display it on their site. Easy enough. Except the caveats were 1) This had to be done on a shoe string budget and 2) We had no permission to script [...]]]></description>
			<content:encoded><![CDATA[<p>One of our clients came to us a few days ago asking us if we could build something to aggregate several RSS feeds and then display it on their site.</p>
<p>Easy enough. Except the caveats were 1) This had to be done on a shoe string budget and 2) We had no permission to script on the server side (only client side scripting allowed kids).</p>
<p>We put our heads together and realized that Yahoo Pipes would provide the functionality to easily combine several RSS feeds, sort them, filter them, ect. And best part? It&#8217;s all built and all free. Pipes also provides the functionality to export a pipe as a JSON feed (as opposed to RSS).</p>
<p>So that takes care of problem 1 and almost fixes problem 2. Of course the remaining problem is getting around the cross domain XHR restrictions on the JSON. I did some poking around the Yahoo Pipes documentation and it turns out you can add a _callback parameter to the URL and bang it wraps the JSON in a JS callback!</p>
<p>Issues solved. The final part was to mix in a little jQuery to load the JSON+callback feed into a &lt;script&gt; tag and then display it.</p>
<p>Total lines of code: 27 lines of javascript.</p>
<p>EDIT. Now with code! <a href='http://shout.setfive.com/wp-content/uploads/2009/02/rsspipes.js'>rsspipes</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2009/02/25/client-side-rss-aggregator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Android!</title>
		<link>http://shout.setfive.com/2009/02/23/hello-android/</link>
		<comments>http://shout.setfive.com/2009/02/23/hello-android/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 08:31:00 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[fun stuff]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=101</guid>
		<description><![CDATA[In the last few weeks the battle and buzz over the smart phone market seems to have seriously intensified. First there was the usual iPhone buzz, news about the Android powered HTC Magic, the Windows Mobile marketplace, and of course the obligatory ridiculousness at Microsoft. I&#8217;d been considering experimenting with a mobile platform for sometime [...]]]></description>
			<content:encoded><![CDATA[<p>In the last few weeks the battle and buzz over the smart phone market seems to have seriously intensified. </p>
<p>First there was the usual iPhone buzz, news about the Android powered <a href="http://reviews.cnet.com/8301-13970_7-10167621-78.html">HTC Magic</a>, the <a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/02/16/AR2009021600899.html">Windows Mobile marketplace</a>, and of course the obligatory <a href="http://news.cnet.com/8301-10805_3-10167321-75.html">ridiculousness</a> at Microsoft.</p>
<p>I&#8217;d been considering experimenting with a mobile platform for sometime and finally decided to take the plunge. I decided to give <a href="http://code.google.com/android/">Android</a> a whirl primarily because I don&#8217;t have easy access to OSX or Visual Studio and my Java is less rusty than my .NET.</p>
<p>Anyway, getting going with Android was deliciously simple &#8211; download the <a href="http://code.google.com/android/download.html">SDK+Emulator</a> and Eclipse plugin and you&#8217;re off.</p>
<p>After the necessary &#8220;Hello World&#8221; application I tried to write something a bit more substantive. Personally, one of the coolest facets of mobile development is the ability for applications to be <a href="http://code.google.com/android/reference/android/location/LocationManager.html">location aware</a> (GPS). Mix this together with some openly available geo tagged data and the result is probably going to be interesting.</p>
<p>With this in mind, the plan became to mash together Android&#8217;s GPS coordinates with <a href="http://www.flickr.com/services/api/flickr.photos.geo.getLocation.html">flickr&#8217;s geotagged</a> photos.</p>
<p>Getting access to Android&#8217;s location service is fairly straightforward. You basically register to receive updates either when the device moves a certain distance or on some time interval:</p>
<pre class="java" name='code'>
LocationManager locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
flickrLocationReciever flReciever = new flickrLocationReciever();
locationManager.requestLocationUpdates( locationManager.getProviders(true).get(0),  5, 10, flReciever);

public class flickrLocationReciever implements LocationListener {
  @Override
   public void onLocationChanged(final Location arg0) {
    // do things
   }
}
</pre>
<p>The biggest &#8220;gotcha&#8221; with this is that you NEED to remember to modify the default Application security settings to allow you to access the device&#8217;s location. In Eclipse, edit AndroidManifest.xml and add &#8220;UsesPermission&#8221; for the following: android.permission.ACCESS_MOCK_LOCATION, android.permission.ACCESS_COARSE_LOCATION, android.permission.ACCESS_FINE_LOCATION</p>
<p>So on to part II &#8211; using the device&#8217;s location to pull down Flickr photos. I&#8217;d used the Flickr API before so I knew how to do it but I&#8217;d never used it from Java. I tried loading the JAR for the <a href="http://sourceforge.net/projects/flickrj/">flickrj</a> client library but the <a href="http://en.wikipedia.org/wiki/Dalvik_virtual_machine">Android JVM</a> was having some strange issues with it. I was under the impression you can link to external JARs from Eclipse but I may be wrong (anyone?).</p>
<p>Anyway, the Flickr requests were un-authenticated and pretty straightforward so I decided to use Java&#8217;s URL class. Accessing sockets was another &#8220;gotcha&#8221; &#8211; Android requires your application to have the &#8220;UsesPermission&#8221; android.permission.INTERNET to use sockets. The exception when the permission isn&#8217;t set is notably cryptic &#8211; &#8220;unknown error&#8221;.</p>
<p>I decided to download all the Flickr photos to the device so that the UX would be generally smoother. This introduced threading to the project so that the UI wouldn&#8217;t freeze up while the photos were downloading. Android threads work just like traditional Java threads and the process was generally painless:</p>
<pre class='java' name='code'>
private Handler handler = new Handler()
  {
   public void handleMessage(Message msg) {
   // handle the end of the thread
  }
}

Thread t = new Thread()
   {
     public void run(){
     // do stuff
     // let the handler know we are done
     handler.sendEmptyMessage(1);
     }
}
T.start();
</pre>
<p>With the photos pulled down the final task was displaying them. After poking around the Android documentation I discovered the <a href="http://code.google.com/android/reference/android/widget/Gallery.html">Gallery widget</a>. It basically allows you to display a set of items in a list and specify a &#8220;renderer&#8221; for the gallery. I&#8217;m not sure if there is a default way to make it &#8220;fisheye&#8221; (like on an iPhone) but I rolled a quick n dirty solution for that. I also couldn&#8217;t get it to look really sexy but that&#8217;s also probably possible.</p>
<p>So that&#8217;s about it. Here are some screen shots of the application running in the emulator:<br />

<a href='http://shout.setfive.com/2009/02/23/hello-android/screen1/' title='screen1'><img width="150" height="150" src="http://shout.setfive.com/wp-content/uploads/2009/02/screen1-150x150.jpg" class="attachment-thumbnail" alt="screen1" title="screen1" /></a>
<a href='http://shout.setfive.com/2009/02/23/hello-android/screen2/' title='screen2'><img width="150" height="150" src="http://shout.setfive.com/wp-content/uploads/2009/02/screen2-150x150.jpg" class="attachment-thumbnail" alt="screen2" title="screen2" /></a>
<a href='http://shout.setfive.com/2009/02/23/hello-android/screen3/' title='screen3'><img width="150" height="150" src="http://shout.setfive.com/wp-content/uploads/2009/02/screen3-150x150.jpg" class="attachment-thumbnail" alt="screen3" title="screen3" /></a>
</p>
<p>And without further a due here is the code as an Eclipse project.<br />
<a href='http://shout.setfive.com/wp-content/uploads/2009/02/geoflickr.zip'>geoflickr</a></p>
<p>Anyway, before the bashing starts &#8211; I know I&#8217;m a terrible Java programmer and that this project isn&#8217;t really engineered beautifully. It was just supposed to be a way to get my (and anyone else&#8217;s) feet wet with Android. Any comments/thoughts/improvements are of course welcome! </p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2009/02/23/hello-android/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Timelapse Twitter+Election map</title>
		<link>http://shout.setfive.com/2008/11/12/timelapse-twitterelection-map/</link>
		<comments>http://shout.setfive.com/2008/11/12/timelapse-twitterelection-map/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 21:45:42 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=51</guid>
		<description><![CDATA[This is an update to our Twitter+Election &#8217;08 mashup that was over at Setfive Election HQ Well as everyone saw last Tuesday night, Obama won the election by a pretty significant margin and has all ready taken steps to announce his transition agenda. Anyway, at the end of our run, we captured 11021 tweets with [...]]]></description>
			<content:encoded><![CDATA[<p>This is an update to our Twitter+Election &#8217;08 mashup that was over at <a href="http://election.setfive.com/" target="_blank">Setfive Election HQ </a></p>
<p>Well as everyone saw last Tuesday night, Obama won the election by a pretty significant margin and has all ready taken steps to announce his <a href="http://www.change.gov/">transition agenda</a>.</p>
<p>Anyway, at the end of our run, we captured 11021 tweets with the breakdown being 2501 for McCain and 8520 for Obama. Since we had been generating maps all day we decided to take snapshots at 5 minute intervals so that we could watch the progression of the map. The timelapse map is embedded below:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="440" height="260" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://election.setfive.com/player2/player.swf?movie=http://election.setfive.com/player2/MapMovie.flv&amp;autoload=off&amp;volume=70" /><embed type="application/x-shockwave-flash" width="440" height="260" src="http://election.setfive.com/player2/player.swf?movie=http://election.setfive.com/player2/MapMovie.flv&amp;autoload=off&amp;volume=70"></embed></object></p>
<p>We hope everyone had a good election experiance &#8211; we had a lot of fun building this mashup. Now to find the next big thing&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2008/11/12/timelapse-twitterelection-map/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JS+GNU Plot = ?</title>
		<link>http://shout.setfive.com/2008/08/09/jsgnu-plot/</link>
		<comments>http://shout.setfive.com/2008/08/09/jsgnu-plot/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 21:58:08 +0000</pubDate>
		<dc:creator>Ashish Datta</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[gnu plot]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[wikia search]]></category>

		<guid isPermaLink="false">http://shout.setfive.com/?p=8</guid>
		<description><![CDATA[I was playing around with Microsoft&#8217;s Live search the other day and found out that it can actually solve higher order quadratics! http://search.live.com/results.aspx?q=x^3%2B4*x%3D25&#38;go=&#38;form=QBRE Anyway, that&#8217;s cool and all but I really wanted it to make graphs when I searched for functions. I poked around a little but it doesn&#8217;t look like there is any way [...]]]></description>
			<content:encoded><![CDATA[<p>I was playing around with Microsoft&#8217;s Live search the other day and found out that it can actually solve higher order quadratics! <a href="http://search.live.com/results.aspx?q=x^3%2B4*x%3D25&amp;go=&amp;form=QBRE" target="_blank">http://search.live.com/results.aspx?q=x^3%2B4*x%3D25&amp;go=&amp;form=QBRE</a></p>
<p>Anyway, that&#8217;s cool and all but I really wanted it to make graphs when I searched for functions. I poked around a little but it doesn&#8217;t look like there is any way to plug stuff like that into Live! Luckily for me, Wikia Search is testing / developing their widget framework &#8211; codename WISE.</p>
<p>I threw together this WISE widget &#8211; <a href="http://fp029.sjc.wikia-inc.com/search/search.html#f(x)=x^3+3*x+5" target="_blank">http://fp029.sjc.wikia-inc.com/search/search.html#f(x)=x^3+3*x+5</a></p>
<p>The widget is really just a front end to GNU Plot &#8211; <a href="http://www.gnuplot.info/" target="_self">http://www.gnuplot.info/</a></p>
<p>A JS front end is here <a href="http://code.setfive.com/gnuplot/bin/ui.html" target="_blank">http://code.setfive.com/gnuplot/bin/ui.html</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://shout.setfive.com/2008/08/09/jsgnu-plot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

