<?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>productive.dk</title>
	<atom:link href="http://productive.dk/feed" rel="self" type="application/rss+xml" />
	<link>http://productive.dk</link>
	<description>Ruby on Rails Consulting and Application Development</description>
	<lastBuildDate>Mon, 08 Nov 2010 13:55:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Relaunching scrum.dk</title>
		<link>http://productive.dk/2010/05/18/relaunching-scrum-dk.html</link>
		<comments>http://productive.dk/2010/05/18/relaunching-scrum-dk.html#comments</comments>
		<pubDate>Tue, 18 May 2010 13:09:14 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Refinery CMS]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/?p=206</guid>
		<description><![CDATA[	
About five weeks ago I launched a new version of scrum.dk. The site was rebuilt from the ground up using several bits and pieces of technology that I had wanted to try out for some time:

	
		Refinery CMS
		ThemeForest
		Heroku
	

	Refinery CMS: There are currently three Rails based CMSs that I think are suitable for production use: Radiant, BrowserCMS [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://scrum.dk/"><img src="http://productive.dk/pub/uploads/2010/05/scrum-dk-small.png" alt="scrum.dk" title="scrum.dk" width="204" height="248" class="alignright size-full wp-image-203" /></a><br />
<a href="http://twitter.com/hvirring/status/12035555530">About five weeks ago</a> I launched a new version of <a href="http://scrum.dk/">scrum.dk</a>. The site was rebuilt from the ground up using several bits and pieces of technology that I had wanted to try out for some time:</p>

	<ul>
		<li>Refinery CMS</li>
		<li>ThemeForest</li>
		<li>Heroku</li>
	</ul>

	<p><a href="http://refinerycms.com/">Refinery CMS</a>: There are currently three Rails based CMSs that I think are suitable for production use: Radiant, BrowserCMS and Refinery. <a href="http://radiantcms.org/">Radiant</a> is the grand-old man of Rails CMSs, but I never really fell in love with it. <a href="http://browsercms.org/">BrowserCMS</a> looks like a really solid CMS with loads of features, especially features you would expect to find in commercial &#8220;enterprise&#8221; offerings. I find the interface to be quite complex, to the point where I think it will require training end users in its use, but I am sure it has its uses on larger CMS implementations. Refinery CMS is a fairly new Ruby on Rails CMS, that comes with a nice and clean interface and has the most basic functionality built-in, like image and file-upload.</p>

	<p><a href="http://themeforest.net/">ThemeForest</a>: They have some great HTML templates, and this is now the first place I go to to find a template for a new project. Themes cost around $10-20 and the fact they charge for them, means you won&#8217;t see them on thousands of other sites.</p>

	<p><a href="http://heroku.com/">Heroku</a>: Probably the slickest Ruby cloud platform available today. Deployment basically comes down to pushing  your code to a remote repository on Heroku. That&#8217;s it! Heroku is a fully managed platform, so you never see a shell prompt, and don&#8217;t need to worry about installing any part of the Ruby web stack.</p>

	<p>Refinery, ThemeForest and Heroku turned out to be a really potent mixture. Refinery helped me get a few pages of content up really quick and allowed me to easily add some custom functionality. The ThemeForest template solved was it often the biggest obstacle for a design-challenged developer: Making the site look professional. Heroku made deployment the simplest thing in world. I could have deployed to an existing server of mine with minimal effort, but that would have left me with one more application to babysit. As long as you plan on deploying to Heroku from the beginning by using PostgreSQL for development, Amazon S3 for file storage and make sure any gems or plugins are compatible with Heroku, you should have no difficulties getting your application deployed to Heroku.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2010/05/18/relaunching-scrum-dk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make attachment_fu and Refinery CMS work with Amazon S3 EU buckets</title>
		<link>http://productive.dk/2010/04/06/make-attachment_fu-and-refinery-cms-work-with-amazon-s3-eu-buckets.html</link>
		<comments>http://productive.dk/2010/04/06/make-attachment_fu-and-refinery-cms-work-with-amazon-s3-eu-buckets.html#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:27:55 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Refinery CMS]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/?p=132</guid>
		<description><![CDATA[	Problem: You need to use attachment_fu for uploads in Rails, and would like to store your uploads in an Amazon S3 EU bucket. Amazon updated their API long ago, when they made EU buckets available, but for some reason the defacto standard library for working with S3 from Ruby, AWS::S3, was never updated to support [...]]]></description>
			<content:encoded><![CDATA[	<p>Problem: You need to use <a href="http://github.com/technoweenie/attachment_fu">attachment_fu</a> for uploads in Rails, and would like to store your uploads in an <a href="http://aws.amazon.com/s3/">Amazon S3</a> <a href="http://aws.amazon.com/s3/faqs/#Where_is_my_data_stored">EU bucket</a>. Amazon updated their API long ago, when they made EU buckets available, but for some reason the defacto standard library for working with S3 from Ruby, <a href="http://amazon.rubyforge.org/">AWS::S3</a>, was never updated to support the new API. As a result, you still can&#8217;t use the original AWS::S3, if you prefer storing your uploads on Amazons servers in Europe.</p>

	<p>Now, there are other libraries that support EU buckets, like <a href="http://rightscale.rubyforge.org/">RightAWS</a> or <a href="http://jah.pl/projects/s3.html">S3</a>, but the upload plugin you use (in this case attachment_fu) has to support it. Previously the solution would be to switch to a different upload plugin that used another library, like <a href="http://github.com/thoughtbot/paperclip">Paperclip</a>, but last time I checked, Paperclip had replaced RightAWS with AWS::S3. You might also for some reason not be able to switch to a different upload plugin.</p>

	<p>On a recent project I was using the excellent <a href="http://www.refinerycms.com/">Refinery CMS</a>, which comes integrated with attachment_fu. I figured the problem using S3 EU buckets had been long solved, but apparently not, so here is the solution I cooked up:</p>

	<ol>
		<li>Install sauberia&#8217;s fork of AWS::S3: <a href="http://github.com/sauberia/aws-s3">http://github.com/sauberia/aws-s3</a> either as a gem or a plugin in your Rails project.</li>
		<li>Install the attachment_fu plugin (Refinery CMS already has this): <a href="http://github.com/technoweenie/attachment_fu">http://github.com/technoweenie/attachment_fu</a></li>
		<li>Patch attachment_fu to generate URLs that work correctly with Amazon S3 EU buckets, by using the code shown below:</li>
	</ol>

	<p><script src="http://gist.github.com/339906.js?file=init.rb"></script>
<noscript>
<pre>
<code></p>
	<ol>
		<li>save this as vendor/plugins/attachment_fu_hacks/init.rb</li>
	</ol>

	<p>require 'aws/s3'</p>

	<p>Technoweenie::AttachmentFu::Backends::S3Backend.module_eval do</p>
  # Hacked to use new S3 addressing, which lets us use EU buckets.
  # Requires sauberia's fork of aws-3s: http://github.com/sauberia/aws-s3
  #
  # All public objects are accessible via a GET request to the S3 servers. You can generate a
  # url for an object using the s3_url method.
  #
  #   @photo.s3_url
  #
  # The resulting url is in the form: &lt;tt&gt;http(s)://:bucket_name.:server/:table_name/:id/:file&lt;/tt&gt; where
  # the &lt;tt&gt;:server&lt;/tt&gt; variable defaults to &lt;tt&gt;AWS::S3 URL::DEFAULT_HOST&lt;/tt&gt; (s3.amazonaws.com) and can be
  # set using the configuration parameters in &lt;tt&gt;RAILS_ROOT/config/amazon_s3.yml&lt;/tt&gt;.
  #
  # The optional thumbnail argument will output the thumbnail's filename (if any).
  def s3_url(thumbnail = nil)
    File.join(s3_protocol + bucket_name + '.' + s3_hostname + s3_port_string, full_filename(thumbnail))
  end
end
</code>
</pre>
</noscript>

	<p>Disclaimer: I have only tested this with Rails 2.3.5.</p>

	<p><strong>Update November 08, 2010:</strong></p>

	<p>It seems that Amazon updated the S3 API sometime around the end of October 2010. To successfully upload you now have to use a region-specific endpoint. If you followed this guide, you need to add &#8220;server: s3-eu-west-1.amazonaws.com&#8221; to your config/amazon_s3.yml file.</p>

	<p>See this post for further details: <a href="http://davidjrice.co.uk/2010/10/26/amazon-s3-european-bucket-issues-paperclip-attachment_fu.html">Issues using Amazon S3 European Buckets</a>.</p>



 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2010/04/06/make-attachment_fu-and-refinery-cms-work-with-amazon-s3-eu-buckets.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scrum.org launches course registration site</title>
		<link>http://productive.dk/2010/03/20/scrum-org-launches-course-registration-site.html</link>
		<comments>http://productive.dk/2010/03/20/scrum-org-launches-course-registration-site.html#comments</comments>
		<pubDate>Sat, 20 Mar 2010 08:00:31 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/?p=110</guid>
		<description><![CDATA[	Last week Scrum.org launced a redesigned homepage. As part of the redesign I assisted with the development and customization of courses.scrum.org.

	Founded by Ken Schwaber, the co-creator of Scrum, and other leading international Agile experts, Scrum.org provides a complete solution for companies seeking high-impact results from Scrum and Agile development.


	One of the offerings by Scrum.org is [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://www.scrum.org/"><img src="http://productive.dk/pub/uploads/2010/03/scrum-org-small.png" alt="Scrum.org" title="Scrum.org" width="204" height="229" class="alignright size-full wp-image-109" /></a>Last week Scrum.org launced a redesigned homepage. As part of the redesign I assisted with the development and customization of <a href="http://courses.scrum.org">courses.scrum.org</a>.</p>

	<p><blockquote>Founded by Ken Schwaber, the co-creator of Scrum, and other leading international Agile experts, Scrum.org provides a complete solution for companies seeking high-impact results from Scrum and Agile development.<br />
</blockquote></p>

	<p>One of the offerings by Scrum.org is the <a href="http://www.scrum.org/newsandupdates/2010/3/4/professional-scrum-developer-video-intro.html">Professional Scrum Developer</a> program. It is an interesting take on Scrum training&#8212;not for Scrum Masters or Product Owners, but for developers.</p>

	<p>You can read more about the launch on <a href="http://www.scrum.org/newsandupdates/2010/3/11/scrumorg-launches-new-easier-to-use-homepage.html">Scrum.org</a>.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2010/03/20/scrum-org-launches-course-registration-site.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monitoring Rails POST requests</title>
		<link>http://productive.dk/2010/03/19/monitoring-rails-post-requests.html</link>
		<comments>http://productive.dk/2010/03/19/monitoring-rails-post-requests.html#comments</comments>
		<pubDate>Fri, 19 Mar 2010 10:41:46 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/?p=70</guid>
		<description><![CDATA[	Just found this draft post, that I had almost forgotten about. If you need to monitor POST requests to your Rails application for whatever reason, here is an easy way of doing it:

	


class HomeController &#60; ApplicationController
  skip_before_filter :verify_authenticity_token, :only =&#62; :post_up

  def index
  end

  # monitored by http://uptime.alal.com/uptime/
  # this [...]]]></description>
			<content:encoded><![CDATA[	<p>Just found this draft post, that I had almost forgotten about. If you need to monitor POST requests to your Rails application for whatever reason, here is an easy way of doing it:</p>

	<p><script src="http://gist.github.com/149028.js"></script>
<noscript>
<pre>
<code>class HomeController &lt; ApplicationController</p>
  skip_before_filter :verify_authenticity_token, :only =&gt; :post_up

  def index
  end

  # monitored by http://uptime.alal.com/uptime/
  # this will test if Rails is up and responding to GETs and POSTs
  def rails_up
    url = URI.parse(url_for(:action =&gt; 'post_up'))
    res = Net::HTTP.post_form(url, {})

    # body will be "success" if POST request is successful
    render :text =&gt; res.body
  rescue Exception =&gt; e
    render :text =&gt; "error: #{e.to_s}"
  end

  # verify that POST requests are working
  # we've had problems with Apache segfaulting on POSTs
  def post_up
    render :text =&gt; request.post? ? "success" : "only POST allowed"
  end
end
</pre>
</code>
</noscript>

	<p>Only downside to this, is that it generates an additional request for every request to /rails_up. If you run a low number of Mongrels or Passenger instances, this might be a problem.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2010/03/19/monitoring-rails-post-requests.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrum Training Institute on Rails</title>
		<link>http://productive.dk/2008/09/18/scrum-training-institute-on-rails.html</link>
		<comments>http://productive.dk/2008/09/18/scrum-training-institute-on-rails.html#comments</comments>
		<pubDate>Thu, 18 Sep 2008 09:37:05 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/?p=66</guid>
		<description><![CDATA[	This week I launched a new site for The Scrum Training Institute at scrumtraininginstitute.com. If you&#8217;re getting started with Scrum or Agile these are the experts you want to learn from! Currently their team consists of Jeff Sutherland (co-creator of Scrum), Jens Østergaard (a fellow dane), Gabrielle Benefield and Pete Deemer.

	Working with them has been [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://scrumtraininginstitute.com/"><img src="http://productive.dk/pub/uploads/2008/09/sti-small.jpg" alt="Scrum Training Institute" title="Scrum Training Institute" width="204" height="226" class="alignright size-full wp-image-67" /></a>This week I launched a new site for The Scrum Training Institute at <a href="http://scrumtraininginstitute.com">scrumtraininginstitute.com</a>. If you&#8217;re getting started with Scrum or Agile these are the experts you want to learn from! Currently their team consists of Jeff Sutherland (co-creator of Scrum), Jens Østergaard (a fellow dane), Gabrielle Benefield and Pete Deemer.</p>

	<p>Working with them has been just great. As a developer I just love having clients, that unasked will send me emails going:</p>

	<p><blockquote>Jesper, here&#8217;s the story:<br />
As a customer, I want to be able to&#8230;</blockquote></p>

	<p>The site is live now and we will be adding more features over the coming weeks, as I work my way through the backlog.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2008/09/18/scrum-training-institute-on-rails.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 2.1.0 without a Database</title>
		<link>http://productive.dk/2008/06/03/rails-210-without-a-database.html</link>
		<comments>http://productive.dk/2008/06/03/rails-210-without-a-database.html#comments</comments>
		<pubDate>Tue, 03 Jun 2008 08:14:53 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[ActiveRecord]]></category>

		<guid isPermaLink="false">http://productive.dk/?p=65</guid>
		<description><![CDATA[	If you are running the just released Rails 2.1.0 and have disabled ActiveRecord, you will likely run into problems launching script/server.

	The culprit is the new config/initializers/new_rails_defaults.rb, which should test to see if ActiveRecord is loaded.

	The bug report is here and the patch &#8220;AR can be disabled, new_rails_defaults.rb should check&#8221; has already been applied.

	It&#8217;s a very [...]]]></description>
			<content:encoded><![CDATA[	<p>If you are running the just released Rails 2.1.0 and have disabled ActiveRecord, you will likely run into problems launching script/server.</p>

	<p>The culprit is the new config/initializers/new_rails_defaults.rb, which should test to see if ActiveRecord is loaded.</p>

	<p>The <a href="http://rails.lighthouseapp.com/projects/8994/tickets/303-configs-initializers-new_rails_defaults-rb-should-check-for-disabled-frameworks#ticket-303-2">bug report is here</a> and the patch &#8220;AR can be disabled, new_rails_defaults.rb should check&#8221; has <a href="http://github.com/rails/rails/commit/4b4aa8f6e08ba2aa2ddce56f1d5b631a78eeef6c">already been applied</a>.</p>

	<p>It&#8217;s a very tiny patch, so until the next Rails release is out, you can easily apply the patch manually.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2008/06/03/rails-210-without-a-database.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My latest Radiant project is now live!</title>
		<link>http://productive.dk/2008/02/06/my-latest-radiant-project-is-now-live.html</link>
		<comments>http://productive.dk/2008/02/06/my-latest-radiant-project-is-now-live.html#comments</comments>
		<pubDate>Wed, 06 Feb 2008 09:43:16 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Radiant]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/2008/02/06/my-latest-radiant-project-is-now-live.html</guid>
		<description><![CDATA[	I don&#8217;t usually work on &#8220;plain old websites&#8221;, but I had an itch to try out Radiant CMS, and so I decided to take a small gig building a showcase site for a real estate developer (or property developer, depending on which side of the pond you&#8217;re on).

	So far Radiant has been a pleasant experience [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://korpus-sundhedspark.dk" title="KORPUS Sundhedspark i Køge er en helt ny måde at tænke sundhed på, som retter sig mod et hastigt voksende marked i Danmark og resten af Europa. Byggeriet opføres efter helt nye revolutionerende byggeprincipper uden beton, der gavner miljøet, sænker dine driftsudgifter og har et påviseligt sundhedsfremmende indeklima."><img src="http://productive.dk/pub/uploads/2008/02/korpus.jpg" alt="KORPUS Sundhedspark" border="0" width="204" height="238" align="right" /></a>I don&#8217;t usually work on &#8220;plain old websites&#8221;, but I had an itch to try out <a href="http://radiantcms.org">Radiant CMS</a>, and so I decided to take a small gig building a showcase site for a real estate developer (or property developer, depending on which side of the pond you&#8217;re on).</p>

	<p>So far Radiant has been a pleasant experience and I&#8217;ll definitely use it for a couple of other sites. Initially my impression was that it had way too few features to be of any real use, but it has the 20% features that you use 80% of the time. For the rest there&#8217;s a bunch of extensions, some which are almost mandatory for any site, like the page_attachments extension, that enables file-uploads on all pages. Also, Radiant is based on <a href="http://rubyonrails.org/">Rails</a>, so if you can&#8217;t find an extension with the functionality you need it can be easily extended.</p>

	<p>Working with Radiant also gave me a chance to look into Rails hosting options in Europe. Most of the dedicated Rails hosting companies have data centers in the US, so I needed to look elsewhere. I ended up hosting the site on a VPS from <a href="http://rimuhosting.com">RimuHosting</a>, who have a data center in London. They don&#8217;t specifically promote themselves as a Rails host, but they do have <a href="http://bliki.rimuhosting.com/space/knowledgebase/linux/miscapplications/ruby+on+rails">instructions for running Rails on their servers</a> and they will install a complete Rails stack for you if you just ask when ordering the VPS. Setup was a amazingly fast even though it involved a real person handling my order. Within 15 minutes of submitting the order I had an email back saying they were working on my order and about 30 minutes later I was logging in to my new server!</p>

	<p>The site is live now at <a href="http://korpus-sundhedspark.dk" title="KORPUS Sundhedspark, Danmarks største og mest ambitiøse sundhedsbyggeri i miljørigtige rammer – netop overfor Køge Sygehus">korpus-sundhedspark.dk</a> (in Danish).</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2008/02/06/my-latest-radiant-project-is-now-live.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java programmer == &#8216;maintenance&#8217;</title>
		<link>http://productive.dk/2008/01/29/java-programmer-equals-maintenance.html</link>
		<comments>http://productive.dk/2008/01/29/java-programmer-equals-maintenance.html#comments</comments>
		<pubDate>Tue, 29 Jan 2008 12:00:10 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://productive.dk/2008/01/29/java-programmer-equals-maintenance.html</guid>
		<description><![CDATA[	Pragmatic Dave on Passion, Skill and &#8216;Having A Blast&#8217;:

	
		... you should be investigating your tools set and you should be trying different techniques and different ways of doing things. And maybe then, more and more it looks back into practices. And that&#8217;s not just to make you better at your job, it&#8217;s also to make [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://www.infoq.com/interviews/dave-thomas-agile-passion">Pragmatic Dave on Passion, Skill and &#8216;Having A Blast&#8217;</a>:</p>

	<blockquote>
		<p>... you should be investigating your tools set and you should be trying different techniques and different ways of doing things. And maybe then, more and more it looks back into practices. And that&#8217;s not just to make you better at your job, it&#8217;s also to make you safer in your job. Because, at the speed things are changing, <strong>in 10 years the job description for Java programmer is going to be &#8220;maintenance.&#8221;</strong> And that&#8217;s just the case, just the way things work in this industry.</p>
	</blockquote>

	<p>So, what are you waiting for? Get moving. Learn a new language. Today.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2008/01/29/java-programmer-equals-maintenance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RailsConf 2008 Europe Announced</title>
		<link>http://productive.dk/2008/01/21/railsconf-2008-europe-announced.html</link>
		<comments>http://productive.dk/2008/01/21/railsconf-2008-europe-announced.html#comments</comments>
		<pubDate>Mon, 21 Jan 2008 08:50:46 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[RailsConf]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/2008/01/21/railsconf-2008-europe-announced.html</guid>
		<description><![CDATA[	David just announced RailsConf Europe &#8216;08:

	
		The conference is returning to Berlin and the conference will happen between the 2nd and 4th of September.
	

	Registration will open in May 2008. Hope to see you there.


 ]]></description>
			<content:encoded><![CDATA[	<p>David <a href="http://weblog.rubyonrails.com/2008/1/20/railsconf-europe-08-get-your-proposals-in">just announced</a> <a href="http://www.railsconfeurope.com/">RailsConf Europe &#8216;08</a>:</p>

	<blockquote>
		<p>The conference is returning to Berlin and the conference will happen between the 2nd and 4th of September.</p>
	</blockquote>

	<p>Registration will open in May 2008. Hope to see you there.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2008/01/21/railsconf-2008-europe-announced.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RailsConf 2008: Submit Your Proposals</title>
		<link>http://productive.dk/2007/10/30/railsconf-2008-submit-your-proposals.html</link>
		<comments>http://productive.dk/2007/10/30/railsconf-2008-submit-your-proposals.html#comments</comments>
		<pubDate>Tue, 30 Oct 2007 19:04:25 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Narcissism]]></category>
		<category><![CDATA[RailsConf]]></category>

		<guid isPermaLink="false">http://productive.dk/2007/10/30/railsconf-2008-submit-your-proposals.html</guid>
		<description><![CDATA[	

	You can now submit your proposal for RailsConf 2008 taking place May 29-June 1, in Portland.

	With that off my chest, I can move on to the real purpose for this post: The photo, taken at RailsConf 2007 and featured on the frontpage of the RailsConf 2008 site, has yours truly and Morten Christensen smack in [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://en.oreilly.com/rails2008/"><img src="http://productive.dk/pub/uploads/2007/10/railsconf2008.png" width="500" height="168" alt="We were there" /></a></p>

	<p>You can now <a href="http://en.oreilly.com/rails2008/public/cfp/6">submit your proposal</a> for <a href="http://en.oreilly.com/rails2008/">RailsConf 2008</a> taking place May 29-June 1, in Portland.</p>

	<p>With that off my chest, I can move on to the real purpose for this post: The photo, taken at RailsConf 2007 and featured on the frontpage of the RailsConf 2008 site, has yours truly and <a href="http://www.mortench.net/">Morten Christensen</a> smack in the center!</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2007/10/30/railsconf-2008-submit-your-proposals.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sanitize your database inputs</title>
		<link>http://productive.dk/2007/10/11/sanitize-your-database-inputs.html</link>
		<comments>http://productive.dk/2007/10/11/sanitize-your-database-inputs.html#comments</comments>
		<pubDate>Thu, 11 Oct 2007 20:11:44 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://productive.dk/2007/10/11/sanitize-your-database-inputs.html</guid>
		<description><![CDATA[	Exploits of a Mom


	Now why didn&#8217;t I think of that? Naming your kids Magnus and Frida suddenly seems very unoriginal. From xkcd.


 ]]></description>
			<content:encoded><![CDATA[	<p><strong>Exploits of a Mom</strong><br />
<a href="http://xkcd.com/327/"><img src="http://productive.dk/pub/uploads/2007/10/exploits_of_a_mom.png" width="500" height="153" alt="Exploits of a Mom" /></a></p>

	<p>Now why didn&#8217;t I think of that? Naming your kids Magnus and Frida suddenly seems very unoriginal. From <a href="http://xkcd.com">xkcd</a>.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2007/10/11/sanitize-your-database-inputs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At RailsConf Europe in Berlin</title>
		<link>http://productive.dk/2007/09/17/at-railsconf-europe-in-berlin.html</link>
		<comments>http://productive.dk/2007/09/17/at-railsconf-europe-in-berlin.html#comments</comments>
		<pubDate>Mon, 17 Sep 2007 16:14:37 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[RailsConf]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://productive.dk/2007/09/17/at-railsconf-europe-in-berlin.html</guid>
		<description><![CDATA[	Just got in. Looking forward to lots of fun in the coming days. I&#8217;ll be tumbling my notes at railsconf07.productive.dk.

	If you need a freelancer for your (next) project, come find me and lets talk. If you don&#8217;t need a freelancer, come have a chat anyway ;)


 ]]></description>
			<content:encoded><![CDATA[	<p>Just got in. Looking forward to lots of fun in the coming days. I&#8217;ll be tumbling my notes at <a href="http://railsconf07.productive.dk/">railsconf07.productive.dk</a>.</p>

	<p><strong>If you need a freelancer for your (next) project, come find me and lets talk</strong>. If you don&#8217;t need a freelancer, come have a chat anyway ;)</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2007/09/17/at-railsconf-europe-in-berlin.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Official: Vista Blows</title>
		<link>http://productive.dk/2007/08/20/its-official-vista-blows.html</link>
		<comments>http://productive.dk/2007/08/20/its-official-vista-blows.html#comments</comments>
		<pubDate>Mon, 20 Aug 2007 20:10:24 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://productive.dk/2007/08/20/its-official-vista-blows.html</guid>
		<description><![CDATA[	Or as Joel Spolsky puts it:

	
		I&#8217;ve been using Vista on my home laptop since it shipped, and can say with some conviction that nobody should be using it as their primary operating system&#8212;it simply has no redeeming merits to overcome the compatibility headaches it causes. Whenever anyone asks, my advice is to stay with Windows [...]]]></description>
			<content:encoded><![CDATA[	<p>Or as <a href="http://www.joelonsoftware.com/items/2007/08/18.html">Joel Spolsky puts it</a>:</p>

	<blockquote>
		<p>I&#8217;ve been using Vista on my home laptop since it shipped, and can say with some conviction that nobody should be using it as their primary operating system&#8212;it simply has no redeeming merits to overcome the compatibility headaches it causes. Whenever anyone asks, my advice is to stay with Windows XP (and to purchase new systems with XP preinstalled).</p>
	</blockquote>

	<p>and <a href="http://fakesteve.blogspot.com/2007/08/more-raves-for-vista.html">Fake Steve comments on outgoing PC Magazine editor Jim Louderback’s “Vista sucks” farewell column</a>:</p>

	<blockquote>
		<p>... Jim Louderback, the newly departed editor of PC Magazine, who uses his farewell column to do something I suppose he has wanted to do for ages&#8212;tell the truth about Vista. &#8220;Why, nine months after launch, am I so frustrated? The litany of what doesn&#8217;t work and what still frustrates me stretches on endlessly.&#8221;<br/><br />
... &#8220;I could go on and on about the lack of drivers, the bizarre wake-up rituals, the strange and nonreproducible system quirks, and more. But I won&#8217;t bore you with the details. The upshot is that even after nine months, Vista just ain&#8217;t cutting it. I definitely gave Microsoft too much of a free pass on this operating system.&#8221;</p>
	</blockquote>

	<p>(via <a href="http://daringfireball.net/">Daring Fireball</a>)</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2007/08/20/its-official-vista-blows.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making TextMate and sqlplus play nice</title>
		<link>http://productive.dk/2007/08/17/making-textmate-and-sqlplus-play-nice.html</link>
		<comments>http://productive.dk/2007/08/17/making-textmate-and-sqlplus-play-nice.html#comments</comments>
		<pubDate>Fri, 17 Aug 2007 07:53:12 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://productive.dk/2007/08/17/making-textmate-and-sqlplus-play-nice.html</guid>
		<description><![CDATA[	As described in the Calling TextMate from Other Applications chapter in the TextMate Manual

	
		There is one command which does not support giving arguments in the EDITOR variable, it is crontab (which is sort of obsoleted by launchd). If you need to use it, you can create a symbolic link to mate with a _wait suffix [...]]]></description>
			<content:encoded><![CDATA[	<p>As described in the <a href="http://macromates.com/textmate/manual/using_textmate_from_terminal">Calling TextMate from Other Applications</a> chapter in the <a href="http://macromates.com/textmate/manual/">TextMate Manual</a></p>

	<blockquote>
		<p>There is one command which does not support giving arguments in the EDITOR variable, it is crontab (which is sort of obsoleted by launchd). If you need to use it, you can create a symbolic link to mate with a _wait suffix which implies -w.</p>
	</blockquote>

	<p>Well, as I found out a while ago, there&#8217;s another command that has the same problem: <strong>sqlplus</strong>. But if you follow Allan&#8217;s instructions, you can make TextMate work with sqlplus:</p>

<pre><code>ln -s mate ~/bin/mate_wait   # run this once to create the link
export EDITOR='mate_wait'    # use in your ~/.bash_profile</code></pre>

	<p>Assuming you&#8217;ve already created a symlink to mate and that ~/bin exists (you could also use /usr/local/bin or some other preferred location). Now, in sqlplus simply type ed or edit as usual, and your commandline will open up in TextMate. Yay, one less reason to ever edit any text outside of TextMate.</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2007/08/17/making-textmate-and-sqlplus-play-nice.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple Updates Today</title>
		<link>http://productive.dk/2007/08/07/apple-updates-today.html</link>
		<comments>http://productive.dk/2007/08/07/apple-updates-today.html#comments</comments>
		<pubDate>Tue, 07 Aug 2007 21:43:46 +0000</pubDate>
		<dc:creator>Jesper</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://productive.dk/2007/08/07/apple-updates-today.html</guid>
		<description><![CDATA[	Apple released a bunch of new and updated products today:
	
		New iMacs. I would buy one today if I had the slightest use for it. It looks absolutely gorgeous.
		Updated Mac minis. Yay! We can still get cheap Mac servers.
		New wired and wireless keyboards. I love the wireless without the numeric keypad. This way you can have [...]]]></description>
			<content:encoded><![CDATA[	<p>Apple released a bunch of new and updated products today:</p>
	<ul>
		<li><a href="http://www.apple.com/imac/">New iMacs</a>. I would buy one today if I had the slightest use for it. It looks absolutely gorgeous.</li>
		<li><a href="http://www.apple.com/macmini/">Updated Mac minis</a>. Yay! We can still get cheap Mac servers.</li>
		<li><a href="http://www.apple.com/keyboard/">New wired and wireless keyboards</a>. I love the wireless without the numeric keypad. This way you can have your mouse closer to the keyboard, and I never use the keypad anyway (now if they could just get rid of the silly caps lock key as well). I&#8217;ve been wanting a keyboard like this ever since getting a Mac, so I ordered one immediately&#8212;the English (Int&#8217;l) version of course, the Danish layout is completely useless for writing code.</li>
		<li><a href="http://www.apple.com/ilife/">iLife &#8216;08</a>. iMovie seems to be worth the upgrade alone. I ordered a family pack.</li>
		<li><a href="http://www.apple.com/iwork/">iWork &#8216;08</a>. I love Keynote, so upgrading was an easy choice. The new spreadsheet, Numbers, looks like a nice addition. One more family pack in the shopping basket.</li>
		<li><a href="http://www.apple.com/dotmac/">Updated .Mac</a>. The new web gallery with photo and movie sharing looks like it&#8217;s worth the price alone, but I&#8217;ll wait for the reviews before deciding whether I&#8217;m going to be a .Mac user. I&#8217;d also like to see if they are going to support photo sharing from <a href="http://www.apple.com/aperture/">Aperture</a>.</li>
		<li><a href="http://www.apple.com/airportextreme/">Updated AirPort Extreme</a>. Looks like it gained gigabit ethernet, so there&#8217;s one less reason not to buy one now.</li>
	</ul>

	<p style="text-align:center;"><img src="http://productive.dk/pub/uploads/2007/08/apple-updates.jpg" title="Shopping spree" alt="Shopping spree" width="486" height="150" /><br />
<em>Todays shopping spree comes out at just DKK 2097,-. That&#8217;s five copies a lot of software for very little money if you ask me&#8212;and a new keyboard too.</em></p>

	<p><strong>Update</strong>: There&#8217;s a <a href="http://www.apple.com/iwork/trial/">30-day trial of iWork &#8216;08</a> available and a bunch of <a href="http://www.apple.com/iwork/tutorials/">tutorials</a> (via <a href="http://www.macuser.com/software/comprehensive_overview_and_imp.php">MacUser</a>).</p>


 ]]></content:encoded>
			<wfw:commentRss>http://productive.dk/2007/08/07/apple-updates-today.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

