<?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>Shaping Clouds &#187; General Posts</title>
	<atom:link href="http://shapingclouds.com/category/general-posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://shapingclouds.com</link>
	<description>A blog on developing, deploying and maintaining web applications at Firmhouse</description>
	<lastBuildDate>Tue, 18 May 2010 18:20:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Server Decisions: How we configure our server with Chef</title>
		<link>http://shapingclouds.com/2010/05/18/server-decisions-how-we-configure-our-server-with-chef/</link>
		<comments>http://shapingclouds.com/2010/05/18/server-decisions-how-we-configure-our-server-with-chef/#comments</comments>
		<pubDate>Tue, 18 May 2010 18:20:27 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=547</guid>
		<description><![CDATA[I&#8217;ve heard a lot of stuff about Chef by Opscode some time ago but never actually gave it a try. Chef is a bundle of software that allows you to configure and install your servers by coding, not by entering commands. I fiddled with it one time but it was really hard to set up. [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2010%2F05%2F18%2Fserver-decisions-how-we-configure-our-server-with-chef%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2010%2F05%2F18%2Fserver-decisions-how-we-configure-our-server-with-chef%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve heard a lot of stuff about <a title="Page about Chef on Opscode site" href="http://opscode.com/chef" target="_self">Chef</a> by <a title="The creators of Chef" href="http://opscode.com">Opscode</a> some time ago but never actually gave it a try. Chef is a bundle of software that allows you to configure and install your servers by coding, not by entering commands. I fiddled with it one time but it was really hard to set up.</p>
<p>Because we&#8217;re launching our new server infrastructure on a new bigger <a title="AWS from Amazon" href="http://aws.amazon.com">Amazon</a> instance in a fe days, I thought I&#8217;d give it a try.</p>
<p>The main reason I was looking for something like Chef was automation. In the past I would install every server manually and I didn&#8217;t have some predefined bash scripts for setting up a server, installing the base system and preconfigure Rails, PHP apps and things like backups. Chef allows me to do that now.</p>
<p>Our new server is going to run various apps. Our own website, some WordPress websites and mainly Ruby on Rails apps. Because we run some business-critical apps for our clients the server setup should be clean and certainly not hacked together, and we need external backups to <a href="http://aws.amazon.com/s3">S3</a> and be able to add another server to the pool when usage gets bigger &#8211; which is going to happen.</p>
<p>When you have Chef installed, you probably want to run a <strong>Chef Server </strong>and a <strong>Chef Client</strong>. The Chef Server <strong>keeps all the state of the server configuration</strong> for the configuration and installation scripts. The Chef Client actually <strong>reads the configuration and runs the script</strong>.</p>
<p>The chef clients runs multiple recipes that configure your server. For example, a recipe downloads apache or nginx via apt-get when you&#8217;re on <a title="The Ubuntu Linux Distribution" href="http://ubuntu.com">Ubuntu</a>, but could install an RPM if you are on an rpm-based distribution. The recipe is the actual script, but you can also store configuration attributes and download urls with the recipes. These little bundles of recipes and other configuration are called cookbooks.</p>
<p>We currently have the following cookbooks in our Chef repository:</p>
<div id="attachment_550" class="wp-caption aligncenter" style="width: 237px">
	<a href="http://shapingclouds.com/wp-content/uploads/Schermafbeelding-2010-05-18-om-20.01.03.png"><img class="size-full wp-image-550" title="Our Chef repository" src="http://shapingclouds.com/wp-content/uploads/Schermafbeelding-2010-05-18-om-20.01.03.png" alt="Screenshot of the directory lay-out of our Chef repostitory" width="237" height="441" /></a>
	<p class="wp-caption-text">Our Chef repository</p>
</div>
<p>Recipes can depend on other recipes from other cookbooks. For instance to install<a title="Passenger website" href="http://modrails.com"> Phusion Passenger</a> and <a title="Nginx website" href="http://nginx.org">nginx</a>, I want to use the ruby_enterprise cookbook so it will first in stall the Phusion Ruby Enterprise Edition and then installes and configures nginx and passenger for it.</p>
<p>We use <a href="http://scoutapp.com">Scout App</a> for monitoring the performance and usage of the instance and we use it so we receive warnings if something reaches critical numbers.</p>
<p>For Scout, I did not run the Scout agent as explained on their on website, but I created a recipe for it in the scout cookbook:</p>
<p><code> </code></p>
<pre><code>gem_package "scout" do
  action :install
end

</code>
<code>gem_package "request-log-analyzer" do
  action :install
end</code>

user "scout" do
  comment "Scout Agent User"
  home "/home/scout"
  supports :manage_home =&gt; true
end

execute "scout_first_run" do
  user "scout"
  command "scout #{node[:scout][:key]}"
  creates "/home/scout/.scout/client_history.yaml"
  cwd "/home/scout"
  returns 1
  action :run
end

cron "scout_run" do
  minute "*/5"
  command "scout #{node[:scout][:key]}"
end</pre>
<p>What this recipe does it that it installs the gem &#8220;scout&#8221; using the gem_package Chef command. It then goes on to create a new system user for scout, run the scout agent for the first time and actually adds a cronjob to run it every 5 minutes.</p>
<p>You can see the code is quite clean and it doesn&#8217;t look like a hacked-together bash script and it doesn&#8217;t look as closed down as some kind of configuration database or .ini file. They are nice Ruby recipe&#8217;s for configuring stuff on your server.</p>
<p>You can see that I&#8217;m using the node[] variable a few times. The node variable is a Ruby hash of the current configuration the server (or node) is in that the client is being run. Using the web interface on the Chef server you can actually configure per-server configuration values. In our case, the Scout key would be different for every server.</p>
<p>You can do a l it more with these recipes like defining templates for files, default attributes, generating passwords but I&#8217;ll save that for another post.</p>
<p>The best thing about the recipes is that I can also communicate with the AWS API. The application cookbook you see there actually creates an EBS block storage devices and attaches it to the current node if it is not already created.</p>
<p>Because all state is saved in the Chef Server configuration database you can easily add more block storage devices or other external stuff just by running the Chef Client. The Chef client probes the server for all the current state the client is in and goes on upgrading all the new changes the recipes requested.</p>
<div id="attachment_553" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://shapingclouds.com/wp-content/uploads/Schermafbeelding-2010-05-18-om-20.18.53.png"><img class="size-medium wp-image-553" title="Chef server Screenshot" src="http://shapingclouds.com/wp-content/uploads/Schermafbeelding-2010-05-18-om-20.18.53-300x146.png" alt="" width="300" height="146" /></a>
	<p class="wp-caption-text">The status page in the Chef Server webapp</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2010/05/18/server-decisions-how-we-configure-our-server-with-chef/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some downtime this morning</title>
		<link>http://shapingclouds.com/2010/04/21/some-downtime-this-morning/</link>
		<comments>http://shapingclouds.com/2010/04/21/some-downtime-this-morning/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 12:34:49 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=544</guid>
		<description><![CDATA[Hi all, I had some downtime today so I&#8217;m sorry if you could not access this blog to get help on all the topics I right about. Everything should be fixed now. There seemed to be an error with our hosting provider. I&#8217;m trying to see if it was something major or if it was [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2010%2F04%2F21%2Fsome-downtime-this-morning%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2010%2F04%2F21%2Fsome-downtime-this-morning%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi all,</p>
<p>I had some downtime today so I&#8217;m sorry if you could not access this blog to get help on all the topics I right about. Everything should be fixed now. There seemed to be an error with our hosting provider. I&#8217;m trying to see if it was something major or if it was just a minor glitch in the power or connectivity or something.</p>
<p>Anyways, back up now so enjoy!</p>
<p><strong>Update: </strong>It seemed there was an administrative error with the supplier of my hosting provider. Will not happen again!</p>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2010/04/21/some-downtime-this-morning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The newspaper is going to rock, but not in it&#8217;s current form</title>
		<link>http://shapingclouds.com/2010/03/03/the-newspaper-is-going-to-rock-but-not-in-its-current-form/</link>
		<comments>http://shapingclouds.com/2010/03/03/the-newspaper-is-going-to-rock-but-not-in-its-current-form/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 19:02:58 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=484</guid>
		<description><![CDATA[This morning I got out of bed, made myself a bowl of cornflakes with milk and headed over to the kitchen table where my dad always puts down the newspaper I&#8217;m subscribed to: NRC Next. It&#8217;s a Dutch tabloid-format newspaper with daily news and in-depth articles around recent happenings in the world. I recently resubscribed [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2010%2F03%2F03%2Fthe-newspaper-is-going-to-rock-but-not-in-its-current-form%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2010%2F03%2F03%2Fthe-newspaper-is-going-to-rock-but-not-in-its-current-form%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>This morning I got out of bed, made myself a bowl of cornflakes with milk and headed over to the kitchen table where my dad always puts down the newspaper I&#8217;m subscribed to: <a href="http://nrcnext.nl">NRC Next</a>. It&#8217;s a Dutch tabloid-format newspaper with daily news and in-depth articles around recent happenings in the world.</p>
<p>I recently resubscribed to it and I love it: I have redacted important news that fit&#8217;s to my size of wanting to read a newspaper. I just HATE folding around a large newspaper all the time. I want to have a portable newspaper that I can take with me, easily put in my bag and that falls on my doormat every day. Every night when I read the last less important articles in NRC Next, I&#8217;m already waiting for the new issue so I can enjoy another new newspaper-reading day.</p>
<p><span id="more-484"></span></p>
<p>So, that&#8217;s form and function. Now for the other great thing about NRC next: content.</p>
<p>I really HATE newspaper that just list all the news that happened the day before. They are just paper versions of the RSS feeds and news sites I refresh about 60 times a day. Those newspaper are old news in the morning and waste my time by reading the same content another time.</p>
<p>NRC Next provides in-depth articles and also covers topics that other newspapers do not cover like more Tech, Science and Philosophy. I like those topics in this paper because except from techcrunch.com I don&#8217;t really read about them, but they are actually the most important subjects in my life. NRC Next provides the most important &#8220;recent news&#8221; stories and than gets on to the good stuff.</p>
<p>Now, I think &#8220;old newspapers&#8221; are dying because of paper, because of the form and size they are printed on but also because they just provide &#8220;recent news&#8221;. All I see in most conventional newspapers is still the sum of stuff I&#8217;ve already read yesterday in my browser. They should cut that crap! Especially young internet-savvy people (25 and younger) already read those breaking news stories on the web. They get it trough sms, e-mail newsletters, blogs, RSS or refreshing newsportals 20 times a day. At least the more interested target group is interested in in-depth articles or articles about a not so well known topics: the niches. Most people tend to find content on niche blogs which are mostly amateur and the good ones are either popular and write about the same stuff from within a single standpoint or are hard to find.</p>
<p>I refresh techcrunch.com about 15 times a day because I won&#8217;t find that stuff in any newspaper.</p>
<p>So what would be the (or at least my) ideal newspaper?</p>
<p>My ideal newspaper is a newspaper where both journalists create but also just redact content. Professional journalists should have a moderation role over news and should add their own commentary about what they find. They should put together a newspaper with content from various sources and add their own content to it. Journalists are educated in filtering the crap articles and picking the right ones or the special ones. They can add some &#8220;recent news/breaking stories&#8221; articles, especially on bigger developing ones but they should but the crap with those small &#8220;a cat fell out of the tree and hit a car which caused a major accident&#8221;-kind of stuff. I already read that yesterday!</p>
<p>Also, I want to cut the paper out of newspaper. I have too many papers laying around all the time and I want to be able to view movies and stuff and listen to documentaries or audio clips while reading the articles. A device like the iPad would be ideal for this. I want to be able to drag, drop, click, view, interact, bookmark, sync and share the content the editors wrote and moderated for me. And I want to take my newspaper with me all the time and I want to be able to read it anywhere. And no, that doesn&#8217;t mean on a smartphone.</p>
<p>Have you seen the sizes of those screens? When reading a paper I scan, I look at the pictures beside it, I switch between articles etc. That&#8217;s just nog possible on the screen size of smart phone. A laptop? No. I don&#8217;t need a keyboard when reading the newspaper, I don&#8217;t want to open/close my lid every time I switch trains when commuting, talk to somebody at the office, go out lunch or just switch channels on my TV. I want it to &#8220;feel&#8221; like a traditional paper tabloid-size version so I can carry it around everywhere without fuzz.</p>
<p>So the last thing I would like to add that relates to content and realtime and carrying the device. Carrying the device with you DOES NOT mean that I want to update it all the time! When I get a lot of great articles in the morning I don&#8217;t want them to be lost in the stream all the news stories in the world. The professionals behind the paper can select and moderate them for me until I get my new newspaper release the next morning and leave out all the unimportant or boring stuff. The state should be maintained in every release. I want to be sure that when I wake up there is a great new digital and interactive release of that days paper and I want to be sure that it&#8217;s still there when I get home in the evening or go to lunch so I can read on where I left off.</p>
<p>I want a newspaper where <strong>content is moderated and written by professional journalists</strong> so I won&#8217;t have to do the moderation myself and check 2000 feeds every day. I want it to be i<strong>nteractive, be able to share and bookmark stuff</strong>. I want it to p<strong>ortable on a comfortable size</strong>. Not a phone size and not something sluggish like a laptop.</p>
<p>Finally I want the content to <strong>stay all day</strong>. I want to have that traditional newspaper feeling. In the evening, I want to have the traditional newspaper feeling that tomorrow there will be a great new newspaper release waiting for me to be consumed. I want to be sure that I&#8217;m never leaving any important piece behind and that the professional journalists will tell me the next day, if I do.</p>
<p>No, mainstream consumers are not ready for this yet, but I think they&#8217;re going to become very close in the next 2 &#8211; 4 years. I believe that in 6 years, everyone will be reading the news on an iPad-like device while commuting. And I believe this is currently the only way that non-internet-tech-journalist-savvy people can consume news in a better way.</p>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2010/03/03/the-newspaper-is-going-to-rock-but-not-in-its-current-form/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rational emotions</title>
		<link>http://shapingclouds.com/2009/12/09/rational-emotions/</link>
		<comments>http://shapingclouds.com/2009/12/09/rational-emotions/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 16:17:30 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=389</guid>
		<description><![CDATA[I know how you are, world I know how you need to be. That&#8217;s why I can&#8217;t get mad at you, When you are sometimes so cruel to me. I just liked this poem]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F12%2F09%2Frational-emotions%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F12%2F09%2Frational-emotions%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p style="padding-left: 30px;">I know how you are, world<br />
I know how you need to be.</p>
<p style="padding-left: 30px;">That&#8217;s why I can&#8217;t get mad at you,<br />
When you are sometimes so cruel to me.</p>
<p>I just liked this poem <img src='http://shapingclouds.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/12/09/rational-emotions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sneak preview of Cash Buddy</title>
		<link>http://shapingclouds.com/2009/09/29/sneak-preview-of-cash-buddy/</link>
		<comments>http://shapingclouds.com/2009/09/29/sneak-preview-of-cash-buddy/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 16:06:19 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=295</guid>
		<description><![CDATA[This is a sneak preview screenshot of Cash Buddy. Cash Buddy is about tracking your personal cashflow. It helps you plan bills and expenses and let&#8217;s you keep track of what money is coming in and going out. Just to make you sure you won&#8217;t have to worry about your personal finances. What do you [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F09%2F29%2Fsneak-preview-of-cash-buddy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F09%2F29%2Fsneak-preview-of-cash-buddy%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>This is a sneak preview screenshot of Cash Buddy. Cash Buddy is about tracking your personal cashflow. It helps you plan bills and expenses and let&#8217;s you keep track of what money is coming in and going out. Just to make you sure you won&#8217;t have to worry about your personal finances. What do you think?</p>
<p><a href="http://shapingclouds.com/wp-content/uploads/cash-buddy-design.png"><img class="aligncenter size-medium wp-image-296" title="Cash Buddy Design" src="http://shapingclouds.com/wp-content/uploads/cash-buddy-design-288x300.png" alt="Cash Buddy Design" width="288" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/09/29/sneak-preview-of-cash-buddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The yacht I&#8217;m going to own in 5 years</title>
		<link>http://shapingclouds.com/2009/09/29/the-yacht-im-going-to-own-in-5-years/</link>
		<comments>http://shapingclouds.com/2009/09/29/the-yacht-im-going-to-own-in-5-years/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 14:29:03 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=291</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F09%2F29%2Fthe-yacht-im-going-to-own-in-5-years%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F09%2F29%2Fthe-yacht-im-going-to-own-in-5-years%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_292" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://shapingclouds.com/wp-content/uploads/Azimut-Leonardo.jpg"><img class="size-medium wp-image-292" title="Azimut---Leonardo" src="http://shapingclouds.com/wp-content/uploads/Azimut-Leonardo-300x187.jpg" alt="Yacht" width="300" height="187" /></a>
	<p class="wp-caption-text">Yacht</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/09/29/the-yacht-im-going-to-own-in-5-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why The Pirate Bay deal is great</title>
		<link>http://shapingclouds.com/2009/06/30/why-the-pirate-bay-deal-is-great/</link>
		<comments>http://shapingclouds.com/2009/06/30/why-the-pirate-bay-deal-is-great/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 10:20:14 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=249</guid>
		<description><![CDATA[Today TPB announced it would sell itself to the Global Gaming Factory X AB. This is great for the future of the open internet and might be a step forwards to open up the conservative big copyright watchers and media companies Here&#8217;s why: It shows commercial interest in an &#8220;illegal&#8221; practice started by a wide [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F06%2F30%2Fwhy-the-pirate-bay-deal-is-great%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F06%2F30%2Fwhy-the-pirate-bay-deal-is-great%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Today TPB announced it would sell itself to the Global Gaming Factory X AB. This is great for the future of the open internet and might be a step forwards to open up the conservative big copyright watchers and media companies Here&#8217;s why:</p>
<ul>
<li>It shows commercial interest in an &#8220;illegal&#8221; practice started by a wide community of both regular people and people interested in protecting the openness of the internet.</li>
<li>If I believe TPBs blogpost, the company buying the torrent site is not only interested in earning money, but also in keeping the site running in the philosophy as it started, but also find ways to maybe bring commercial methods of downloading the files linked to as torrents.</li>
<li>The money will go into a foundation protecting the freedom of speach, freedom of information and openness of the internet.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/06/30/why-the-pirate-bay-deal-is-great/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 things I do to keep enjoying doing stuff</title>
		<link>http://shapingclouds.com/2009/06/07/5-things-i-do-to-keep-enjoying-doing-stuff/</link>
		<comments>http://shapingclouds.com/2009/06/07/5-things-i-do-to-keep-enjoying-doing-stuff/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 20:14:35 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=219</guid>
		<description><![CDATA[Here&#8217;s a list of practical things I do to keep productive. Reset your mind every evening (especially before a work-day): go read a book an hour before you usually go to bed. Read it in your living room or somewhere where you can&#8217;t go to bed and can&#8217;t get to a computer. I like to [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F06%2F07%2F5-things-i-do-to-keep-enjoying-doing-stuff%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F06%2F07%2F5-things-i-do-to-keep-enjoying-doing-stuff%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Here&#8217;s a list of practical things I do to keep productive.</p>
<ul>
<li><strong>Reset your mind every evening</strong> (especially before a work-day): go read a book an hour before you usually go to bed. Read it in your living room or somewhere where you can&#8217;t go to bed and can&#8217;t get to a computer. I like to do this at 11pm with a nice cup of tea.</li>
<li><strong>Have a healthy eating rhythm</strong>. By this I do not explicitly mean eat healthy food! Just have breakfast, lunch and dinner each day. Snacks are fine too, as long as you keep your 3-meals a day rhythm. I force to have breakfast the last few weeks and I&#8217;m feeling better already. If you&#8217;re like me and you hate having breakfast try something light like some fruit, cornflakes or yesterdays leftovers.</li>
<li><strong>Schedule your off-time</strong>. Don&#8217;t see relaxation as a reward for getting things done. Plan your relaxation so you know you <strong>will</strong> get things done after relaxing. If you don&#8217;t plan time to unstress, you never will. Also, it will make sure you don&#8217;t worry about relaxing because you know you can because you scheduled it.</li>
<li><strong>Don&#8217;t worry about finances.</strong> Make sure you have a system for keeping track of your finances so you won&#8217;t have to worry about them. This doesn&#8217;t stop you worrying from not having money to pay your bills but knowing you can&#8217;t pay them and finding out when you <em>can</em> pay them relieves stress about finances.</li>
<li><strong>Keep your inbox clean and actions organized. </strong>Just like with finances. You can relieve mental stress if you know what to do and when you&#8217;ve answered to all your running projects and tasks. It might be possible you can&#8217;t do every task you have but it helps knowing having actions you can&#8217;t do, rather than not knowing what to do with them. I just Dave Allen&#8217;s Getting Things Done system for this. Read his book <a href="http://www.amazon.com/gp/product/0142000280?ie=UTF8&amp;tag=shapclou-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0142000280">Getting Things Done: The Art of Stress-Free Productivity</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=shapclou-20&amp;l=as2&amp;o=1&amp;a=0142000280" border="0" alt="" width="1" height="1" /> about this.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/06/07/5-things-i-do-to-keep-enjoying-doing-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to not annoy friends when connecting Facebook, FriendFeed and Twitter</title>
		<link>http://shapingclouds.com/2009/04/21/how-to-not-annoy-friends-when-connecting-facebook-friendfeed-and-twitter/</link>
		<comments>http://shapingclouds.com/2009/04/21/how-to-not-annoy-friends-when-connecting-facebook-friendfeed-and-twitter/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 17:54:59 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[friendfeed]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://shapingclouds.com/?p=207</guid>
		<description><![CDATA[Before I kick off with my first Cloud Ideas post (I&#8217;m working on several and will just choose one impsulsively when their done) I&#8217;d like to share one little train of tought with you. This is for you if you are tech-savvy, are addicted to Twittering and FriendFeeding and using more regular social networks like [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F04%2F21%2Fhow-to-not-annoy-friends-when-connecting-facebook-friendfeed-and-twitter%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F04%2F21%2Fhow-to-not-annoy-friends-when-connecting-facebook-friendfeed-and-twitter%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Before I kick off with my first Cloud Ideas post (I&#8217;m working on several and will just choose one impsulsively when their done) I&#8217;d like to share one little train of tought with you. This is for you if you are tech-savvy, are addicted to Twittering and FriendFeeding and using more regular social networks like Facebook or Hyves if you&#8217;re in The Netherlands.</p>
<p>If you&#8217;re like me,  you Twitter a lot. Especially while on an internet or web conference, building the next cool web application or just discussing trending technology. If you&#8217;ve connected Twitter, Friendfeed and Facebook, your personal &#8220;normal&#8221; friends will probably hate you. They&#8217;ll have their whole timeline spammed with your  - for them &#8211; uninterestingly geeky stuff.</p>
<p>My friends did anyways.</p>
<p>My Twitter usage is more in the discussion, random quotes/thoughts and chatty behaviour with my online and offline Twitter community. My Facebook and Hyves friends aren&#8217;t waiting for these incrowd little messages and would rather just know when I&#8217;m in the bar or having a shitty day at the office.</p>
<p>It happens to be that I probably share more interesting stuff on FriendFeed then over on Twitter. I mean, I do actually share interesting stuff on Twitter but that&#8217;s because FriendFeed puts it up their automatically. This way my FriendFeed timeline stays &#8220;clean&#8221; of the noise from Twitter and contains just interesting or funny stuff.</p>
<p>Previously, I would have enabled the Twitter &lt;-&gt; FriendFeed connection. That&#8217;s no more from this moment. I&#8217;ve decided to enable FriendFeed &lt;-&gt; Facebook synchronisation and will put non-noise status updates of how I&#8217;m doing on FriendFeed. Most FriendFeed users know how to hide those messages and are more power users anyway so they won&#8217;t care. These messages do get posted to Twitter so my Twitter followers will also know what I&#8217;m doing and my Facebook friends will get my personal status updates and the interesting stuff on Friendfeed.</p>
<h2>Conclusion</h2>
<p>Disabling the Twitter &lt;-&gt; FaceBook/your social network connection will reduce the techy and chatty from Twitter for your FaceBook friends. Enabling FaceBook &lt;-&gt; FriendFeed enables you to keep sharing interesting stuff from FriendFeed to Twitter and Facebook. And by adding a few personal status messages to FriendFeed each day. Both your FriendFeed and your Twitter friends will be notified of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/04/21/how-to-not-annoy-friends-when-connecting-facebook-friendfeed-and-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Cloud Ideas</title>
		<link>http://shapingclouds.com/2009/04/17/introducing-cloud-ideas/</link>
		<comments>http://shapingclouds.com/2009/04/17/introducing-cloud-ideas/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 16:22:46 +0000</pubDate>
		<dc:creator>Michiel</dc:creator>
				<category><![CDATA[General Posts]]></category>

		<guid isPermaLink="false">http://michielsikkes.wordpress.com/2009/04/17/introducing-cloud-ideas/</guid>
		<description><![CDATA[This blog is about inspiring people of what&#8217;s available in the cloud and how they can make use of it. Today I&#8217;m going to start experimenting with the concept of &#8220;cloud ideas&#8221;. I have a ton of ideas on new web services, online social games or mobile apps that make use of the web and [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F04%2F17%2Fintroducing-cloud-ideas%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fshapingclouds.com%2F2009%2F04%2F17%2Fintroducing-cloud-ideas%2F&amp;source=shapingclouds&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>This blog is about inspiring people of what&#8217;s available in the cloud and how they can make use of it.</p>
<p>Today I&#8217;m going to start experimenting with the concept of &#8220;cloud ideas&#8221;.</p>
<p>I have a ton of ideas on new web services, online social games or mobile apps that make use of the web and things in the cloud. Some of these ideas evolve into a personal prototype, some as input for Firmhousr projects but there&#8217;s still a large gap to fill because I don&#8217;t have infinite time, and some ideas just aren&#8217;t interesting for Firmhouse.</p>
<p>I encourage you to take the ideas, build apps or businesses on it, discuss it with personal friends or business partners. Hell, you can start the next Google if you want to. I will license the text of the ideas under a Creative Commons license (note: not the idea itself!) This way I&#8217;d like to bring people together, and make cool stuff, socially, businesswise or technical.</p>
<p>After reading a cloud idea and you want to bring it further, feel free to contact me and I&#8217;d be happy to discuss it personally, over e-mail, skype or other means. Perhaps I can even connect you to other people.</p>
<p>Moving to an open world where we can inspire each other to create such great stuff <img src='http://shapingclouds.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://shapingclouds.com/2009/04/17/introducing-cloud-ideas/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
