<?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>HCoder.org &#187; perl</title>
	<atom:link href="http://hcoder.org/tag/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://hcoder.org</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 15 Apr 2012 21:43:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Arepa &#8211; Apt REPository Assistant</title>
		<link>http://hcoder.org/2010/03/22/arepa-apt-repository-assistant/</link>
		<comments>http://hcoder.org/2010/03/22/arepa-apt-repository-assistant/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:04:14 +0000</pubDate>
		<dc:creator>emanchado</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[arepa]]></category>
		<category><![CDATA[auto builders]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://hcoder.org/?p=310</guid>
		<description><![CDATA[For some time now I had been frustrated by the tools to manage APT repositories. The only ones I knew of either covered too little (only adding/removing packages from a repository and such, like reprepro) or were way too complex (like the official tools used by Debian itself). Maybe/probably I&#8217;m a moron and I just [...]]]></description>
			<content:encoded><![CDATA[<p>For some time now I had been frustrated by the tools to manage APT repositories. The only ones I knew of either covered too little (only adding/removing packages from a repository and such, like reprepro) or were way too complex (like the official tools used by <a href="http://debian.org/">Debian</a> itself). Maybe/probably I&#8217;m a moron and I just didn&#8217;t know of some tool that would solve all my problems, but now it&#8217;s kind of late ;-) And before you say it, no, Launchpad is <em>not</em> what I was looking for as far as I understand it.</p>
<p>So I started to work on my own suite of tools for it, and recently I decided to release what I&#8217;ve done so far. It&#8217;s by no means complete, but it&#8217;s very useful for me and I thought it would be useful for others. And, with a bit of luck, someone will help me improving it.</p>
<p>So what is it? <a href="http://search.cpan.org/~opera/Arepa-0.74/lib/Arepa.pm">Arepa</a> (it stands for &#8220;Apt REPository Assistant&#8221;, but obviously I called it like that after the <a href="http://en.wikipedia.org/wiki/Arepa">yummy Venezuelan sandwiches</a>) is a suite of tools that allow you to manage an APT repository. It contains two command-line tools and a web interface, and its main features are:</p>
<ul>
<li>Manages the whole process after a package arrives to the upload queue: from approving it to re-building from source to signing the final repository.</li>
<li>It allows you to &#8220;approve&#8221; source packages uploaded to some &#8220;incoming&#8221; directory, via a web interface.</li>
<li>It only accepts source packages, and those are re-compiled automatically in the configured autobuilders. It can even &#8220;cross-compile&#8221; for other distributions (treated like <a href="http://wiki.debian.org/binNMU">binNMUs</a>).</li>
<li>Far from reinventing (many) wheels, it integrates tools like <a href="http://mirrorer.alioth.debian.org/">reprepro</a>, <a href="http://www.gnupg.org/">GPG</a>, <a href="http://samba.anu.edu.au/rsync/">Rsync</a>, <a href="http://code.erisian.com.au/Wiki/debootstrap">debootstrap</a> and <a href="http://alioth.debian.org/projects/buildd-tools/">sbuild</a> so you don&#8217;t have to learn all about them.</li>
</ul>
<p>The approval via some web interface was actually sort of the driving force for the project. One of my pet peeves was that there wasn&#8217;t an easy way to have an upload queue and easily approve/reject packages with the tools I knew. From what I had seen, the tools were either for &#8220;single person&#8221; repositories (no approval needed because the package author is the owner of the repository) or full-blown distribution-size tools like dak and such. My use-case, however, is the following:</p>
<ul>
<li>You have an installation of Arepa for an entire organisation (say, a whole company or a big department).</li>
<li>People inside that organisation upload packages to the upload queue (possibly using dput; the point is, the end up in some directory in the machine hosting Arepa).</li>
<li>Someone (or a small group of people) are the &#8220;masters&#8221; of the repository, and they&#8217;ll have access to the web interface. From time to time they check the web UI, and they&#8217;ll approve (or not) the incoming source packages.</li>
<li>If they&#8217;re approved, the source will be added to the repository and it&#8217;ll be scheduled for compilation in the appropriate combination(s) of architectures and distributions.</li>
<li>A cronjob compiles pending packages every hour; when the compilation is successful, they&#8217;re added to the repository.</li>
<li>At this point, the repository hosted by the Arepa installation has the new packages, but you probably want to serve the repository from a different machine. If that&#8217;s the case, Arepa can sync the repository to your production machine with a simple command (&#8220;arepa sync&#8221;).</li>
</ul>
<p>I imagine that a lot of people have the same need, so I uploaded all the code to CPAN (you can see it with the rest of the <a href="http://search.cpan.org/~opera/">contributions by Opera Software</a>). Sadly there&#8217;s a <a href="https://rt.cpan.org/Public/Bug/Display.html?id=55706">silly bug</a> in the released code (I wanted to release ASAP to be able to focus on other things, and I ended up rushing the release), but it has both a workaround and a patch. So, please give it a try if you&#8217;re interested and tell me if you would like to contribute. I haven&#8217;t released the code in GitHub or similar yet, but I&#8217;ll probably do if there&#8217;s interest.</p>
 <p><a href="http://hcoder.org/?flattrss_redirect&amp;id=310&amp;md5=2a8059512990e49a9fbd069b6316c1ea" title="Flattr" target="_blank"><img src="http://hcoder.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://hcoder.org/2010/03/22/arepa-apt-repository-assistant/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=30124&amp;popout=1&amp;url=http%3A%2F%2Fhcoder.org%2F2010%2F03%2F22%2Farepa-apt-repository-assistant%2F&amp;language=en_GB&amp;category=text&amp;title=Arepa+%26%238211%3B+Apt+REPository+Assistant&amp;description=For+some+time+now+I+had+been+frustrated+by+the+tools+to+manage+APT+repositories.+The+only+ones+I+knew+of+either+covered+too+little+%28only+adding%2Fremoving+packages+from+a...&amp;tags=arepa%2Cauto+builders%2Ccpan%2Cpackages%2Cperl%2Cprojects%2Cblog" type="text/html" />
	</item>
		<item>
		<title>My first contributions to CPAN</title>
		<link>http://hcoder.org/2009/06/28/my-first-contributions-to-cpan/</link>
		<comments>http://hcoder.org/2009/06/28/my-first-contributions-to-cpan/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 20:46:00 +0000</pubDate>
		<dc:creator>emanchado</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[migraine]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[parsing]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have been using Perl for many years, but I had never uploaded anything to CPAN. That&#8217;s unfortunate, because I&#8217;ve probably written several programs or modules that could have been useful for other people. The point is, now I have. Not only that, but it was code I wrote at work, so if I&#8217;m not [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Perl for many years, but I had never uploaded anything to <span class="caps">CPAN</span>. That&#8217;s unfortunate, because I&#8217;ve probably written several programs or modules that could have been useful for other people. The point is, now I have. Not only that, but it was code I wrote at work, so if I&#8217;m not mistaken these are my first contributions to free software from Opera. Yay me!</p>
<p>The two modules I&#8217;ve released so far are:</p>
<ul>
<li><a href="http://search.cpan.org/~opera/Parse-Debian-PackageDesc-0.1/lib/Parse/Debian/PackageDesc.pm">Parse::Debian::PackageDesc</a>, a module for parsing both <code>.dsc</code> and <code>.changes</code> files from Debian. This is actually a support module for something bigger that I hope I&#8217;ll release soon-ish.</li>
<li><a href="http://search.cpan.org/~opera/Migraine-0.53/script/migraine.pl">Migraine</a>, a still somewhat primitive database change manager inspired on the <a href="http://www.oracle.com/technology/pub/articles/kern-rails-migrations.html">Ruby on Rails migration system</a>.</li>
</ul>
<p>As I feel that Migraine could be useful to a lot of people, but it&#8217;s easy to misunderstand what it really does (unless you already know Rails migrations of course), I&#8217;ll elaborate a bit. Imagine that you are developing some application that uses a database. You design the schema, write some <span class="caps">SQL</span> file with it, and everybody creates their own databases from that file. Now, as your application evolves, your schema will evolve too. What do you do now to update all databases (every developer installation, testing installations, and don&#8217;t forget the production database)? One painful way to do it could be documenting which <span class="caps">SQL</span> statements you have to execute in order to have the latest version of the schema, and expect people to apply copying-and-pasting from the documentation. However, it&#8217;s messy, confusing, and it needs someone to know both which databases to update and when.</p>
<p>Migraine offers a simpler, more reliable way to keep all your databases up to date. Basically, you write all your changes (&#8220;migrations&#8221;) in some files in a directory, following a simple version number naming convention (e.g. <code>001-add_users_table.sql</code>, <code>002-change_passwd_field_type.sql</code>), and migraine will allow you to keep your databases up to date. In the simplest, most common case, you call migraine with a configuration file specifying which database to upgrade, and it will figure out which migrations are pending to apply, if any, and apply them. The system currently only supports raw <span class="caps">SQL</span>, but it should be easy to extend with other types.</p>
<p>In principle, you shouldn&#8217;t need to write any Perl code to use migraine (it has a Perl module that you can use to integrate with your Perl programs if you like, but also a command-line tool), so you can use it even in non-Perl projects. Of course, some modern ORMs have their own database migration system, but very often you have to maintain legacy code that doesn&#8217;t use any fancy <span class="caps">ORM</span>, or you don&#8217;t like the migration system provided by the <span class="caps">ORM</span>, or you prefer keeping a single system for schema and data migrations&#8230; I think in those cases Migraine can help a lot reducing chaos and keeping things under control. Try it out and tell me what you think <code>:-)</code></p>
<p>In a couple of days I&#8217;ll blog again about other contributions to free software I&#8217;ve made lately, but this time in the form of Opera widgets&#8230;</p>
 <p><a href="http://hcoder.org/?flattrss_redirect&amp;id=70&amp;md5=cd018dfe396c05a453fc32d752754b46" title="Flattr" target="_blank"><img src="http://hcoder.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://hcoder.org/2009/06/28/my-first-contributions-to-cpan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=30124&amp;popout=1&amp;url=http%3A%2F%2Fhcoder.org%2F2009%2F06%2F28%2Fmy-first-contributions-to-cpan%2F&amp;language=en_GB&amp;category=text&amp;title=My+first+contributions+to+CPAN&amp;description=I+have+been+using+Perl+for+many+years%2C+but+I+had+never+uploaded+anything+to+CPAN.+That%26%238217%3Bs+unfortunate%2C+because+I%26%238217%3Bve+probably+written+several+programs+or+modules+that+could+have+been...&amp;tags=bsd%2Ccpan%2Cdatabases%2CDebian%2Cfree%2Cmigraine%2Cmigration%2Cparsing%2Cperl%2Csoftware%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Predictably irrational</title>
		<link>http://hcoder.org/2009/06/01/predictably-irrational/</link>
		<comments>http://hcoder.org/2009/06/01/predictably-irrational/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 21:28:00 +0000</pubDate>
		<dc:creator>emanchado</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[kiva]]></category>
		<category><![CDATA[loanmeter]]></category>
		<category><![CDATA[migraine]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I haven&#8217;t written in some time, I know. I haven&#8217;t done much worth blogging about. Just a new release of the Kiva World Loanmeter widget, and also a couple of things at work that I&#8217;ll be releasing soon (including a small tool for managing database changes and some Perl module to parse Debian .changes files). [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t written in some time, I know. I haven&#8217;t done much worth blogging about. Just a new release of the <a href="http://widgets.opera.com/widget/12102/">Kiva World Loanmeter widget</a>, and also a couple of things at work that I&#8217;ll be releasing soon (including a small tool for managing database changes and some Perl module to parse Debian <code>.changes</code> files).</p>
<p>However, recently I watched a really funny and interesting talk at <a href="http://www.ted.com"><span class="caps">TED</span></a>, <a href="http://www.ted.com/index.php/talks/dan_ariely_asks_are_we_in_control_of_our_own_decisions.html">Are we in control of our own decisions?</a>, by <a href="http://www.ted.com/speakers/dan_ariely.html">Dan Ariely</a>. In the talk he mentions his book, <a href="http://www.predictablyirrational.com/">Predictably Irrational</a>, which funnily enough a friend had already mentioned to me.</p>
<p>Well, I just finished the book and I have to say it was very interesting and eye-opening. It&#8217;s interesting how it shows our minds are biased for certain kinds of decisions or behaviour, even though they are often not the best for us. Some of the experiments are truly brilliant and they show totally unexpected (at least before starting reading the book ;-P) outcomes. One of the experiments that got me thinking was this:</p>
<blockquote>
<p>Research on stereotypes shows [&#8230;] that stereotyped people themselves react differently when they are aware of the label that they are forced to wear [&#8230;] One stereotype of Asian-Americans, for instance, is that they are especially gifted in mathematics and science. A common stereotype of females is that they are weak in mathematics [&#8230;] In a remarkable experiment, [&#8230;] asked Asian-American women to take an objective math exam. But first they divided the women into two groups. The women in one group were asked questions related to their gender [&#8230;] The women in the second group were asked questions related to their race [&#8230;] The performance of the two groups differed in a way that matched the stereotypes of both women and Asian-Americans. Those who had been reminded that they were women performed worse than those who had been reminded that they were Asian-American.</p>
</blockquote>
<p>I can&#8217;t stop thinking about the implications this has to working conditions and productivity in different countries, and also to project management.</p>
 <p><a href="http://hcoder.org/?flattrss_redirect&amp;id=68&amp;md5=38385e5cf8c1aaa03c373b8b8d965f45" title="Flattr" target="_blank"><img src="http://hcoder.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://hcoder.org/2009/06/01/predictably-irrational/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=30124&amp;popout=1&amp;url=http%3A%2F%2Fhcoder.org%2F2009%2F06%2F01%2Fpredictably-irrational%2F&amp;language=en_GB&amp;category=text&amp;title=Predictably+irrational&amp;description=I+haven%26%238217%3Bt+written+in+some+time%2C+I+know.+I+haven%26%238217%3Bt+done+much+worth+blogging+about.+Just+a+new+release+of+the+Kiva+World+Loanmeter+widget%2C+and+also+a+couple+of...&amp;tags=books%2Ccpan%2Ckiva%2Cloanmeter%2Cmigraine%2Cperl%2Cwidgets%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Free software rocks!</title>
		<link>http://hcoder.org/2009/05/10/free-software-rocks-2/</link>
		<comments>http://hcoder.org/2009/05/10/free-software-rocks-2/#comments</comments>
		<pubDate>Sun, 10 May 2009 17:18:00 +0000</pubDate>
		<dc:creator>emanchado</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;ve been working on something lately that I hope I will publish sometime next month: it&#8217;s a set of tools to manage an APT package repository. The idea is that, given an upload queue (you can set it up as an anonymous FTP, or some directory accessible via SSH/SCP, or whatever floats your boat in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on something lately that I hope I will publish sometime next month: it&#8217;s a set of tools to manage an <span class="caps">APT</span> package repository. The idea is that, given an upload queue (you can set it up as an anonymous <span class="caps">FTP</span>, or some directory accessible via <span class="caps">SSH</span>/<span class="caps">SCP</span>, or whatever floats your boat in your setup and team), you&#8217;ll have a web interface to approve those packages, a set of integrated autobuilders building the approved packages in whatever combination of architectures and distributions you want, and all that integrated with <a href="http://mirrorer.alioth.debian.org/">reprepro</a> to keep your repository updated. I&#8217;ll write more about it when I have released something.</p>
<p>The point now is that, while working on it, I needed some module to parse command-line options and &#8220;subcommands&#8221; (like <code>git commit</code>, <code>svn update</code>, etc.). As it&#8217;s written in Perl, I had a look at <span class="caps">CPAN</span> to see if I could see anything. The most promising module was <a href="http://search.cpan.org/~garu/App-Rad-1.04/lib/App/Rad.pm">App::Rad</a>, but it lacked a couple of things that were very important for me: my idea was &#8220;declaring&#8221; all the possible commands and options and have the module do all the work for me (generating the help pages and the default <code>--help</code> implementation, generate the <code>program help subcommand</code> and so on). <code>App::Rad</code> didn&#8217;t have that, and it didn&#8217;t seem to me like that was the direction they wanted to go to with the module. But I figured I&#8217;d drop the author an e-mail anyway and see if he liked the idea so I could start adding support for all that&#8230;</p>
<p>And boy was that a good idea. He replied a couple of days later, and said that they had liked the idea so much that they had implemented it already (that&#8217;s why he took a couple of days to reply), and he sent me an example of the new syntax they had introduced and asked if that was what I was thinking. And not only that, but they added me to the list of contributors just for giving the idea! That completely made my day, free software rocks!</p>
 <p><a href="http://hcoder.org/?flattrss_redirect&amp;id=67&amp;md5=09105bb993941bce2a37855f1e18b32b" title="Flattr" target="_blank"><img src="http://hcoder.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://hcoder.org/2009/05/10/free-software-rocks-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=30124&amp;popout=1&amp;url=http%3A%2F%2Fhcoder.org%2F2009%2F05%2F10%2Ffree-software-rocks-2%2F&amp;language=en_GB&amp;category=text&amp;title=Free+software+rocks%21&amp;description=I%26%238217%3Bve+been+working+on+something+lately+that+I+hope+I+will+publish+sometime+next+month%3A+it%26%238217%3Bs+a+set+of+tools+to+manage+an+APT+package+repository.+The+idea+is+that%2C...&amp;tags=apt%2Ccommand%2Ccpan%2CDebian%2Cfree%2Cline%2Cperl%2Cprojects%2Csoftware%2Cblog" type="text/html" />
	</item>
		<item>
		<title>YAPC::Europe 2008</title>
		<link>http://hcoder.org/2008/08/15/yapc-europe-2008/</link>
		<comments>http://hcoder.org/2008/08/15/yapc-europe-2008/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 12:59:00 +0000</pubDate>
		<dc:creator>emanchado</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[europe]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[talks]]></category>
		<category><![CDATA[yapc]]></category>
		<category><![CDATA[yapce]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[It&#8217;s funny. One month ago, I had never been to Copenhagen. I had two weeks of vacation, so I spent a couple of days there and got to know the city. A couple of weeks later, I&#8217;m back in Copenhagen for the YACP::Europe 2008. In short, the talks were good. Not fantastic on average, but [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s funny. One month ago, I had never been to Copenhagen. I had two weeks of vacation, so I spent a couple of days there and got to know the city. A couple of weeks later, I&#8217;m back in Copenhagen for the <a href="http://yapceurope2008.org/"><span class="caps">YACP</span>::Europe 2008</a>.</p>
<p>In short, the talks were good. Not fantastic on average, but good. In particular, Damian Conway&#8217;s Keynote on Thursday morning was really funny, and had food for thought. It was about contexts and the <a href="http://search.cpan.org/~dconway/Contextual-Return-v0.2.1/lib/Contextual/Return.pm">Contextual::Return</a> module (<span class="caps">BTW</span>, does anyone know which system he uses for the slides?). Wednesday&#8217;s keynote by Larry Wall was about Perl 6, a bit too much into details. It had some interesting ideas about programming language extensibility, but it was a bit too much for a Wednesday morning (without much sleep). <a href="http://syncwith.us/">Prophet</a> (&#8220;a grounded, semirelational, peer to peer replicated, disconnected, versioned, property database with self-healing conflict resolution&#8221;) looks really cool, I&#8217;ll see if I can have a look soon. Also some ideas about QA and automated testing, to think about, explore, and share with other people.</p>
<p>Many of the lightning talks were very very funny. One of the funniest was the talk about implementing <a href="http://lolcode.com">lolcode</a> in Perl6. Really impressive when you think about it, and really funny too. Others, like the Trailer Theory from <a href="http://ali.as/">Adam Kennedy</a> were very funny too.</p>
<p>All in all, we had a really good time, we learned some things, we have some things written down to investigate later, and we met some new people. Yay for the <span class="caps">YAPC</span>::Europe!</p>
 <p><a href="http://hcoder.org/?flattrss_redirect&amp;id=37&amp;md5=c16b4492b0adc372dd5d8227c2e33396" title="Flattr" target="_blank"><img src="http://hcoder.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://hcoder.org/2008/08/15/yapc-europe-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=30124&amp;popout=1&amp;url=http%3A%2F%2Fhcoder.org%2F2008%2F08%2F15%2Fyapc-europe-2008%2F&amp;language=en_GB&amp;category=text&amp;title=YAPC%3A%3AEurope+2008&amp;description=It%26%238217%3Bs+funny.+One+month+ago%2C+I+had+never+been+to+Copenhagen.+I+had+two+weeks+of+vacation%2C+so+I+spent+a+couple+of+days+there+and+got+to+know+the...&amp;tags=conference%2Ceurope%2Cperl%2Ctalks%2Cyapc%2Cyapce%2Cblog" type="text/html" />
	</item>
	</channel>
</rss>

