<?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>Jumpingmushroom &#187; TV-Show</title>
	<atom:link href="http://www.jumpingmushroom.com/tag/tv-show/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jumpingmushroom.com</link>
	<description></description>
	<lastBuildDate>Sat, 25 Jun 2011 21:59:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Instant entertainment</title>
		<link>http://www.jumpingmushroom.com/2010/03/22/instant-entertainment/</link>
		<comments>http://www.jumpingmushroom.com/2010/03/22/instant-entertainment/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:10:31 +0000</pubDate>
		<dc:creator>johnny</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[flexget]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mediacenter]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[TV-Show]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://jumpingmushroom.com/?p=859</guid>
		<description><![CDATA[Ever wondered if there&#8217;s a way to have all the TV-Shows you would ever want directly delivered to your media centre as soon as it&#8217;s available online? Over the last years I&#8217;ve experimented with several ways of automatic download, sorting and management of my shows, and I think I have found a setup that works [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered if there&#8217;s a way to have all the TV-Shows you would ever want directly delivered to your media centre as soon as it&#8217;s available online? Over the last years I&#8217;ve experimented with several ways of automatic download, sorting and management of my shows, and I think I have found a setup that works according to my needs.</p>
<p><span id="more-859"></span></p>
<p>Here&#8217;s what I currently have in my mediacenter setup:<br />
- <a href="http://www.asrock.com/nettop/spec/ion%20330.asp">Asrock NetTop ION330</a><br />
- <a href="http://www.amazon.com/Western-Digital-Network-Attached-WDH1NC10000N/dp/B001RB1QWW/ref=dp_cp_ob_e_title_0">Western Digital MyBook World Edition II</a></p>
<p>Configurations:<br />
<strong>Western Digital MyBook World edition II:</strong><br />
This box has been configured in the usual way you would set up up according to the manual, however I disabled samba and ftp support, and enabled NFS for speed. Also, I disabled the built in remote management system, and Twonkymedia for speed. Basically, what you want to do is to disable as many services as possible, and leaving the disk as strictly a remote storage disk. I can highly recommend reading up on this site <a href="http://mybookworld.wikidot.com/">http://mybookworld.wikidot.com/</a> They have a lot of useful information regarding this box and how to hack it to do just about everything. I did earlier run this box as a seed-box, but unfortunately it doesn&#8217;t handle high speeds (100mbit) connections very well on torrents.</p>
<p><strong>Asrock NetTop ION330:</strong></p>
<p>This<strong> </strong>box has a lot of configurations, both for my media centre functions, and for my personal projects, but here&#8217;s the basics needed to have a fully functional, automatic downloading, sorting and renaming media box.</p>
<p>The system itself: XBMC LiveCD &#8211; For me, this is by far the best media center known to man. Works flawlessly on the box and runs GNU/Linux (Ubuntu). Download the ISO image from <a href="http://sourceforge.net/projects/xbmc/files/XBMC%20Live/Camelot%20-%209.11/xbmc-9.11-live-repack.zip/download">here</a>, burn to a CD and boot up. Follow the installation instructions, and voila!</p>
<p>Now for the nitty gritty configurations and script working in the background and making everything happen.</p>
<p>First of all, you will have to set up <a href="http://www.flexget.com">FlexGet</a> . I have written a complete guide on how to do this <a href="http://jumpingmushroom.com/2009/08/20/getting-the-latest-with-flexget">here</a>.</p>
<p>Then, you will have to install an application to start these downloads with, like <a href="http://libtorrent.rakshasa.no">rTorrent</a>. This is easiest done by running the following command:</p>
<pre class="brush: bash">user@XBMCLive:~$ sudo apt-get install rtorrent</pre>
<p>Then there&#8217;s the configuration:<br />
<em>rtorrent.rc</em></p>
<pre class="brush: bash">max_peers = 131

max_uploads = 11

upload_rate = 2000

directory = /your/path/to/downloading

session=/your/path/to/sessions

schedule = watch_directory,5,5,load_start=/your/watchfolder/*.torrent
schedule = tied_directory,5,5,start_tied=/your/watchfolder/*.torrent
schedule = untied_directory,5,5,stop_untied=/your/watchfolder/*.torrent

schedule = low_diskspace,5,60,close_low_diskspace=100M

execute_log = /your/logfolder/rtorrent.log

port_range = 55556-55560

port_random = no

check_hash = no

use_udp_trackers = yes

encryption = allow_incoming,enable_retry,prefer_plaintext

dht = auto

dht_port = 6881

peer_exchange = yes

on_finished = seed,"execute=mv,-u,$d.get_base_path=,/your/path/to/seeding/"

schedule = ratio,60,60,"close_on_ratio=200"

on_close = move_fin,"execute=mv,-u,$d.get_base_path=,/your/path/to/completed//"

on_close = remove_fin,"execute=rm,$d.get_tied_to_file="</pre>
<p>Here you need to change the following values to suit your needs:</p>
<ul>
<li><em>upload_rate</em> &#8211; Max upload rate for all torrents combined.</li>
<li> <em>directory</em> &#8211; path to where your downloads will be when the download is running.</li>
<li><em>watch/tied/untied_directory</em> &#8211; where you will be placing your .torrent files you want to start.</li>
<li><em>execute_log</em> &#8211; Path to the logfile for all executed actions.</li>
<li> <em>port_range</em> &#8211; Ports you want the torrents to be connectable to. Remember to open these ports on your router/firewall!</li>
<li><em>on_finished</em> &#8211; Path to where you want files to be stored when they&#8217;re seeding.</li>
<li> <em>ratio</em> &#8211; At what share ratio you want your torrent to be stopped. Default is 200%.</li>
<li> <em>on_close</em> &#8211; The directory you want the files to be stored once finished downloading.</li>
</ul>
<p>Once you have this up and running in a screen, the next is to configure two scripts that run as a cron job every day and rename + sort the downloads once they arrive in the completed folder.</p>
<p><strong>Sorting</strong><br />
We want to sort our downloads into neat folders so our XBMC system understand what kind of shows we have. The most important part for this script to work is the directory structure. It must be set up like this:</p>
<pre class="brush: bash">/your/path/Show Name/Season X/</pre>
<p>And here&#8217;s the script that is going to do the job of sorting:<br />
<em>mvfiles.sh</em></p>
<pre class="brush: bash">#!/bin/bash

# specify the base directory to move to
fs="/your/path/to/TV"

# specify the base directory to search
base="/your/path/to/completed/"
for file in `find "$base" | replace " " "~" | egrep 'mkv|avi'`; do

        file=`echo $file | replace "~" " "`

        show=`basename "$file" | grep -io "[^\/]*S[0-9]\{1,2\}" | grep -io ".*[\._ -]" | replace "." " " "_" " " "-" " " `
        while [ -n "`echo "$show" | grep \" \{2\}\"`" ]; do
                show=`echo "$show" | replace "  " " "`
        done

        show=`echo "\`expr "$show" : '[ ]*\(.*\)[ *]$'\`"`
        #echo "\"$show\""
        snum=`basename "$file" | grep -io "S[0-9]\{1,2\}" | grep -io "[1-9]\?[1-9]"`
        season="Season $snum"
        #echo $season

        show=`ls "$fs" | grep -io "$show"`
        #echo "DIR: \"$show\""

        dest=$fs
        if [ -d "$fs/$show/$season/" ]; then
                dest="$fs/$show/$season/"
        else
                if [ -d "$fs/$show/Season$snum" ]; then
                        dest="$fs/$show/Season$snum/"
                else
                        if [ -d "$fs/$show/" ]; then
                                dest=""
                        fi
                fi
        fi

        if [ "$dest" != "" ]; then
                #echo "mv -v \"$file\" \"$dest\""
                mv -v "$file" "$dest"
                wait `pidof mv`
        fi

done

# Delete all .nfo, .srt, .txt files
find "$base" -name *.nfo -exec rm {} \;
# find "$base" -name *.srt -exec rm {} \;
find "$base" -name *.txt -exec rm {} \;

# Delete all empty folders (recursively)
find "$base" -depth -mindepth 1 -type d -empty -exec rmdir {} \;

exit 0;</pre>
<p>As you can see, it works with simple regexp and Linux commands, and after a couple of weeks testing, it does the job very well. If it doesn&#8217;t recognize the name, it leaves the file alone.</p>
<p>Just to note, I did not write this script, unfortunately I do not know who did, but if you&#8217;re out there, thanks! I spent several months trying to find a way to do this, and this script saved me from having to study bash and write it from scratch.</p>
<p><strong>Renaming</strong><br />
In order to rename the files to names more fitting the naming conventions of XBMC, I made a very simple bash script that uses a python script  called <a href="http://github.com/dbr/tvdb_api">tvnamer</a>. This script checks with <a href="http://www.thetvdb.com">TheTVdb.com</a> and renames the file according to what is specified there. Usually this will be <em>&#8220;Show name [01x01] Episode name.ext&#8221;</em> and makes it very easy for XBMC to recognize the show.<br />
<em>renameTV.sh</em></p>
<pre class="brush: bash">#!/bin/bash

/usr/local/bin/tvnamer -b -r /your/path/to/TV &gt; /dev/null 2&gt;&amp;1</pre>
<p>Be aware though, that this script goes through the entire TV folder and renames any episode there without interaction. If you don&#8217;t want this, you might want to figure out another way to set this up.</p>
<p>And last but not least, how to run these scripts automatically. I simply set up a cron job for each one like this, also, I did add a third line that updates the XBMC library automatically once everything is sorted and renamed, so we really have everything ready when we&#8217;re back home.</p>
<pre class="brush: bash">
0 15 * * * sh /your/path/to/scripts/mvfiles.sh &gt;&gt; /var/log/mvfiles.log
0 16 * * * sh /your/path/to/scripts/renameTV.sh
0 17 * * * curl --get "http://localhost:8080/xbmcCmds/xbmcHttp?command=ExecBuiltIn&amp;parameter=XBMC.updatelibrary(video) >> /var/log/xbmc-update.log
"</pre>
<p>This runs the first script that moves files at 15:00, and the renaming script at 16:00. Which means when I get home from work at 18:00, everything will be sorted and ready for me. Now be aware, this works great for me,  because I live in Scandinavia, which means most shows I&#8217;m watching come out in the middle of the night here, and gets downloaded during the early hours of the day. This means that by lunch, the files are already to sort.<br />
This might however be different for you if you live in America.</p>
<p>Hope this guide was useful for you! And please leave feedback if you have any questions.</p>
<p><strong>Updated:</strong> Added cron job for updating the XBMC library automatically once everything is sorted and renamed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmushroom.com/2010/03/22/instant-entertainment/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting the latest with Flexget</title>
		<link>http://www.jumpingmushroom.com/2009/08/20/getting-the-latest-with-flexget/</link>
		<comments>http://www.jumpingmushroom.com/2009/08/20/getting-the-latest-with-flexget/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 11:42:16 +0000</pubDate>
		<dc:creator>johnny</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[flexget]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[TV-Show]]></category>

		<guid isPermaLink="false">http://jumpingmushroom.com/?p=662</guid>
		<description><![CDATA[Seeing as I&#8217;m slightly lazy, I wanted to find a way to automatically download all TV-Series and movies, without any human interaction. After searching around a bit, I stumbled upon a python script called Flexget. The easy explanation for what kind of script this is the following: You specify where to download from, what to [...]]]></description>
			<content:encoded><![CDATA[<p>Seeing as I&#8217;m slightly lazy, I wanted to find a way to automatically download all TV-Series and movies, without any human interaction.</p>
<p>After searching around a bit, I stumbled upon a <a href="http://www.python.org/">python</a> script called <a href="http://flexget.com/">Flexget</a>. The easy explanation for what kind of script this is the following:</p>
<p><strong>You specify where to download from, what to download, and where to download it to.</strong></p>
<p>The long explanation all tough, is so much more interesting!</p>
<p>Here is a config file I have compiled together:</p>
<pre class="brush: yaml">global:
  statistics:
   file: /path/to/your/wwwroot

  email:
    from: flexget@myserver.com
    to: your@mailaddress.com
    smtp_host: mail.mailaddress.com
    smtp_port: 25
    smtp_login: true
    smtp_username: your@mailaddress.com
    smtp_password: yourpassword123

feeds:
  tv-shows:
    rss: http://www.website.com/rssfeed.php
    series:
      - True Blood:
          timeframe:
            hours: 6
            enough: 720p
      - Eureka:
          timeframe:
            hours: 12
            enough: 720p
      - Family Guy
      - Dirty Jobs

    download: /path/to/torrent/watchdir

  movies:
    rss: http://www.website.com/rssfeed.php
    limit_new: 3
    imdb:
      min_score: 6.2
      min_votes: 6000
      min_year: 1997
    download: /path/to/torrent/watchdir

  flexget:
    interval: 3 days
    html: http://download.flexget.com/0.9/
    regexp:
      accept:
        - flexget.*zip
    download: /root/fgreleases

  diggnation:
    interval: 3 days
    rss: http://revision3.com/diggnation/feed/MP4-hd30
    limit_new: 1
    regexp:
      accept:
        - diggnation*.mp4
    exec: wget -b -P /path/to/podcast/directory %(url)s</pre>
<p>And here is an explanation on what each part does:</p>
<p>First part:</p>
<pre class="brush: yaml">global:
  statistics:
   file: /path/to/your/wwwroot</pre>
<p>Basically, this part sets all the global settings of the entire config file. in this section I&#8217;ve only set up that statistics for all downloads should be parsed to an index file on my box. Here you will see what kind of sites that generate the most results.</p>
<p>Second part:</p>
<pre class="brush: yaml">  email:
    from: flexget@myserver.com
    to: your@mailaddress.com
    smtp_host: mail.mailaddress.com
    smtp_port: 25
    smtp_login: true
    smtp_username: your@mailaddress.com
    smtp_password: yourpassword123</pre>
<p>This part is very cool. It&#8217;s for setting up so you get a mail as soon as a new show/movie/whatever is downloaded. Combine this with an iPhone and a push mail service, and you got yourself an instant notification as soon as your favorite show has started downloading. Also, If you combine this with the <a href="http://en.wikipedia.org/wiki/Deluge">Deluge</a> <a href="http://flexget.com/wiki/Plugins/deluge">plugin in Flexget</a>, you can set up Deluge to mail you as soon as the download has finished!</p>
<p>Third part:</p>
<pre class="brush: yaml">feeds:
  tv-shows:
    rss: http://www.website.com/rssfeed.php
    series:
      - True Blood:
          timeframe:
            hours: 6
            enough: 720p
      - Eureka:
          timeframe:
            hours: 12
            enough: 720p
      - Family Guy
      - Dirty Jobs
    download: /path/to/torrent/watchdir</pre>
<p>Now for the things that really matter. The downloads. Here I have specified the following values:</p>
<ul>
<li>feeds: &#8211; This indicates that the following list will consist of rss feeds</li>
<li>tv-shows: &#8211; This just tells flexget that the feed we are about to parse will consist of tv-shows. It will then make it easier for flexget to understand how to parse the names, focus on season and episode numbers and so on.</li>
<li>rss: &#8211; Here we just specify the rss feed for a place to get the latest tv-shows.</li>
<li>series: &#8211; This part is the fun part. Here you just write the name of the show you want to get. There are no real rules needed to specify, no regexp to focus on, just write the name, that&#8217;s it. Just remember to write it as it&#8217;s shown in the feed, otherwise flexget will get confused.</li>
<li>timeframe: &#8211; Here we want to specifiy some extra settings. The timeframe value can make use of the settings &#8220;hours&#8221; and &#8220;enough&#8221;. This makes it so that IF the 720p version of a release has not been displayed within 6 hours, the SD (Standard definition) version should be downloaded.</li>
<li>download: Here is where the .torrent file will get downloaded. After this, the torrent client (in my case <a href="http://www.transmissionbt.com/">transmission</a>) will take over and start downloading.</li>
</ul>
<p>Fourth part:</p>
<pre class="brush: yaml">  movies:
    rss: http://www.website.com/rssfeed.php
    limit_new: 3
    imdb:
      min_score: 6.2
      min_votes: 6000
      min_year: 1997
    download: /path/to/torrent/watchdir</pre>
<p>This second part is for downloading the latest HD movie releases, which in turn gets checked through <a href="http://www.imdb.com">IMDB</a> to check the rating (I&#8217;ll explain this later).</p>
<ul type="circle">
<li>movies: &#8211; This just tells flexget that we are now dealing with movies, not tv-shows.</li>
<li>rss: &#8211; Same as above, the rss feed for a site where you are to download from.</li>
<li>limit_new: 1 &#8211; I had to add this in order to not kill of my box completely. Basically it only checks one link each time the cron job is run (which is once every hour).</li>
<li>imdb: &#8211; Here we tell flexget that the following will be values used to check towards imdb.</li>
<li>min_score: 6.2 &#8211; We don&#8217;t want crap movies in our archives, so here we tell flexget to only download movies with a rating ABOVE 6.2 on IMDB.</li>
<li>min_votes: 6000 &#8211; We also don&#8217;t want the script to download movies where there are only 100 votes (which is mostly the actors and cast of the movie) and have received a high initial rating.</li>
<li>download: &#8211; Same as above, download path is to the watch-dir for your torrent client.</li>
</ul>
<p>The third part:</p>
<pre class="brush: yaml">  flexget:
    interval: 3 days
    html: http://download.flexget.com/0.9/
    regexp:
      accept:
        - flexget.*zip
    download: /root/fgreleases</pre>
<p>We of course want to keep up with the latest updates of the script. There might be changes to <a href="http://www.imdb.com">IMDB</a> that require the script to be updated, or new features which we can take use of. That&#8217;s where this part comes in.</p>
<ul>
<li>flexget: &#8211; Loads the flexget module, which is made specifically for downloading latest updates of flexget.</li>
<li>interval: 3 days &#8211; Check every 3 days for new updates.</li>
<li>html: &#8211; Seeing as there is no rss feed for releases, we have to rely on html parsing. That&#8217;s where this module comes in.</li>
<li>patterns: &#8211; Here we have to use regexp in order to dive through the html code, and finding the file we need.</li>
<li>download: &#8211; Aaand where to download the release. Here we just dump it in a folder on our home path.</li>
</ul>
<p>The last part:</p>
<pre class="brush: yaml">  diggnation:
    interval: 3 days
    rss: http://revision3.com/diggnation/feed/MP4-hd30
    limit_new: 1
    regexp:
      accept:
        - diggnation*.mp4
    exec: wget -b -P /path/to/podcast/directory %(url)s</pre>
<p>I watch a lot of <a href="http://www.diggnation.com">Diggnation</a>, so naturally it would be cool to have the latest episodes waiting for me on my box when they are available. This part simply uses more or less the same functions as the flexget section, except it also specifies that it should only download the newest link found. I have also set it to use wget to download it, and not flexgets own get function, as 1. It takes up a lot of load, and 2. The download can last for quite some time, which in turn can make the script start running in several instances.</p>
<p>So that&#8217;s it! I really love this script and how versatile it is. If you wish to read more about using flexget and how to modify it to your needs:</p>
<p>Configuration samples: <a href="http://flexget.com/wiki/CookBook">http://flexget.com/wiki/CookBook</a></p>
<p>Usage for various plugins: <a href="http://flexget.com/wiki/Modules">http://flexget.com/wiki/Modules</a></p>
<p><strong>Last edited: 10/11/2009 at 14:15</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmushroom.com/2009/08/20/getting-the-latest-with-flexget/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Merry Christmas!</title>
		<link>http://www.jumpingmushroom.com/2007/12/25/merry-christmas/</link>
		<comments>http://www.jumpingmushroom.com/2007/12/25/merry-christmas/#comments</comments>
		<pubDate>Tue, 25 Dec 2007 00:55:00 +0000</pubDate>
		<dc:creator>johnny</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[bliss]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[holliday]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[TV-Show]]></category>

		<guid isPermaLink="false">http://jumpingmushroom.wordpress.com/2007/12/25/merry-christmas/</guid>
		<description><![CDATA[It&#8217;s finally Christmas! (well technically it&#8217;s past Christmas here in Norway. You Brits or Americans might celebrate on the morning of the 25th, but not us, oh no. We&#8217;re impatient :p).So after being at friends all day yesterday (the 23rd that is), eating pizza, snacks, having sodas, watching movies and playing WII, I was in [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s finally Christmas! (well technically it&#8217;s past Christmas here in Norway. You Brits or Americans might celebrate on the morning of the 25th, but not us, oh no. We&#8217;re impatient :p).<br />So after being at friends all day yesterday (the 23rd that is), eating pizza, snacks, having sodas, watching movies and playing WII, I was in bed at around 4 after watching the last episode of Heroes (OMGLOLFFS! Damn cliffhangers and their cliffhangerness! I want season 3 NOW!&#8230;) and reading a chapter in my book.</p>
<p>Today I got up at around one, had a good long shower and fixed myself up for the evening to come. Mom had made rice porridge which is custom in our family and of course the almond was in place in a random bowl of porridge (well it was really a peanut, seeing as mom didn&#8217;t have any almonds, but who&#8217;s picky). And of course, after just two bites, it was mine! All mine :D And the reward, a marzipan pig and a scratch ticket. Sadly I didn&#8217;t win, but it was fun non the less.<br />After watching the obligatory Christmas movies, like the <a href="http://www.youtube.com/watch?v=9Q13XS_R2mU">Disney Christmas</a>, <a href="http://www.imdb.com/title/tt0033134/">Tante Pose</a> and of course the <a href="http://www.youtube.com/watch?v=uSeuTdd_Ado">butler and the countess</a> which is also a tradition to watch here in Norway., my grandfather shows up and it&#8217;s time for dinner.<br />As is tradition in our family, we have rib for Christmas, and rice pudding. However this year the rib wasn&#8217;t particularly good. It was way too much fat on it and was just sickening if you ate too much. The meaty parts were ok though, but I&#8217;d really wish it had been a bit better. Still, I ate until I couldn&#8217;t eat any more, so I guess it wasn&#8217;t that bad :p</p>
<p>After relaxing a bit, trying to get the rib to settle, it was of course time for the coffee and cakes. Man we eat allot on Christmas&#8230;..Anyway, after a few sips, my brother can&#8217;t stop nagging about opening presents, so my mom gives the go. He runs for the presents and starts throwing them to everyone as fast as possible.</p>
<p>I got quite allot of stuff actually, especially seeing as my age kind of makes people stop buying presents for me. Being old sucks&#8230;</p>
<p>Anyway, this is what I got for Christmas:<br />- 3000kr.<br />- A warm wool sweater.<br />- wool underwear.<br />- <a href="http://www.imdb.com/title/tt0064757/">007 &#8211; On her majesty&#8217;s secret service</a>.<br />- A book called <a href="http://no.wikipedia.org/wiki/Dragel%C3%B8peren">&#8220;Drageløperen&#8221;</a> or <a href="http://en.wikipedia.org/wiki/The_Kite_Runner">&#8220;The Kite runner&#8221;</a> in English.<br />- A couple of dvds my brother made with various shows on them.<br />- And the best present of the year in my opinion:</p>
<p>A very snazzy teapot with glasses :D</p>
<p><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1576-791951.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1576-791369.JPG" alt="" /></a></p>
<p>I also got a tea called &#8220;Høstflørt&#8221; (Fall flirt) with them. I&#8217;m sure Alina will love them as well, as she&#8217;s just as much a tea drinker as I am.</p>
<p>Now I&#8217;d just like to post a few pictures I&#8217;ve taken in order to properly give that Christmas feel.</p>
<p>This is our Christmas tree, for being the first time ever where I wasn&#8217;t the one cordinating the decorations on the Christmas tree, I think it turned out pretty good.</p>
<p><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1560-724525.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1560-723979.JPG" alt="" /></a></p>
<p>This is a bowl of nuts, go figure :p</p>
<p><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1572-705900.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1572-705428.JPG" alt="" /></a></p>
<p>And last, but not least, a crackling fire (all tough taken with a very slow shutter speed, so it looks kind of fancy and purple-like)</p>
<p><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1583-735055.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1583-734419.JPG" alt="" /></a></p>
<p>Tomorrow is the big drinking day here in Skien, so I&#8217;m going over to a friends house with around 13-14 people and will no doubt drink until I can&#8217;t see straight, then of course head out on town and drink some more. I am however not looking forward to walking home afterwards, but I&#8217;ll probably manage.<br />Hopefully I&#8217;ll have enough to drink on though, I&#8217;m getting some beers from my stepdad, but that&#8217;s it really. I&#8217;ll probably mooch a bit of my friends though, some vodka or something, so there will no doubt be enough intoxication ;)</p>
<p>Well, it&#8217;s due time for some sleeping now. Even though it&#8217;s just as late as it was yesterday. Man I sure hope I get my sleeping patterns adjusted by the time I&#8217;m heading back to Trondheim, otherwise I&#8217;ll have a hard time getting to work.</p>
<p>Good night, and Merry Christmas to you all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmushroom.com/2007/12/25/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A turn of patterns</title>
		<link>http://www.jumpingmushroom.com/2007/12/23/a-turn-of-patterns/</link>
		<comments>http://www.jumpingmushroom.com/2007/12/23/a-turn-of-patterns/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 03:07:00 +0000</pubDate>
		<dc:creator>johnny</dc:creator>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[bliss]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[TV-Show]]></category>

		<guid isPermaLink="false">http://jumpingmushroom.wordpress.com/2007/12/23/a-turn-of-patterns/</guid>
		<description><![CDATA[As you might understand by the date on this post, I&#8217;m up quite late. And I blame it all on Heroes to be honest. Damn that show is entertaining, and seeing as every episode has a cliffhanger on the end, I just can&#8217;t not watch the next episode. Almost done now though, only one episode [...]]]></description>
			<content:encoded><![CDATA[<p>As you might understand by the date on this post, I&#8217;m up quite late. And I blame it all on <a href="http://en.wikipedia.org/wiki/Heroes_%28TV_series%29">Heroes</a> to be honest. Damn that show is entertaining, and seeing as every episode has a cliffhanger on the end, I just can&#8217;t not watch the next episode. Almost done now though, only one episode left.</p>
<p>However, I&#8217;d like to just write a bit about how my day with dad turned out. Now to be fair, I was rather nervous before meeting up with him at a bar in <a href="http://www.porsgrunn.kommune.no/">Porsgrunn</a>. It&#8217;s been so long since I last saw him, and I didn&#8217;t quite know how he would be, or react to me wanting to meet up with him, after 2 years of no contact. However, it turned out very good I must say. We got along great, had a couple of beers and talked some more, and before we knew it, 2 hours had passed. And actually, we were even photographed by the local paper for a column called &#8220;På by&#8217;n&#8221;.</p>
<p><a href="http://www.jumpingmushroom.com/uploaded_images/meanddad-759876.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/meanddad-759872.jpg" alt="" /></a></p>
<p>I was very happy that we had such a good time, and even more that my kid sister, Marie, really wanted to meet up with me after Christmas and spend the day together. Hopefully we&#8217;ll all have a bit better relationship from now on, and at least keep in touch now and then. It made me very happy, and I went home with a smile on my face that day.</p>
<p>As for today (or as some claim &#8220;yesterday&#8221;) there haven&#8217;t been much going on. Most of my day I&#8217;ve spent at home keeping the fire burning and watching more Heroes. I&#8217;m almost done with the season and it pains me to think there&#8217;s no more until the next season starts airing. I am however looking forward to it with great pleasure.<br />I have also managed to get a proper upload system up and running. One that enables me to upload and share files quickly, either by link or email, and it also keeps track on how many downloads each file has had. And a very crude and simple script that gives a more graphic representation of how long the upload takes, how fast it&#8217;s going and how much there is left. Both will be available at my <a href="http://upload.jumpingmushroom.com" class="broken_link">dump site</a> shortly. If anyone require a place to quickly upload a file and share it among friends, don&#8217;t be afraid to use it. The site is pruned regularly and storage space is not an issue.</p>
<p>I also managed to take a couple of pictures of the incredible winter we&#8217;re having down here. It&#8217;s simply mesmerizing to go outside and see all the snow crystals covering everything.</p>
<p><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1521-724169.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1521-723607.JPG" alt="" /></a><br /><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1537-738529.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1537-737972.JPG" alt="" /></a><br /><a href="http://www.jumpingmushroom.com/uploaded_images/IMG_1540-721784.JPG"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://www.jumpingmushroom.com/uploaded_images/IMG_1540-721325.JPG" alt="" /></a></p>
<p>And just as a small tidbit at the end. I highly recommend you go check out <a href="http://www.jibjab.com/">JibJab.com</a>. It&#8217;s a page where you put yourself into movie clips. I had a great time and laughed myself silly watching my friends jumping around :D</p>
<p>And just so it&#8217;s been said, yes I miss Alina an awfully lot. We call every day several times a day, and proclaim our longing for each other. I can hardly wait to get back up there and meet her yet again. I love you darling! &lt;3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmushroom.com/2007/12/23/a-turn-of-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southern update</title>
		<link>http://www.jumpingmushroom.com/2007/12/21/southern-update/</link>
		<comments>http://www.jumpingmushroom.com/2007/12/21/southern-update/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 01:38:00 +0000</pubDate>
		<dc:creator>johnny</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[sleep]]></category>
		<category><![CDATA[TV-Show]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://jumpingmushroom.wordpress.com/2007/12/21/southern-update/</guid>
		<description><![CDATA[It&#8217;s late, I know, but my sleeping patterns have been somewhat skewed during the past couple of days. Mostly due to my own silliness, but also due to drinking too much caffeine before bedtime.Anyway, what&#8217;s been going on down here you might say (or you might not care, but read this anyway just to pass [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s late, I know, but my sleeping patterns have been somewhat skewed during the past couple of days. Mostly due to my own silliness, but also due to drinking too much caffeine before bedtime.<br />Anyway, what&#8217;s been going on down here you might say (or you might not care, but read this anyway just to pass time, what do I know). I came down here at around 8:30 on Tuesday, and since then most of my time has been passed inside, due to an extreme cold outside. Or, well cold in my sense of the word. The past days have been at around -7 to a -12 degrees, which is not too bad in itself, but coming from +2 to around -2 in Trondheim, It&#8217;s a somewhat major change.<br />Today I went for a walk though, trying to get some Christmas gifts for friends back in Trondheim, a gift for my girlfriend and of course something for the family. Albeit, getting something for my mother and father seems somewhat troublesome. Mostly due to the fact that they have everything, and don&#8217;t seem to wish for much (all tough not entirely true, my mom wish for a pair of skis and a cellphone, which is a bit over my budget).<br />Hopefully I will acquire something tomorrow that will be satisfactory.</p>
<p>And I just realized I wrote this post in quite an &#8220;posh&#8221; type of style. I do believe the narrator in Heroes is affecting me&#8230;.. a show of which I&#8217;m really enjoying these long nights. I have seen about 5 episodes of season 2 now, and it&#8217;s really catching up. I wish I could see everything in one stretch, but then sleep would be out of the question, and I do want to at least see sunshine now and then.</p>
<p>Which reminds me, I really wanted to go out and take some pictures today. There was a mist laying low across Skien today,and every leave, branch and tree was covered in snow crystals, so everything was like a gigantic fairyland. I did however not get out until dusk, and by then there was not much to take pictures of. I do however hope that it will be just as pretty tomorrow, and maybe I&#8217;ll get some good shots. I bought this thing for my camera today see, that holds my camera steady, so I might get some really crisp shots.</p>
<p>Now however, I think I should go to bed. I&#8217;m starting to get pretty tired and I&#8217;m rambling on too much about non-essential information. Ta ta!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jumpingmushroom.com/2007/12/21/southern-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

