<?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>][ stefano maffulli &#187; community</title>
	<atom:link href="http://maffulli.net/tag/community/feed/" rel="self" type="application/rss+xml" />
	<link>http://maffulli.net</link>
	<description>about open source and freedom</description>
	<lastBuildDate>Tue, 11 Jun 2013 18:36:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Streaming Audio from Raspberry Pi &#8211; part 2</title>
		<link>http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/</link>
		<comments>http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 23:16:52 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[participation]]></category>
		<category><![CDATA[raspberrypi]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=5183</guid>
		<description><![CDATA[Episode two of my experiment with the Raspberry Pi I have received at Pycon 2013. On the way back from Santa Clara I stopped by Fry&#8217;s and bought the only USB sound card they had in store, a weird looking Creative and a powered USB hub.  I ordered also a case from Adafruit industries (not [...]]]></description>
				<content:encoded><![CDATA[<p>Episode two of my experiment with the Raspberry Pi I have received at Pycon 2013. On the way back from Santa Clara I stopped by Fry&#8217;s and bought the only USB sound card they had in store, a weird looking Creative and a powered USB hub.  I ordered also a case from Adafruit industries (not convinced of the case though).</p>
<p><a href="http://maffulli.net/wp-content/uploads/wpid-IMG_20130323_160257.jpg"><img class="alignnone size-full wp-image-5184" alt="Raspberry Pi and USB sound card" src="http://maffulli.net/wp-content/uploads/wpid-IMG_20130323_160257.jpg" width="500" height="375" /></a><br />
The output of lsusb:</p>
<blockquote><p>Bus 001 Device 006: ID 147a:e03d Formosa Industrial Computing, Inc.</p></blockquote>
<p>Hooked them all together, installed avahi-daemon on the Pi so I can ssh into it easily from any lan (ssh raspberrypi.local, although I should change its name to something more unique). Tested arecord locally first. It took me a while to figure out how to use arecord, it&#8217;s old stuff that I&#8217;m not very used to. You need to specify the hardware device. If you get this sort of error:</p>
<blockquote><p>arecord: main:682: audio open error: No such file or directory</p></blockquote>
<p>probably you haven&#8217;t specified that you want to record from the card that actually has an input device</p>
<blockquote><p>pi@raspberrypi ~ $ arecord -l<br />
**** List of CAPTURE Hardware Devices ****<br />
card 1: Audio [2 Channel USB Audio], device 0: USB Audio [USB Audio]<br />
Subdevices: 1/1<br />
Subdevice #0: subdevice #0</p></blockquote>
<p>I hooked my phone&#8217;s audio player to the mic input of the USB card so that there would be constantly audio coming in the Pi, then started recording</p>
<blockquote><p>pi@raspberrypi ~ $ arecord -D hw:1,0 -f s16_le -c 2 &gt; test.wav</p></blockquote>
<p>I have specified the hardware device I want to use, the format and the number of channels. Playing back that file worked.</p>
<blockquote><p>pi@raspberrypi ~ $ aplay -D hw:1,0 test.wav</p></blockquote>
<p>Next step was to capture live audio from the line input of the USB card, transcode that to OGG Vorbis and ship the bits to the remote Icecast server I setup last week. I quickly gave up on ezstream and started using ices2, the Icecast client: it seems easier to manage as it takes care of the encoding. This is the input module I used for the Pi:</p>
<blockquote><p>&lt;input&gt;<br />
&lt;module&gt;alsa&lt;/module&gt;<br />
&lt;param name=&#8221;rate&#8221;&gt;16000&lt;/param&gt;<br />
&lt;param name=&#8221;channels&#8221;&gt;2&lt;/param&gt;<br />
&lt;param name=&#8221;device&#8221;&gt;hw:1,0&lt;/param&gt;<br />
&lt;!&#8211; Read metadata (from stdin by default, or &#8211;&gt;<br />
&lt;!&#8211; filename defined below (if the latter, only on SIGUSR1) &#8211;&gt;<br />
&lt;param name=&#8221;metadata&#8221;&gt;1&lt;/param&gt;<br />
&lt;param name=&#8221;metadatafilename&#8221;&gt;liveaudio&lt;/param&gt;<br />
&lt;/input&gt;</p></blockquote>
<p>The USB soundcard I&#8217;m using sends 16000hz samples. I chose not to resample that, only to downmix stereo to mono to save bandwidth.</p>
<blockquote><p>&lt;&#8211;  stereo-&gt;mono downmixing, enabled by setting this to 1 &#8211;&gt;<br />
&lt;downmix&gt;1&lt;/downmix&gt;</p></blockquote>
<p>And all seems to work: the Pi sends a clear signal up to the streaming server and it&#8217;s been doing that for a while. Big success so far. Next step for me will be to write a script that grabs data from the OpenStack Summit schedule for one room and adds that information as metadata for the streaming: this way the listeners will have an idea of who is speaking or what the session is about.</p>
<p>Update: the stream was having a wide latency, around 20 seconds so I decided to play a little bit with the sampling rates. The latency went down to around 1 second using  &lt;param name=&#8221;rate&#8221;&gt;48000&lt;/param&gt; in the input module and  &lt;samplerate&gt;48000&lt;/samplerate&gt; in the encode module, with no resampling. Unfortunately the USB card dies every now and then when not connected through a powered USB hub. Too bad, because the USB hub looks ugly.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202%20-%20http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;t=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;annotation=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;body=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;body=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;t=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;s=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;notes=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202&amp;bodytext=Episode%20two%20of%20my%20experiment%20with%20the%20Raspberry%20Pi%20I%20have%20received%20at%20Pycon%202013.%20On%20the%20way%20back%20from%20Santa%20Clara%20I%20stopped%20by%20Fry%27s%20and%20bought%20the%20only%20USB%20sound%20card%20they%20had%20in%20store%2C%20a%20weird%20looking%20Creative%20and%20a%20powered%20USB%20hub.%C2%A0%20I%20ordered%20al" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F03%2F23%2Fstreaming-audio-from-raspberry-pi-part-2%2F&amp;title=Streaming%20Audio%20from%20Raspberry%20Pi%20-%20part%202" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" id="wp_rp_first"><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-5177" data-post-type="none" ><a href="http://maffulli.net/2013/03/17/simple-live-audio-streaming-from-openstack-summit-using-raspberrypi/" class="wp_rp_title">Simple live audio streaming from OpenStack Summit using RaspberryPi</a></li><li data-position="1" data-poid="in-491" data-post-type="none" ><a href="http://maffulli.net/2007/11/17/easy-and-small-improvements-in-communication/" class="wp_rp_title">Easy and small improvements in communication</a></li><li data-position="2" data-poid="in-1906" data-post-type="none" ><a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/" class="wp_rp_title">Proud member of an effective community</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=5183" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2013. |
<a href="http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/">Permalink</a> |
<a href="http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/#comments">10 comments</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/communication/" rel="tag">communication</a>, <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a>, <a href="http://maffulli.net/tag/participation/" rel="tag">participation</a>, <a href="http://maffulli.net/tag/raspberrypi/" rel="tag">raspberrypi</a>, <a href="http://maffulli.net/tag/streaming/" rel="tag">streaming</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2013/03/23/streaming-audio-from-raspberry-pi-part-2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Anger and disappointment</title>
		<link>http://maffulli.net/2013/01/14/anger-and-disappointment/</link>
		<comments>http://maffulli.net/2013/01/14/anger-and-disappointment/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 12:02:12 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[aaron]]></category>
		<category><![CDATA[suicide]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=2036</guid>
		<description><![CDATA[Any time a person takes its own life, anger is around with sadness. I&#8217;m angry too and I share Lawrence Lessig&#8217;s thoughts: the question this government needs to answer is why it was so necessary that Aaron Swartz be labeled a “felon.” This morning I was listening to a show in Italy a volunteer that [...]]]></description>
				<content:encoded><![CDATA[<p>Any time a person takes its own life, anger is around with sadness. I&#8217;m angry too and I share <a href="http://lessig.tumblr.com/post/40347463044/prosecutor-as-bully">Lawrence Lessig&#8217;s</a> thoughts:</p>
<blockquote><p><span>the question this government needs to answer is why it was so necessary that Aaron Swartz be labeled a “felon.”</span></p></blockquote>
<p>This morning I was listening to a show in Italy a volunteer that talks to prisoners incarcerated into the horrible Italian jails. She mentioned a conversation with a man sentenced to six years for selling counterfeited CDs and DVDs on the streets. His words: &#8220;Six years! That&#8217;s too long&#8221;. We&#8217;re accepting that selling a song with no rights to do so is a crime worst than hitting a singer with a baseball bat. Our politicians should be ashamed.</p>
<p>.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Anger%20and%20disappointment%20-%20http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=Any%20time%20a%20person%20takes%20its%20own%20life%2C%20anger%20is%20around%20with%20sadness.%20I%27m%20angry%20too%20and%20I%20share%20Lawrence%20Lessig%27s%20thoughts%3A%0Athe%20question%20this%20government%20needs%20to%20answer%20is%20why%20it%20was%20so%20necessary%20that%20Aaron%20Swartz%20be%20labeled%20a%20%E2%80%9Cfelon.%E2%80%9D%0AThis%20morning" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;t=Anger%20and%20disappointment" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment&amp;annotation=Any%20time%20a%20person%20takes%20its%20own%20life%2C%20anger%20is%20around%20with%20sadness.%20I%27m%20angry%20too%20and%20I%20share%20Lawrence%20Lessig%27s%20thoughts%3A%0Athe%20question%20this%20government%20needs%20to%20answer%20is%20why%20it%20was%20so%20necessary%20that%20Aaron%20Swartz%20be%20labeled%20a%20%E2%80%9Cfelon.%E2%80%9D%0AThis%20morning" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment&amp;body=Any%20time%20a%20person%20takes%20its%20own%20life%2C%20anger%20is%20around%20with%20sadness.%20I%27m%20angry%20too%20and%20I%20share%20Lawrence%20Lessig%27s%20thoughts%3A%0Athe%20question%20this%20government%20needs%20to%20answer%20is%20why%20it%20was%20so%20necessary%20that%20Aaron%20Swartz%20be%20labeled%20a%20%E2%80%9Cfelon.%E2%80%9D%0AThis%20morning" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Anger%20and%20disappointment&amp;body=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;t=Anger%20and%20disappointment&amp;s=Any%20time%20a%20person%20takes%20its%20own%20life%2C%20anger%20is%20around%20with%20sadness.%20I%27m%20angry%20too%20and%20I%20share%20Lawrence%20Lessig%27s%20thoughts%3A%0Athe%20question%20this%20government%20needs%20to%20answer%20is%20why%20it%20was%20so%20necessary%20that%20Aaron%20Swartz%20be%20labeled%20a%20%E2%80%9Cfelon.%E2%80%9D%0AThis%20morning" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment&amp;notes=Any%20time%20a%20person%20takes%20its%20own%20life%2C%20anger%20is%20around%20with%20sadness.%20I%27m%20angry%20too%20and%20I%20share%20Lawrence%20Lessig%27s%20thoughts%3A%0Athe%20question%20this%20government%20needs%20to%20answer%20is%20why%20it%20was%20so%20necessary%20that%20Aaron%20Swartz%20be%20labeled%20a%20%E2%80%9Cfelon.%E2%80%9D%0AThis%20morning" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment&amp;bodytext=Any%20time%20a%20person%20takes%20its%20own%20life%2C%20anger%20is%20around%20with%20sadness.%20I%27m%20angry%20too%20and%20I%20share%20Lawrence%20Lessig%27s%20thoughts%3A%0Athe%20question%20this%20government%20needs%20to%20answer%20is%20why%20it%20was%20so%20necessary%20that%20Aaron%20Swartz%20be%20labeled%20a%20%E2%80%9Cfelon.%E2%80%9D%0AThis%20morning" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2013%2F01%2F14%2Fanger-and-disappointment%2F&amp;title=Anger%20and%20disappointment" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1133" data-post-type="none" ><a href="http://maffulli.net/2010/03/03/another-lessig-presentation-silenced-by-automatic-stupidity/" class="wp_rp_title">Another Lessig Presentation Silenced By Automatic Stupidity</a></li><li data-position="1" data-poid="in-1362" data-post-type="none" ><a href="http://maffulli.net/2010/12/03/le-leggi-sotto-dettatura-degli-usa/" class="wp_rp_title">Le leggi sotto dettatura degli USA</a></li><li data-position="2" data-poid="in-875" data-post-type="none" ><a href="http://maffulli.net/2009/05/28/help-eff-stop-copyright-bullyies-intimidating-children/" class="wp_rp_title">Help EFF stop copyright bullyies intimidating children</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=2036" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2013. |
<a href="http://maffulli.net/2013/01/14/anger-and-disappointment/">Permalink</a> |
<a href="http://maffulli.net/2013/01/14/anger-and-disappointment/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/aaron/" rel="tag">aaron</a>, <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/copyright/" rel="tag">copyright</a>, <a href="http://maffulli.net/tag/suicide/" rel="tag">suicide</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2013/01/14/anger-and-disappointment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back from San Diego OpenStack Summit</title>
		<link>http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/</link>
		<comments>http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/#comments</comments>
		<pubDate>Sun, 21 Oct 2012 02:36:22 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[recap]]></category>
		<category><![CDATA[san diego]]></category>
		<category><![CDATA[summit]]></category>
		<category><![CDATA[todo]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=2015</guid>
		<description><![CDATA[My experience at the OpenStack Summit in San Diego has been really good. I have received lots of positive comments about this configuration, merging the Design Summit with the Conference. Despite the high amount of people it seems that things went well. I&#8217;m waiting to gather more details about the remote participation to the Design [...]]]></description>
				<content:encoded><![CDATA[<p>My experience at the OpenStack Summit in San Diego has been really good. I have received lots of positive comments about this configuration, merging the Design Summit with the Conference. Despite the high amount of people it seems that things went well. I&#8217;m waiting to gather more details about the remote participation to the Design Summit with WebEx, I&#8217;ll report more about that soon.</p>
<p>I presented one session at the conference, lead two sessions on the Design Summit track and facilitated the <a href="http://etherpad.openstack.org/APAC-event-2013 ">meeting of the APEC group</a>. Especially on the last day I missed the integration of the summit&#8217;s agenda from sched.org into my personal calendar applications (phone and desktop) because I ended up overbooking myself a couple of times. Thankfully Monty Taylor covered for me.</p>
<p>The &#8216;<a href="http://www.openstack.org/blog/2012/09/providing-a-unified-view-of-openstack-projects/">Community Dashboard</a>&#8216; that I presented with zAgile was received with enthusiastic comments: the crowd cheered &#8216;ship it&#8217; when I asked them what they thought of the demo. I&#8217;ve talked with Sanjiva and Andrew after the presentation, we should have an early beta out there by the end of the year.</p>
<p>More needs to be done in order to <a href="http://etherpad.openstack.org/grizzly-community-resources">improve the community resources</a>: IRC channels are not owned by the Foundation, some services depend by one person only (the main website and etherpad service, just to make an example). The forums need some love and probably we should have a Q&amp;A system in place. During the sessions Atul Jha from India showed an askbot-powered system that he volunteered to run. In the next weeks I&#8217;ll help him go live with it. We discussed also the migration of the General mailing list out of Launchpad: unfortunately I have no news since <a href="http://markmail.org/message/5vjbx3ecxaojrlej">my last update</a>. The <a href="http://planet.openstack.org">planet</a> needs a better look, if nothing else. And the OpenStack blog needs a better content policy: some people in the room raised some concerns over the abuse of corporate posts on it.</p>
<p>During the discussion on <a href="http://etherpad.openstack.org/tracking-adoption">how to track OpenStack&#8217;s adoption</a> I was suggested to focus on users&#8217; survey instead of proposing to add some &#8216;telephone home&#8217; capability to OpenStack&#8217;s code (like Mozilla Foundation does with Firefox). I think this is a good idea and I&#8217;ll make sure this will become a project of the Foundation in the next months, once we&#8217;ll be fully staffed (we&#8217;re <a href="http://www.openstack.org/community/jobs/?foundation=1">hiring</a>).</p>
<p>Monty lead the session I proposed about an <a href="http://etherpad.openstack.org/integrated-openstack-identity">Integrated Identity System</a> among all OpenStack tools. We went through the improvements we&#8217;re working on regarding the CLA workflow and its integration into Gerrit and the Foundation&#8217;s membership database. Todd Morey was in the session and we had more ideas on how to make things progress a bit faster (we agreed that hanging out on IRC is a prerequisite for make things happen faster). The future of Launchpad as the main ID system for OpenStack will be decided after Ubuntu Developer Summit: Thierry will spend time with Canonical&#8217;s folks there to understand if it will still be able to serve our purposes in the future.</p>
<p>My list of things to do has increased, as it&#8217;s expected after the Summit. Thanks everybody for joining.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Back%20from%20San%20Diego%20OpenStack%20Summit%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=My%20experience%20at%20the%20OpenStack%20Summit%20in%20San%20Diego%20has%20been%20really%20good.%20I%20have%20received%20lots%20of%20positive%20comments%20about%20this%20configuration%2C%20merging%20the%20Design%20Summit%20with%20the%20Conference.%20Despite%20the%20high%20amount%20of%20people%20it%20seems%20that%20things%20went%20we" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;t=Back%20from%20San%20Diego%20OpenStack%20Summit" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;annotation=My%20experience%20at%20the%20OpenStack%20Summit%20in%20San%20Diego%20has%20been%20really%20good.%20I%20have%20received%20lots%20of%20positive%20comments%20about%20this%20configuration%2C%20merging%20the%20Design%20Summit%20with%20the%20Conference.%20Despite%20the%20high%20amount%20of%20people%20it%20seems%20that%20things%20went%20we" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;body=My%20experience%20at%20the%20OpenStack%20Summit%20in%20San%20Diego%20has%20been%20really%20good.%20I%20have%20received%20lots%20of%20positive%20comments%20about%20this%20configuration%2C%20merging%20the%20Design%20Summit%20with%20the%20Conference.%20Despite%20the%20high%20amount%20of%20people%20it%20seems%20that%20things%20went%20we" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;t=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;s=My%20experience%20at%20the%20OpenStack%20Summit%20in%20San%20Diego%20has%20been%20really%20good.%20I%20have%20received%20lots%20of%20positive%20comments%20about%20this%20configuration%2C%20merging%20the%20Design%20Summit%20with%20the%20Conference.%20Despite%20the%20high%20amount%20of%20people%20it%20seems%20that%20things%20went%20we" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;notes=My%20experience%20at%20the%20OpenStack%20Summit%20in%20San%20Diego%20has%20been%20really%20good.%20I%20have%20received%20lots%20of%20positive%20comments%20about%20this%20configuration%2C%20merging%20the%20Design%20Summit%20with%20the%20Conference.%20Despite%20the%20high%20amount%20of%20people%20it%20seems%20that%20things%20went%20we" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit&amp;bodytext=My%20experience%20at%20the%20OpenStack%20Summit%20in%20San%20Diego%20has%20been%20really%20good.%20I%20have%20received%20lots%20of%20positive%20comments%20about%20this%20configuration%2C%20merging%20the%20Design%20Summit%20with%20the%20Conference.%20Despite%20the%20high%20amount%20of%20people%20it%20seems%20that%20things%20went%20we" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F20%2Fback-from-san-diego-openstack-summit%2F&amp;title=Back%20from%20San%20Diego%20OpenStack%20Summit" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1840" data-post-type="none" ><a href="http://maffulli.net/2011/11/05/openstack-at-uds/" class="wp_rp_title">OpenStack at UDS</a></li><li data-position="1" data-poid="in-1906" data-post-type="none" ><a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/" class="wp_rp_title">Proud member of an effective community</a></li><li data-position="2" data-poid="in-1997" data-post-type="none" ><a href="http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/" class="wp_rp_title">New job, same job, at OpenStack Foundation, new laptop</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=2015" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/">Permalink</a> |
<a href="http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/#comments">6 comments</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a>, <a href="http://maffulli.net/tag/recap/" rel="tag">recap</a>, <a href="http://maffulli.net/tag/san-diego/" rel="tag">san diego</a>, <a href="http://maffulli.net/tag/summit/" rel="tag">summit</a>, <a href="http://maffulli.net/tag/todo/" rel="tag">todo</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>New job, same job, at OpenStack Foundation, new laptop</title>
		<link>http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/</link>
		<comments>http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/#comments</comments>
		<pubDate>Sat, 06 Oct 2012 00:10:28 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[openstack]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1997</guid>
		<description><![CDATA[This week was my first week as an employee of the OpenStack Foundation. I&#8217;m Technical Community Manager, still helping the OpenStack project succeed by helping the technical contributions. The difference is that my salary is now being paid by the newly formed OpenStack Foundation instead of Rackspace. Most of the people I worked with more [...]]]></description>
				<content:encoded><![CDATA[<p>This week was my first week as an employee of the OpenStack Foundation. I&#8217;m Technical Community Manager, still helping the OpenStack project succeed by helping the technical contributions. The difference is that my salary is now being paid by the newly formed OpenStack Foundation instead of Rackspace. Most of the people I worked with more closely at Rackspace are also at the OpenStack Foundation: Lauren, Mark, Jonathan and Thierry and we&#8217;re also <a href="http://openstack.org/jobs">hiring more people</a>.</p>
<p>I have high hopes for the projects I will present at the Grizzly Summit: <a id="a5194145c6d2667d3e9d83a5d012bf83" href="http://openstacksummitfall2012.sched.org/event/a5194145c6d2667d3e9d83a5d012bf83#">Achieving Visibility and Insight Across OpenStack Projects with Dashboards, Traceability, and Faceted Search</a>, <a href="http://summit.openstack.org/cfp/details/66">Integrated identity system for OpenStack</a>  and <a href="http://summit.openstack.org/cfp/details/64">Tracking OpenStack adoption</a>.</p>
<div> The main thing that changed is my laptop: finally I got rid of that heavy brick I used to carry around and now I have a slick, top of the line <a href="http://content.dell.com/us/en/enterprise/d/campaigns/sputnik.aspx">Dell XPS 13</a>, the <a href="http://bartongeorge.net/2012/10/02/initial-thoughts-from-the-beta-cosmonauts/">Project Sputnik</a> one, powered by Ubuntu. Oh, what a great machine. I love it already. It gets noisy some time but I believe that&#8217;s because I had to run java applets in the past days. I&#8217;ll post more details about how I set it up later on. Good times.</div>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=This%20week%20was%20my%20first%20week%20as%20an%20employee%20of%20the%20OpenStack%20Foundation.%20I%27m%20Technical%20Community%20Manager%2C%20still%20helping%20the%20OpenStack%20project%20succeed%20by%20helping%20the%20technical%20contributions.%20The%20difference%20is%20that%20my%20salary%20is%20now%20being%20paid%20by%20the%20new" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;t=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;annotation=This%20week%20was%20my%20first%20week%20as%20an%20employee%20of%20the%20OpenStack%20Foundation.%20I%27m%20Technical%20Community%20Manager%2C%20still%20helping%20the%20OpenStack%20project%20succeed%20by%20helping%20the%20technical%20contributions.%20The%20difference%20is%20that%20my%20salary%20is%20now%20being%20paid%20by%20the%20new" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;body=This%20week%20was%20my%20first%20week%20as%20an%20employee%20of%20the%20OpenStack%20Foundation.%20I%27m%20Technical%20Community%20Manager%2C%20still%20helping%20the%20OpenStack%20project%20succeed%20by%20helping%20the%20technical%20contributions.%20The%20difference%20is%20that%20my%20salary%20is%20now%20being%20paid%20by%20the%20new" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;t=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;s=This%20week%20was%20my%20first%20week%20as%20an%20employee%20of%20the%20OpenStack%20Foundation.%20I%27m%20Technical%20Community%20Manager%2C%20still%20helping%20the%20OpenStack%20project%20succeed%20by%20helping%20the%20technical%20contributions.%20The%20difference%20is%20that%20my%20salary%20is%20now%20being%20paid%20by%20the%20new" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;notes=This%20week%20was%20my%20first%20week%20as%20an%20employee%20of%20the%20OpenStack%20Foundation.%20I%27m%20Technical%20Community%20Manager%2C%20still%20helping%20the%20OpenStack%20project%20succeed%20by%20helping%20the%20technical%20contributions.%20The%20difference%20is%20that%20my%20salary%20is%20now%20being%20paid%20by%20the%20new" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop&amp;bodytext=This%20week%20was%20my%20first%20week%20as%20an%20employee%20of%20the%20OpenStack%20Foundation.%20I%27m%20Technical%20Community%20Manager%2C%20still%20helping%20the%20OpenStack%20project%20succeed%20by%20helping%20the%20technical%20contributions.%20The%20difference%20is%20that%20my%20salary%20is%20now%20being%20paid%20by%20the%20new" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F10%2F05%2Fnew-job-same-job-at-openstack-foundation-new-laptop%2F&amp;title=New%20job%2C%20same%20job%2C%20at%20OpenStack%20Foundation%2C%20new%20laptop" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1906" data-post-type="none" ><a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/" class="wp_rp_title">Proud member of an effective community</a></li><li data-position="1" data-poid="in-2015" data-post-type="none" ><a href="http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/" class="wp_rp_title">Back from San Diego OpenStack Summit</a></li><li data-position="2" data-poid="in-1919" data-post-type="none" ><a href="http://maffulli.net/2012/05/10/planning-an-international-community-portal-for-openstack/" class="wp_rp_title">Planning an International Community Portal for OpenStack</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1997" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/">Permalink</a> |
<a href="http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/change/" rel="tag">change</a>, <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/jobs/" rel="tag">jobs</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Measuring Community Growth</title>
		<link>http://maffulli.net/2012/07/30/measuring-community-growth/</link>
		<comments>http://maffulli.net/2012/07/30/measuring-community-growth/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 17:04:28 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[cls]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[opensourceway]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[oscon]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1972</guid>
		<description><![CDATA[The discussion held a few weeks ago at Community Leadership Summit around how to &#8216;measure&#8217; open source projects were very interesting. There was even a keynote by David Eaves during OSCON about the topic (well worth 15 minutes of your time, watch it below). There are many people comparing different open source projects, I keep [...]]]></description>
				<content:encoded><![CDATA[<p>The discussion held a few weeks ago at Community Leadership Summit around how to &#8216;measure&#8217; open source projects were very interesting. There was even a keynote by David Eaves during OSCON about the topic (well worth 15 minutes of your time, watch it below).</p>
<p>There are many people comparing different open source projects, I keep seeing blog posts trying to extrapolate complex concepts from too simple facts. For example, it&#8217;s hard to evaluate if an open source project is growing just by looking at the total number of commits per week: when number of commits slow down it may mean that the codebase has reached maturity, not necessarily it&#8217;s a sign of diminishing interest. Other simple facts visible on github like the number of followers, forks or &#8216;watchers&#8217; may not mean much if the developers of that project don&#8217;t use the &#8216;social&#8217; features offered by github.</p>
<p>To measure the &#8220;growth&#8221; of a project I usually look at a whole bunch of numbers and trends (more importantly) like the total number of committers over time, total new committers over time and also things that are not code-related traffic on mailing lists/forums, websites, google searches, activity on bug trackers as indicators of growth of a community. The total number of commits is more meaningful when taken as one element of &#8216;livelihood&#8217; of a project (is it still maintained?) but it needs to be integrated with other elements to avoid making mistakes.</p>
<p>All the people interested in measuring open source communities should join the <a href="https://www.theopensourceway.org/wiki/Metrics_working_group">Metrics Working Group</a> at <a href="https://www.theopensourceway.org">The Open Source Way</a> and push the conversation forward.</p>
<p><iframe src="http://www.youtube.com/embed/TvteDoRSRr8" frameborder="0" width="560" height="315"></iframe></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Measuring%20Community%20Growth%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=The%20discussion%20held%20a%20few%20weeks%20ago%20at%20Community%20Leadership%20Summit%20around%20how%20to%20%27measure%27%20open%20source%20projects%20were%20very%20interesting.%20There%20was%20even%20a%20keynote%20by%20David%20Eaves%20during%20OSCON%20about%20the%20topic%20%28well%20worth%2015%20minutes%20of%20your%20time%2C%20watch%20it%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;t=Measuring%20Community%20Growth" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth&amp;annotation=The%20discussion%20held%20a%20few%20weeks%20ago%20at%20Community%20Leadership%20Summit%20around%20how%20to%20%27measure%27%20open%20source%20projects%20were%20very%20interesting.%20There%20was%20even%20a%20keynote%20by%20David%20Eaves%20during%20OSCON%20about%20the%20topic%20%28well%20worth%2015%20minutes%20of%20your%20time%2C%20watch%20it%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth&amp;body=The%20discussion%20held%20a%20few%20weeks%20ago%20at%20Community%20Leadership%20Summit%20around%20how%20to%20%27measure%27%20open%20source%20projects%20were%20very%20interesting.%20There%20was%20even%20a%20keynote%20by%20David%20Eaves%20during%20OSCON%20about%20the%20topic%20%28well%20worth%2015%20minutes%20of%20your%20time%2C%20watch%20it%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Measuring%20Community%20Growth&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;t=Measuring%20Community%20Growth&amp;s=The%20discussion%20held%20a%20few%20weeks%20ago%20at%20Community%20Leadership%20Summit%20around%20how%20to%20%27measure%27%20open%20source%20projects%20were%20very%20interesting.%20There%20was%20even%20a%20keynote%20by%20David%20Eaves%20during%20OSCON%20about%20the%20topic%20%28well%20worth%2015%20minutes%20of%20your%20time%2C%20watch%20it%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth&amp;notes=The%20discussion%20held%20a%20few%20weeks%20ago%20at%20Community%20Leadership%20Summit%20around%20how%20to%20%27measure%27%20open%20source%20projects%20were%20very%20interesting.%20There%20was%20even%20a%20keynote%20by%20David%20Eaves%20during%20OSCON%20about%20the%20topic%20%28well%20worth%2015%20minutes%20of%20your%20time%2C%20watch%20it%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth&amp;bodytext=The%20discussion%20held%20a%20few%20weeks%20ago%20at%20Community%20Leadership%20Summit%20around%20how%20to%20%27measure%27%20open%20source%20projects%20were%20very%20interesting.%20There%20was%20even%20a%20keynote%20by%20David%20Eaves%20during%20OSCON%20about%20the%20topic%20%28well%20worth%2015%20minutes%20of%20your%20time%2C%20watch%20it%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F07%2F30%2Fmeasuring-community-growth%2F&amp;title=Measuring%20Community%20Growth" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1830" data-post-type="none" ><a href="http://maffulli.net/2011/10/25/measuring-code-contributions-to-openstack-2/" class="wp_rp_title">Measuring code contributions to Openstack</a></li><li data-position="1" data-poid="in-1480" data-post-type="none" ><a href="http://maffulli.net/2011/04/30/social-currency-as-a-tool-for-community-managers/" class="wp_rp_title">Social Currency as a tool for community managers</a></li><li data-position="2" data-poid="in-1997" data-post-type="none" ><a href="http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/" class="wp_rp_title">New job, same job, at OpenStack Foundation, new laptop</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1972" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/07/30/measuring-community-growth/">Permalink</a> |
<a href="http://maffulli.net/2012/07/30/measuring-community-growth/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/cls/" rel="tag">cls</a>, <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/metrics/" rel="tag">metrics</a>, <a href="http://maffulli.net/tag/opensourceway/" rel="tag">opensourceway</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a>, <a href="http://maffulli.net/tag/oscon/" rel="tag">oscon</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/07/30/measuring-community-growth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skype is not beta anymore on GNU/Linux. So what?</title>
		<link>http://maffulli.net/2012/06/14/skype-is-not-beta-anymore-on-gnulinux-so-what/</link>
		<comments>http://maffulli.net/2012/06/14/skype-is-not-beta-anymore-on-gnulinux-so-what/#comments</comments>
		<pubDate>Thu, 14 Jun 2012 20:41:52 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1949</guid>
		<description><![CDATA[I see lots of excitement within the GNU/Linux communities about the new, stable Skype. It makes me sad: it&#8217;s the worse kind software to be excited for. It&#8217;s designed to spy on you, it has a proprietary protocol, the software itself is badly designed, poor UI and lacks of many features compared to others. What&#8217;s [...]]]></description>
				<content:encoded><![CDATA[<p>I see lots of excitement within the GNU/Linux communities about the new, stable Skype. It makes me sad: it&#8217;s the worse kind software to be excited for. It&#8217;s designed to spy on you, it has a proprietary protocol, the software itself is badly designed, poor UI and lacks of many features compared to others. What&#8217;s more, using software like Skype that is not interoperable with other voice/messaging systems allows Microsoft to push in it creepy features like <a href="http://blogs.skype.com/en/2012/06/skype_advertising_update.html">advertising next to your personal conversation</a>. The network effect created by <a href="http://maffulli.net/2011/05/12/looking-for-freedom-respecting-alternatives-to-skype/">Skype is bad for humanity</a>, we should treat <a href="http://maffulli.net/tag/skype/">Skype</a> as a necessary evil and work to make people aware of reasonable alternatives.</p>
<p>I&#8217;d be much happier if I saw communities cheering for the alternatives. For example, I wish Canonical added a xmpp/jingle service to its <a href="http://one.ubuntu.com">One</a> product (and I&#8217;d love to pay for it). I wish the community knew that <a href="https://developers.google.com/talk/open_communications#service_2">Google allows federation in its Google Talk service</a>: you can reach your friends that use Google.com from your own jingle server. These are the things that we need, more than yet another proprietary protocol and software to take away our options.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=I%20see%20lots%20of%20excitement%20within%20the%20GNU%2FLinux%20communities%20about%20the%20new%2C%20stable%20Skype.%20It%20makes%20me%20sad%3A%20it%27s%20the%20worse%20kind%20software%20to%20be%20excited%20for.%20It%27s%20designed%20to%20spy%20on%20you%2C%20it%20has%20a%20proprietary%20protocol%2C%20the%20software%20itself%20is%20badly%20designed%2C" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;t=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;annotation=I%20see%20lots%20of%20excitement%20within%20the%20GNU%2FLinux%20communities%20about%20the%20new%2C%20stable%20Skype.%20It%20makes%20me%20sad%3A%20it%27s%20the%20worse%20kind%20software%20to%20be%20excited%20for.%20It%27s%20designed%20to%20spy%20on%20you%2C%20it%20has%20a%20proprietary%20protocol%2C%20the%20software%20itself%20is%20badly%20designed%2C" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;body=I%20see%20lots%20of%20excitement%20within%20the%20GNU%2FLinux%20communities%20about%20the%20new%2C%20stable%20Skype.%20It%20makes%20me%20sad%3A%20it%27s%20the%20worse%20kind%20software%20to%20be%20excited%20for.%20It%27s%20designed%20to%20spy%20on%20you%2C%20it%20has%20a%20proprietary%20protocol%2C%20the%20software%20itself%20is%20badly%20designed%2C" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;t=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;s=I%20see%20lots%20of%20excitement%20within%20the%20GNU%2FLinux%20communities%20about%20the%20new%2C%20stable%20Skype.%20It%20makes%20me%20sad%3A%20it%27s%20the%20worse%20kind%20software%20to%20be%20excited%20for.%20It%27s%20designed%20to%20spy%20on%20you%2C%20it%20has%20a%20proprietary%20protocol%2C%20the%20software%20itself%20is%20badly%20designed%2C" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;notes=I%20see%20lots%20of%20excitement%20within%20the%20GNU%2FLinux%20communities%20about%20the%20new%2C%20stable%20Skype.%20It%20makes%20me%20sad%3A%20it%27s%20the%20worse%20kind%20software%20to%20be%20excited%20for.%20It%27s%20designed%20to%20spy%20on%20you%2C%20it%20has%20a%20proprietary%20protocol%2C%20the%20software%20itself%20is%20badly%20designed%2C" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F&amp;bodytext=I%20see%20lots%20of%20excitement%20within%20the%20GNU%2FLinux%20communities%20about%20the%20new%2C%20stable%20Skype.%20It%20makes%20me%20sad%3A%20it%27s%20the%20worse%20kind%20software%20to%20be%20excited%20for.%20It%27s%20designed%20to%20spy%20on%20you%2C%20it%20has%20a%20proprietary%20protocol%2C%20the%20software%20itself%20is%20badly%20designed%2C" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F06%2F14%2Fskype-is-not-beta-anymore-on-gnulinux-so-what%2F&amp;title=Skype%20is%20not%20beta%20anymore%20on%20GNU%2FLinux.%20So%20what%3F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1684" data-post-type="none" ><a href="http://maffulli.net/2011/06/16/gnu-telephony-working-on-a-skype-replacement/" class="wp_rp_title">GNU Telephony working on a Skype replacement</a></li><li data-position="1" data-poid="in-2011" data-post-type="none" ><a href="http://maffulli.net/2012/10/12/the-sad-state-of-free-software-collaboration-tools/" class="wp_rp_title">The sad state of free software collaboration tools</a></li><li data-position="2" data-poid="in-1522" data-post-type="none" ><a href="http://maffulli.net/2011/05/12/looking-for-freedom-respecting-alternatives-to-skype/" class="wp_rp_title">Looking for freedom respecting alternatives to Skype</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1949" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/06/14/skype-is-not-beta-anymore-on-gnulinux-so-what/">Permalink</a> |
<a href="http://maffulli.net/2012/06/14/skype-is-not-beta-anymore-on-gnulinux-so-what/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/free-software/" rel="tag">free software</a>, <a href="http://maffulli.net/tag/skype/" rel="tag">skype</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/06/14/skype-is-not-beta-anymore-on-gnulinux-so-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planning an International Community Portal for OpenStack</title>
		<link>http://maffulli.net/2012/05/10/planning-an-international-community-portal-for-openstack/</link>
		<comments>http://maffulli.net/2012/05/10/planning-an-international-community-portal-for-openstack/#comments</comments>
		<pubDate>Thu, 10 May 2012 17:20:58 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[international]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[user groups]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1919</guid>
		<description><![CDATA[With the large growth of OpenStack internationally comes the need to have a better system to list the international resources for new users of OpenStack. At the moment we have a couple of wiki pages, a mailing list for a team hosted on Launchpad and the map the /community page on openstack.org. All that content [...]]]></description>
				<content:encoded><![CDATA[<p>With the large growth of OpenStack internationally comes the need to have a better system to list the international resources for new users of OpenStack. At the moment we have a couple of <a href="http://wiki.openstack.org/OpenStackUserGroups">wiki</a> <a href="http://wiki.openstack.org/OpenStackUserGroups/HowTo">pages</a>, a <a href="https://lists.launchpad.net/openstack-community/">mailing list</a> for a <a href="https://launchpad.net/~openstack-community">team hosted on Launchpad</a> and the map<br />
the <a href="http://openstack.org/community">/community</a> page on openstack.org. All that content is available only in English. We&#8217;re at the point that this is not enough.</p>
<p>I&#8217;d like to discuss the needs of the international community and get a new system in place in the next few weeks. The basic needs are:</p>
<ul>
<li>A directory of OpenStack user groups (OSUG) that can host content in different languages: new visitors should be able to find easily an OpenStack User Group for their local area/language. If such group/language is not available, there should be an easy pointer to instructions, tools and policies to create one</li>
<li>A system for the community  managers to contact the members (all members or just the coordinators/leaders?) of the international communities to coordinate activities.</li>
</ul>
<h2>Requirements</h2>
<ul>
<li>Register users using SSO: as a user I would like to be able to associate my profile from Launchpad, Linkedin or Google to the site</li>
<li>Support content in multiple languages (switch list and automatic recognition via browser agent configuration)</li>
<li>Support roles: managers of the groups can add resources to the directory, members can sign up as members, anonymous can read all content</li>
<li>Show activity from all groups in my own language on the portal home page</li>
<li>Directory of OSUGroups, with geographic representation (be able to view the groups on a map and display also the full list of groups on a page)</li>
<li>Manage content (pages) of generic interest (to host content like how to start a group, general, policies, trademark stuff, generic icons, etc)</li>
</ul>
<p>Per each user group:</p>
<ul>
<li>allow users to add events, each group will expose its ical feed</li>
<li>show to list additional resources for the group: mailing lists, forums, wiki pages, home page, url of blogs,</li>
<li>import RSS feed from blogs to aggregate content on groups page</li>
<li>display photostreams from flickr and such on the home page</li>
</ul>
<h2>Open questions</h2>
<ul>
<li>is this all we need?</li>
<li>do we want to host and provide web apps for any of the local groups (mlists, blog, forums, etc)? And if yes, should these be part of the such portal?</li>
<li>can we reuse code from <a href="https://code.launchpad.net/loco-team-portal">Ubuntu Loco portal</a>? The code is tightly integrated in Launchpad, local teams need to be created as Launchpad Teams, it uses Launchpad as OpenID provider (bugs included). But it&#8217;s already there, it&#8217;s fairly simple and it&#8217;s a django app</li>
<li>What other tools can we use for this and do you volunteer to manage such tool?</li>
</ul>
<p>I&#8217;m interested in your opinions: join the <a href="https://launchpad.net/~openstack-community">OpenStack International Community Team on Launchpad</a>  to discuss this further.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Planning%20an%20International%20Community%20Portal%20for%20OpenStack%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=With%20the%20large%20growth%20of%20OpenStack%20internationally%20comes%20the%20need%20to%20have%20a%20better%20system%20to%20list%20the%20international%20resources%20for%20new%20users%20of%20OpenStack.%20At%20the%20moment%20we%20have%20a%20couple%20of%20wiki%20pages%2C%20a%20mailing%20list%20for%20a%20team%20hosted%20on%20Launchpad%20and%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;t=Planning%20an%20International%20Community%20Portal%20for%20OpenStack" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;annotation=With%20the%20large%20growth%20of%20OpenStack%20internationally%20comes%20the%20need%20to%20have%20a%20better%20system%20to%20list%20the%20international%20resources%20for%20new%20users%20of%20OpenStack.%20At%20the%20moment%20we%20have%20a%20couple%20of%20wiki%20pages%2C%20a%20mailing%20list%20for%20a%20team%20hosted%20on%20Launchpad%20and%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;body=With%20the%20large%20growth%20of%20OpenStack%20internationally%20comes%20the%20need%20to%20have%20a%20better%20system%20to%20list%20the%20international%20resources%20for%20new%20users%20of%20OpenStack.%20At%20the%20moment%20we%20have%20a%20couple%20of%20wiki%20pages%2C%20a%20mailing%20list%20for%20a%20team%20hosted%20on%20Launchpad%20and%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;t=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;s=With%20the%20large%20growth%20of%20OpenStack%20internationally%20comes%20the%20need%20to%20have%20a%20better%20system%20to%20list%20the%20international%20resources%20for%20new%20users%20of%20OpenStack.%20At%20the%20moment%20we%20have%20a%20couple%20of%20wiki%20pages%2C%20a%20mailing%20list%20for%20a%20team%20hosted%20on%20Launchpad%20and%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;notes=With%20the%20large%20growth%20of%20OpenStack%20internationally%20comes%20the%20need%20to%20have%20a%20better%20system%20to%20list%20the%20international%20resources%20for%20new%20users%20of%20OpenStack.%20At%20the%20moment%20we%20have%20a%20couple%20of%20wiki%20pages%2C%20a%20mailing%20list%20for%20a%20team%20hosted%20on%20Launchpad%20and%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack&amp;bodytext=With%20the%20large%20growth%20of%20OpenStack%20internationally%20comes%20the%20need%20to%20have%20a%20better%20system%20to%20list%20the%20international%20resources%20for%20new%20users%20of%20OpenStack.%20At%20the%20moment%20we%20have%20a%20couple%20of%20wiki%20pages%2C%20a%20mailing%20list%20for%20a%20team%20hosted%20on%20Launchpad%20and%20" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F05%2F10%2Fplanning-an-international-community-portal-for-openstack%2F&amp;title=Planning%20an%20International%20Community%20Portal%20for%20OpenStack" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1830" data-post-type="none" ><a href="http://maffulli.net/2011/10/25/measuring-code-contributions-to-openstack-2/" class="wp_rp_title">Measuring code contributions to Openstack</a></li><li data-position="1" data-poid="in-1906" data-post-type="none" ><a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/" class="wp_rp_title">Proud member of an effective community</a></li><li data-position="2" data-poid="in-864" data-post-type="none" ><a href="http://maffulli.net/2009/04/29/back-from-school-funambol-community-grows/" class="wp_rp_title">Back from school, Funambol community grows</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1919" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/05/10/planning-an-international-community-portal-for-openstack/">Permalink</a> |
<a href="http://maffulli.net/2012/05/10/planning-an-international-community-portal-for-openstack/#comments">One comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/growth/" rel="tag">growth</a>, <a href="http://maffulli.net/tag/international/" rel="tag">international</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a>, <a href="http://maffulli.net/tag/user-groups/" rel="tag">user groups</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/05/10/planning-an-international-community-portal-for-openstack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Proud member of an effective community</title>
		<link>http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/</link>
		<comments>http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 17:27:23 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[eng]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[openstack]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1906</guid>
		<description><![CDATA[In days like this I feel very lucky to be a member of the OpenStack community. The thread that started today demonstrates the great culture of collaboration among the people that make OpenStack. Following up on the discussion held at the Design Summit, Thierry suggested to split the Mailing-list in order to improve the communication [...]]]></description>
				<content:encoded><![CDATA[<p>In days like this I feel very lucky to be a member of the OpenStack community. The thread that started today demonstrates the great culture of collaboration among the people that make OpenStack.</p>
<p>Following up on the discussion held at the Design Summit, Thierry suggested to <a href="https://lists.launchpad.net/openstack/msg10693.html">split the Mailing-list</a> in order to improve the communication among developers and users. The proposal requires a significant change in the current workflow for developers and adds a new burden on the infrastructure team.  A reason to be proud of this community is that <a href="https://lists.launchpad.net/openstack/msg10702.html">the infrastructure team didn&#8217;t say &#8216;no&#8217;</a> like many IT shops would. They highlighted what they needed in order to do a good job satisfying the request. A <a href="https://lists.launchpad.net/openstack/msg10704.html">volunteer jumped up to help</a> (thank you Duncan) and off we go to <strong>do something</strong> without wasting time debating. This community is effective and gets things done.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Proud%20member%20of%20an%20effective%20community%20-%20http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=In%20days%20like%20this%20I%20feel%20very%20lucky%20to%20be%20a%20member%20of%20the%20OpenStack%20community.%20The%20thread%20that%20started%20today%20demonstrates%20the%20great%20culture%20of%20collaboration%20among%20the%20people%20that%20make%20OpenStack.%0D%0A%0D%0AFollowing%20up%20on%20the%20discussion%20held%20at%20the%20Design%20Su" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;t=Proud%20member%20of%20an%20effective%20community" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community&amp;annotation=In%20days%20like%20this%20I%20feel%20very%20lucky%20to%20be%20a%20member%20of%20the%20OpenStack%20community.%20The%20thread%20that%20started%20today%20demonstrates%20the%20great%20culture%20of%20collaboration%20among%20the%20people%20that%20make%20OpenStack.%0D%0A%0D%0AFollowing%20up%20on%20the%20discussion%20held%20at%20the%20Design%20Su" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community&amp;body=In%20days%20like%20this%20I%20feel%20very%20lucky%20to%20be%20a%20member%20of%20the%20OpenStack%20community.%20The%20thread%20that%20started%20today%20demonstrates%20the%20great%20culture%20of%20collaboration%20among%20the%20people%20that%20make%20OpenStack.%0D%0A%0D%0AFollowing%20up%20on%20the%20discussion%20held%20at%20the%20Design%20Su" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Proud%20member%20of%20an%20effective%20community&amp;body=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;t=Proud%20member%20of%20an%20effective%20community&amp;s=In%20days%20like%20this%20I%20feel%20very%20lucky%20to%20be%20a%20member%20of%20the%20OpenStack%20community.%20The%20thread%20that%20started%20today%20demonstrates%20the%20great%20culture%20of%20collaboration%20among%20the%20people%20that%20make%20OpenStack.%0D%0A%0D%0AFollowing%20up%20on%20the%20discussion%20held%20at%20the%20Design%20Su" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community&amp;notes=In%20days%20like%20this%20I%20feel%20very%20lucky%20to%20be%20a%20member%20of%20the%20OpenStack%20community.%20The%20thread%20that%20started%20today%20demonstrates%20the%20great%20culture%20of%20collaboration%20among%20the%20people%20that%20make%20OpenStack.%0D%0A%0D%0AFollowing%20up%20on%20the%20discussion%20held%20at%20the%20Design%20Su" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community&amp;bodytext=In%20days%20like%20this%20I%20feel%20very%20lucky%20to%20be%20a%20member%20of%20the%20OpenStack%20community.%20The%20thread%20that%20started%20today%20demonstrates%20the%20great%20culture%20of%20collaboration%20among%20the%20people%20that%20make%20OpenStack.%0D%0A%0D%0AFollowing%20up%20on%20the%20discussion%20held%20at%20the%20Design%20Su" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2012%2F04%2F27%2Fproud-member-of-an-effective-community%2F&amp;title=Proud%20member%20of%20an%20effective%20community" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1997" data-post-type="none" ><a href="http://maffulli.net/2012/10/05/new-job-same-job-at-openstack-foundation-new-laptop/" class="wp_rp_title">New job, same job, at OpenStack Foundation, new laptop</a></li><li data-position="1" data-poid="in-2015" data-post-type="none" ><a href="http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/" class="wp_rp_title">Back from San Diego OpenStack Summit</a></li><li data-position="2" data-poid="in-1913" data-post-type="none" ><a href="http://maffulli.net/2012/05/03/in-search-of-a-modern-way-to-hold-discussions-online/" class="wp_rp_title">In search of a modern way to hold discussions online</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1906" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2012. |
<a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/">Permalink</a> |
<a href="http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/openstack-2/" rel="tag">openstack</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2012/04/27/proud-member-of-an-effective-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStack at UDS</title>
		<link>http://maffulli.net/2011/11/05/openstack-at-uds/</link>
		<comments>http://maffulli.net/2011/11/05/openstack-at-uds/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 04:29:27 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[Openstack]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[summit]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[uds]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1840</guid>
		<description><![CDATA[What a week! Ubuntu Developer Summit is one of the best meetings I have attended to. Here are a few things that impressed me most. The infrastructure is amazing! The networking is astonishingly good. I learned that the Ubuntu team bypasses the usually lame the Internet connections provided by the hotels and puts down their [...]]]></description>
				<content:encoded><![CDATA[<p>What a week! Ubuntu Developer Summit is one of the best meetings I have attended to. Here are a few things that impressed me most.</p>
<p>The infrastructure is amazing! The networking is astonishingly good. I learned that the Ubuntu team bypasses the usually lame the Internet connections provided by the hotels and puts down their own. Ubuntu&#8217;s wifi was gratis, easy to join and always on! By comparison, the access provided by the hotel was mostly down and costed $10 per day.</p>
<p>The participation is insane! Not only Canonical employees participate to the summit but also volunteers from around the world. In Orlando there were around 700 people all interested in making Ubuntu the greatest operating system in the world.</p>
<p>OpenStack is everywhere! Three plenary sessions were dedicated to OpenStack and many sessions of the summit had to do with it. Canonical is putting lots of energy into making OpenStack its cloud. <a href="http://www.markshuttleworth.com/">Mark Shuttleworth</a> in one of these sessions made it also clear that he wants to provide resources for OpenStack to maintain compatibility Amazon&#8217;s API.</p>
<p>Rackspace distributed the coolest t-shirts at the event: we ran out of three full boxes in a few minutes.</p>
<p>The pace of the summit was not as mad as I imagined after looking at <a href="http://summit.ubuntu.com/uds-p/">the schedule</a>. Even if there are many parallel tracks from 9am to 6pm for five full days, I ended up with plenty of time free to meet people and talk with them. Sharing the same hotel with a big swimming pool and very nice weather probably helped the conversations. I enjoyed also the free buses available to go out in large groups.</p>
<p>All in all, it was great to be there since OpenStack Developer Summit is modelled after UDS.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=OpenStack%20at%20UDS%20-%20http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=What%20a%20week%21%20Ubuntu%20Developer%20Summit%20is%20one%20of%20the%20best%20meetings%20I%20have%20attended%20to.%20Here%20are%20a%20few%20things%20that%20impressed%20me%20most.%0D%0A%0D%0AThe%20infrastructure%20is%20amazing%21%20The%20networking%20is%20astonishingly%20good.%20I%20learned%20that%20the%20Ubuntu%20team%20bypasses%20the%20usu" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;t=OpenStack%20at%20UDS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS&amp;annotation=What%20a%20week%21%20Ubuntu%20Developer%20Summit%20is%20one%20of%20the%20best%20meetings%20I%20have%20attended%20to.%20Here%20are%20a%20few%20things%20that%20impressed%20me%20most.%0D%0A%0D%0AThe%20infrastructure%20is%20amazing%21%20The%20networking%20is%20astonishingly%20good.%20I%20learned%20that%20the%20Ubuntu%20team%20bypasses%20the%20usu" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS&amp;body=What%20a%20week%21%20Ubuntu%20Developer%20Summit%20is%20one%20of%20the%20best%20meetings%20I%20have%20attended%20to.%20Here%20are%20a%20few%20things%20that%20impressed%20me%20most.%0D%0A%0D%0AThe%20infrastructure%20is%20amazing%21%20The%20networking%20is%20astonishingly%20good.%20I%20learned%20that%20the%20Ubuntu%20team%20bypasses%20the%20usu" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=OpenStack%20at%20UDS&amp;body=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;t=OpenStack%20at%20UDS&amp;s=What%20a%20week%21%20Ubuntu%20Developer%20Summit%20is%20one%20of%20the%20best%20meetings%20I%20have%20attended%20to.%20Here%20are%20a%20few%20things%20that%20impressed%20me%20most.%0D%0A%0D%0AThe%20infrastructure%20is%20amazing%21%20The%20networking%20is%20astonishingly%20good.%20I%20learned%20that%20the%20Ubuntu%20team%20bypasses%20the%20usu" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS&amp;notes=What%20a%20week%21%20Ubuntu%20Developer%20Summit%20is%20one%20of%20the%20best%20meetings%20I%20have%20attended%20to.%20Here%20are%20a%20few%20things%20that%20impressed%20me%20most.%0D%0A%0D%0AThe%20infrastructure%20is%20amazing%21%20The%20networking%20is%20astonishingly%20good.%20I%20learned%20that%20the%20Ubuntu%20team%20bypasses%20the%20usu" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS&amp;bodytext=What%20a%20week%21%20Ubuntu%20Developer%20Summit%20is%20one%20of%20the%20best%20meetings%20I%20have%20attended%20to.%20Here%20are%20a%20few%20things%20that%20impressed%20me%20most.%0D%0A%0D%0AThe%20infrastructure%20is%20amazing%21%20The%20networking%20is%20astonishingly%20good.%20I%20learned%20that%20the%20Ubuntu%20team%20bypasses%20the%20usu" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2011%2F11%2F05%2Fopenstack-at-uds%2F&amp;title=OpenStack%20at%20UDS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1838" data-post-type="none" ><a href="http://maffulli.net/2011/10/31/shuttleworth-sees-ubuntu-as-the-universal-os/" class="wp_rp_title">Shuttleworth sees Ubuntu as the universal OS</a></li><li data-position="1" data-poid="in-2015" data-post-type="none" ><a href="http://maffulli.net/2012/10/20/back-from-san-diego-openstack-summit/" class="wp_rp_title">Back from San Diego OpenStack Summit</a></li><li data-position="2" data-poid="in-806" data-post-type="none" ><a href="http://maffulli.net/2009/02/10/everybody-loves-forums-or-do-they-really/" class="wp_rp_title">Everybody loves forums&#8230; or do they really?</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1840" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2011. |
<a href="http://maffulli.net/2011/11/05/openstack-at-uds/">Permalink</a> |
<a href="http://maffulli.net/2011/11/05/openstack-at-uds/#comments">No comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/meeting/" rel="tag">meeting</a>, <a href="http://maffulli.net/tag/summit/" rel="tag">summit</a>, <a href="http://maffulli.net/tag/ubuntu/" rel="tag">ubuntu</a>, <a href="http://maffulli.net/tag/uds/" rel="tag">uds</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2011/11/05/openstack-at-uds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shuttleworth sees Ubuntu as the universal OS</title>
		<link>http://maffulli.net/2011/10/31/shuttleworth-sees-ubuntu-as-the-universal-os/</link>
		<comments>http://maffulli.net/2011/10/31/shuttleworth-sees-ubuntu-as-the-universal-os/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 19:47:17 +0000</pubDate>
		<dc:creator>Stef</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[uds]]></category>

		<guid isPermaLink="false">http://maffulli.net/?p=1838</guid>
		<description><![CDATA[In his keynote this morning, Mark Shuttleworth sketched a future where by 2014 Ubuntu will be an universal platform on all devices with a screen. He mentioned Ubuntu-powered phones, TVs, tablets, cars, with the existing desktops and servers, all connected to the cloud. It&#8217;s a huge challenge. I&#8217;ve been hearing this story of the universal [...]]]></description>
				<content:encoded><![CDATA[<p>In his keynote this morning, Mark Shuttleworth sketched a future where by 2014 Ubuntu will be an universal platform on all devices with a screen. He mentioned Ubuntu-powered <a href="http://www.markshuttleworth.com/archives/820">phones, TVs, tablets, cars, with the existing desktops and servers, all connected to the cloud</a>. It&#8217;s a huge challenge.</p>
<p>I&#8217;ve been hearing this story of the universal operating system many times in the past 20 years and nobody has managed to come up with one. I&#8217;ve seen the failure of LiMo, Maemo and Meego later (not Tizen), WebOS and more in direct competition with iOS and Android on the mobile/embedded space. Mark may succeed where others have failed.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS%20-%20http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;source=%5D%5B+stefano+maffulli+about+open+source+and+freedom&amp;summary=In%20his%20keynote%20this%20morning%2C%20Mark%20Shuttleworth%20sketched%20a%20future%20where%20by%202014%20Ubuntu%20will%20be%20an%20universal%20platform%20on%20all%20devices%20with%20a%20screen.%20He%20mentioned%20Ubuntu-powered%20phones%2C%20TVs%2C%20tablets%2C%20cars%2C%20with%20the%20existing%20desktops%20and%20servers%2C%20all%20conn" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.fsdaily.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/fsdaily.png" class="sociable-img sociable-hovers" title="FSDaily" alt="FSDaily" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;t=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;annotation=In%20his%20keynote%20this%20morning%2C%20Mark%20Shuttleworth%20sketched%20a%20future%20where%20by%202014%20Ubuntu%20will%20be%20an%20universal%20platform%20on%20all%20devices%20with%20a%20screen.%20He%20mentioned%20Ubuntu-powered%20phones%2C%20TVs%2C%20tablets%2C%20cars%2C%20with%20the%20existing%20desktops%20and%20servers%2C%20all%20conn" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://ping.fm/ref/?link=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;body=In%20his%20keynote%20this%20morning%2C%20Mark%20Shuttleworth%20sketched%20a%20future%20where%20by%202014%20Ubuntu%20will%20be%20an%20universal%20platform%20on%20all%20devices%20with%20a%20screen.%20He%20mentioned%20Ubuntu-powered%20phones%2C%20TVs%2C%20tablets%2C%20cars%2C%20with%20the%20existing%20desktops%20and%20servers%2C%20all%20conn" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/ping.png" class="sociable-img sociable-hovers" title="Ping.fm" alt="Ping.fm" /></a><a rel="nofollow" target="_blank"  href="mailto:?subject=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;body=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a><a rel="nofollow" target="_blank"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;t=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;s=In%20his%20keynote%20this%20morning%2C%20Mark%20Shuttleworth%20sketched%20a%20future%20where%20by%202014%20Ubuntu%20will%20be%20an%20universal%20platform%20on%20all%20devices%20with%20a%20screen.%20He%20mentioned%20Ubuntu-powered%20phones%2C%20TVs%2C%20tablets%2C%20cars%2C%20with%20the%20existing%20desktops%20and%20servers%2C%20all%20conn" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/tumblr.png" class="sociable-img sociable-hovers" title="Tumblr" alt="Tumblr" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;notes=In%20his%20keynote%20this%20morning%2C%20Mark%20Shuttleworth%20sketched%20a%20future%20where%20by%202014%20Ubuntu%20will%20be%20an%20universal%20platform%20on%20all%20devices%20with%20a%20screen.%20He%20mentioned%20Ubuntu-powered%20phones%2C%20TVs%2C%20tablets%2C%20cars%2C%20with%20the%20existing%20desktops%20and%20servers%2C%20all%20conn" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS&amp;bodytext=In%20his%20keynote%20this%20morning%2C%20Mark%20Shuttleworth%20sketched%20a%20future%20where%20by%202014%20Ubuntu%20will%20be%20an%20universal%20platform%20on%20all%20devices%20with%20a%20screen.%20He%20mentioned%20Ubuntu-powered%20phones%2C%20TVs%2C%20tablets%2C%20cars%2C%20with%20the%20existing%20desktops%20and%20servers%2C%20all%20conn" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmaffulli.net%2F2011%2F10%2F31%2Fshuttleworth-sees-ubuntu-as-the-universal-os%2F&amp;title=Shuttleworth%20sees%20Ubuntu%20as%20the%20universal%20OS" ><img src="http://maffulli.net/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><br/><br/>
<div class="wp_rp_wrap  wp_rp_plain" ><div class="wp_rp_content"><h3 class="related_post_title">Related posts</h3><ul class="related_post wp_rp" style="visibility: visible"><li data-position="0" data-poid="in-1840" data-post-type="none" ><a href="http://maffulli.net/2011/11/05/openstack-at-uds/" class="wp_rp_title">OpenStack at UDS</a></li><li data-position="1" data-poid="in-806" data-post-type="none" ><a href="http://maffulli.net/2009/02/10/everybody-loves-forums-or-do-they-really/" class="wp_rp_title">Everybody loves forums&#8230; or do they really?</a></li><li data-position="2" data-poid="in-1544" data-post-type="none" ><a href="http://maffulli.net/2011/05/19/mini-review-of-my-exopc-running-ubuntu/" class="wp_rp_title">Mini-review of my ExoPC running Ubuntu</a></li></ul><div class="wp_rp_footer"><a class="wp_rp_backlink" target="_blank" href="http://www.zemanta.com/?wp-related-posts">Zemanta</a></div></div></div>
 <img src="http://maffulli.net/?feed-stats-post-id=1838" width="1" height="1" style="display: none;" /><hr />
<p><small>
Stef for <a href="http://maffulli.net">][ stefano maffulli</a>, 2011. |
<a href="http://maffulli.net/2011/10/31/shuttleworth-sees-ubuntu-as-the-universal-os/">Permalink</a> |
<a href="http://maffulli.net/2011/10/31/shuttleworth-sees-ubuntu-as-the-universal-os/#comments">One comment</a> 
<br/>
Post tags: <a href="http://maffulli.net/tag/community/" rel="tag">community</a>, <a href="http://maffulli.net/tag/developers/" rel="tag">developers</a>, <a href="http://maffulli.net/tag/ubuntu/" rel="tag">ubuntu</a>, <a href="http://maffulli.net/tag/uds/" rel="tag">uds</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://maffulli.net/2011/10/31/shuttleworth-sees-ubuntu-as-the-universal-os/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
