<?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>hesa's blog &#187; FSCONS</title>
	<atom:link href="http://www.sandklef.com/hesa/index.php/category/event/conference/fscons/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sandklef.com/hesa</link>
	<description>your cadillac aint no betta' than my bus stop</description>
	<lastBuildDate>Thu, 01 Jul 2010 10:48:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FSCONS &#8211; do you want to present something</title>
		<link>http://www.sandklef.com/hesa/index.php/2010/07/01/fscons-do-you-want-to-present-something/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2010/07/01/fscons-do-you-want-to-present-something/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 10:33:10 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FOSDEM]]></category>
		<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=620</guid>
		<description><![CDATA[Do you want to present something at FSCONS? File a proposal here: http://wiki.fscons.org/page/Call_for_participation_2010 When looking at the submissions so far I can say it&#8217;s going to be a great conference this year too. We are in contact with some really skilled hackers and just a few details away from getting them to come over  [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to present something at FSCONS? File a proposal here: http://wiki.fscons.org/page/Call_for_participation_2010 When looking at the submissions so far I can say it&#8217;s going to be a great conference this year too. We are in contact with some really skilled hackers and just a few details away from getting them to come over <img src='http://www.sandklef.com/hesa/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2010/07/01/fscons-do-you-want-to-present-something/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Andrew Gerrand and GO / FSCONS extra event</title>
		<link>http://www.sandklef.com/hesa/index.php/2010/06/10/andrew-gerrand-and-go-fscons-extra-event/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2010/06/10/andrew-gerrand-and-go-fscons-extra-event/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 09:27:55 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=597</guid>
		<description><![CDATA[June 8, I opened the doors of IT University for an extra FSCONS event arranged by FSCONS and GTUG.  Andrew Gerrand from Google was here in Gothenburg to talk us through the language Go.
I liked Andrew&#8217;s talk btw. Clear. Easy to understand. He seemed to be interested in the questions asked. During the talk theere [...]]]></description>
			<content:encoded><![CDATA[<p>June 8, I opened the doors of IT University for an extra <a href="http://fscons.org/">FSCONS</a> event arranged by <a href="http://fscons.org">FSCONS</a> and <a href="http://www.gtugs.org/chapter.jsp?id=10001">GTUG</a>.  <a href="http://www.google.com/profiles/andrewdg">Andrew Gerrand</a> from Google was here in Gothenburg to talk us through the language <a href="http://golang.org/">Go</a>.</p>
<p>I liked Andrew&#8217;s talk btw. Clear. Easy to understand. He seemed to be interested in the questions asked. During the talk theere was a discussion on IDEs and according to Andrew there&#8217;s no need for an IDE when writing Go (which is the case (IMHO) when you&#8217;re programming for example Java). That sounded promising. Anyhow, let&#8217;s talk about Go. I am usually skeptical to new things (a clear sign of a geezer) and to some extent I&#8217;ll stay that way regarding Go. At least for a while more. Without any deeper knowledge I present my reflections on the language (as if anyone cares):</p>
<p>When it comes to <strong>memory management</strong> I feel pretty ok. As a developer it&#8217;s easier to let some one else do memory allocation for you (i.e not alloc and free), but at the same time when doing C/C++ I am in control and I can predict a bit better when things happen.</p>
<p><em>[In a previous version of this blog post I by mistake used the word concurrency to mean the distribution mechanism in Erlang. This is such a big mistake I've decided to rewrite history and edit my blog post - 2010-06-11]</em></p>
<p>Looking at &#8220;<strong>cross machine distribution mechanism&#8221; </strong>(think <a href="http://www.erlang.org/">Erlang</a>) I miss it. I asked Andrew about this and he said that there is none, but I interpreted him as if the door is not closed, but until then we will have to rely on a library (think pthreads in C).  However, if concurrency comes with a virtual machine or run time system (or what ever you want to call it) I am not sure I think it&#8217;s worth it. At least not when it comes to the kind of programs I normally write.</p>
<p>I asked Andrew about <strong>shared libraries</strong> and there is no such thing in Go. I surely understand why, but it would be neat to have. This could be done I guess with the C bindings mechanism in Go.</p>
<p>Enough of my complaints and ramblings. What do I think?&#8230;. what is my gut feeling. I am not a big fan of leaning on arguments such as &#8220;my inner feel says&#8221;, but that&#8217;s more or less what I will do.</p>
<p style="padding-left: 30px;"><strong>Why Go?</strong>: It&#8217;s <a href="http://www.gnu.org/philosophy/free-sw.html">free software</a>. It seems to be a language with which I can quickly get my things done.</p>
<p style="padding-left: 30px;"><strong>Why not Go?</strong>: Not that many targets supported, no shared libs, non concurrency (why not use C instead of Go then?)</p>
<p>I guess I will give it a try&#8230;. and that&#8217;s not something I say that often. Perhaps write some <a href="http://www.sandklef.com/xnee">Xnee</a> bindings for Go.</p>
<p>Makes me wonder, should we invite some one to talk about Go at &#8220;the real&#8221; <a href="http://fscons.org">FSCONS</a> 2010?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2010/06/10/andrew-gerrand-and-go-fscons-extra-event/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FSCONS Call for participation</title>
		<link>http://www.sandklef.com/hesa/index.php/2010/05/26/fscons-call-for-participation/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2010/05/26/fscons-call-for-participation/#comments</comments>
		<pubDate>Wed, 26 May 2010 14:24:36 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=589</guid>
		<description><![CDATA[FSCONS needs you!
Do you have a cool software or  hardware you want to talk about, why not do it in Gothenburg (Sweden) at FSCONS? Instructions for submission can be found here: http://fscons.org/cfp
About FSCONS
The Free Society Conference and Nordic Summit (FSCONS) is a meeting place for social change, focused on the future of free software and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong>FSCONS needs you!</strong></p>
<p>Do you have a cool software or  hardware you want to talk about, why not do it in Gothenburg (Sweden) at <a href="http://www.fscons.org">FSCONS</a>? Instructions for submission can be found here: <a href="http://fscons.org/cfp">http://fscons.org/cfp</a></p>
<p><strong>About FSCONS</strong></p>
<p>The Free Society Conference and Nordic Summit (FSCONS) is a meeting place for social change, focused on the future of free software and free society. The conference brings together people from a wide range of fields, and merges the technical with the social, seeking both to activate and challenge. Open discussion and brainstorming are as important as the talks given during the conference.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2010/05/26/fscons-call-for-participation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restarting life (and GNU Xnee)</title>
		<link>http://www.sandklef.com/hesa/index.php/2010/04/15/restarting-life-and-gnu-xnee/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2010/04/15/restarting-life-and-gnu-xnee/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 18:25:31 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[GNU Xnee]]></category>
		<category><![CDATA[conference]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=567</guid>
		<description><![CDATA[Having had a very tough period behind me (well, some work remains so the weekend will be spent catching up) I am now in a position which I started aiming at some years ago (yes, it&#8217;s true). Sounds like big words. It is and it isn&#8217;t. Eh?
What is great is&#8230;
that I am embarking on a [...]]]></description>
			<content:encoded><![CDATA[<p>Having had a very tough period behind me (well, some work remains so the weekend will be spent catching up) I am now in a position which I started aiming at some years ago (yes, it&#8217;s true). Sounds like big words. It is and it isn&#8217;t. Eh?</p>
<p>What is great is&#8230;</p>
<p>that I am embarking on a software project together with two other great humans (in Gothenburg). The software is based on an idea I got several years ago. When I met with these two, the idea really was turned into something really cool and we think it has a great potential.  More on this project an other day, we&#8217;ll stay low for a while</p>
<p><a href="http://www.fscons.org">FSCONS</a> is being planned. I will focus more on an embedded part this year. It&#8217;s gonna rock!</p>
<p>Furthermore, I am catching up on my <em>todo list</em>, which have been incredibly big (<a href="http://www.sandklef.com/xnee">GNU Xnee</a> is still on the list, and needs a lot of attention and is gonna get top prio).</p>
<p>But wait, there&#8217;s more&#8230;. Being a teacher and meeting great and inspiring students (friends) are totally awesome.</p>
<p>And finally my colleague and I just finalised the planning of a panel debate. During the planning I&#8217;ve met people who, with their insights and feedback, really made all the efforts worthwhile. More on the debate later..</p>
<p>So in short, this blog post is simply saying</p>
<p style="padding-left: 30px;"><strong>I am on track again</strong></p>
<p style="padding-left: 30px;"><strong>&#8230;&#8230;. ready to start putting things on top of other things<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2010/04/15/restarting-life-and-gnu-xnee/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FOSDEM &#8211; here we go</title>
		<link>http://www.sandklef.com/hesa/index.php/2010/02/05/fosdem-here-we-go/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2010/02/05/fosdem-here-we-go/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 23:09:03 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FOSDEM]]></category>
		<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[X11]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=558</guid>
		<description><![CDATA[&#8230; having finished a hectic period I must say that leaving for FOSDEM tomorrow morning feels great. I will team up with Daniel Stenberg, Magnus Hagander and of course some GNUs, I know that some of the people at last year&#8217;s GNU Hackers Meeting (held the days before FSCONS) will come over to FOSDEM as [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230; having finished a hectic period I must say that leaving for <a href="http://fosdem.org">FOSDEM</a> tomorrow morning feels great. I will team up with <a href="http://daniel.haxx.se/blog/">Daniel Stenberg</a>, <a href="http://blog.hagander.net/">Magnus Hagander</a> and of course some GNUs, I know that some of the people at <a href="www.gnu.org/ghm/2009">last year&#8217;s GNU Hackers Meeting</a> (held the days before <a href="http://fscons.org">FSCONS</a>) will come over to FOSDEM as well <img src='http://www.sandklef.com/hesa/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Going to be great meeting <a href="http://www.briangough.ukfsn.org/">Brian Gough</a> and <a href="http://www.jemarch.net/">Jose E. Marchesi</a> while I am not stressed of work overload, GHM planning and FSCONS planning. Brian and Jose were organising the GNU Hackers Meeting with me.    &#8230; and as always I&#8217;ll team up with the <a href="http://fsfe.org">FSFE</a> folks.</p>
<p>As for the presentations I will surely go and see:</p>
<ul>
<li><a href="http://fosdem.org/2010/schedule/speakers/sylvain+beucler">Sylvain Beucler</a> talk about <a href="http://fosdem.org/2010/schedule/events/gnu_savannah">GNU Savannah: 100% free software mass-hosting</a></li>
</ul>
<p style="padding-left: 30px;">a topic I find interesting for many reasons, more on that later</p>
<ul>
<li><a href="http://fosdem.org/2010/schedule/speakers/daniel+stenberg">Daniel Stenberg</a> talk about <a href="http://fosdem.org/2010/schedule/events/emb_rockbox">Rockbox: open source firmware replacement for music players</a></li>
</ul>
<p style="padding-left: 30px;">since I missed Daniel talk about this at FSCONS. As a FSCONS organiser I can&#8217;t just sit</p>
<ul>
<li><a href="http://fosdem.org/2010/schedule/speakers/mirko+lindner">Mirko Lindner</a>, <a href="http://fosdem.org/2010/schedule/speakers/jon+phillips">Jon Phillips</a> talk about <a href="http://fosdem.org/2010/schedule/events/emb_nanonote">Copyleft Hardware and the Ben Nanonote</a></li>
</ul>
<p style="padding-left: 30px;">I missed Mirko&#8217;s presentation at FSCONS as well &#8230;. always on the move at FSCONS <img src='http://www.sandklef.com/hesa/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p style="padding-left: 30px;">
<p>And, of course I hope I will be able to do some business (<a href="http://www.sandklef.com/sgl">Sandklef GNU Labs</a>) down there. During some breaks I will prepare some presentations at &#8220;my&#8221; University next week and also prepare a Free Software presentation for a company later on in February (more on that later).</p>
<p>This year I&#8217;ll be traveling with <a href="http://www.andreasn.se/blog/">Andreas Nilsson</a> and <a href="http://blog.jeremiahfoster.com/">Jeremiah Foster</a>.  Same procedure as last year&#8230;</p>
<p>see you there</p>
<p>&#8230; did you see how I managed to mention FSCONS 6 times (including that very last) <img src='http://www.sandklef.com/hesa/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2010/02/05/fosdem-here-we-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing for FOSDEM</title>
		<link>http://www.sandklef.com/hesa/index.php/2010/01/08/preparing-for-fosdem/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2010/01/08/preparing-for-fosdem/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 12:18:16 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FOSDEM]]></category>
		<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=539</guid>
		<description><![CDATA[It seems as if I&#8217;ll be going to FOSDEM this year too.
Hopefully the schedules will be published soon. Hmm, as co organiser of FSCONS I know it&#8217;s hard to come up with a schedule in the quagmire of planning. But as a guest I want to have it. Will Keith Packard come and enlighten us [...]]]></description>
			<content:encoded><![CDATA[<p>It seems as if I&#8217;ll be going to <a href="http://www.fosdem.org/">FOSDEM</a> this year too.</p>
<p>Hopefully the schedules will be published soon. Hmm, as co organiser of <a href="http://fscons.org">FSCONS</a> I know it&#8217;s hard to come up with a schedule in the quagmire of planning. But as a guest I want to have it. Will Keith Packard come and enlighten us with Xorg news?</p>
<p>Anyhow, the GNU plans for FOSDEM can be found here: <a href="http://www.gnu.org/ghm/2010/fosdem/">http://www.gnu.org/ghm/2010/fosdem</a>/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2010/01/08/preparing-for-fosdem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>List of nominated for Nordic Free Software Award published.</title>
		<link>http://www.sandklef.com/hesa/index.php/2009/11/07/list-of-nominated-for-nordic-free-software-award-published/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2009/11/07/list-of-nominated-for-nordic-free-software-award-published/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 22:32:11 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=514</guid>
		<description><![CDATA[On http://fscons.org/award you can read about the nominated persons/projects for the Nordic Free Software Award.
List of nominated 2009

Qt development team
Simon Josefsson
Daniel Stenberg
Henrik Nordström
Björn Stenberg
Andreas Nilsson
Varnish
Ask Bjørn Hansen
Knut Yrvin
Jari &#8220;Rakshasa&#8221; Sundell

The award will be presented at FSCONS
]]></description>
			<content:encoded><![CDATA[<p>On <a href="http://fscons.org/award">http://fscons.org/award</a> you can read about the nominated persons/projects for the Nordic Free Software Award.</p>
<p><strong>List of nominated 2009</strong></p>
<div>
<li>Qt development team</li>
<li>Simon Josefsson</li>
<li>Daniel Stenberg</li>
<li>Henrik Nordström</li>
<li>Björn Stenberg</li>
<li>Andreas Nilsson</li>
<li>Varnish</li>
<li>Ask Bjørn Hansen</li>
<li>Knut Yrvin</li>
<li>Jari &#8220;Rakshasa&#8221; Sundell</li>
</div>
<p>The award will be presented at <a href="http://www.fscons.org">FSCONS</a></li>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2009/11/07/list-of-nominated-for-nordic-free-software-award-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU Hackers Meeting and FSCONS</title>
		<link>http://www.sandklef.com/hesa/index.php/2009/11/07/gnu-hackers-meeting-and-fscons/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2009/11/07/gnu-hackers-meeting-and-fscons/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 22:24:49 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FOSDEM]]></category>
		<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=508</guid>
		<description><![CDATA[I fell better this year then any of the two previous years. It&#8217;s not only that Jonas Öberg is in charge of FSCONS even though that fact surely adds to the feeling. Sooo many people (if I name one I risk forgetting someone so to all of you, love you!) have done an extreme amount [...]]]></description>
			<content:encoded><![CDATA[<p>I fell better this year then any of the two previous years. It&#8217;s not only that Jonas Öberg is in charge of <a href="http://www.fscons.org">FSCONS</a> even though that fact surely adds to the feeling. Sooo many people (if I name one I risk forgetting someone so to all of you, love you!) have done an extreme amount of hard work previous years. The work have been awesome and we can now see the results, e. g we don&#8217;t need to spend as much energy on promoting the conference as before. We&#8217;ve learned a lot from our (mainly my) mistakes. So thanks to everyone ever involved.</p>
<p>I remember talking to one of the <a href="http://www.fosdem.org">FOSDEM</a> organiser on the Beer event at last year&#8217;s FOSDEM. He seemed to be very much OK, but a bit confused. I guess that&#8217;s where I am heading in a few days. Land of confusion (as if I ever left that land). He gave me some tickets to get me some beers. So all organisers of Free Software conferences if you&#8217;re coming to FSCONS, come over to me (skinny, bearded, tall look confused) and you&#8217;ll get beers in return. &#8230; just starting a conference next year doesn&#8217;t count.</p>
<p>Anyhow, the main reason I feel so much better is that I will attend this years <a href="http://www.gnu.org/ghm/2009/">GNU Hackers Meeting</a>, which is held the days before FSCONS at the same venue: <a href="http://www.ituniversitetet.se">ITUniv</a>. It&#8217;s going to be great to see some &#8220;old&#8221; faces and some new. &#8230;. and finally I can pay back <a href="http://blog.josefsson.org/">Simon Josefsson</a> the lunch I &#8216;forced&#8217; him to pay for me at FOSDEM.</p>
<p>&#8230; all in all, it&#8217;s gonna be great</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2009/11/07/gnu-hackers-meeting-and-fscons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>live site for FSCONS</title>
		<link>http://www.sandklef.com/hesa/index.php/2009/10/29/live-site-for-fscons/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2009/10/29/live-site-for-fscons/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 09:19:09 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=500</guid>
		<description><![CDATA[FSCONS now has a live site:
live.fscons.org
Use this site (or feed) to get the latest info from all speakers at and team behind FSCONS.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fscons.org">FSCONS</a> now has a live site:</p>
<p style="padding-left: 30px;"><a href="http://live.fscons.org">live.fscons.org</a></p>
<p>Use this site (or <a href="http://live.fscons.org/atom.xml">feed</a>) to get the latest info from all speakers at and team behind FSCONS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2009/10/29/live-site-for-fscons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 reasons to come to FSCONS</title>
		<link>http://www.sandklef.com/hesa/index.php/2009/10/08/top-10-reasons-to-come-to-fscons/</link>
		<comments>http://www.sandklef.com/hesa/index.php/2009/10/08/top-10-reasons-to-come-to-fscons/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 10:58:51 +0000</pubDate>
		<dc:creator>hesa</dc:creator>
				<category><![CDATA[FSCONS]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.sandklef.com/hesa/?p=491</guid>
		<description><![CDATA[Top 10 reasons to come to FSCONS

10. You&#8217;ll get a badge



Badges from 2007 and 2008.
]]></description>
			<content:encoded><![CDATA[<h2>Top 10 reasons to come to FSCONS</h2>
<h3></h3>
<h3>10. You&#8217;ll get a badge</h3>
<p><a href="http://www.flickr.com/photos/wrote/2971523612/"><br />
<img src="http://farm4.static.flickr.com/3199/2971523612_4c65306b5a.jpg" alt="" /><br />
</a><br />
Badges from 2007 and 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sandklef.com/hesa/index.php/2009/10/08/top-10-reasons-to-come-to-fscons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
