<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl" media="screen"?>
<rss version="2.0" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">
   <channel>
      <language>en</language>
      <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/uk/</creativeCommons:license>
            <pubDate>Thu, 1 Jan 1970 00:00:00 +0000</pubDate>
      <lastBuildDate>Thu, 1 Jan 1970 00:00:00 +0000</lastBuildDate>
            <ttl>60</ttl>
      <docs>http://www.audioscrobbler.net/data/webservices</docs>      <title>dahnielson's Last.fm Journal</title>
      <link>http://www.last.fm/user/dahnielson/journal</link>
      <description>The Last.fm journal for dahnielson.
        Last.fm journals are a place to talk about all things music.</description>
      <item>
         <title>Biennial Celebration</title>
         <link>http://www.last.fm/user/dahnielson/journal/2008/04/08/8nwq_biennial_celebration</link>
         <pubDate>Tue, 8 Apr 2008 19:58:29 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2008/04/08/8nwq_biennial_celebration</guid>
         <description><![CDATA[<div class="bbcode">Wow. I just realized that I've been a last.fm member for two years in addition to scrobbling my 20000th track (<a title="The Beatles &ndash; A Day in the Life" href="http://www.last.fm/music/The+Beatles/_/A+Day+in+the+Life" class="bbcode_track">A Day in the Life</a>) today.</div>]]></description>
               </item>
      <item>
         <title>Last.fm Radio Protocol</title>
         <link>http://www.last.fm/user/dahnielson/journal/2007/08/07/8nrm_last.fm_radio_protocol</link>
         <pubDate>Tue, 7 Aug 2007 22:00:36 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2007/08/07/8nrm_last.fm_radio_protocol</guid>
         <description><![CDATA[<div class="bbcode"><em>This unofficial information is distributed in the hope that it will be useful, but without any warranty; without even implied warranty of merchantability or fitness for a particular purpose.</em><br /><br />(Please also read the informative comments left by others below.)<br /><br /><span style="font-size:12pt"><strong>Protocol Stages</strong></span><br /><br />The protocol consists of four stages:<br /><br /><em>Handshake</em><br /><ul><li>The initial negotiation with the Last.fm server to establish authentication and connection details for the session.</li></ul><br /><em>Adjustment</em><br /><ul><li>Selection of the Last.fm radio station to be played.</li></ul><br /><em>Playlist</em><br /><ul><li>Retrieval of the playlist containing stream URIs.</li></ul><br /><em>Scrobbling</em><br /><ul><li>Post track data to Last.fm and optionaly rate it.</li></ul><br /><br /><span style="font-size:12pt"><strong>The Handshake</strong></span><br /><br />The handshake consist of a GET request to <a href="http://ws.audioscrobbler.com:80/" rel="nofollow">http://ws.audioscrobbler.com:80/</a>.<br /><br />The request string is as follows:<br /><br /><span class="quote"><a href="http://ws.audioscrobbler.com/radio/handshake.php?" rel="nofollow">http://ws.audioscrobbler.com/radio/handshake.php?</a><br />username=&lt;username&gt;&amp;passwordmd5=&lt;password&gt;</span><br />Where:<br /><br /><span class="quote">username</span><br />Is the users last.fm username.<br /><br /><span class="quote">password</span><br />Is a 32-byte ASCII hexadecimal representation of the MD5 hash of the users last.fm password.<br /><br /><strong>Handshake Response</strong><br /><br />The body of the server response consists of a series of \n (ASCII 10) terminated lines. A typical server response will be as follows:<br /><br /><span class="quote">session=13fd57300995f91de0ca9e122c4d35af<br />stream_url=http://87.117.229.85:80/last.mp3?Session=13fd57300995f91de0ca9e122c4d35af<br />subscriber=1<br />framehack=0<br />base_url=ws.audioscrobbler.com<br />base_path=/radio<br />info_message=<br />fingerprint_upload_url=http://ws.audioscrobbler.com/fingerprint/upload.php</span><br />The response consist of a series of key/value pairs:<br /><br /><span class="quote">session</span><br />Is the session ID token. &quot;FAILED&quot; if the handshake failed.<br /><br /><span class="quote">stream_url</span><br />Is a URL to the old-style stream. It's a regular 128 kbit/s 44.1 kHz MPEG-1 Layer 3 stream with the four character string &quot;SYNC&quot; spliced in between tracks to indicate a song change. The stream will probably be deprecated in the near future in favor of streams pointed to by XSPF playlists.<br /><br /><span class="quote">subscriber</span><br />Indicates whether the user is a subscriber to last.fm or not. 1 = True, 0 = False.<br /><br /><span class="quote">framehack</span><br />Unsure.<br /><br /><span class="quote">base_url</span><br />Is the base URL used to assemble URLs for functions like adjust and control.<br /><br /><span class="quote">base_path</span><br />Is the base path used to assemble URLs for functions like adjust and control.<br /><br /><span class="quote">info_message</span><br />Informative message. Usually empty.<br /><br /><span class="quote">fingerprint_upload_url</span><br />Unsure.<br /><br /><span class="quote">msg</span><br />Is an error message if the session failed, otherwise not part of the response.<br /><br /><span style="font-size:12pt"><strong>The Adjustment</strong></span><br /><br />To listen to last.fm radio the client need to select what station should be played.<br /><br />The tuning consist of a GET request to <a href="http://ws.audioscrobbler.com:80/" rel="nofollow">http://ws.audioscrobbler.com:80/</a>.<br /><br />The request string is as follows:<br /><br /><span class="quote"><a href="http://ws.audioscrobbler.com/radio/adjust.php?" rel="nofollow">http://ws.audioscrobbler.com/radio/adjust.php?</a><br />session=&lt;session-token&gt;&amp;url=&lt;lastfm-uri&gt;</span><br />Where:<br /><br /><span class="quote">session-token</span><br />Is the session ID token in the handshake server response.<br /><br /><span class="quote">lastfm-uri</span><br />Is a valid last.fm radio URI. For example: lastfm://globaltags/jazz.<br /><br /><strong>Adjust Response</strong><br /><br />The body of the server response consists of a series of \n (ASCII 10) terminated lines. A typical server response will be as follows:<br /><br /><span class="quote">response=OK<br />url=lastfm://globaltags/jazz</span><br />The response consist of a series of key/value pairs:<br /><br /><span class="quote">response</span><br />Is &quot;OK&quot; if the request succeded, otherwise &quot;FAILED&quot;.<br /><br /><span class="quote">url</span><br />Is the last.fm radio URI.<br /><br /><span class="quote">error</span><br />Is the error code if the request failed.<br /><br /><span style="font-size:12pt"><strong>The Playlist</strong></span><br /><br />As mentioned in 'The Handshake' section, the old-style stream is assumed to be deprecated and replaced by streams pointed to by a XSPF playlist.<br /><br />Playlist retrieval consist of a GET request to <a href="http://ws.audioscrobbler.com:80/" rel="nofollow">http://ws.audioscrobbler.com:80/</a>.<br /><br />The request string is as follows:<br /><br /><span class="quote"><a href="http://ws.audioscrobbler.com/radio/xspf.php?" rel="nofollow">http://ws.audioscrobbler.com/radio/xspf.php?</a><br />sk=&lt;session-token&gt;&amp;dicovery=&lt;discovery-mode&gt;&amp;desktop=&lt;version&gt;</span><br />Where:<br /><br /><span class="quote">session-token</span><br />Is the session ID token in the handshake server response.<br /><br /><span class="quote">discovery-mode</span><br />Sets the discovery mode. 1 = True, 0 = False. For more info see <a href="http://www.last.fm/help/faq/?category=Radio#300">http://www.last.fm/help/faq/?category=Radio#300</a><br /><br /><span class="quote">version</span><br />A value like '1' is required or nonsense will be returned in the response.<br /><br /><strong>Playlist Response</strong><br /><br />The body of the server response consists of a <a href="http://xspf.org/" rel="nofollow">XML Shareable Playlist Format (XSPF)</a> formated playlist with zero or more tracks. Example:<br /><br /><span class="quote"><span style="font-size:9pt">&lt;playlist version=&quot;1&quot; xmlns:lastfm=&quot;<a href="http://www.audioscrobbler.net/dtd/xspf-lastfm&quot;&gt" rel="nofollow">http://www.audioscrobbler.net/dtd/xspf-lastfm&quot;&gt</a>;<br />&lt;title&gt;My+Recommendations&lt;/title&gt;<br />&lt;creator&gt;Last.fm&lt;/creator&gt;<br />&lt;link rel=&quot;<a href="http://www.last.fm/skipsLeft&quot;&gt;20&lt;/link&gt">http://www.last.fm/skipsLeft&quot;&gt;20&lt;/link&gt</a>;<br />&lt;trackList&gt;<br />    &lt;track&gt;<br />        &lt;location&gt;<a href="http://kingpin2.last.fm/user/fbf7ad270d0ebe62d335e6ed96422a5b.mp3&lt;/location&gt">http://kingpin2.last.fm/user/fbf7ad270d0ebe62d335e6ed96422a5b.mp3&lt;/location&gt</a>;<br />        &lt;title&gt;We Stay Behind&lt;/title&gt;<br />        &lt;id&gt;104949870&lt;/id&gt;<br />        &lt;album&gt;Oh Perilous World (Deluxe Edition) (Disc 1)&lt;/album&gt;<br />        &lt;creator&gt;Rasputina&lt;/creator&gt;<br />        &lt;duration&gt;199000&lt;/duration&gt;<br />        &lt;image&gt;<a href="http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif&lt;/image&gt">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif&lt;/image&gt</a>;<br />        &lt;lastfm:trackauth&gt;96ca0&lt;/lastfm:trackauth&gt;<br />        &lt;lastfm:albumId&gt;3356043&lt;/lastfm:albumId&gt;<br />        &lt;lastfm:artistId&gt;1002220&lt;/lastfm:artistId&gt;        <br />        &lt;link rel=&quot;<a href="http://www.last.fm/artistpage&quot;&gt;http://www.last.fm/music/Rasputina&lt;/link&gt">http://www.last.fm/artistpage&quot;&gt;http://www.last.fm/music/Rasputina&lt;/link&gt</a>;<br />        &lt;link rel=&quot;<a href="http://www.last.fm/albumpage&quot;&gt;http://www.last.fm/music/Rasputina/Oh+Perilous+World+%28Deluxe+Edition%29+%28Disc+1%29&lt;/link&gt">http://www.last.fm/albumpage&quot;&gt;http://www.last.fm/music/Rasputina/Oh+Perilous+World+%28Deluxe+Edition%29+%28Disc+1%29&lt;/link&gt</a>;<br />        &lt;link rel=&quot;<a href="http://www.last.fm/trackpage&quot;&gt;http://www.last.fm/music/Rasputina/_/We+Stay+Behind&lt;/link&gt">http://www.last.fm/trackpage&quot;&gt;http://www.last.fm/music/Rasputina/_/We+Stay+Behind&lt;/link&gt</a>;<br />        &lt;link rel=&quot;<a href="http://www.last.fm/buyTrackURL&quot;&gt;&lt;/link&gt">http://www.last.fm/buyTrackURL&quot;&gt;&lt;/link&gt</a>;<br />        &lt;link rel=&quot;<a href="http://www.last.fm/buyAlbumURL&quot;&gt;http://www.last.fm/affiliate_sendto.php?link=catch&amp;amp;prod=3356043&amp;amp;pos=65633c2c6d40fbe9c8bf27ce82d2ca5a&lt;/link&gt">http://www.last.fm/buyAlbumURL&quot;&gt;http://www.last.fm/affiliate_sendto.php?link=catch&amp;amp;prod=3356043&amp;amp;pos=65633c2c6d40fbe9c8bf27ce82d2ca5a&lt;/link&gt</a>;<br />        &lt;link rel=&quot;<a href="http://www.last.fm/freeTrackURL&quot;&gt;&lt;/link&gt">http://www.last.fm/freeTrackURL&quot;&gt;&lt;/link&gt</a>;<br />    &lt;/track&gt;<br />&lt;/trackList&gt;<br />&lt;/playlist&gt;</span></span><br />The basic playlist format is documented in the XSPF specification <a href="http://xspf.org/xspf-v1.html" rel="nofollow">http://xspf.org/xspf-v1.html</a>, but the response also contain some last.fm specific extensions. <br /><br />Noteworthy elements:<br /><br /><span class="quote">&lt;link rel=&quot;http://www.last.fm/skipsLeft&quot;/&gt;</span><br />Unsure.<br /><br /><span class="quote">&lt;location/&gt;</span><br />Is the new-style stream. A regular 128 kbit/s 44.1 kHz MPEG-1 Layer 3 stream.<br /><br /><span class="quote">&lt;id/&gt;</span><br />Is the track ID in the last.fm music catalog.<br /><br /><span class="quote">&lt;lastfm:trackauth/&gt;</span><br />Is the 5-hexdigit Last.fm recommendation key. Appended to the 'L' source ID when submitting track data via Audioscrobbler Protocol v1.2.<br /><br /><span style="font-size:12pt"><strong>The Scrobbling</strong></span><br /><br />Submission of track data is done via the <a href="http://www.audioscrobbler.net/development/protocol/" rel="nofollow">Audioscrobbler Protocol v1.2</a>. Rating such as love or ban is also done via the protocol. However the specification states that:<br /><br /><span class="quote"><em>Note:</em> Currently, a web-service must also be called to set love/ban status. We anticipate that this will be phased out soon, and the submission service will handle the whole process.</span><br />Loving and banning songs via a web-service new-style is handled by XML-RPC calls.<br /><br />A <a href="http://www.xmlrpc.com/spec" rel="nofollow">XML-RPC</a> call consist of a POST request to <a href="http://ws.audioscrobbler.com/1.0/rw/xmlrpc.php" rel="nofollow">http://ws.audioscrobbler.com/1.0/rw/xmlrpc.php</a> with the Content-Type set to text/xml.<br /><br />The request body is as follows:<br /><br /><span class="quote"><span style="font-size:9pt">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />&lt;methodCall&gt;<br />  &lt;methodName&gt;method&lt;/methodName&gt;<br />  &lt;params&gt;<br />    &lt;param&gt;&lt;value&gt;&lt;string&gt;user&lt;/string&gt;&lt;/value&gt;&lt;/param&gt;<br />    &lt;param&gt;&lt;value&gt;&lt;string&gt;challenge&lt;/string&gt;&lt;/value&gt;&lt;/param&gt;<br />    &lt;param&gt;&lt;value&gt;&lt;string&gt;auth&lt;/string&gt;&lt;/value&gt;&lt;/param&gt;<br />    &lt;param&gt;&lt;value&gt;&lt;string&gt;artist&lt;/string&gt;&lt;/value&gt;&lt;/param&gt;<br />    &lt;param&gt;&lt;value&gt;&lt;string&gt;title&lt;/string&gt;&lt;/value&gt;&lt;/param&gt;<br />  &lt;/params&gt;<br />&lt;/methodCall&gt;</span></span><br />Where:<br /><br /><span class="quote">method</span><br />Is the name of the method to be called: loveTrack, unLoveTrack, banTrack or unBanTrack.<br /><br /><span class="quote">user</span><br />Is the users last.fm username.<br /><br /><span class="quote">challenge</span><br />Is the current UNIX timestamp.<br /><br /><span class="quote">auth</span><br />Is the authentication token, a 32-byte ASCII hexadecimal representation of the MD5 hash of the users last.fm password and the timestamp: md5( md5(password) + timestamp )<br /><br /><span class="quote">artist</span><br />Is the artist to get love/ban.<br /><br /><span class="quote">title</span><br />Is the track title to get love/ban.<br /><br /><span style="font-size:12pt"><strong>References</strong></span><br /><ul><li><a href="http://www.audioscrobbler.net/development/protocol/" rel="nofollow">Audioscrobbler Protocol v1.2</a></li><li><a href="http://gabistapler.de/blog/index.php?/archives/268-Play-last.fm-streams-without-the-player.html" rel="nofollow">&quot;Play last.fm streams without the player&quot;</a></li><li><a href="http://mattdbrown.blogspot.com/2007/07/internets-using-lastfm-to-obtain-xml.html" rel="nofollow">&quot;Using last.fm to obtain xml&quot;</a></li><li><a href="http://xspf.org/" rel="nofollow">XSPF.org</a></li></ul></div>]]></description>
               </item>
      <item>
         <title>Jazz Notes</title>
         <link>http://www.last.fm/user/dahnielson/journal/2007/03/07/8nf6_jazz_notes</link>
         <pubDate>Wed, 7 Mar 2007 15:10:41 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2007/03/07/8nf6_jazz_notes</guid>
         <description><![CDATA[<div class="bbcode">A long time ago I begun writing down everything I knew about scales, chords and how they relate to <a href="http://www.last.fm/tag/jazz" class="bbcode_tag" rel="tag">jazz</a>. Yesterday I <a href="http://en.dahnielson.com/2007/03/jazz-notes.html" rel="nofollow">posted it to my blog</a>. However, it's still a work in progress.<br /><br />-- Holly crosspost Batman! That must mean Dr. Blog has captured Ms. LilyPond.</div>]]></description>
               </item>
      <item>
         <title>Irish Drinking Game</title>
         <link>http://www.last.fm/user/dahnielson/journal/2007/02/18/8ncw_irish_drinking_game</link>
         <pubDate>Sun, 18 Feb 2007 22:41:47 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2007/02/18/8ncw_irish_drinking_game</guid>
         <description><![CDATA[<div class="bbcode">Yesterday a friend and I came up with an Irish drinking game. It is really simple:<br /><br />1) While listening to <a href="http://www.last.fm/music/The+Cranberries" class="bbcode_artist">The Cranberries</a> drink whenever a track that reminds you of <a title="The Cranberries &ndash; Zombie" href="http://www.last.fm/music/The+Cranberries/_/Zombie" class="bbcode_track">Zombie</a> is being played.<br /><br />2) There are no second rule.<br /><br />As any true Irish drinking game it is supposed to get you really pissed.</div>]]></description>
               </item>
      <item>
         <title>amaroK Shuffle Survey</title>
         <link>http://www.last.fm/user/dahnielson/journal/2006/04/16/8n94_amarok_shuffle_survey</link>
         <pubDate>Sun, 16 Apr 2006 10:29:31 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2006/04/16/8n94_amarok_shuffle_survey</guid>
         <description><![CDATA[<div class="bbcode">Since eveeerybooody is doing this, and I'm feeling particular silly today, I will use amaroK as my own magic 8-ball.<br /><br />How does the world see me?<br />Song: <a title="Soundtrack Of Our Lives &ndash; Jehovah Sunrise" href="http://www.last.fm/music/+noredirect/Soundtrack+Of+Our+Lives/_/Jehovah+Sunrise" class="bbcode_track">Jehovah Sunrise</a><br />Artist: <a href="http://www.last.fm/music/+noredirect/Soundtrack+Of+Our+Lives" class="bbcode_artist">Soundtrack Of Our Lives</a><br />Comments: I'm a devine entity enlightening the world? I can live with that...<br /><br />Will I have a happy life?<br />Song: <a title="Moneybrother &ndash; They're Building Walls Around Us" href="http://www.last.fm/music/Moneybrother/_/They%27re+Building+Walls+Around+Us" class="bbcode_track">They're Building Walls Around Us</a><br />Artist: <a href="http://www.last.fm/music/Moneybrother" class="bbcode_artist">Moneybrother</a><br />Comments: I guess not.<br /><br />What do my friends really think of me?<br />Song: <a title="David Bowie &ndash; Golden Years" href="http://www.last.fm/music/David+Bowie/_/Golden+Years" class="bbcode_track">Golden Years</a><br />Artist: <a href="http://www.last.fm/music/David+Bowie" class="bbcode_artist">David Bowie</a><br />Comments: I'm in my golden years? Ok, then it's probably true: life ends after thirty.<br /><br />Do people secretly lust after me?<br />Song: <a title="Sammy Hagar &ndash; Give To Live" href="http://www.last.fm/music/Sammy+Hagar/_/Give+To+Live" class="bbcode_track">Give To Live</a><br />Artist: <a href="http://www.last.fm/music/Sammy+Hagar" class="bbcode_artist">Sammy Hagar</a><br />Comments: Not sure how to interpret this.<br /><br />How can I make myself happy?<br />Song: <a title="Kylie Minogue &ndash; After Dark" href="http://www.last.fm/music/Kylie+Minogue/_/After+Dark" class="bbcode_track">After Dark</a><br />Artist: <a href="http://www.last.fm/music/Kylie+Minogue" class="bbcode_artist">Kylie Minogue</a><br />Comments: Only going out after dark? Am I that repulsive? Or will I make myself happy by go clubing. I choose the later then.<br /><br />What should I do with my life?<br />Song: <a title="Snake River Conspiracy &ndash; Lovesong" href="http://www.last.fm/music/Snake+River+Conspiracy/_/Lovesong" class="bbcode_track">Lovesong</a><br />Artist: <a href="http://www.last.fm/music/Snake+River+Conspiracy" class="bbcode_artist">Snake River Conspiracy</a><br />Comments: Write lovesongs?<br /><br />Why should life be full of so much pain?<br />Song: <a title="Lisa Ekdahl &ndash; Jag skrek" href="http://www.last.fm/music/Lisa+Ekdahl/_/Jag+skrek" class="bbcode_track">Jag skrek</a><br />Artist: <a href="http://www.last.fm/music/Lisa+Ekdahl" class="bbcode_artist">Lisa Ekdahl</a><br />Comments: &quot;Jag skrek&quot;, in english &quot;I screamed&quot;, seem appropiate, but not a terrible helpful answer. Or does it point to a deeper secret of a feedback loop? More questions given than answered. (I should probably stop writing this paragraph soon... real soon... I promise... look I'm stoping... ok, not now. But now... Oh, gosh, you got me there... tra-la-la-la... ok, hereby I terminate this paragraph.)<br /><br />How can I maximize my pleasure during sex?<br />Song: <a title="The Beatles &ndash; I Wanna Be Your Man" href="http://www.last.fm/music/The+Beatles/_/I+Wanna+Be+Your+Man" class="bbcode_track">I Wanna Be Your Man</a><br />Artist: <a href="http://www.last.fm/music/The+Beatles" class="bbcode_artist">The Beatles</a><br />Comments: Obviously I would like to be a man during sex, since I'm a guy, and the &quot;your&quot; indicate I can maximize my pleasure by being someones man, which makes sense because being two or more is usually better than plain 'ol self-molestation.<br /><br />Will I ever have children?<br />Song: <a title="Tom Jones &ndash; Kung Fu Fighting" href="http://www.last.fm/music/Tom+Jones/_/Kung+Fu+Fighting" class="bbcode_track">Kung Fu Fighting</a><br />Artist: <a href="http://www.last.fm/music/Tom+Jones" class="bbcode_artist">Tom Jones</a><br />Comments: Don't know what to make of this.<br /><br />What is some good advice for me?<br />Song: <a title="The Who &ndash; Sister Disco" href="http://www.last.fm/music/The+Who/_/Sister+Disco" class="bbcode_track">Sister Disco</a><br />Artist: <a href="http://www.last.fm/music/The+Who" class="bbcode_artist">The Who</a><br />Comments: If I'm going out after dark, this probably tells me to go clubing.<br /><br />What is happiness?<br />Song: <a title="Queen &ndash; The Miracle" href="http://www.last.fm/music/Queen/_/The+Miracle" class="bbcode_track">The Miracle</a><br />Artist: <a href="http://www.last.fm/music/Queen" class="bbcode_artist">Queen</a><br />Comments: Happiness is a miracle. I would call this a realistic answer.<br /><br />What is my favorite fetish?<br />Song: <a title="This Perfect Day &ndash; Brother &amp; Sister" href="http://www.last.fm/music/This+Perfect+Day/_/Brother%2B%2526%2BSister" class="bbcode_track">Brother &amp; Sister</a><br />Artist: <a href="http://www.last.fm/music/This+Perfect+Day" class="bbcode_artist">This Perfect Day</a><br />Comments: My fetish are family members? Incestious relationships?<br /><br />How will I be remembered?<br />Song: <a title="Monica Zetterlund &ndash; Summertime" href="http://www.last.fm/music/Monica+Zetterlund/_/Summertime" class="bbcode_track">Summertime</a><br />Artist: <a href="http://www.last.fm/music/Monica+Zetterlund" class="bbcode_artist">Monica Zetterlund</a><br />Comments: As a summertime? Oh boy.<br /><br />I don't know if it's my future, or just that my music collection is giving me bad answers. In conclusion: Don't take advice from a bunch of mp3's.</div>]]></description>
               </item>
      <item>
         <title>Gisela May</title>
         <link>http://www.last.fm/user/dahnielson/journal/2006/04/12/8n56_gisela_may</link>
         <pubDate>Wed, 12 Apr 2006 21:59:29 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2006/04/12/8n56_gisela_may</guid>
         <description><![CDATA[<div class="bbcode">I just want to give a shout-out to <a href="http://www.last.fm/music/Gisela+May" class="bbcode_artist">Gisela May</a>: If you like <a href="http://www.last.fm/music/Barbara" class="bbcode_artist">Barbara</a>, <a href="http://www.last.fm/music/Jacques+Brel" class="bbcode_artist">Jacques Brel</a> et al. then you might very well like Gisela May singing the songs of <a href="http://www.last.fm/music/Kurt+Weill" class="bbcode_artist">Kurt Weill</a>.</div>]]></description>
               </item>
      <item>
         <title>Rikard Wolff</title>
         <link>http://www.last.fm/user/dahnielson/journal/2006/04/12/8n09_rikard_wolff</link>
         <pubDate>Wed, 12 Apr 2006 18:16:45 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2006/04/12/8n09_rikard_wolff</guid>
         <description><![CDATA[<div class="bbcode">The way I discovered <a href="http://www.last.fm/music/Barbara" class="bbcode_artist">Barbara</a> must have been through <a href="http://www.last.fm/music/Rikard+Wolff" class="bbcode_artist">Rikard Wolff</a>. He discovered her while living in France in his youth and started to translate her songs into swedish. Several years later and after a <a href="http://www.last.fm/music/+noredirect/Edith+Piaf" class="bbcode_artist">Edith Piaf</a> project he decided to record the translated songs,  introducing Barbara to the swedish audience, resulting in the 2000 album <a title="Rikard Wolff - Min Allra St&ouml;rsta K&auml;rlek" href="http://www.last.fm/music/Rikard+Wolff/Min+Allra+St%C3%B6rsta+K%C3%A4rlek" class="bbcode_album">Min Allra St&ouml;rsta K&auml;rlek</a> ('Ma plus belle histoire d'amour' in french) on EMI.</div>]]></description>
               </item>
      <item>
         <title>Welcome!</title>
         <link>http://www.last.fm/user/dahnielson/journal/2006/04/11/8n08_welcome%21</link>
         <pubDate>Tue, 11 Apr 2006 22:01:16 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2006/04/11/8n08_welcome%21</guid>
         <description><![CDATA[<div class="bbcode">Welcome to the <a href="http://www.last.fm/music/Barbara" class="bbcode_artist">Barbara</a> (a.k.a. Monique Serf) group devoted to her life, work and fans. In my opinion she's one of the worlds top <a href="http://www.last.fm/tag/singer-songwriters" class="bbcode_tag" rel="tag">singer-songwriters</a>. Hopefully more people, who stil thinks <a href="http://www.last.fm/tag/french" class="bbcode_tag" rel="tag">french</a> classic &quot;contemporary&quot; music is all about <a href="http://www.last.fm/music/+noredirect/Edith+Piaf" class="bbcode_artist">Edith Piaf</a>, will discover Barbara too and be blown away.</div>]]></description>
               </item>
      <item>
         <title>What's Me?</title>
         <link>http://www.last.fm/user/dahnielson/journal/2006/04/09/8n07_what%27s_me%3F</link>
         <pubDate>Sun, 9 Apr 2006 21:19:01 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2006/04/09/8n07_what%27s_me%3F</guid>
         <description><![CDATA[<div class="bbcode">If somebody would ask me what artist or album I would recomend to get a snap idea of what I like, then it would be <a href="http://www.last.fm/music/Nikka+Costa" class="bbcode_artist">Nikka Costa</a>. I've loved her ever since I got the <a title="Nikka Costa - Like A Feather" href="http://www.last.fm/music/Nikka+Costa/Like+A+Feather" class="bbcode_album">Like A Feather</a> promo single in my hands back in 2001.<br /><br />It's so tight. Compressed. Lovely.</div>]]></description>
               </item>
      <item>
         <title>Finally Bleeding Like You</title>
         <link>http://www.last.fm/user/dahnielson/journal/2006/04/09/8n01_finally_bleeding_like_you</link>
         <pubDate>Sun, 9 Apr 2006 16:07:44 +0000</pubDate>
         <guid isPermaLink="true">http://www.last.fm/user/dahnielson/journal/2006/04/09/8n01_finally_bleeding_like_you</guid>
         <description><![CDATA[<div class="bbcode">Despite being a big <a href="http://www.last.fm/music/Garbage" class="bbcode_artist">Garbage</a> fan I didn't buy the latest album <em><a title="Garbage - Bleed Like Me" href="http://www.last.fm/music/Garbage/Bleed+Like+Me" class="bbcode_album">Bleed Like Me</a></em> immediately when it was released. Mostly due to the fact that I'm currently living in the outback (at least speaking music-wise) so it wasn't exactly on the shelves. And then I simply forgot about it...<br /><br />But now I'm finally listening to it. And indeed, it's definitely more rockalicious and back to the roots than before. Great bare-bone production void of any obvious late night knob-twitching on behalf of <a href="http://www.last.fm/music/Butch+Vig" class="bbcode_artist">Butch Vig</a> &amp; co.</div>]]></description>
               </item>
   </channel>
</rss>
