<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>MyOwnPirateRadio &#187; Uncategorized</title>
	<atom:link href="http://myownpirateradio.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://myownpirateradio.com</link>
	<description>musings on makers making things</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:29:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='myownpirateradio.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>MyOwnPirateRadio &#187; Uncategorized</title>
		<link>http://myownpirateradio.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://myownpirateradio.com/osd.xml" title="MyOwnPirateRadio" />
	<atom:link rel='hub' href='http://myownpirateradio.com/?pushpress=hub'/>
		<item>
		<title>Getting Heroku Cedar and Rails 3.1 Asset Pipeline to Play Nicely Together</title>
		<link>http://myownpirateradio.com/2012/01/01/getting-heroku-cedar-and-rails-3-1-asset-pipeline-to-play-nicely-together/</link>
		<comments>http://myownpirateradio.com/2012/01/01/getting-heroku-cedar-and-rails-3-1-asset-pipeline-to-play-nicely-together/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 03:09:47 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[heroku]]></category>
		<category><![CDATA[cedar]]></category>
		<category><![CDATA[asset pipeline]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[dalli]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=474</guid>
		<description><![CDATA[I recently migrated a Ruby on Rails 3.1 app from the Heroku Bamboo stack to Heroku Cedar. If you&#8217;re doing the same, here are a few notes to help avoid snags on getting the Rails Asset Pipeline working efficiently. Unlike Bamboo, Cedar does not offer Varnish as a reverse proxy cache, nor does it automatically &#8230; <a href="http://myownpirateradio.com/2012/01/01/getting-heroku-cedar-and-rails-3-1-asset-pipeline-to-play-nicely-together/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=474&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently migrated a Ruby on Rails 3.1 app from the <a href="http://devcenter.heroku.com/articles/bamboo">Heroku Bamboo stack</a> to <a href="http://devcenter.heroku.com/articles/cedar">Heroku Cedar</a>. If you&#8217;re doing the same, here are a few notes to help avoid snags on getting the Rails Asset Pipeline working efficiently.</p>
<p>Unlike Bamboo, Cedar does not offer Varnish as a reverse proxy cache, nor does it automatically gzip content. You need to do it yourself. Heroku recommends:</p>
<ol>
<li>Use memcached, with <a href="http://devcenter.heroku.com/articles/memcache#deploying_to_heroku">Dalli as the memcached client</a>. Make sure to follow the Rails 3 section.</li>
<li><a href="http://devcenter.heroku.com/articles/http-routing">Use Rack::Cache</a> as a substitute for Varnish. Heroku links to <a href="http://www.saturnflyer.com/blog/jim/2010/06/24/rack-cache-on-heroku-with-memcached/">this article which explains how to integrate Heroku with Rack::Cache.</a> I couldn&#8217;t get it to work, so I hunted around and pieced together the folllowing riff.</li>
</ol>
<div>In your runtime environment file (e.g. production.rb), add this:</div>
<pre>require 'rack-cache'
My::Application.configure do
...
  # Enable Rack::Cache
  config.middleware.use Rack::Cache,
   :metastore =&gt; "memcached://#{ENV['MEMCACHE_SERVERS']}/meta",
   :entitystore =&gt; "memcached://#{ENV['MEMCACHE_SERVERS']}/body"</pre>
<p>You can also set HTTP headers in production.rb as follows. (3600 is an example value, make this whatever you want.)</p>
<pre># Add HTTP headers to cache static assets for an hour
config.static_cache_control = "public, max-age=3600"</pre>
<p>And you may want to add this to your config.ru to get gzip working:</p>
<pre>use Rack::Deflater</pre>
<p>References:</p>
<div>
<ul>
<li><a href="http://devcenter.heroku.com/articles/rails3">Getting Started with Rails 3.0 on Heroku/Cedar</a></li>
<li><a href="http://blog.marc-seeger.de/2010/12/09/added-caching-to-my-blog/">Added Caching to My Blog</a></li>
<li><a href="http://jackchu.com/rails-31-asset-pipeline-content-delivery-netw">Rails 3.1 Asset Pipeline, Content Delivery Networks and Rack::Cache</a></li>
<li><a href="http://snippets.aktagon.com/snippets/302-How-to-setup-and-use-Rack-Cache-with-Rails-2-3-0-RC-1">How to Setup and Use Rack::Cache with Rails 2.3.0 RC1</a></li>
<li><a href="http://www.randomhacks.net/articles/2011/06/03/heroku-celadon-cedar-review">Heroku Celadon Cedar Review</a></li>
</ul>
</div>
<br />Filed under: <a href='http://myownpirateradio.com/category/technology/'>technology</a>, <a href='http://myownpirateradio.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://myownpirateradio.com/tag/asset-pipeline/'>asset pipeline</a>, <a href='http://myownpirateradio.com/tag/cedar/'>cedar</a>, <a href='http://myownpirateradio.com/tag/dalli/'>dalli</a>, <a href='http://myownpirateradio.com/tag/heroku/'>heroku</a>, <a href='http://myownpirateradio.com/tag/memcached/'>memcached</a>, <a href='http://myownpirateradio.com/tag/rails/'>rails</a>, <a href='http://myownpirateradio.com/tag/ruby-on-rails/'>ruby on rails</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/474/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/474/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/474/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=474&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2012/01/01/getting-heroku-cedar-and-rails-3-1-asset-pipeline-to-play-nicely-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
		<item>
		<title>Heroku, MongoHQ, and Amazon S3 Backups</title>
		<link>http://myownpirateradio.com/2011/08/04/heroku-mongohq-and-amazon-s3-backups/</link>
		<comments>http://myownpirateradio.com/2011/08/04/heroku-mongohq-and-amazon-s3-backups/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 14:24:54 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amazon s3]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[heroku]]></category>
		<category><![CDATA[IAM]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[mongohq]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[policy]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=454</guid>
		<description><![CDATA[I spent a few hours yesterday convincing MongoHQ to back up a Mongo database to an Amazon S3 bucket via an Amazon &#8220;IAM&#8221; account. Here&#8217;s the secret recipe. Hopefully it saves someone time. Context: MongoHQ, which I&#8217;m using with one of my work projects right now, is a service that hosts MongoDB databases. It integrates &#8230; <a href="http://myownpirateradio.com/2011/08/04/heroku-mongohq-and-amazon-s3-backups/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=454&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I spent a few hours yesterday convincing <a href="http://mongohq.com">MongoHQ</a> to back up a <a href="http://mongodb.org">Mongo database</a> to an <a href="http://aws.amazon.com/s3/">Amazon S3 bucket</a> via an Amazon &#8220;IAM&#8221; account. Here&#8217;s the secret recipe. Hopefully it saves someone time.</p>
<p>Context: MongoHQ, which I&#8217;m using with one of my work projects right now, is a service that hosts MongoDB databases. It integrates with <a href="http://heroku.com">Heroku</a>, allowing you to get started on a Heroku app using MongoDB very quickly. <a href="http://support.mongohq.com/kb/how-tos/using-s3-backups">MongoHQ supports hourly and daily backup of their databases to Amazon S3 buckets</a>, but alas, <a href="http://support.mongohq.com/discussions/questions/131-do-you-offer-backup-for-mongohq-databases-provisioned-by-heroku">not yet for databases provisioned automatically via Heroku</a>. So if you want to step up to a backed-up database you&#8217;ll have to set up your own. Here are the steps I followed to do it.</p>
<p><strong>Secret decoder ring:</strong><br />
S3 = <a href="https://console.aws.amazon.com/s3/home">Amazon Web Services Management Console, S3 tab</a>.<br />
IAM = <a href="https://console.aws.amazon.com/iam">Amazon Web Services Management Console, IAM tab</a>.<br />
MHQ = <a href="https://mongohq.com/databases">Mongo HQ console</a>.<br />
HKU = <a href="http://heroku.com">Heroku</a>.</p>
<p><strong>Recipe:</strong></p>
<ol>
<li>S3 : Create a bucket for your app&#8217;s backups, e.g. &#8220;my-app-backups&#8221;.</li>
<li>IAM: Create an IAM User account for MongoHQ to use, e.g. &#8220;mongohq&#8221;. Download the credentials and store them safely.</li>
<li>IAM: Create an IAM Group to contain all users with backup permission, e.g. &#8220;myapp-backup-writers&#8221;.</li>
<li>IAM: Add the mongohq User account to the newly created Group.</li>
<li>IAM: Using the Permissions tab of the Group&#8217;s properties attach a new security policy, granting permission to write to the myapp-backups bucket. See below for a sample policy.</li>
<li>MHQ: Sign up for your own MongoHQ account.</li>
<li>MHQ: Create the database you wish to use with Heroku.</li>
<li>MHQ: Select the &#8220;Backups&#8221; tab and enter the IAM User credentials from step 2.</li>
<li>MHQ: Click &#8220;Save Settings&#8221;. If all is well you&#8217;ll see a message, &#8220;Setting Updated&#8221;.*</li>
<li>MHQ: Create a new user on the Database Users tab.</li>
<li>MHQ: Copy down the Mongo URI string from the Database Info tab, substituting your user name and password from step 10.</li>
<li>HKU: In the root directory of your Heroku app do &#8220;heroku config:add MONGOHQ_URL=&#8217;URI&#8217;&#8221;. URI is the Mongo URI from step 11. (Normally Heroku sets this variable for you when it provisions a MongoHQ database. You&#8217;re overriding it with a link to your own database.)</li>
</ol>
<p>* Step 9 is where I got stuck. It worked fine with my own personal security credentials, but not with the IAM account I created specifically for MongoHQ to use. (I wanted more security&#8230; giving your main account credentials to a 3rd party site isn&#8217;t smart.) I fiddled around with the security policy for quite a while, and eventually discovered I needed the &#8220;ListAllMyBuckets&#8221; permission. Here&#8217;s the security policy that worked for me:</p>
<pre>    {
      "Statement": [
        {
          "Effect": "Allow",
          "Action": [ "s3:ListAllMyBuckets" ],
          "Resource": "arn:aws:s3:::*"
        },
        {
          "Effect": "Allow",
          "Action": [
            "s3:PutObject",
            "s3:PutObjectAcl"
          ],
          "Resource": [
            "arn:aws:s3:::MY-APP-BACKUPS/*"
          ]
        }
      ]
    }</pre>
<br />Filed under: <a href='http://myownpirateradio.com/category/technology/'>technology</a>, <a href='http://myownpirateradio.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://myownpirateradio.com/tag/amazon-s3/'>amazon s3</a>, <a href='http://myownpirateradio.com/tag/backup/'>backup</a>, <a href='http://myownpirateradio.com/tag/heroku/'>heroku</a>, <a href='http://myownpirateradio.com/tag/iam/'>IAM</a>, <a href='http://myownpirateradio.com/tag/mongodb/'>mongodb</a>, <a href='http://myownpirateradio.com/tag/mongohq/'>mongohq</a>, <a href='http://myownpirateradio.com/tag/permissions/'>permissions</a>, <a href='http://myownpirateradio.com/tag/policy/'>policy</a>, <a href='http://myownpirateradio.com/tag/security/'>security</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/454/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=454&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2011/08/04/heroku-mongohq-and-amazon-s3-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
		<item>
		<title>Notes from Howard Lindzon&#8217;s DemoCamp Toronto 29 Talk</title>
		<link>http://myownpirateradio.com/2011/06/10/notes-from-howard-lindzons-democamp-toronto-29-talk/</link>
		<comments>http://myownpirateradio.com/2011/06/10/notes-from-howard-lindzons-democamp-toronto-29-talk/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 14:39:54 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dct29]]></category>
		<category><![CDATA[democamp]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=449</guid>
		<description><![CDATA[Howard Lindzon spoke last night at DemoCamp 29 (on twitter; democamp site). It was a fun ramblin&#8217; jamblin&#8217; talk. Here are a few takeaways that stood out for me: Treat the world as flat, and find a defensible niche to start in. E.g. think of the world as the Risk game board, and pick an &#8230; <a href="http://myownpirateradio.com/2011/06/10/notes-from-howard-lindzons-democamp-toronto-29-talk/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=449&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/howardlindzon">Howard Lindzon</a> spoke last night at DemoCamp 29 (<a href="http://twitter.com/#!/search/dct29">on twitter</a>; <a href="http://democamp.com">democamp site</a>). It was a fun ramblin&#8217; jamblin&#8217; talk. Here are a few takeaways that stood out for me:</p>
<p><strong>Treat the world as flat, and find a defensible niche to start in.</strong> E.g. think of the world as the Risk game board, and pick an initial territory where your chances of getting established are high. If you start in Europe, you have lots of borders and the battle is much harder than, say, starting in Australia. (Or Kamchatka. Remember Kamchatka? I think I learned more geography in Risk than in school.)</p>
<p><strong>Follow your own rules.</strong> In response to an audience question about mistakes he has made in his career, Howard explained that many of them stemmed from breaking his own rules when investing, e.g. (1) investing in the market when all signs still clearly pointed to down, (2) investing in companies whose CEOs did not have deep domain experience. (Howard likes such companies best, as a rule, for his investments.)</p>
<p><strong>Have a sense of humor, especially about yourself.</strong> Howard&#8217;s self-deprecating humor made him a real pleasure to listen to, and he explained that his habit of poking fun at himself is part of why people like to follow him in social media. &#8220;I make fun of my own mistakes first, before anyone else has a chance to.&#8221;  He talked openly about passing on a few investments that would have been incredibly profitable, e.g. a chance to invest $25K in Twitter when it was valued at only $20M.</p>
<p><strong>Spot and leverage the big waves.</strong> He spoke to only one slide during the 30-or-so minutes, and it showed two graphs depicting the meteoric rise in Twitter and Facebook usage. His main point was that when you can get in front of a huge market-changing trend (like social media) you are maximizing your business opportunities to do well. &#8220;You don&#8217;t need to catch every wave. Just one amazingly great wave in your lifetime is all you really need&#8221;. Also, fighting a paradigm-changing trend is futile. So, in this specific example, which Howard calls &#8220;the social leverage trend&#8221;, figure out which of Facebook and Twitter it makes best sense to align your business with first, then integrate and try to ride the wave.</p>
<p><strong>Use your dashboards.</strong> He talked about dashboards and his view that they&#8217;re essential to business success. From memory, &#8220;What&#8217;s your dashboard? It&#8217;s never too early to start building your dashboard. &#8230; Figure out the one or two pages you need to look at every day to understand both the macro market picture and the micro [i.e. the key signals/metrics from your own business]. For me it&#8217;s http://techmeme.com, http://angellist.com, and market all time highs.&#8221; These dashboards give him &#8220;the very early market signals [from AngelList] and the loudest public market signals [from all-time highs]&#8220;.</p>
<p>Thanks Howard for a fun and frank talk.</p>
<br />Filed under: <a href='http://myownpirateradio.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://myownpirateradio.com/tag/dct29/'>dct29</a>, <a href='http://myownpirateradio.com/tag/democamp/'>democamp</a>, <a href='http://myownpirateradio.com/tag/entrepreneur/'>entrepreneur</a>, <a href='http://myownpirateradio.com/tag/startup/'>startup</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/449/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=449&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2011/06/10/notes-from-howard-lindzons-democamp-toronto-29-talk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
		<item>
		<title>Thousands piled on at the last minute to push Wikileaks over 1M Facebook Fans</title>
		<link>http://myownpirateradio.com/2010/12/08/people-piled-on-to-push-wikileaks-over-1m-facebook-fans/</link>
		<comments>http://myownpirateradio.com/2010/12/08/people-piled-on-to-push-wikileaks-over-1m-facebook-fans/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 05:37:15 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[technology and society]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[memes]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[virality]]></category>
		<category><![CDATA[wikileaks]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=389</guid>
		<description><![CDATA[Sometime a little after 5pm EST on Dec 7, 2010, Wikileaks gained its 1 millionth Facebook fan. That&#8217;s about 10 hours after my prediction, as the growth rate slowed through the night (duh) and didn&#8217;t return to the previous day&#8217;s pace during most of the day. Here&#8217;s the chart, showing Facebook likes (fans) in blue and &#8230; <a href="http://myownpirateradio.com/2010/12/08/people-piled-on-to-push-wikileaks-over-1m-facebook-fans/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=389&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometime a little after 5pm EST on Dec 7, 2010, Wikileaks gained its 1 millionth Facebook fan. That&#8217;s about 10 hours after my <a href="http://myownpirateradio.com/2010/12/06/wikileaks-will-exceed-1m-facebook-fans-in-the-next-16-hours/">prediction</a>, as the growth rate slowed through the night (duh) and didn&#8217;t return to the previous day&#8217;s pace during most of the day.</p>
<p>Here&#8217;s the chart, showing Facebook likes (fans) in blue and Twitter followers in red. The gaps in the lines are gaps in data sampling. I sampled every 5 minutes.</p>
<p><a href="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-2010-12-07-2200est1.png"><img class="alignnone size-full wp-image-392" title="fb-wikileaks-likes.2010-12-06.1100EST-2010-12-07.2200EST" src="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-2010-12-07-2200est1.png?w=510" alt=""   /></a></p>
<p>Notice the funky little blip in the blue line right around the 1 million mark? Here&#8217;s another chart that zooms in on that timeframe within the red circle:</p>
<p><a href="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-07-1500est-2010-12-07-2200est.png"><img class="size-full wp-image-391 alignnone" title="fb-wikileaks-likes.2010-12-07.1500EST-2010-12-07.2200EST" src="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-07-1500est-2010-12-07-2200est.png?w=510" alt=""   /></a></p>
<p>A significant acceleration starts around 1710 EST. During this period the average number of new likes per minute (LPM, it&#8217;s the new RPM) goes from 89 or so up to a peak of 516, and then decelerates back down to 83 LPM at 1800 EST, followed by a continuing decline from there onwards.</p>
<p>At first I thought the lift was tied solely to prime time East coast US and Canada news., i.e. people might have logged on to Facebook immediately after hearing news stories about Wikileaks. That probably happened, to some degree. But if that were the only factor, we should have expected a similar bump, or sustained high growth, through the 1800-1900 hour, which is also news-heavy. And that&#8217;s not the case, as you can plainly see.</p>
<p>My best guess is that a crowd of people were aware the Wikileaks Facebook page was almost at 1M fans, and they all piled on when it got close to push Wikileaks over the 1M mark. Probably some of them hoped to be the 1 millionth fan. (Is there a badge for that?)</p>
<p>In case you&#8217;re interested, below is the raw data for 1500 EST to 2000 EST. Note I&#8217;ve calculated <em>average</em> new likes per minute, as I&#8217;m sampling every 5 minutes.</p>
<p>Why bother with all this analysis? Ethics and aims of Wikileaks aside, I just think this an interesting phenomenon at the intersection of math, psychology, and social networks. It&#8217;s not often you get to watch a meme go viral, in realtime, with accurate metrics available for tracking it. Lucky us.</p>
<p>I&#8217;ll keep my samples running for a while, in case anything else interesting happens.</p>
<table border="0" cellspacing="0" cellpadding="0" width="423">
<col span="2" width="174"></col>
<col width="75"></col>
<tbody>
<tr>
<td width="174" height="13">Date/Time (EST)</td>
<td width="174">Facebook Likes</td>
<td width="75">Avg. new likes/minute</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:00</td>
<td align="right">982510</td>
<td align="right">86</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:05</td>
<td align="right">982962</td>
<td align="right">90</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:10</td>
<td align="right">983389</td>
<td align="right">85</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:15</td>
<td align="right">983855</td>
<td align="right">93</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:20</td>
<td align="right">984282</td>
<td align="right">85</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:25</td>
<td align="right">984725</td>
<td align="right">89</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:30</td>
<td align="right">985115</td>
<td align="right">78</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:35</td>
<td align="right">985505</td>
<td align="right">78</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:40</td>
<td align="right">985940</td>
<td align="right">87</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:45</td>
<td align="right">986320</td>
<td align="right">76</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:50</td>
<td align="right">986728</td>
<td align="right">82</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   15:55</td>
<td align="right">987136</td>
<td align="right">82</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:00</td>
<td align="right">987557</td>
<td align="right">84</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:05</td>
<td align="right">987979</td>
<td align="right">84</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:10</td>
<td align="right">988429</td>
<td align="right">90</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:15</td>
<td align="right">988856</td>
<td align="right">85</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07 16:20</td>
<td align="right">989309</td>
<td align="right">91</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:25</td>
<td align="right">989751</td>
<td align="right">88</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:30</td>
<td align="right">990164</td>
<td align="right">83</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:35</td>
<td align="right">990584</td>
<td align="right">84</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:40</td>
<td align="right">990998</td>
<td align="right">83</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:45</td>
<td align="right">991404</td>
<td align="right">81</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:50</td>
<td align="right">991845</td>
<td align="right">88</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   16:55</td>
<td align="right">992301</td>
<td align="right">91</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:00</td>
<td align="right">992730</td>
<td align="right">86</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:05</td>
<td align="right">993175</td>
<td align="right">89</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:10</td>
<td align="right">994691</td>
<td align="right">303</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:15</td>
<td align="right">997270</td>
<td align="right">516</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:20</td>
<td align="right">999698</td>
<td align="right">486</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:25</td>
<td align="right">1001745</td>
<td align="right">409</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:30</td>
<td align="right">1003400</td>
<td align="right">331</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:35</td>
<td align="right">1004748</td>
<td align="right">270</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:40</td>
<td align="right">1006032</td>
<td align="right">257</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:45</td>
<td align="right">1006595</td>
<td align="right">113</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:50</td>
<td align="right">1007818</td>
<td align="right">245</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   17:55</td>
<td align="right">1008331</td>
<td align="right">103</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:00</td>
<td align="right">1008748</td>
<td align="right">83</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:05</td>
<td align="right">1009130</td>
<td align="right">76</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:10</td>
<td align="right">1009483</td>
<td align="right">71</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:15</td>
<td align="right">1009836</td>
<td align="right">71</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:20</td>
<td align="right">1010182</td>
<td align="right">69</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:25</td>
<td align="right">1010523</td>
<td align="right">68</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:30</td>
<td align="right">1010863</td>
<td align="right">68</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:35</td>
<td align="right">1011204</td>
<td align="right">68</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:40</td>
<td align="right">1011495</td>
<td align="right">58</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:45</td>
<td align="right">1011804</td>
<td align="right">62</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:50</td>
<td align="right">1012134</td>
<td align="right">66</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   18:55</td>
<td align="right">1012420</td>
<td align="right">57</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:00</td>
<td align="right">1012703</td>
<td align="right">57</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:05</td>
<td align="right">1012968</td>
<td align="right">53</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:11</td>
<td align="right">1013228</td>
<td align="right">52</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:16</td>
<td align="right">1013496</td>
<td align="right">54</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:21</td>
<td align="right">1013766</td>
<td align="right">54</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:26</td>
<td align="right">1013991</td>
<td align="right">45</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:31</td>
<td align="right">1014236</td>
<td align="right">49</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:36</td>
<td align="right">1014457</td>
<td align="right">44</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:41</td>
<td align="right">1014672</td>
<td align="right">43</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:46</td>
<td align="right">1014882</td>
<td align="right">42</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:51</td>
<td align="right">1015105</td>
<td align="right">45</td>
</tr>
<tr>
<td height="13" align="right">2010-12-07   19:56</td>
<td align="right">1015321</td>
<td align="right">43</td>
</tr>
</tbody>
</table>
<br />Filed under: <a href='http://myownpirateradio.com/category/technology-and-society/'>technology and society</a>, <a href='http://myownpirateradio.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://myownpirateradio.com/tag/facebook/'>facebook</a>, <a href='http://myownpirateradio.com/tag/memes/'>memes</a>, <a href='http://myownpirateradio.com/tag/social-media/'>social media</a>, <a href='http://myownpirateradio.com/tag/twitter/'>twitter</a>, <a href='http://myownpirateradio.com/tag/virality/'>virality</a>, <a href='http://myownpirateradio.com/tag/wikileaks/'>wikileaks</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=389&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2010/12/08/people-piled-on-to-push-wikileaks-over-1m-facebook-fans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>

		<media:content url="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-2010-12-07-2200est1.png" medium="image">
			<media:title type="html">fb-wikileaks-likes.2010-12-06.1100EST-2010-12-07.2200EST</media:title>
		</media:content>

		<media:content url="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-07-1500est-2010-12-07-2200est.png" medium="image">
			<media:title type="html">fb-wikileaks-likes.2010-12-07.1500EST-2010-12-07.2200EST</media:title>
		</media:content>
	</item>
		<item>
		<title>Wikileaks will exceed 1M Facebook fans in the next 16 hours</title>
		<link>http://myownpirateradio.com/2010/12/06/wikileaks-will-exceed-1m-facebook-fans-in-the-next-16-hours/</link>
		<comments>http://myownpirateradio.com/2010/12/06/wikileaks-will-exceed-1m-facebook-fans-in-the-next-16-hours/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 21:07:15 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[virality]]></category>
		<category><![CDATA[wikileaks]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=374</guid>
		<description><![CDATA[One of the interesting things about the Wikileaks brouhaha is the speed at which news about it, and support for it, is propagating. I&#8217;ve been watching Wikileaks&#8217; Facebook page today (Dec 6 ,2010), and if my numbers are right it has gained an average of 105 &#8220;Likes&#8221; per minute between 11AM EST and 3:25 PM EST. That&#8217;s &#8230; <a href="http://myownpirateradio.com/2010/12/06/wikileaks-will-exceed-1m-facebook-fans-in-the-next-16-hours/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=374&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the interesting things about the Wikileaks brouhaha is the speed at which news about it, and support for it, is propagating. I&#8217;ve been watching <a href="http://facebook.com/wikileaks">Wikileaks&#8217; Facebook page</a> today (Dec 6 ,2010), and if my numbers are right it has gained an average of 105 &#8220;Likes&#8221; per minute between 11AM EST and 3:25 PM EST. That&#8217;s about 6300 new people, every hour, giving Wikileaks a thumbs-up by clicking the &#8220;Like&#8221; button on their fan page. A few minutes ago it topped 900k.</p>
<p>Extrapolating from that average, in about 16 hours, Wikileaks will have over 1 million Facebook supporters.</p>
<p><a href="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-1515est1.png?w=300"></a><a href="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-1515est1.png"><img class="alignnone size-full wp-image-377" title="fb-wikileaks-likes.2010-12-06.1100EST-1515EST" src="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-1515est1.png?w=510" alt="Count of &quot;Likes&quot; for http://facebook.com/wikileaks"   /></a></p>
<p>How &#8217;bout Twitter? <a href="http://twitter.com/wikileaks">Wikileaks&#8217; Twitter account</a> gained 1907 followers between 13:32 EST and 15:32 EST, up from 406,018 to 407,925.</p>
<p>I wish I&#8217;d been looking at the data earlier on. It would be neat to see the points where the growth accelerated, and correlate that with big news events. The only historical data I have is that on Dec 4, just two days ago, Wikileaks tweeted  they had hit 600K Facebook supporters.</p>
<p><a href="http://www.google.ca/search?q=amazon+paypal+easydns+wikileaks?q=amazon+paypal+easydns+wikileaks">Amazon, PayPal, and EveryDNS (not EasyDNS!) have all dropped support for Wikileaks&#8217; internet presence</a>. I wonder whether and how long Twitter and Facebook will allow these accounts to stay up.</p>
<br />Filed under: <a href='http://myownpirateradio.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://myownpirateradio.com/tag/facebook/'>facebook</a>, <a href='http://myownpirateradio.com/tag/social-media/'>social media</a>, <a href='http://myownpirateradio.com/tag/twitter/'>twitter</a>, <a href='http://myownpirateradio.com/tag/virality/'>virality</a>, <a href='http://myownpirateradio.com/tag/wikileaks/'>wikileaks</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=374&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2010/12/06/wikileaks-will-exceed-1m-facebook-fans-in-the-next-16-hours/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>

		<media:content url="http://oshoma.files.wordpress.com/2010/12/fb-wikileaks-likes-2010-12-06-1100est-1515est1.png" medium="image">
			<media:title type="html">fb-wikileaks-likes.2010-12-06.1100EST-1515EST</media:title>
		</media:content>
	</item>
		<item>
		<title>I swear, I didn&#8217;t work on Windows 7</title>
		<link>http://myownpirateradio.com/2009/11/05/i-swear-i-didnt-work-on-windows-7/</link>
		<comments>http://myownpirateradio.com/2009/11/05/i-swear-i-didnt-work-on-windows-7/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 18:00:41 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[silly]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=295</guid>
		<description><![CDATA[In the silly-marketing-antics department, my buddy Scott forwarded this screenshot around yesterday. It&#8217;s from  Steve Ballmer&#8217;s Windows 7 launch keynote slides. In that main triangle of people in the center, the back three rows or so is lifted directly from a photo of the Live Search team. I&#8217;m in it &#8212; back row, 3rd from &#8230; <a href="http://myownpirateradio.com/2009/11/05/i-swear-i-didnt-work-on-windows-7/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=295&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the silly-marketing-antics department, my buddy Scott forwarded this screenshot around yesterday. It&#8217;s from  <a href="http://www.microsoft.com/presspass/exec/steve/2009/10-22Win7Launch.mspx">Steve Ballmer&#8217;s Windows 7 launch keynote slides</a>.</p>
<p style="text-align:center;"><img class="size-medium wp-image-296 aligncenter" title="Win7_Launch" src="http://oshoma.files.wordpress.com/2009/11/win7_launch.jpg?w=300&#038;h=168" alt="Win7_Launch" width="300" height="168" /></p>
<p>In that main triangle of people in the center, the back three rows or so is lifted directly from a photo of the Live Search team. I&#8217;m in it &#8212; back row, 3rd from the left &#8212; so it must have been taken in late 2004 or early 2005.</p>
<p>Scott&#8217;s in it too, from many moons ago when he worked at Microsoft. In fact he&#8217;s in there at least twice.</p>
<p>Can&#8217;t wait for my ship-it award!</p>
<br />Posted in Uncategorized Tagged: marketing, microsoft, silly <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=295&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2009/11/05/i-swear-i-didnt-work-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>

		<media:content url="http://oshoma.files.wordpress.com/2009/11/win7_launch.jpg?w=300" medium="image">
			<media:title type="html">Win7_Launch</media:title>
		</media:content>
	</item>
		<item>
		<title>Join the Toronto Open Data Community</title>
		<link>http://myownpirateradio.com/2009/10/11/join-the-toronto-open-data-community/</link>
		<comments>http://myownpirateradio.com/2009/10/11/join-the-toronto-open-data-community/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 15:18:41 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=293</guid>
		<description><![CDATA[Toronto, we have lift-off! The City is hosting an &#8220;Open Data Lab&#8221; on Nov 2 to kick off their community engagement on open data. The Open Data Lab is an opportunity to explore the innovation possibilities of open civic data in Toronto. Join City subject matter and technology experts, community stakeholders and talented members of &#8230; <a href="http://myownpirateradio.com/2009/10/11/join-the-toronto-open-data-community/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=293&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Toronto, we have lift-off!</p>
<p>The City is hosting an <a href="http://remarkk.com/2009/10/09/call-to-action-join-the-toronto-open-data-community/">&#8220;Open Data Lab&#8221; on Nov 2</a> to kick off their community engagement on open data.</p>
<blockquote><p>The Open Data Lab is an opportunity to explore the innovation possibilities of open civic data in Toronto. Join City subject matter and technology experts, community stakeholders and talented members of Toronto’s vibrant technology and design communities in an interactive and collaborative afternoon imagining commercial, social and civic applications of the City’s newly launched open data program.</p></blockquote>
<p>Let&#8217;s get started.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=293&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2009/10/11/join-the-toronto-open-data-community/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
		<item>
		<title>Mint CEO on Startup Building</title>
		<link>http://myownpirateradio.com/2009/10/11/mint-ceo-on-startup-building/</link>
		<comments>http://myownpirateradio.com/2009/10/11/mint-ceo-on-startup-building/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 15:05:25 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=289</guid>
		<description><![CDATA[Mint.com CEO Aaron Patzer recently did a great presentation called &#8220;Everything you wanted to know about startup building, but were afraid to ask&#8220;. In it he chronicles the development of Mint.com from the germ of an idea all the way to exit. (Mint sold to Intuit for $170M.) It&#8217;s not just an interesting story. He &#8230; <a href="http://myownpirateradio.com/2009/10/11/mint-ceo-on-startup-building/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=289&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://mint.com">Mint.com</a> CEO Aaron Patzer recently did a great presentation called &#8220;<a href="http://www.techcrunch.com/2009/10/07/everything-you-wanted-to-know-about-startup-building-but-were-afraid-to-ask/">Everything you wanted to know about startup building, but were afraid to ask</a>&#8220;. In it he chronicles the development of Mint.com from the germ of an idea all the way to exit. (Mint sold to Intuit for $170M.)</p>
<p>It&#8217;s not just an interesting story. He talks in fine detail about costs, salaries he paid himself and employees, equity, business model&#8230; all the things you&#8217;d need to know if you wanted to build your own company. This sort of detail is usually kept hush-hush.</p>
<p>The accompanying slides are <a href="http://www.techcrunch.com/2009/10/08/startups-101-the-complete-mint-presentation/">here</a>.</p>
<p>Every startup founder should watch this.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=289&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2009/10/11/mint-ceo-on-startup-building/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
		<item>
		<title>New York City is doing Open Data too</title>
		<link>http://myownpirateradio.com/2009/10/08/new-york-city-is-doing-open-data-too/</link>
		<comments>http://myownpirateradio.com/2009/10/08/new-york-city-is-doing-open-data-too/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 23:04:27 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=285</guid>
		<description><![CDATA[With an apps competition, no less. The New York Times says: Contestants will have access to more than 170 data sets supplied by over 30 city agencies, including weekly traffic updates, schedules of citywide events, property sales, restaurant inspections and mappable data around school and voting districts. Exciting! We ought to do something of similar &#8230; <a href="http://myownpirateradio.com/2009/10/08/new-york-city-is-doing-open-data-too/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=285&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With an <a href="http://bits.blogs.nytimes.com/2009/10/06/new-york-city-wants-you-to-create-an-app-for-that/">apps competition</a>, no less.</p>
<p>The New York Times says:</p>
<blockquote><p>Contestants will have access to more than 170 data sets supplied by over 30 city agencies, including weekly traffic updates, schedules of citywide events, property sales, restaurant inspections and mappable data around school and voting districts.</p></blockquote>
<p>Exciting!</p>
<p>We ought to do something of similar spirit in Toronto, once people have had a chance to dogfood a version 1 &#8220;sandbox&#8221; release of open data.</p>
<p>See also: <a href="http://myownpirateradio.com/2009/09/16/open-data-whats-on-your-wish-list/">Open Data: What’s on Your Wish List?</a>, <a href="http://myownpirateradio.com/2009/08/14/open-data-making-toronto-a-better-place-to-live/">Open Data: Making Toronto a Better Place to Live</a></p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=285&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2009/10/08/new-york-city-is-doing-open-data-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
		<item>
		<title>5 Blocks Out has a Blog</title>
		<link>http://myownpirateradio.com/2009/09/29/5-blocks-out-has-a-blog/</link>
		<comments>http://myownpirateradio.com/2009/09/29/5-blocks-out-has-a-blog/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:39:41 +0000</pubDate>
		<dc:creator>Oshoma</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://myownpirateradio.com/?p=281</guid>
		<description><![CDATA[Katrin and I have been working for a while now on a project we call "5 Blocks Out". We've just launched a blog for it, which you can find at blog.5blocksout.com. <a href="http://myownpirateradio.com/2009/09/29/5-blocks-out-has-a-blog/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=281&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Katrin and I have been working for a while now on a project called &#8220;<a href="http://5blocksout.com">5 Blocks Out</a>&#8220;. We&#8217;ve just launched a blog for it, which you can find at <a href="http://blog.5blocksout.com">blog.5blocksout.com</a>.</p>
<p>The 5 Blocks Out Blog will mainly chronicle the development of the site.We&#8217;ll also post some city-related musings from time to time, similar in spirit to the posts Katrin has been writing on the <a href="http://blog.mukodu.com">Mukodu Blog</a>.</p>
<p>Currently 5BlocksOut.com is in the early stages of development &#8211; but already a great deal of fun. So whether you are interested in hearing about early stage start-ups, adventures in the City or how to get the most out of the site, the blog should have something for you.</p>
<p>Send me a line if you would like to learn more. Or check out the new blog as it gains momentum.</p>
<br />Posted in Uncategorized  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oshoma.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oshoma.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oshoma.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oshoma.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oshoma.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oshoma.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oshoma.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oshoma.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=myownpirateradio.com&amp;blog=146841&amp;post=281&amp;subd=oshoma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://myownpirateradio.com/2009/09/29/5-blocks-out-has-a-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">oshoma</media:title>
		</media:content>
	</item>
	</channel>
</rss>
