<?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>the blixtra blog &#187; tech</title>
	<atom:link href="http://blixtra.org/blog/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://blixtra.org/blog</link>
	<description>Whoopie! You&#039;ve reached Chris Kühl&#039;s blog</description>
	<lastBuildDate>Mon, 12 Mar 2012 10:00:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cluttermm now under new management</title>
		<link>http://blixtra.org/blog/2012/03/12/cluttermm-now-under-new-management/</link>
		<comments>http://blixtra.org/blog/2012/03/12/cluttermm-now-under-new-management/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 10:00:56 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[cluttermm]]></category>
		<category><![CDATA[gnome]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=638</guid>
		<description><![CDATA[I&#8217;ve not really found the time or motivation to work on Cluttermm and friends since this summer. Thus, I&#8217;m happy that I&#8217;ve found someone to pass on maintanership to. Actually, I&#8217;ve found two maintainers to take over. Krzesimir Nowak has worked on improving the C++-bindings in GNOME for some time know. He&#8217;s very familiar with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve not really found the time or motivation to work on Cluttermm and friends since this summer. Thus, I&#8217;m happy that I&#8217;ve found someone to pass on maintanership to. Actually, I&#8217;ve found two maintainers to take over.</p>
<p><a href="http://krnowak.blogspot.com/">Krzesimir Nowak</a> has worked on improving the C++-bindings in GNOME for some time know. He&#8217;s very familiar with both C++ and how to create GObject C++-bindings.</p>
<p><a href="http://blogs.linux.ie/balor/">Aidan Delaney</a> is a Senior Lecturer at the University of Brighton in the UK and uses Cluttermm and Clutter-box2dmm for teaching.</p>
<p>I&#8217;ve added them as maintainers in the <a href="http://en.wikipedia.org/wiki/Description_of_a_Project">DOAP</a> files for <a href="http://git.gnome.org/browse/cluttermm/">Cluttermm</a>, <a href="http://git.gnome.org/browse/clutter-gtkdmm/">Clutter-gtkmm</a>, and <a href="http://git.gnome.org/browse/clutter-box2dmm/">Clutter-box2dmm</a> already. I guess that makes it official.</p>
<p>Thanks for agreeing to take over, guys.</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2012/03/12/cluttermm-now-under-new-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expat tips: Tunneling Traffic with &#8216;ssh -D&#8217;</title>
		<link>http://blixtra.org/blog/2012/02/14/expat-tips-tunneling-traffic-with-ssh-d/</link>
		<comments>http://blixtra.org/blog/2012/02/14/expat-tips-tunneling-traffic-with-ssh-d/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 09:07:14 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=630</guid>
		<description><![CDATA[I&#8217;ve been living outside the US for over a quarter of my life now. With this comes some minor annoyances. One annoyance is that certain Internet sites work &#8216;better&#8217; when connecting from the US. Luckily we can easily make it look like we are connecting from a US location with the help of the following. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been living outside the US for over a quarter of my life now. With this comes some minor annoyances. One annoyance is that certain Internet sites work &#8216;better&#8217; when connecting from the US. Luckily we can easily make it look like we are connecting from a US location with the help of the following.</p>
<ul>
<li>A US-hosted server with ssh access</li>
<li>A browser</li>
<li>ssh</li>
</ul>
<p>I&#8217;ll assume you have the last two. The easiest way to get the first is in the form of a web host. I use <a href="http://www.dreamhost.com/r.cgi?94644" title="Dreamhost">Dreamhost</a> which offers unlimited bandwidth for a pretty good price.</p>
<p>The first step to getting things to work is to login to the US-based server using the following command.</p>
<p><code>ssh -D PORT_NUMBER username@example.com</code></p>
<p>For the port number, it&#8217;s best to choose a number between 1024 and 49151 while avoiding any commonly used ports. Basically, avoid those listed <a href="http://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers">here</a>. In this example, I chose port 8421.</p>
<p>What this does is setup a <a href="http://en.wikipedia.org/wiki/SOCKS">SOCKS proxy</a> on your local machine at the port given that can be used to tunnel traffic through to a remote machine, in our case a US-based server. Obviously, this connection needs to be maintained the entire time you want to send traffic through to the remote machine.</p>
<p>Now we just need to tell our browser to send all traffic through this port. In Firefox, go to Edit->Preferences->Advanced->Network->Settings. You should be presented with a window similar to this&#8230;<br />
<a href="http://blixtra.org/blog/wp-content/uploads/2012/02/FirefoxProxySettings.png"><img src="http://blixtra.org/blog/wp-content/uploads/2012/02/FirefoxProxySettings.png" title="Firefox Proxy Settings" width="546" height="557" class="aligncenter size-full wp-image-632" /></a></p>
<p>You&#8217;ll notice the 127.0.0.1 (localhost works too) and 8421 in the SOCKS host fields. That&#8217;s all that&#8217;s required. If you later want to revert just chose &#8216;No Proxy&#8217; again.</p>
<p>Now you can close the preference dialog and should be able to enjoy surfing the Interwebs as an American. Fuck yeah!</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2012/02/14/expat-tips-tunneling-traffic-with-ssh-d/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Gnome System Monitor: Swatting bugs</title>
		<link>http://blixtra.org/blog/2011/11/23/gnome-system-monitor-swatting-bugs/</link>
		<comments>http://blixtra.org/blog/2011/11/23/gnome-system-monitor-swatting-bugs/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 18:13:07 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[gnome]]></category>
		<category><![CDATA[gnome-system-monitor]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=619</guid>
		<description><![CDATA[Earlier this year I took over maintainership of Gnome System Monitor. It had been neglected for a couple years which was obvious by taking a look at the bugs piling up in Bugzilla. When I started there were about 255 bugs which I quickly got down to just under 200. Up until a few weeks [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this year I <a href="http://blixtra.org/blog/2011/02/23/maintenance-mode/">took over maintainership</a> of <a href="http://git.gnome.org/browse/gnome-system-monitor/" title="Gnome System Monitor Git repository">Gnome System Monitor</a>. It had been neglected for a couple years which was obvious by taking a look at the bugs piling up in <a href="https://bugzilla.gnome.org/browse.cgi?product=system-monitor">Bugzilla</a>. When I started there were about 255 bugs which I quickly got down to just under 200.</p>
<p>Up until a few weeks ago it had stayed at that level. But a few weeks back <a href="http://dailydoseofubuntu.blogspot.com/">Robert Roth</a> appeared out of nowhere and started triaging bugs and submitting new patches and updating old patches. He&#8217;s been keeping me busy reviewing and applying patches. With his help the bug count is now at 146. Still high but very good progress. So, thanks Robert!</p>
<p>The big new feature so far this cycle is <a href="http://www.mjmwired.net/kernel/Documentation/cgroups.txt">Control Groups</a> support. Jason Baron from <a href="http://www.redhat.com/">Red Hat</a> has added an option to view the control group information for each process. This is a work in progress. I&#8217;ve included an early patch in the <a href="ftp://ftp.gnome.org/pub/gnome/sources/gnome-system-monitor/3.3/">3.3.2.1 release</a>. If you find bugs or just want to follow the progress please visit <a href="https://bugzilla.gnome.org/show_bug.cgi?id=663644">bug #663644</a>. Also, thanks to <a href="http://0pointer.de/lennart/">Lennart</a> for his input on how best to implement this.</p>
<p>With many bugs squashed and a few new features, the 3.4 release stands to be <em>The best release ever</em> (TM).</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/11/23/gnome-system-monitor-swatting-bugs/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>syncEvolution needs you!</title>
		<link>http://blixtra.org/blog/2011/09/22/syncevolution-needs-you-or-at-least-your-bluetooth-phones/</link>
		<comments>http://blixtra.org/blog/2011/09/22/syncevolution-needs-you-or-at-least-your-bluetooth-phones/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 07:09:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[openismus]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=594</guid>
		<description><![CDATA[tl;dr: If you&#8217;d like to help improve phone synchronization support, please run the script linked to at the bottom and send me the file it produces so that I can compile a list of supported phones. As Murray pointed out, I&#8217;ve been working on SyncEvolution for the past couple months. Recently I added support for [...]]]></description>
			<content:encoded><![CDATA[<p><strong>tl;dr</strong>: <em>If you&#8217;d like to help improve phone synchronization support, please run the script linked to at the bottom and send me the file it produces so that I can compile a list of supported phones.</em></p>
<p>As <a href="http://www.murrayc.com/blog/permalink/2011/08/04/openismus-work-on-evolution-data-server-and-syncevolution/">Murray pointed out</a>, I&#8217;ve been working on <a href="http://syncevolution.org/">SyncEvolution</a> for the past couple months. Recently I added support for getting reliable phone information using the <a href="http://en.wikipedia.org/wiki/Bluetooth_profile#Device_ID_Profile_.28DIP.29">Bluetooth Device ID Profile</a> (DIP). This data is used to match a Bluetooth phone with suitable syncEvolution configuration templates. In syncEvolution, templates are predefined in order to make setting up a sync session easier and less error-prone.</p>
<p>The problem with using the DIP information is that it&#8217;s just a hex number. For this information to be more useful, we need mapping from IDs to names. A <a href="http://www.bluetooth.org/Technical/AssignedNumbers/identifiers.htm">list of companies IDs</a> is freely available. For products this is a different story. As each company assigns numbers to its products, there is no centralized list mapping products to their assigned IDs.[1] So, we have to make our own list.</p>
<p>Below is a small python script that checks if your phone supports the Device Id profile and asks you for the model of the phone. It produces a file that you can either attach to, or copy into, an email and send to me (email address is in file). Oh, and don&#8217;t forget to turn on your phone&#8217;s bluetooth. <img src='http://blixtra.org/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong><a href="https://meego.gitorious.org/meego-middleware/syncevolution/blobs/raw/master/test/bluetooth-device-id-inspector.py" title="Bluetooth device ID inspector">Bluetooth Device ID Inspector</a></strong></p>
<p>Thanks!</p>
<p>[1] If anyone has device ID to product name mappings for a particular manufacturer we&#8217;d be grateful to have this info.</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/09/22/syncevolution-needs-you-or-at-least-your-bluetooth-phones/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Desktop Summit: Day Trips</title>
		<link>http://blixtra.org/blog/2011/08/05/desktop-summit-day-trips/</link>
		<comments>http://blixtra.org/blog/2011/08/05/desktop-summit-day-trips/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 09:52:28 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[berlin]]></category>
		<category><![CDATA[desktop summit]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=582</guid>
		<description><![CDATA[This year&#8217;s Desktop Summit is taking place at Humbolt University in the middle of Berlin, one of the most interesting cities in the world. This makes it a prime starting point for taking a tour of the city. For this reason, we&#8217;ve designated some time on Thursday, August 11th for taking day trips. When you [...]]]></description>
			<content:encoded><![CDATA[<p>This year&#8217;s Desktop Summit is taking place at <a href="http://en.wikipedia.org/wiki/Humboldt_University_of_Berlin">Humbolt University</a> in the middle of Berlin, one of the most interesting cities in the world. This makes it a prime starting point for taking a tour of the city. For this reason, we&#8217;ve designated some time on Thursday, August 11th for taking day trips.</p>
<p>When you come to registration on Saturday you&#8217;ll find representatives from some of the best tour operators in Berlin. Here&#8217;s what will be on offer.</p>
<ul>
<li><strong>Walking Tour (€10)</strong>: Hit the pavement with the guides from <a href="http://www.insidertour.com/">Insider Tours</a>. They&#8217;ll give you some great insight into some of Berlin&#8217;s most interesting places.</li>
<li><strong>Bike Tour (€18)</strong>: For the two-wheel inclined, the folks from <a href="http://fattirebiketours.com/berlin/tours">Fat Tire Bike Tours</a> would love to show you around.</li>
<li><strong>Segway Tour (€45)</strong>: Hey, we&#8217;re all geeks, so maybe you&#8217;d prefer seeing Berlin from a gyro-balanced electric transporter. The folks from <a href="http://citysegwaytours.com/berlin/tours">City Segway Tours</a> can help you with that.</li>
</ul>
<p>You should also feel free to book tours with other tour operators on your own. We&#8217;ve listed a few <a href="http://wiki.desktopsummit.org/Events#Day-Trip">on the wiki</a> for you.</p>
<p>Oh, and remember to sign-up for the <a href="http://wiki.desktopsummit.org/Football_match_sign-up">Football</a> and <a href="http://wiki.desktopsummit.org/Volleyball_match_sign-up">Volleyball</a> matches taking place Monday, August 8th, 7-9pm if you want to play.</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/08/05/desktop-summit-day-trips/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Desktop Summit: Deadlines &amp; Announcements Galore</title>
		<link>http://blixtra.org/blog/2011/06/29/desktop-summit-deadlines-announcements-galore/</link>
		<comments>http://blixtra.org/blog/2011/06/29/desktop-summit-deadlines-announcements-galore/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 13:39:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[berlin]]></category>
		<category><![CDATA[desktop summit]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=550</guid>
		<description><![CDATA[So the Desktop Summit is quickly approaching. In only 5.5 weeks you&#8217;ll all be arriving in Berlin getting ready for some great talks and good fun. In order to make your time in Berlin as productive and enjoyable as possible we try to keep you abreast on what&#8217;s happening here. As a public service I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>So the <a href="https://www.desktopsummit.org/">Desktop Summit</a> is quickly approaching. In only 5.5 weeks you&#8217;ll all be arriving in Berlin getting ready for some great talks and good fun. In order to make your time in Berlin as productive and enjoyable as possible we try to keep you abreast on what&#8217;s happening <a href="https://www.desktopsummit.org/news">here</a>. As a public service I&#8217;ll summarize some of the more recent and pressing items.</p>
<p><strong>Accomodations</strong></p>
<p>Some of the deadlines have passed to get the conference rate at selected hotels. However, some still offer this rate till tomorrow (June 30th). So head over to <a href="https://www.desktopsummit.org/accommodation">the accommodation page</a> and book your room. Berlin is very popular in the summer, so get your room booked early&#8230; meaning now.</p>
<p><strong>Registration</strong></p>
<p>If you&#8217;ve not registered yet, please do. For us, as organizers, it helps a lot if you <a href="https://www.desktopsummit.org/register">register</a> as early as possible. For you, though, it&#8217;s even more important. Pre-registering will help you get through the conference check-in faster, get you into the parties (beer!), and will be needed for a few other things we&#8217;ll be announcing soon.</p>
<p><strong>Workshops and BoFs</strong></p>
<p>The last four days of the conference will be all about getting stuff done. We&#8217;ve got lots of space for ad-hoc workshops and BoFs but are offering to let projects and groups who know they want to get together a chance to get there sessions onto the official schedule. The deadline for this is this Sunday (July 3rd). So go <a href="https://www.desktopsummit.org/program/workshops-bofs">propose a session</a> now. Btw, there seem to be a lot more KDE <a href="http://wiki.desktopsummit.org/index.php?title=Category:DS2011WorkshopProposal">sessions proposed</a> so far than GNOME ones. So, please propose your sessions GNOME folks! <img src='http://blixtra.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Volunteering</strong></p>
<p>The local organizing team will not be able to make this a great conference without help from the community. We&#8217;re <a href="http://psconboard.blogspot.com/2011/06/desktop-summit-2011-call-for-volunteers.html">looking for volunteers</a> to help us with many aspects of the conference. If you&#8217;re able to help in any capacity please head over to our <a href="http://wiki.desktopsummit.org/Volunteers">volunteer wiki page</a> and sign up. </p>
<p>Even if you can&#8217;t make it to the conference but are familiar with Berlin you can help by going to the wiki and simply creating and filling pages with information about Berlin that&#8217;ll help attendees enjoy their stay.</p>
<p><strong>Sponsors</strong></p>
<p>Our <a href="https://www.desktopsummit.org/sponsors">sponsor page</a> has gotten a little more colorful recently. Thanks to all our sponsors for making the conference possible.</p>
<p><strong>Keynotes</strong></p>
<p>Last but not least, we&#8217;ve announced the keynotes for this year. Check out interviews with <a href="https://www.desktopsummit.org/interviews/thomas-thwaite">Thomas Thwaite</a> (designer and technologist), <a href="https://www.desktopsummit.org/interviews/claire-rowland">Claire Rowland</a> (user experience guru), and <a href="https://www.desktopsummit.org/interviews/dirk-hohndel">Dirk Hondel</a> (Chief Linux and Open Source Technologist at Intel). In addition, there will be one community keynote from both KDE and GNOME each; details coming soon.</p>
<p>As always more info to come so keep an eye on the <a href="https://www.desktopsummit.org/news">news</a>. Hope to see you in Berlin.</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/06/29/desktop-summit-deadlines-announcements-galore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MeeGo Conference 2011, San Francisco</title>
		<link>http://blixtra.org/blog/2011/06/04/meego-conference-2011-san-francisco/</link>
		<comments>http://blixtra.org/blog/2011/06/04/meego-conference-2011-san-francisco/#comments</comments>
		<pubDate>Sat, 04 Jun 2011 15:06:26 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[openismus]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=536</guid>
		<description><![CDATA[Last week I went to San Francisco to play Ping-Pong with Andre. At the same time a conference took place. That conference was of course the 2nd MeeGo Conference. I&#8217;d gone to the 1st conference in Dublin in November and written a rather lenghty account. The two conferences had very different feels and it wasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I went to San Francisco to play Ping-Pong with <a href="http://blogs.gnome.org/aklapper/2011/05/26/meego-conf-sf/">Andre</a>. At the same time a conference took place.</p>
<p>That conference was of course the <a href="http://sf2011.meego.com/">2nd MeeGo Conference</a>. I&#8217;d gone to the <a href="http://conference2010.meego.com/">1st conference in Dublin</a> in November and written <a href="http://blixtra.org/blog/2010/11/22/meego-conference-2010-dublin/">a rather lenghty account</a>. The two conferences had very different feels and it wasn&#8217;t due to geography.</p>
<p>The big news at the San Francisco conference was that there was no real news. The keynote had no big announcements: no new devices, no previously unannounced partners. As opposed to the Dublin conference where there was <em>hope</em> for such news, this conference had an <em>expectation</em> of such news. The lack of announcements caused the conference to feel rather less inspiring. While it&#8217;s nice to see MeeGo making headway in the in-vehicle infotainment and set-top box markets the lack of a handset device is weighing on the project.</p>
<p>Another obvious and expected difference to the Dublin conference was the much reduced visibility of Nokia. There was a large Qt presence of course. Other than that however, there were very few Nokia logos and fewer Nokia employees came to SF than to Dublin, although there were still quite a few.</p>
<p>Some of the most interesting talks were about the openness and transparency of the project. I&#8217;ll simply point you to a very <a href="http://lwn.net/Articles/444567/">good account of this at LWN</a>. </p>
<p>I was happy to come away with an<a href="http://www.exopc.com/devices/"> ExoPC Slate</a>. This is the same hardware as the <a href="http://wetab.mobi/">WeTab</a> which my colleague <a href="http://www.jonnor.com/2011/04/introducing-maliit-on-screen-keyboard-in-gnome-3/">Jon demonstrated running Maliit on GNOME 3</a> a few weeks back. These were given out to those who attended the <a href="http://wiki.meego.com/MeeGo_Conference_Spring_2011#Introduction_to_MeeGo_SDK">Introduction to MeeGo SDK</a>. The session covered the MeeGo SDK, <a href="http://appdeveloper.intel.com/en-us/tags/appup-sdk">AppUp SDK</a>, and the <a href="http://appdeveloper.intel.com/de-de/tags/intel-appup-encapsulator">AppUp Encapsulator</a>.</p>
<p>Besides the conference it was nice being back in The States. I&#8217;m the only American working for <a href="http://www.openismus.com/">Openismus</a> and for the other 4 it was their first trip to the US. I think in the end they were for the most part pleasantly surprised. These Europeans tend to believe what they see on TV. <img src='http://blixtra.org/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/06/04/meego-conference-2011-san-francisco/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Desktop Summit T-shirt Contest</title>
		<link>http://blixtra.org/blog/2011/04/19/desktop-summit-t-shirt-contest/</link>
		<comments>http://blixtra.org/blog/2011/04/19/desktop-summit-t-shirt-contest/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 13:07:05 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[berlin]]></category>
		<category><![CDATA[desktop summit]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=517</guid>
		<description><![CDATA[Today, we&#8217;re announcing the start of the Desktop Summit t-shirt contest. We want designs that go beyond your typical conference shirt which finds its final resting place in the closet or drawer once you&#8217;ve returned home. We&#8217;re looking for designs that reflect the passion and energy of the Free Desktop communities that The Desktop Summit [...]]]></description>
			<content:encoded><![CDATA[<p>Today, we&#8217;re announcing the start of the <a href="https://www.desktopsummit.org/tshirt">Desktop Summit t-shirt contest</a>. We want designs that go beyond your typical conference shirt which finds its final resting place in the closet or drawer once you&#8217;ve returned home. We&#8217;re looking for designs that reflect the passion and energy of the Free Desktop communities that The Desktop Summit represents.</p>
<p><a href="https://www.desktopsummit.org/tshirt"><img alt="" src="http://blixtra.org/public/desktop_summit/desktopsummit-tshirt-contest.png" title="Desktop Summit t-shirt contest graphic" class="aligncenter" width="506" height="590" /></a></p>
<p>The selected design will be made available for purchase to the 1000+ expected attendees. The money raised from the sale will be used to support The Desktop Summit. Please <strong>submit your design before 23.55 15th May UTC</strong>. See the <a href="https://www.desktopsummit.org/tshirt">rules</a> for other submission details.</p>
<p><a href="https://www.desktopsummit.org">The Desktop Summit</a> is happening in Berlin from the 6th to 12th August. It is free to attend but you need to <a href="https://www.desktopsummit.org/register">register</a>. If you are attending you may want to subscribe to the<a href="https://mail.kde.org/mailman/listinfo/ds-discuss"> discussion list</a> to talk to others who are going, we also have the IRC channel on freenode #desktopsummit.</p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/04/19/desktop-summit-t-shirt-contest/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tonight, Berlin is GNOME!</title>
		<link>http://blixtra.org/blog/2011/04/08/tonight-berlin-is-gnome/</link>
		<comments>http://blixtra.org/blog/2011/04/08/tonight-berlin-is-gnome/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 09:17:01 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[berlin]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=507</guid>
		<description><![CDATA[&#8230; and you can be too&#8230;even if for only one night. That&#8217;s right! Tonight is the GNOME 3 Berlin release party. In case you don&#8217;t think you&#8217;re invited Lennart added this to the wiki page&#8230; Who&#8217;s invited? Everybody! Whether you are a GNOME user, a GNOME developer or a GNOME contributor, you are invited. And, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Help promote GNOME 3!" href="https://live.gnome.org/ThreePointZero/Promote"><img border="0" alt="I am GNOME" src="http://www.gnome.org/wp-content/uploads/2011/04/iamgnome.png"/></a></p>
<p>&#8230; and you can be too&#8230;even if for only one night. That&#8217;s right! Tonight is the <a href="https://www.facebook.com/event.php?eid=168385673213124&#038;index=1">GNOME 3 Berlin release party</a>.</p>
<p>In case you don&#8217;t think you&#8217;re invited <a href="http://0pointer.de/lennart/">Lennart</a> added this to<a href="https://live.gnome.org/ThreePointZero/LaunchParty/Germany/Berlin"> the wiki page</a>&#8230;</p>
<p><em>Who&#8217;s invited? Everybody! Whether you are a GNOME user, a GNOME developer or a GNOME contributor, you are invited. And, in fact, you are invited if you are into KDE, too. Whether you are young or old, have long hair or short hair, you are invited. If you speak German or English, or French or Spanish or any other language of this world, you are invited. In fact, it&#8217;s kinda hard not being invited.</em></p>
<p>So don&#8217;t be shy! Come celebrate with us tonight @ <a href="http://www.c-base.org/">c-base</a> at 19.00.</p>
<p>Related posts:<br />
<a href="http://blixtra.org/blog/2011/03/08/berlin-gnome-3-launch-lounge/">Berlin GNOME 3 Launch Lounge</a><br />
<a href="http://blixtra.org/blog/2011/03/29/berlin-gnome-3-launch-party-update-and-reminder/">Berlin GNOME 3 launch party: Update and reminder</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/04/08/tonight-berlin-is-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Summit: Calling all procrastinators!</title>
		<link>http://blixtra.org/blog/2011/03/24/desktop-summit-calling-all-procrastinators/</link>
		<comments>http://blixtra.org/blog/2011/03/24/desktop-summit-calling-all-procrastinators/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 14:23:42 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[berlin]]></category>
		<category><![CDATA[desktop summit]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blixtra.org/blog/?p=487</guid>
		<description><![CDATA[Let this be the last blog post to make you feel guilty for not yet having submitted a talk proposal to this year&#8217;s Desktop Summit in Berlin. The deadline to submit your proposal is TOMORROW (Mar. 25th, 2011). If you have contributed in any way to one of the many Free/Libre Desktops, we encourage you [...]]]></description>
			<content:encoded><![CDATA[<p>Let this be the last blog post to make you feel guilty for not yet having <a href="https://desktopsummit.org/cfp">submitted a talk proposal</a> to this year&#8217;s <a href="https://www.desktopsummit.org/">Desktop Summit</a> in Berlin.<strong> The deadline to submit your proposal is TOMORROW (Mar. 25th, 2011).</strong></p>
<p>If you have contributed in any way to one of the many Free/Libre Desktops, we encourage you to submit a talk proposal. There are slots available for Lightning Talks (3 min), Normal Presentations (30 min) and Long Presentations (45 min). Don&#8217;t be shy or modest. Write up a short proposal and give the selection committee lots of tough decisions to make.</p>
<p>If you need help or have questions you can get in touch via IRC on FreeNode in the #desktopsummit channel or via email at ds-team [at] desktopsummit (d0t) org.</p>
<p><a href="https://desktopsummit.org/"><img alt="Desktop Summit Logo" src="https://desktopsummit.org/sites/dev.desktopsummit.org/files/acquia_prosper_logo.png" title="Desktop Summit Logo" class="aligncenter" width="266" height="182" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blixtra.org/blog/2011/03/24/desktop-summit-calling-all-procrastinators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

