<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>jonasforsberg.se</title>
    <link>http://jonasforsberg.se</link>
    <atom:link href="http://jonasforsberg.se/rss.xml" rel="self" type="application/rss+xml" />
    <description>Agile web developer who likes to do high fives and make cool things with Ruby on Rails.</description>
    <language>en-us</language>
    <pubDate>Sat, 19 May 2012 10:23:17 +0000</pubDate>
    <lastBuildDate>Sat, 19 May 2012 10:23:17 +0000</lastBuildDate>

    
    <item>
      <title>A Flickr plugin to Jekyll</title>
      <link>http://jonasforsberg.se/2012/04/15/flickr-plugin-for-jekyll</link>
      <pubDate>Sun, 15 Apr 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/04/15/flickr-plugin-for-jekyll</guid>
      <description>
        

        &lt;p&gt;This blog is driven by &lt;a href='http://jekyllrb.com/'&gt;Jekyll&lt;/a&gt; and i have written a simple plugin to Jekyll that makes it easy to embed photographs from &lt;a href='http://flickr.com'&gt;Flickr&lt;/a&gt; directly into your posts.&lt;/p&gt;

&lt;p&gt;If you have a Gemfile, start by adding the &lt;code&gt;fleakr&lt;/code&gt; gem to your Gemfile and run &lt;code&gt;bundle install&lt;/code&gt;. If you don&amp;#8217;t have a Gemfile, install the gem with &lt;code&gt;gem install fleakr&lt;/code&gt;.&lt;/p&gt;
&lt;div&gt;&lt;script src='https://gist.github.com/2380125.js?file=GEMFILE'&gt; &lt;/script&gt;
&lt;noscript&gt;&lt;pre&gt;&lt;code&gt;source :rubygems

gem 'RedCloth'
gem 'jekyll'
gem 'fleakr'&lt;/code&gt;&lt;/pre&gt;&lt;/noscript&gt;&lt;/div&gt;
&lt;p&gt;Then add the flickr plugin to your &lt;code&gt;_plugins&lt;/code&gt; folder:&lt;/p&gt;
&lt;div&gt;&lt;script src='https://gist.github.com/2380125.js?file=flickr.rb'&gt; &lt;/script&gt;
&lt;noscript&gt;&lt;pre&gt;&lt;code&gt;require 'liquid'
require 'fleakr'

Fleakr.api_key       = &amp;quot;XXX&amp;quot;
Fleakr.shared_secret = &amp;quot;YYY&amp;quot;
Fleakr.auth_token    = &amp;quot;ZZZ&amp;quot;

CACHED_IMAGES = {}

module Flickr
  def flickr_image(url)
    return &amp;quot;&amp;lt;img alt='#{image_object(url).title}' src='#{image_object(url).large.url}'&amp;gt;&amp;quot;
  end

  def flickr_medium_image(url)
    return &amp;quot;&amp;lt;img alt='#{image_object(url).title}' src='#{image_object(url).medium.url}'&amp;gt;&amp;quot;
  end

  private

  def image_object(url)
    CACHED_IMAGES[url] ||= Fleakr.resource_from_url(url)
  end
end

Liquid::Template.register_filter(Flickr)
&lt;/code&gt;&lt;/pre&gt;&lt;/noscript&gt;&lt;/div&gt;
&lt;p&gt;Read the &lt;a href='https://github.com/reagent/fleakr'&gt;readme for the fleakr gem&lt;/a&gt; on how to obtain your flickr api tokens. Then add them to the top of the flickr.rb file.&lt;/p&gt;

&lt;p&gt;Loop over your photos in your post layout, for example like this:&lt;/p&gt;
&lt;div&gt;&lt;script src='https://gist.github.com/2380125.js?file=post.html'&gt; &lt;/script&gt;
&lt;noscript&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;article&amp;gt;
  &amp;lt;h1&amp;gt;{{ post.title }}&amp;lt;/h1&amp;gt;

  {% for flickr_url in post.flickr %}
    &amp;lt;a href=&amp;quot;{{ flickr_url }}&amp;quot;&amp;gt;{{ flickr_url | flickr_image }}&amp;lt;/a&amp;gt;
  {% endfor %}

  {{ post.content }}

  &amp;lt;footer&amp;gt;
    {{ post.date || date:&amp;quot;%Y-%m-%d&amp;quot; }}&amp;lt;/br&amp;gt;
  &amp;lt;/footer&amp;gt;
&amp;lt;/article&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;/noscript&gt;&lt;/div&gt;
&lt;p&gt;Finally, the last step is to add one or more photos to your post:&lt;/p&gt;
&lt;div&gt;&lt;script src='https://gist.github.com/2380125.js?file=example-post'&gt; &lt;/script&gt;
&lt;noscript&gt;&lt;pre&gt;&lt;code&gt;---
layout: post
title: A blog post with photos from flickr
flickr:
- http://www.flickr.com/photos/himynameisjonas/6167152072
- http://www.flickr.com/photos/himynameisjonas/6167152448
- http://www.flickr.com/photos/himynameisjonas/6167153574
---
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
&lt;/code&gt;&lt;/pre&gt;&lt;/noscript&gt;&lt;/div&gt;
&lt;p&gt;I have also published all these &lt;a href='https://gist.github.com/2380125'&gt;examples as a gist&lt;/a&gt;.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/jekyll"&gt;#jekyll&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/flickr"&gt;#flickr&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/no-photo"&gt;#no-photo&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/ruby"&gt;#ruby&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/plugin"&gt;#plugin&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/code"&gt;#code&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>A night out</title>
      <link>http://jonasforsberg.se/2012/04/13/a-night-out</link>
      <pubDate>Fri, 13 Apr 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/04/13/a-night-out</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/04/13/a-night-out"&gt;&lt;img class='flickr-image align-center' alt='DSCF1829 - Version 2' src='http://farm7.staticflickr.com/6161/6167152072_d1920a28b0.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/04/13/a-night-out"&gt;&lt;img class='flickr-image align-center' alt='DSCF1830 - Version 2' src='http://farm7.staticflickr.com/6160/6167152448_63be86fb3c.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/04/13/a-night-out"&gt;&lt;img class='flickr-image align-center' alt='DSCF1869 - Version 2' src='http://farm7.staticflickr.com/6177/6167153574_2cd22bcb71.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;A night out in July 2011. Emil and my brother David at Bröderna Olsson, Stockholm.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/summer"&gt;#summer&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/david"&gt;#david&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/emil"&gt;#emil&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/party"&gt;#party&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/black-and-white"&gt;#black &amp; white&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Prague</title>
      <link>http://jonasforsberg.se/2012/04/09/prague</link>
      <pubDate>Mon, 09 Apr 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/04/09/prague</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/04/09/prague"&gt;&lt;img class='flickr-image align-center' alt='DSCF0046' src='http://farm6.staticflickr.com/5279/7061909137_5bf610b9dd.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;Where in Prague from Sunday to Wednesday. A sort of delayed weekend trip with Eva. I felt like a real tourist with my camera so this is basically the only picture I took that is not on when we drank beer at a random beer garden (the spring had arrived in Prague).&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/prague"&gt;#prague&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/black-and-white"&gt;#black &amp; white&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/vacation"&gt;#vacation&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/square"&gt;#square&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Herr och Dam</title>
      <link>http://jonasforsberg.se/2012/03/18/orebro</link>
      <pubDate>Sun, 18 Mar 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/03/18/orebro</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/03/18/orebro"&gt;&lt;img class='flickr-image align-center' alt='' src='http://farm8.staticflickr.com/7060/6847695840_d58d623c02.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;Took the train to Örebro with Eva over a Saturday a couple of weeks ago. Our objective was to see Eva&amp;#8217;s friend Emilie play her piece. The piece was played in the least inspiring places I&amp;#8217;ve visited in a long time.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/oerebro"&gt;#örebro&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Popaganda</title>
      <link>http://jonasforsberg.se/2012/03/08/popaganda</link>
      <pubDate>Thu, 08 Mar 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/03/08/popaganda</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/03/08/popaganda"&gt;&lt;img class='flickr-image align-center' alt='' src='http://farm8.staticflickr.com/7176/6965207109_4b80c92e04.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/03/08/popaganda"&gt;&lt;img class='flickr-image align-center' alt='' src='http://farm8.staticflickr.com/7051/6819084786_1c5e5924d7.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/03/08/popaganda"&gt;&lt;img class='flickr-image align-center' alt='' src='http://farm8.staticflickr.com/7057/6965208681_0eceb58a90.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/03/08/popaganda"&gt;&lt;img class='flickr-image align-center' alt='' src='http://farm8.staticflickr.com/7195/6965209521_22cf0fd4be.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/03/08/popaganda"&gt;&lt;img class='flickr-image align-center' alt='' src='http://farm8.staticflickr.com/7067/6819087598_68bf0350de.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;At the end of August last year, it was time for the yearly Popaganda festival. Most of it was totally awesome but the absolute best part was the concert with Arcade Fire. Lovely!&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/summer"&gt;#summer&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/popaganda"&gt;#popaganda&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/festival"&gt;#festival&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/concert"&gt;#concert&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/party"&gt;#party&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/eva"&gt;#eva&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/maria"&gt;#maria&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Gubbängen</title>
      <link>http://jonasforsberg.se/2012/02/25/gubbangen</link>
      <pubDate>Sat, 25 Feb 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/02/25/gubbangen</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/02/25/gubbangen"&gt;&lt;img class='flickr-image align-center' alt='Snow' src='http://farm3.staticflickr.com/2740/4351905289_ec48d177c6.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;The snow is melting and spring is coming so what is not better than one last winter image with lots snow? Took this picture in Gubbängen, Stockholm, January 2007.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/white"&gt;#white&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/snow"&gt;#snow&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Mormor</title>
      <link>http://jonasforsberg.se/2012/02/22/mormor</link>
      <pubDate>Wed, 22 Feb 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/02/22/mormor</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/02/22/mormor"&gt;&lt;img class='flickr-image align-center' alt='IMG_2047' src='http://farm8.staticflickr.com/7200/6921443551_4bf34ca8e9.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/02/22/mormor"&gt;&lt;img class='flickr-image align-center' alt='DSCF2379' src='http://farm8.staticflickr.com/7062/6775327942_96650b5c6f.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;This is Eva, my grandma. She&amp;#8217;s the best! Went to Linköping last weekend to celebrate her 94th birthday but these photos are taken in June 2010 and July 2011.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/mormor"&gt;#mormor&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/square"&gt;#square&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Malmö</title>
      <link>http://jonasforsberg.se/2012/02/14/malmoe</link>
      <pubDate>Tue, 14 Feb 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/02/14/malmoe</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/02/14/malmoe"&gt;&lt;img class='flickr-image align-center' alt='DSCF0431_Snapseed' src='http://farm8.staticflickr.com/7201/6872156519_4cf56554c7.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;Spent the weekend with Eva in Malmö, visiting Angelina and Anders. Here&amp;#8217;s Anders enjoying the winter view when we went to Västra Hamnen.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/anders"&gt;#anders&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/malmoe"&gt;#malmö&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/white"&gt;#white&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/black-and-white"&gt;#black &amp; white&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>SilarApp stickers</title>
      <link>http://jonasforsberg.se/2012/02/13/silarapp-stickers</link>
      <pubDate>Mon, 13 Feb 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/02/13/silarapp-stickers</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/02/13/silarapp-stickers"&gt;&lt;img class='flickr-image align-center' alt='SilarApp Sticker' src='http://farm8.staticflickr.com/7180/6869124831_e77b4daf6d.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;We just got a delivery of sticker for &lt;a href='http://silarapp.com'&gt;SilarApp&lt;/a&gt; and are very happy with the result. Just ping/say hello to &lt;a href='http://twitter.com/silarapp'&gt;SilarApp&lt;/a&gt;, &lt;a href='http://twitter.com/himynameisjonas'&gt;me&lt;/a&gt; or &lt;a href='http://twitter.com/javve'&gt;Jonny&lt;/a&gt; on twitter if you want one your self.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/silarappcom"&gt;#silarapp.com&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/stickers"&gt;#stickers&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Summer 2011</title>
      <link>http://jonasforsberg.se/2012/02/06/summer-2011</link>
      <pubDate>Mon, 06 Feb 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/02/06/summer-2011</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/02/06/summer-2011"&gt;&lt;img class='flickr-image align-center' alt='DSCF1167 - Version 2' src='http://farm7.staticflickr.com/6169/6167145464_313f301893.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;It has been something between -10° and -20° Celcius cold this last week so I think I have to post at least one more photograph from last summer. And If I had to choose one photograph from last summer, I think I would have choosen this one. Taken in Vällingby, Stockholm while Eva and I where on a bike trip.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/summer"&gt;#summer&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/eva"&gt;#eva&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/bike"&gt;#bike&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Greece</title>
      <link>http://jonasforsberg.se/2012/02/01/greece</link>
      <pubDate>Wed, 01 Feb 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/02/01/greece</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/02/01/greece"&gt;&lt;img class='flickr-image align-center' alt='DSCF2057 - Version 2' src='http://farm7.staticflickr.com/6180/6167155686_bed09ca2b5.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/02/01/greece"&gt;&lt;img class='flickr-image align-center' alt='DSCF2024 - Version 2' src='http://farm7.staticflickr.com/6166/6166617585_f4a7c820a4.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;Had to post some new photos as a contrast to &lt;a href='/2012/01/24/winter'&gt;last post&amp;#8217;s photos&lt;/a&gt;. Theese two are from last summer, when Eva and I spent two relaxing but very hot weeks in Greece.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/summer"&gt;#summer&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/eva"&gt;#eva&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/greece"&gt;#greece&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/vacation"&gt;#vacation&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/black-and-white"&gt;#black &amp; white&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Malware, Reddit and Google Analytics</title>
      <link>http://jonasforsberg.se/2012/01/31/malware-reddit-and-google-analytics</link>
      <pubDate>Tue, 31 Jan 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/01/31/malware-reddit-and-google-analytics</guid>
      <description>
        

        &lt;p&gt;&lt;img alt='malware analytics' src='/images/malware_analytics.png' /&gt; This is what happens with your traffic when one of your sites gets infected by malware and therefor being &amp;#8220;blocked&amp;#8221; by google. From a daily count of 200-300 visitors down to 0-2 visitors per day. But it&amp;#8217;s a funny graph to look at.&lt;/p&gt;

&lt;p&gt;&lt;img alt='reddit analytics' src='/images/reddit_analytics.png' /&gt; And this is the awesome thing that happens when one of the posts of the same site as above is posted and gets popular on &lt;a href='http://reddit.com'&gt;reddit&lt;/a&gt;. From a stable 150-200 visitors per to a huge peak at 20 000. Such a big difference that the rest of the days looks all flat.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/code"&gt;#code&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/statistics"&gt;#statistics&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/analytics"&gt;#analytics&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/no-photo"&gt;#no-photo&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Winter</title>
      <link>http://jonasforsberg.se/2012/01/24/winter</link>
      <pubDate>Tue, 24 Jan 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/01/24/winter</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/01/24/winter"&gt;&lt;img class='flickr-image align-center' alt='DSCF0362' src='http://farm8.staticflickr.com/7020/6757110131_1aa62fb4d7.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/01/24/winter"&gt;&lt;img class='flickr-image align-center' alt='DSCF0367' src='http://farm8.staticflickr.com/7157/6757145337_eef00ef093.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;Finally some snow! Taken last sunday on a walk in the snow with Eva.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/snow"&gt;#snow&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/eva"&gt;#eva&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/winter"&gt;#winter&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/white"&gt;#white&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>24 Hour Business Camp</title>
      <link>http://jonasforsberg.se/2012/01/21/24-hour-business-camp</link>
      <pubDate>Sat, 21 Jan 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/01/21/24-hour-business-camp</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/01/21/24-hour-business-camp"&gt;&lt;img class='flickr-image align-center' alt='DSCF0059 - Version 2' src='http://farm7.staticflickr.com/6232/6337662490_0559c87f61.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/01/21/24-hour-business-camp"&gt;&lt;img class='flickr-image align-center' alt='DSCF0067 - Version 2' src='http://farm7.staticflickr.com/6103/6336910521_42f3c35309.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/01/21/24-hour-business-camp"&gt;&lt;img class='flickr-image align-center' alt='DSCF0070 - Version 2' src='http://farm7.staticflickr.com/6240/6336910929_a885ce425f.jpg'&gt;&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/2012/01/21/24-hour-business-camp"&gt;&lt;img class='flickr-image align-center' alt='DSCF0097 - Version 2' src='http://farm7.staticflickr.com/6110/6337669900_71d55d0ffa.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;I went to &lt;a href='http://www.24hbc.se'&gt;24 Hour Business Camp&lt;/a&gt; with &lt;a href='http://twitter.com/ingmr'&gt;Ingemar&lt;/a&gt; and &lt;a href='http://twitter.com/javve'&gt;Jonny&lt;/a&gt; (both colleagues from &lt;a href='http://www.mynewsdesk.com'&gt;Mynewsdesk&lt;/a&gt;) on October the 30th last year. It took place at the awesome japanese spa &lt;a href='http://www.yasuragi.se'&gt;Yasuragi&lt;/a&gt;. We spent the 24h coding on our project &lt;a href='http://silarapp.com'&gt;SilarApp&lt;/a&gt;, a &lt;em&gt;clean and ambient real time data visualization dashboard&lt;/em&gt;. I think we did it quite well, we even won the &lt;a href='http://www.internetdagarna.se/nyheter/juryns-favoriter-fran-24hbc-pa-besok'&gt;jury&amp;#8217;s award&lt;/a&gt;. Now we&amp;#8217;re working hard on our spare time to release the first public version of SilarApp (it&amp;#8217;s currently in closed beta) and we&amp;#8217;re really proud of what we have done so far.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/24hbc"&gt;#24hbc&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/silarappcom"&gt;#silarapp.com&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/jonny"&gt;#jonny&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/ingemar"&gt;#ingemar&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/yasuragi"&gt;#yasuragi&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/coding"&gt;#coding&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/black-and-white"&gt;#black &amp; white&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Svea</title>
      <link>http://jonasforsberg.se/2012/01/19/svea</link>
      <pubDate>Thu, 19 Jan 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/01/19/svea</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/01/19/svea"&gt;&lt;img class='flickr-image align-center' alt='Svea' src='http://farm3.staticflickr.com/2728/4351908415_37883e2d3f.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;This is Svea. One of two cats my ex and I had when we lived together. I miss her (the cat, not the ex) and I have long going plans about getting one or two new kittens. Taken in Bandhagen, Stockholm, 2007.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/svea"&gt;#svea&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/cat"&gt;#cat&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/square"&gt;#square&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Adventure Golf</title>
      <link>http://jonasforsberg.se/2012/01/17/adventure-golf</link>
      <pubDate>Tue, 17 Jan 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/01/17/adventure-golf</guid>
      <description>
        
          &lt;a href="http://jonasforsberg.se/2012/01/17/adventure-golf"&gt;&lt;img class='flickr-image align-center' alt='DSCF2350 - Version 2' src='http://farm7.staticflickr.com/6177/6166618431_3163e01215.jpg'&gt;&lt;/a&gt;
        

        &lt;p&gt;Taken in the summer of 2011 while I was playing adventure golf in Berg (outside Linköping, Sweden) with &lt;a href='http://log.brusman.net'&gt;Eva&lt;/a&gt; and her family.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/summer"&gt;#summer&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/adventure-golf"&gt;#adventure golf&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/magnus"&gt;#magnus&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/lasse"&gt;#lasse&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/people"&gt;#people&lt;/a&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/square"&gt;#square&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    
    <item>
      <title>Hello World!</title>
      <link>http://jonasforsberg.se/2012/01/13/hello-world</link>
      <pubDate>Fri, 13 Jan 2012 00:00:00 +0000</pubDate>
      <author>Jonas Forsberg – himynameisjonas</author>
      <guid>http://jonasforsberg.se/2012/01/13/hello-world</guid>
      <description>
        

        &lt;p&gt;Hello world! The must-have post of a blog. I don&amp;#8217;t know how many blogs i have started but if I know myself this isn&amp;#8217;t the last one. Sadly&amp;#8230;&lt;/p&gt;

&lt;p&gt;However, the plan is to post some photos and maybe even some things about my other hobby (besides photography) coding/web development/yadayada. Time will tell.&lt;/p&gt;

        &lt;p&gt;
        
          &lt;a href="http://jonasforsberg.se/tag/no-photo"&gt;#no-photo&lt;/a&gt;
        
        &lt;/p&gt;
      </description>
    </item>
    

  </channel> 
</rss>
