<?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>popcorn.cx &#187; osdc2006</title>
	<atom:link href="http://popcorn.cx/blog/tag/osdc2006/feed/" rel="self" type="application/rss+xml" />
	<link>http://popcorn.cx</link>
	<description>The personal blog of Stephen Edmonds where he rambles on about computers, photography, cycling and other random things</description>
	<lastBuildDate>Wed, 04 Jan 2012 12:17:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A correction to my paper from OSDC2006</title>
		<link>http://popcorn.cx/blog/2007/11/a-correction-to-my-paper-from-osdc2006/</link>
		<comments>http://popcorn.cx/blog/2007/11/a-correction-to-my-paper-from-osdc2006/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 08:01:00 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2007/11/a-correction-to-my-paper-from-osdc2006/</guid>
		<description><![CDATA[In my paper at last year&#8217;s Open Source Developers&#8217; Conference I said that one of the negatives of Class::DBI was that it connects to the database at module load.  If this fails an exception is thrown which can cause issues when the Class::DBI code is just one part, for example in a web server.

It [...]]]></description>
			<content:encoded><![CDATA[<p>In my <a href="http://popcorn.cx/papers/osdc2006/" title="Square pegs and round holes: A reflection on Class::DBI (OSDC 2006) - popcorn.cx">paper</a> at last year&#8217;s <a href="http://www.osdc.com.au/" title="Open Source Developers' Conference">Open Source Developers&#8217; Conference</a> I said that one of the negatives of <a href="http://search.cpan.org/perldoc?Class::DBI" title="Class::DBI - search.cpan.org">Class::DBI</a> was that it connects to the database at module load.  If this fails an exception is thrown which can cause issues when the Class::DBI code is just one part, for example in a web server.</p>

<p>It looks like we were causing this behaviour, instead of it being how Class::DBI operates.</p>

<p>By default DATE fields in Oracle are formatted for year, month, and day even though the field includes hour, minute and second.  In order to get the complete date and time our base class changes the default formatting with a line similar to:</p>

<pre><code>__PACKAGE__-&gt;db_Main-&gt;do(
  "ALTER SESSION SET NLS_DATE_FORMAT = 'DD:MM:YYYY HH24:MI:SS'"
);
</code></pre>

<p>It is this line that triggers a connection on module load.  If it is removed then the classes can be loaded even if the database is dead.  Connection is now only attempted on first action which is a much more approriate time.</p>

<p>I&#8217;m not sure what the documentation said about it when we put the line in, but <a href="http://wiki.class-dbi.com/wiki/Setting_Session_Globals" title="Setting Session Globals - ClassDBI">Setting Session Globals</a> and <a href="http://wiki.class-dbi.com/wiki/Working_With_Oracle_Date_Fields" title="Working With Oracle Date Fields - ClassDBI">Working With Oracle Date Fields</a> on the <a href="http://wiki.class-dbi.com/wiki/Main_Page" title="Main Page - ClassDBI">Class::DBI wiki</a> warn about using it in a mod_perl environment and that it will initiate a connection when the modules is used.</p>

<p>Over the next few days the commercial product that this database is used with is being upgraded.  During this time the database will be unavailable for use so we revisited the issue of how to get the classes to load cleanly.  These investigations found the root cause and we now have a solution; alter the base class so that the date formatting is altered whenever a connection is initialized (using information from how to <a href="http://wiki.class-dbi.com/wiki/Using_multiple_databases" title="Using multiple databases - ClassDBI">use multiple databases</a>), not when the class is loaded.</p>

<p>Now, although we have solved this issue, having to solve it wasn&#8217;t trivial as we were required to dig through some of the Class::DBI and <a href="http://search.cpan.org/perldoc?Ima::DBI" title="Ima::DBI - search.cpan.org">Ima::DBI</a> internals to mimic its behaviour.</p>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2007/11/a-correction-to-my-paper-from-osdc2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSDC2006 &#8211; Day three</title>
		<link>http://popcorn.cx/blog/2006/12/osdc2006-day-three/</link>
		<comments>http://popcorn.cx/blog/2006/12/osdc2006-day-three/#comments</comments>
		<pubDate>Fri, 08 Dec 2006 08:30:50 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/12/osdc2006-day-three/</guid>
		<description><![CDATA[So what happened on the third and final day of OSDC 2006?


As I had seen Scott talk about Zaltana before (at OSDC in the past, at OSDClub, and at perl mongers) I decided that I would take my time getting in and skip his keynote.  I ended up taking more time than I planned [...]]]></description>
			<content:encoded><![CDATA[<p>So what happened on the third and final day of <a href="http://www.osdc.com.au/" title="Open Source Developers' Conference">OSDC 2006</a>?</p>

<ul>
<li>As I had seen <a href="http://linux.dd.com.au/" title="Scott Penrose's Homepage">Scott</a> talk about <a href="http://zaltana.org/">Zaltana</a> before (at OSDC in the past, at <a href="http://www.osdc.com.au/osdclub/">OSDClub</a>, and at <a href="http://melbourne.pm.org" title="Melbourne Perl Mongers">perl mongers</a>) I decided that I would take my time getting in and skip his keynote.  I ended up taking more time than I planned and missed the next talk slot.</li>
<li><a href="http://ali.as/" title="Adam Kennedy">Adam</a> took up two half hour slots with his presentation of <a href="http://osdc2006.cgpublisher.com/proposals/29/">The Portable Image Testing Architecture: Rediculously Large Scale Testing</a>.  In a nutshell this is a system of virtual machines running a variety of operating systems with a variety of perl versions.  Perl modules are then fed to these machines in order to obtain test results.  This is what <a href="http://testers.cpan.org/">CPAN testers</a> will be replaced with.</li>
<li><a href="http://users.monash.edu.au/~srippon/" title="Scott Rippon Online">Another Scott</a> (actually one that I see every day at work) presented on <a href="http://osdc2006.cgpublisher.com/proposals/34/">Usability, user-centered design (UCD) and FOSS</a>.  Although I had been exposed to the material before it was still an excellent presentation which was represented by Scott receiving a prize for the best talk later in the day.</li>
<li>As usual the lightning talk session was the highlight of the day with many excellent talks and some good talks.   <a href="http://jose-castro.org/" title="JosÃ© Alves de Castro">Cog</a>  has even made available the <a href="http://use.perl.org/~cog/journal/31847" title="Journal of cog - Lightning Talk: What I Learned at OSDC">slides from his lightning talk</a> which summarise the entire conference</li>
</ul>

<p>Despite excellent talks and more people than last year I could not shake the impression that the conference was not as good as the previous years.  This was partly confirmed by the announcement that next year it will NOT be held in Melbourne which would expose a new audience.  The question is whether I would travel to attend&#8230;</p>

<p>See also:</p>

<ul>
<li><a href="http://use.perl.org/~cog/journal/31846">Journal of cog &#8211; OSDC &#8211; day 3</a></li>
<li><a href="http://flickr.com/photos/tags/osdcmelb2006/">Flickr: Photos tagged with osdcmelb2006</a></li>
<li><a href="http://pjf.id.au/blog/?position=484&#038;count=1">PJF&#8217;s Pages &#8211; Journal &#8211; What&#8217;s new in Perl 5.10; OSDC, day 3 + aftermath</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/12/osdc2006-day-three/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSDC2006 &#8211; Day two</title>
		<link>http://popcorn.cx/blog/2006/12/osdc2006-day-two/</link>
		<comments>http://popcorn.cx/blog/2006/12/osdc2006-day-two/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 11:06:55 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/12/osdc2006-day-two/</guid>
		<description><![CDATA[So what happened on the second day of OSDC 2006? Not much.  I only attended a couple of talks (nothing much to say about them as I had essentially seen them before), missed other talks to work on my slides and then presented my talk.

Tomorrow on the other hand is looking great.

See also:


PJF&#8217;s Pages [...]]]></description>
			<content:encoded><![CDATA[<p>So what happened on the second day of <a href="http://www.osdc.com.au/" title="Open Source Developers' Conference">OSDC 2006</a>? Not much.  I only attended a couple of talks (nothing much to say about them as I had essentially seen them before), missed other talks to work on my slides and then presented my talk.</p>

<p>Tomorrow on the other hand is looking great.</p>

<p>See also:</p>

<ul>
<li><a href="http://pjf.id.au/blog/?position=483&#038;count=1">PJF&#8217;s Pages &#8211; Journal &#8211; OSDC day 2</a></li>
<li><a href="http://use.perl.org/~cog/journal/31833">Journal of cog &#8211; OSDC &#8211; day 2</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/12/osdc2006-day-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The hard part is over</title>
		<link>http://popcorn.cx/blog/2006/12/the-hard-part-is-over/</link>
		<comments>http://popcorn.cx/blog/2006/12/the-hard-part-is-over/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 08:43:16 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/12/the-hard-part-is-over/</guid>
		<description><![CDATA[At 2PM today I presented my paper.  If people are really keen they can run through my slides on their own time.

For now I am relaxing and will post a recap later tonight.
]]></description>
			<content:encoded><![CDATA[<p>At 2PM today I presented my <a href="http://popcorn.cx/papers/osdc2006/" title="Square pegs and round holes: A reflection on Class::DBI (OSDC 2006)">paper</a>.  If people are really keen they can run through <a href="http://popcorn.cx/papers/osdc2006/square-pegs-and-round-holes.ppt">my slides</a> on their own time.</p>

<p>For now I am relaxing and will post a recap later tonight.</p>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/12/the-hard-part-is-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSDC2006 &#8211; Day one</title>
		<link>http://popcorn.cx/blog/2006/12/osdc2006-day-one/</link>
		<comments>http://popcorn.cx/blog/2006/12/osdc2006-day-one/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 15:35:28 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/12/osdc2006-day-one/</guid>
		<description><![CDATA[(I am typing this as I wait for the next train back to Glen Waverley from Flinders Street.  Unfortunately I missed the previous train by seconds as I decided to continue on with the group I was travelling with instead of changing at Richmond.  Over half an hour of waiting&#8230;)

Anyway &#8230; today was [...]]]></description>
			<content:encoded><![CDATA[<p>(I am typing this as I wait for the next train back to Glen Waverley from Flinders Street.  Unfortunately I missed the previous train by seconds as I decided to continue on with the group I was travelling with instead of changing at Richmond.  Over half an hour of waiting&#8230;)</p>

<p>Anyway &#8230; today was the first day of <a href="http://www.osdc.com.au/" title="Open Source Developers' Conference">OSDC 2006</a> with the following highlights:</p>

<ul>
<li>The opening keynote, <a href="http://www.osdc.com.au/papers/keynotes.html">Free software &#8211; A look back, a look ahead</a>, by <a href="http://www.stonehenge.com/merlyn/">Randall Schwartz</a> was a great start and included a run down of the various open source licences and examples of how Randall and others have been able to make a living from them.  Despite them being &#8216;free&#8217;.</li>
<li><a href="http://jose-castro.org/" title="JosÃ© Alves de Castro">cog&#8217;s</a> first talk of the day, <a href="http://osdc2006.cgpublisher.com/proposals/65/" title="Perl White Magic: Special Variables and Command Line Switches">Perl White Magic</a>, ran through some of the many command line switches and special variables that can be used to reduce the size of Perl scripts, in particular when writing one liners on the command line.</li>
<li>In contrast to his first talk, <a href="http://jose-castro.org/" title="JosÃ© Alves de Castro">cog&#8217;s</a> second talk on <a href="http://osdc2006.cgpublisher.com/proposals/64/" title="Obfuscation, Golfing and Secret Operators in Perl">obfuscation and golfing</a> was the opposite of his earlier talk &#8211; how command line switches, special variables and other syntactic magic of Perl can be used for evil.</li>
<li><a href="http://pjf.id.au/">Paul Fenwick</a> gave us a rundown of the  <a href="http://osdc2006.cgpublisher.com/proposals/55/" title="An overview of new language constructs in Perl 5.10">new features available in Perl <strike>5.10</strike> 5.9.4</a>.  It is interesting to see Perl 6 features being incorporated.  Jokes were made that by the time that Perl 6 comes out the features will already be available and in use.</li>
<li><a href="http://ali.as/">Adam Kennedy</a> decided to buck the trend and give a talk on <a href="http://osdc2006.cgpublisher.com/proposals/30/" title="Nothing can possibly go wrong">how things do not always go to plan</a>.  After reflecting that conference talks are (almost) always about new or succesful projects there is not exposure to the failures he went on to decribe a number of common pitfalls that are experienced.</li>
<li>The final talk from <a href="http://jose-castro.org/" title="JosÃ© Alves de Castro">cog</a> covered <a href="http://osdc2006.cgpublisher.com/proposals/66/" title="Wile Coyote's Toolbox: The Acme Namespace - 30 minutes, 90 modules">ninety modules from the Acme namespace</a> in twenty minutes (it should have taken thirty so he will look for some more to describe).  What was scary about this was that some of them (for example one to allow C style comments) may now be useful to members of the audience.  It was interesting to note that many of the mentioned modules were from Australian authors such as  <a href="http://damian.conway.org/" title="Thoughtstream: Damian Conway">Damian</a> , <a href="http://pjf.id.au/">Paul</a> and <a href="http://ali.as/">Adam</a>.</li>
<li>Above all of this was <a href="http://damian.conway.org/" title="Thoughtstream: Damian Conway">Damian&#8217;s</a> rendition of <a href="http://www.flickr.com/photos/zippy/sets/72157594214387562/" title="The Da Vinci Codebase - a photoset of Flickr">The Da Vinci Codebase</a>.  This is a magnificent parody of <a href="http://en.wikipedia.org/wiki/The_Da_Vinci_Code" title="Wikipedia: The Da Vinci Code">The Da Vinci Code</a> with the main protagonist, Dr Damian Conway and expert on symbology in computer languagess, supported by a variety of characters in Paris, Texas unravelling the clues that lead to the villan, the DMCA.</li>
</ul>

<p>Although not part of the formal program, and facilitated by alcohol, were a variety of interesting discussions.  On in particular led to the proposal of Acme::Playmate::Object.  An extension of the <a href="http://search.cpan.org/perldoc?Acme::Playmate" title="Acme::Playmate - search.cpan.org">Acme::Playmate</a> module which allows you to obtain the vital statistics of Playboy playmates with <a href="http://search.cpan.org/perldoc?Data::Vitals" title="Data::Vitals - search.cpan.org">Data::Vitals</a> which is a class build for a modelling website that represents the vital statistics of fashion models and allows easy conversion between metric and imperial.  The expectation is that <a href="http://ali.as/">Adam</a> will have <a href="http://search.cpan.org/perldoc?Acme::Playmate::Object" title="Acme::Playmate::Object - search.cpan.org">Acme::Playmate::Object</a> (the objectification of playmates) ready to present as a lightning talk tomorrow.  </p>

<p>See also:</p>

<ul>
<li><a href="http://pjf.id.au/blog/?position=482&#038;count=1">PJF&#8217;s Pages &#8211; Journal &#8211; OSDC-2006, Day 1</a></li>
<li><a href="http://use.perl.org/~cog/journal/31828">Journal of cog &#8211; OSDC: day 1</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/12/osdc2006-day-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And so it begins</title>
		<link>http://popcorn.cx/blog/2006/12/and-so-it-begins/</link>
		<comments>http://popcorn.cx/blog/2006/12/and-so-it-begins/#comments</comments>
		<pubDate>Tue, 05 Dec 2006 11:14:12 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>
		<category><![CDATA[public transport]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/12/and-so-it-begins/</guid>
		<description><![CDATA[For the next three days I will be attending this year&#8217;s Open Source Developersâ€™ Conference.  Similar to two years ago I have been finishing off the slides for the presentation of  my paper which is in a scant forty hours away.

I am also undecided on how I am going to get there.  [...]]]></description>
			<content:encoded><![CDATA[<p>For the next three days I will be attending this year&#8217;s <a href="http://www.osdc.com.au/">Open Source Developersâ€™ Conference</a>.  Similar to <a href="http://popcorn.cx/blog/2004/11/osdc-is-tomorrow-argh/" title="OSDC is tomorrow&#8230; argh! - popcorn.cx">two years ago</a> I have been finishing off the slides for the presentation of  <a href="http://popcorn.cx/papers/osdc2006/" title="Square pegs and round holes: A reflection on Class::DBI (OSDC 2006)">my paper</a> which is in a scant forty hours away.</p>

<p>I am also undecided on how I am going to get there.  Last year I caught the train from Glen Waverley to Richmond and then another back to Caulfield which took around fifty minutes.  I have been playing with the <a href="http://jp.metlinkmelbourne.com.au/">Metlink Journey Planner</a> which tells me that it would be five minutes quicker to get off the train at Tooronga to catch a bus to Caulfield if I catch a certain train.</p>

<p>In a sense this highlights the issue of public transport in Melbourne being focused on travelling to the city.  East Malvern station on the Glen Waverley line is actually pretty close to Caulfield station on the Packenham/Cranbourne/Frankston lines and has plenty of options including trains, buses and trams that can get you to the city.  However the options to travel across to Caulfield are limited with no direct routes, they all go a fair distance out of the way&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/12/and-so-it-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally done</title>
		<link>http://popcorn.cx/blog/2006/11/now-it-is-done/</link>
		<comments>http://popcorn.cx/blog/2006/11/now-it-is-done/#comments</comments>
		<pubDate>Wed, 15 Nov 2006 14:15:42 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/11/now-it-is-done/</guid>
		<description><![CDATA[Over the past two weeks I have spent almost every available minute working on the final version of my paper for this years Open Source Developers&#8217; Conference.

Actually that statement is a bit misleading.  Every available minute for the past two weeks except for a half dozen hours has been spent procrastinating instead of working [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past two weeks I have spent almost every available minute working on the <a href="http://popcorn.cx/papers/osdc2006/" title="Square pegs and round holes: A reflection on Class::DBI (OSDC 2006)">final version</a> of my paper for this years <a href="http://www.osdc.com.au/">Open Source Developers&#8217; Conference</a>.</p>

<p>Actually that statement is a bit misleading.  Every available minute for the past two weeks except for a half dozen hours has been spent procrastinating instead of working on my paper.  It is amazing what I would find myself doing.</p>

<p>Now I have three weeks until the conference.  Three weeks of procrastination regarding working on my presentation&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/11/now-it-is-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paper is done</title>
		<link>http://popcorn.cx/blog/2006/09/paper-is-done/</link>
		<comments>http://popcorn.cx/blog/2006/09/paper-is-done/#comments</comments>
		<pubDate>Wed, 20 Sep 2006 13:40:55 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/09/paper-is-done/</guid>
		<description><![CDATA[A month and a half ago my paper proposal for this years Open Source Developers&#8217; Conference was accepted.  Last Friday I decided that I had procrastinated enough so I started writing it.  Since then I have spent on average three hours a day working on it and tonight I submitted it with half [...]]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://popcorn.cx/blog/2006/08/acceptance/" title="Acceptance - popcorn.cx">month and a half ago</a> my paper proposal for this years <a href="http://www.osdc.com.au/">Open Source Developers&#8217; Conference</a> was accepted.  Last Friday I decided that I had procrastinated enough so I started writing it.  Since then I have spent on average three hours a day working on it and tonight I submitted it with half an hour to go before the deadline.</p>

<p>I have <a href="http://popcorn.cx/papers/osdc2006/" title="Square pegs and round holes: A reflection on Class::DBI (OSDC 2006)">made it available</a> to anyone who cares along with my paper from <a href="http://popcorn.cx/papers/osdc2004/" title="Developing the Monash Research Directory (OSDC 2004)">two years ago</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/09/paper-is-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acceptance</title>
		<link>http://popcorn.cx/blog/2006/08/acceptance/</link>
		<comments>http://popcorn.cx/blog/2006/08/acceptance/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 03:19:43 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[osdc2006]]></category>

		<guid isPermaLink="false">http://popcorn.cx/blog/2006/08/acceptance/</guid>
		<description><![CDATA[Earlier in the week my paper proposal for this years Open Source Developers&#8217; Conference was accepted.  I now have just over a month and a half to write it&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Earlier in the week my <a href="http://osdc2006.cgpublisher.com/proposals/47/manage_workspace">paper proposal</a> for this years <a href="http://www.osdc.com.au/">Open Source Developers&#8217; Conference</a> was <a href="http://osdc2006.cgpublisher.com/session_descriptions.html">accepted</a>.  I now have just over a month and a half to write it&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://popcorn.cx/blog/2006/08/acceptance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

