<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<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/"
	>

<channel>
	<title>roines.net</title>
	<link>http://roines.net</link>
	<description>welcome to my .net</description>
	<pubDate>Wed, 24 Sep 2008 08:24:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>Objective fun</title>
		<link>http://roines.net/blog/2008/09/24/objective-fun</link>
		<comments>http://roines.net/blog/2008/09/24/objective-fun#comments</comments>
		<pubDate>Wed, 24 Sep 2008 08:24:03 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2008/09/24/objective-fun</guid>
		<description><![CDATA[This would make an excellent recruitment-test for an Objective-C programmer.
Both of these snippets are from the Apple developer example code collection. One of them is correct, and the other will likely make your application burst into flames*.
Code snippet 1:

- (void)setArguments:(NSDictionary *)arguments
{
    [arguments copy];
    [_arguments release];
    _arguments [...]]]></description>
			<content:encoded><![CDATA[<p>This would make an excellent recruitment-test for an Objective-C programmer.<br />
Both of these snippets are from the Apple developer example code collection. One of them is correct, and the other will likely make your application burst into flames<sup>*</sup>.</p>
<p>Code snippet 1:</p>
<pre>
- (void)setArguments:(NSDictionary *)arguments
{
    [arguments copy];
    [_arguments release];
    _arguments = arguments;
}
</pre>
<p>Code snippet 2:</p>
<pre>
- (void)setURLToLoad:(NSURL *)URL
{
    [URL retain];
    [URLToLoad release];
    URLToLoad = URL;
}
</pre>
<p>Quiz questions (select text for answer):<br />
Q: Which one is broken? (1p)<br />
A: <span style="color:white;">Snippet 1. It throws away the copy, and instead assigns a non-retained variable.</span><br />
Q: Why is the other one not broken? (2p)<br />
A: <span style="color:white;">Because retain modifies the object, so assigning the retained object is fine. </span><br />
Q: Why is the author using copy instead of retain? (5p)<br />
A: <span style="color:white;">Because the object could be a NSMutableDictionary which could unexpectedly change later. </span><br />
Q: How should they both be written instead so that this will never happen? (20p)<br />
A: <span style="color:white;">Like &#8216;[_v release];_v = [v retain]&#8217; or &#8216;[_v release];_v = [v copy]&#8217;</span></p>
<p>Thanks Apple, made my day here (hey, it&#8217;s raining).<br />
<small>*) The computer supplies &#8216;BusError&#8217; and you&#8217;ll have to provide the pyrotechnics. I usually go with illustrative hand-waving and onomatopoetic sound effects.</small>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2008/09/24/objective-fun/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Songkran</title>
		<link>http://roines.net/blog/2008/04/14/songkran-3</link>
		<comments>http://roines.net/blog/2008/04/14/songkran-3#comments</comments>
		<pubDate>Mon, 14 Apr 2008 14:07:36 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2008/04/14/songkran-3</guid>
		<description><![CDATA[Water splashing festivities started late today. I was up at 6am and the festivities didn&#8217;t kick off until ten.
I used the same camera this year too, in a plastic bag. This year I didn&#8217;t bother making a glass lens cover as I knew it would just fog up. I managed to snap 300 pictures before [...]]]></description>
			<content:encoded><![CDATA[<p>Water splashing festivities started late today. I was up at 6am and the festivities didn&#8217;t kick off until ten.<br />
I used the same camera this year too, in a plastic bag. This year I didn&#8217;t bother making a glass lens cover as I knew it would just fog up. I managed to snap 300 pictures before the camera permanently fogged up at around 4pm. The splashing had gotten more subdued the last hour so I decided to call it a day. I had been out for nine hours in blistering sun, and despite double layer spf30 sunblock I&#8217;m now burnt to a crisp. My arms are so red they&#8217;re actually blinking.<br />
I thought I got some nice shots, but checking them later I barely got a few &#8216;OK&#8217; ones. Many were ruined by fogging but I guess most were ruined by me.</p>
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<td><a href="/photo/2008/songkran"><img class="framed" src="/photo/2008/songkran/flowerpower/thumbnail" width="150" height="200" alt="Songkran picture" /></a></td>
<td><a href="/photo/2008/songkran"><img class="framed" src="/photo/2008/songkran/twins/thumbnail" width="150" height="200" alt="Songkran picture" /></a></td>
<td><a href="/photo/2008/songkran"><img class="framed" src="/photo/2008/songkran/half_tank/thumbnail" width="150" height="200" alt="Songkran picture" /></a></td>
<td><a href="/photo/2008/songkran"><img class="framed" src="/photo/2008/songkran/victory/thumbnail" width="150" height="200" alt="Songkran picture" /></a></td>
</tr>
</table>
<p>While at it I also added more albums to both <a href="/photo/2006">2006</a> and <a href="/photo/2007">2007</a> which should have been up long time ago.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2008/04/14/songkran-3/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>The Dark is coming to a theater near you</title>
		<link>http://roines.net/blog/2007/08/09/the-dark-is-coming-to-a-theater-near-you</link>
		<comments>http://roines.net/blog/2007/08/09/the-dark-is-coming-to-a-theater-near-you#comments</comments>
		<pubDate>Thu, 09 Aug 2007 14:55:05 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/08/09/the-dark-is-coming-to-a-theater-near-you</guid>
		<description><![CDATA[Today I happened to walk past a movie poster with the title The Dark is Rising. Something clicked inside my head, and I had to go up to it to read the poster&#8217;s small print. &#8220;Story by Susan Cooper&#8221;.
No. Way.
There are two books that defined my childhood: The Dark is Rising by Susan Cooper, and [...]]]></description>
			<content:encoded><![CDATA[<p>Today I happened to walk past a movie poster with the title <i>The Dark is Rising</i>. Something clicked inside my head, and I had to go up to it to read the poster&#8217;s small print. &#8220;Story by Susan Cooper&#8221;.</p>
<p>No. Way.</p>
<p>There are two books that defined my childhood: <i><a href="http://en.wikipedia.org/wiki/The_Dark_Is_Rising_Sequence">The Dark is Rising</a></i> by <a href="http://en.wikipedia.org/wiki/Susan_Cooper">Susan Cooper</a>, and <i>Programming the Z80</i> by <a href="http://en.wikipedia.org/wiki/Rodnay_Zaks">Rodnay Zaks</a>.</p>
<p><i>The Dark is Rising</i> is a fantasy novel (actually a sequence of five shorter books) about a boy, Will Stanton, who is made aware that he is no ordinary boy. The evil forces of the world, <i>The Dark</i>, is rising, and only with the help of the special powers Will will inherit on his eleventh birthday, the forest spirit Herne the Hunter, the power of the six Signs, the six awakened Riders, the Grail coaxed from the Greenwitch in the sea, and the birthright of the strange little boy with the raven eyes can the Old Ones from The Light win the final battle by the Silver tree.</p>
<p class="blogquote">
When light from the lost land shall return,<br />Six Sleepers shall ride, six Signs shall burn,<br />And where the midsummer tree grows tall<br />By Pendragon&#8217;s sword the Dark shall fall.</p>
<p>The similarities to Lord of the Rings is apparent (each book begins with a prophetic verse, much like in Lord of the Rings) and not so strange; Susan Cooper was a student of JRR Tolkien.</p>
<p>The books have won multiple awards and many, like me, cherish them and re-read them over and over.<br />
I&#8217;ve always hoped that someone would make a movie out of Susan Cooper&#8217;s books. The movie adaptation of Lord of the Rings shows that it could be done.</p>
<p>And now Cooper&#8217;s epic <i>has been</i> turned into a movie. There&#8217;s a <a href="http://apple.com/trailers/independent/theseekerthedarkisrising/">trailer</a> available. </p>
<p>Watching the trailer, it&#8217;s painfully obvious that the production company has completely raped it.</p>
<p>They&#8217;ve changed the story to present, changed most of the characters (Will is now <em>American!</em>), and in an effort to appeal &#8220;to a new audience&#8221; turned it into an action movie (explosions!) that resembles those Hollywood crap magician kid movies. Likely extremely intended.</p>
<p>Why do they keep picking these masterpieces and turning them into manure?</p>
<p>I think I&#8217;ll go cry myself to sleep now.</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/08/09/the-dark-is-coming-to-a-theater-near-you/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Elusive Ellipses</title>
		<link>http://roines.net/blog/2007/07/22/elusive-ellipses</link>
		<comments>http://roines.net/blog/2007/07/22/elusive-ellipses#comments</comments>
		<pubDate>Sun, 22 Jul 2007 03:34:24 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/07/22/elusive-ellipses</guid>
		<description><![CDATA[Today I received this letter.
Dear Roine,
I&#8217;m trying to do ellipses in OpenGL. The ellipses turn out fine, but I can&#8217;t seem to position them correctly. All my tries have turned into giant hairballs. Please advice.
Confused
Dear Confused. I know just what you are going through. Just the other day (well, today actually) I needed to do [...]]]></description>
			<content:encoded><![CDATA[<p>Today I received this letter.</p>
<p class="blogquote">Dear Roine,<br />
I&#8217;m trying to do ellipses in OpenGL. The ellipses turn out fine, but I can&#8217;t seem to position them correctly. All my tries have turned into <a href="http://icanhascheezburger.com">giant hairballs</a>. Please advice.<br />
<i>Confused</i></p>
<p>Dear Confused. I know just what you are going through. Just the other day (well, today actually) I needed to do the same thing. I started out with a bunch of glRotatef(..) to position the ellipses with angles computed from the vectors with arcsine, but the cyclic issues and rounding issues with e.g. sin(asin(x)) made the ellipses go bonkers. Google didn&#8217;t turn up more than hints, so I had to write this beautiful piece of code myself:</p>
<pre>
// Draw an ellipse with focus points r1 and r2, with radius r
// 'quad' is a previously allocated GLUquadric object
// The code avoids using inverse trigonometric functions and the cyclic issues with them.
void
ellipse(float r1x, float r1y, float r1z, float r2x, float r2y, float r2z, float r, GLUquadric* quad )
{
  glPushMatrix();

  // As with all OpenGL code, this is done 'backwards', the first transformation being applied last:

  // Finally, create a coordinate system transformation for the ellipse,
  // where the X axis transforms to the desired vector (i.e. r2-r1).
  // 'by' and 'bz' are created by cross products, which is perfectly
  // valid since an ellipse is rotationally symmetric about (in this case)
  // the X-axis and so any orthonormal vectors to 'r2-r1' are valid choices.

  const float d = sqrt((r2x-r1x)*(r2x-r1x)+(r2y-r1y)*(r2y-r1y)+(r2z-r1z)*(r2z-r1z));  // d = |r2-r1|

  const float bx[] = { (r2x-r1x)/d, (r2y-r1y)/d, (r2z-r1z)/d };  // normalized r2-r1

  float by[3];
  const float dx2 = bx[2]*bx[2]+bx[1]*bx[1];          // |[ex x bx]|^2
  // Unfotunately, there is no vector guaranteed to be orthogonal to r2-r1;
  // we have to test for it.
  // If bx happens to be (nearly) parallel to ex then use ey instead to avoid degenerate case.
  if (dx2 &gt; 0.01) {
    // normalized [ex x bx]
    const float dx = sqrt(dx2);                       // |[ex x bx]|
    by[0] = 0;
    by[1] = -bx[2]/dx;
    by[2] = bx[1]/dx;
  } else {
    // normalized [ey x bx]
    const float dy = sqrt(bx[0]*bx[0]+bx[2]*bx[2]);   // |[ey x bx]|
    by[0] = bx[2]/dy;
    by[1] = 0;
    by[2] = -bx[0]/dy;
  }

  // Now make one last orthonormal vector to both bx and by crossing them
  const float bz[] = { bx[1]*by[2]-bx[2]*by[1],
                       bx[2]*by[0]-bx[0]*by[2],
                       bx[0]*by[1]-bx[1]*by[0] };  // [bx x by]

  // This matrix both rotates the ellipse to the desired vector r2-r1
  // and translates it to r1 (last column)
  // 'm' is column major as required by OpenGL.
  const float m[16] = { bx[0], bx[1], bx[2], 0.0,
                        by[0], by[1], by[2], 0.0,
                        bz[0], bz[1], bz[2], 0.0,
                        r1x, r1y, r1z, 1.0};
  glMultMatrixf(m);

  // Reposition ellipse with left focus in origo, and right focus at 'd' on X axis
  glTranslatef(d/2.0,0.0,0.0);

  // Stretch sphere to an ellipse with semimajor radius 'r' and distance 'd' between foci
  glScalef((d+r)/2.0,r,r);    

  // Rotate sphere so the rotationally symmetric axis is in X direction (looks better)
  glRotatef(90,0.0f,1.0f,0.0f);  

  // Create unit sphere
  gluSphere(quad,1.0,12,8);    

  glPopMatrix();
}
</pre>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/07/22/elusive-ellipses/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Gecko galore</title>
		<link>http://roines.net/blog/2007/04/21/gecko-galore</link>
		<comments>http://roines.net/blog/2007/04/21/gecko-galore#comments</comments>
		<pubDate>Sat, 21 Apr 2007 11:31:43 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/04/21/gecko-galore</guid>
		<description><![CDATA[I have a gecko invasion in my apartment. I counted three the other night. Geckos are tiny lizards that can crawl on walls and ceilings and eat bugz.
One of them are missing it&#8217;s tail. They can shed tails if they&#8217;re for example coming under heavy avian attack. Or being stepped on late at night in [...]]]></description>
			<content:encoded><![CDATA[<p>I have a gecko invasion in my apartment. I counted three the other night. Geckos are tiny lizards that can crawl on walls and ceilings and eat bugz.</p>
<p>One of them are missing it&#8217;s tail. They can shed tails if they&#8217;re for example coming under heavy avian attack. Or being stepped on late at night in a dark bathroom. I&#8217;m so sorry mr Gecko! I expect to wake up one of these days and find one of my legs has been gnawed off during the night.</p>
<p>I love geckos. Not only are they cute, their primary reason of existance is to eat things I hate, like ants and mosquitos.</p>
<p>I hate mosquitos. I&#8217;ve spent months of my life hunting and swatting mosquitos that have managed to sneak into my bedroom. I&#8217;ve actually become quite apt. I have a fierce backhand, and I can take them out in mid-air. I&#8217;m thinking of publishing a how-to book on the topic.</p>
<p>When I get filthy rich I will set aside a specially tagged fund for eradicating mosquitos from this planet (and any other planet should they manage interstellar space travel first. At the rate I&#8217;m making money, it&#8217;s not a given which will come first. The best-selling how-to book should help here).</p>
<p>As I side bonus I will have cured Malaria. You&#8217;re welcome.</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/04/21/gecko-galore/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Songkran pictures</title>
		<link>http://roines.net/blog/2007/04/14/songkran-pictures</link>
		<comments>http://roines.net/blog/2007/04/14/songkran-pictures#comments</comments>
		<pubDate>Sat, 14 Apr 2007 16:04:01 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/04/14/songkran-pictures</guid>
		<description><![CDATA[As promised, new folder (and new year! Ugh, need to take the camera out more) in the photo section.
This Songkran it rained and I managed not to get sunburned, but my entire body aches today.
My camera is now quite possibly toast. I used a wrapping bag at first, but it caused the camera to fog [...]]]></description>
			<content:encoded><![CDATA[<p>As promised, <a href="/photo/2007/songkran">new folder</a> (and new year! Ugh, need to take the camera out more) in the photo section.</p>
<p>This Songkran it rained and I managed not to get sunburned, but my entire body aches today.</p>
<p>My camera is now quite possibly toast. I used a wrapping bag at first, but it caused the camera to fog up. I ditched the bag and the camera got completely soaked, but worked! - for thirty minutes. When it dries out, next week or so, I&#8217;ll try it out, but if it&#8217;s gone I&#8217;ll let it rest in peace. It&#8217;s an eight year old digicam which has more stuck pixels than a 50 cent webcam.</p>
<p>Then again, that&#8217;s exactly what happened on the <a href="/photo/2002/songkran">first Songkran</a> (yes, it&#8217;s the same camera) and after it dried out it&#8217;s been working fine for five years.</p>
<p>Just for kicks, I&#8217;ve also added four more images to the <a href="/photo/2006/songkran">2006 Songkran</a> pictures.</p>
<p>
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<td><a href="/photo/2007/songkran"><img class="framed" src="/photo/2007/songkran/girls/thumbnail" width="200" height="150" alt="Songkran picture" /></a></td>
<td><a href="/photo/2007/songkran"><img class="framed" src="/photo/2007/songkran/couple/thumbnail" width="200" height="150" alt="Songkran picture" /></a></td>
<td><a href="/photo/2007/songkran"><img class="framed" src="/photo/2007/songkran/bullseye/thumbnail" width="200" height="150" alt="Songkran picture" /></a></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/04/14/songkran-pictures/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Songkran 2007</title>
		<link>http://roines.net/blog/2007/04/13/songkran-2007-2</link>
		<comments>http://roines.net/blog/2007/04/13/songkran-2007-2#comments</comments>
		<pubDate>Fri, 13 Apr 2007 10:29:27 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/04/13/songkran-2007-2</guid>
		<description><![CDATA[Songkran is already over (technically the festival is three days, but there is only splashing on day 1). After a slow start it turned out to be the best one so far.  It is getting dark now and only the most devoted are still splashing away.
I took almost 300 pictures, but most of them [...]]]></description>
			<content:encoded><![CDATA[<p>Songkran is already over (technically the festival is three days, but there is only splashing on day 1). After a slow start it turned out to be the best one so far.  It is getting dark now and only the most devoted are still splashing away.</p>
<p>I took almost 300 pictures, but most of them came out hazy because of lens fog (I really need to kill someone to get a 1Ds with enviromental sealings. Killing is required, no?) However I do think I got a few good. Will update with pix tomorrow.</p>
<p>Need. Sleep. Now.</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/04/13/songkran-2007-2/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Anticipation</title>
		<link>http://roines.net/blog/2007/04/12/songkran-2007</link>
		<comments>http://roines.net/blog/2007/04/12/songkran-2007#comments</comments>
		<pubDate>Thu, 12 Apr 2007 13:08:53 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/04/12/songkran-2007</guid>
		<description><![CDATA[The situation is getting critical now. The anticipation is so tense it&#8217;s smothering. Any street market vendor will sell you a gun - they even hang them in the windows. I&#8217;ve already seen cars cruising around, people standing in the back, showing off their guns, harassing innocent people. They&#8217;re just young punks that can&#8217;t wait. [...]]]></description>
			<content:encoded><![CDATA[<p>The situation is getting critical now. The anticipation is so tense it&#8217;s smothering. Any street market vendor will sell you a gun - they even hang them in the windows. I&#8217;ve already seen cars cruising around, people standing in the back, showing off their guns, harassing innocent people. They&#8217;re just young punks that can&#8217;t wait. People are already avoiding the streets.</p>
<p>I&#8217;ve heard fighting will start at midnight tonight, not too far from here. Of course hell won&#8217;t be unleashed until sometime later tomorrow. Ordinary people will stay indoors with cars full of hooligans with war paint on their faces cruising around.</p>
<p>I&#8217;ve checked my gear. I think I&#8217;m good. Technically, I&#8217;m a non-combattant, but experience tells me most don&#8217;t care, especially girls. These people don&#8217;t even care about sides, they&#8217;ll just take out anyone who crosses their path. And with a smile on their face.</p>
<p>I&#8217;ve actually gotten a small piece for myself. For protection, you know. This time they won&#8217;t take me dry.</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/04/12/songkran-2007/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Tap&#8217;d</title>
		<link>http://roines.net/blog/2007/04/10/tapd</link>
		<comments>http://roines.net/blog/2007/04/10/tapd#comments</comments>
		<pubDate>Tue, 10 Apr 2007 03:38:32 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/04/10/tapd</guid>
		<description><![CDATA[I donated blood yesterday. A local hospital apparently had a drive, and were present in a mall. Since I used to go regularly I decided to donate. Forgive me doctor, it has been several years since my last donation.
They had a medical form, which was of course in Thai. Since I don&#8217;t read Thai they [...]]]></description>
			<content:encoded><![CDATA[<p>I donated blood yesterday. A local hospital apparently had a drive, and were present in a mall. Since I used to go regularly I decided to donate. Forgive me doctor, it has been several years since my last donation.</p>
<p>They had a medical form, which was of course in Thai. Since I don&#8217;t read Thai they had to read it out to me. A cute nurse had to ask me all the personal questions and check them down. I swear she blushed when she had to ask me if I see prostitutes.
<p>One kind of bizarre question was if I had visited England. &#8220;England?&#8221;. &#8220;Yes&#8221;. &#8220;Um, yes?&#8221;. &#8220;How long?&#8221;. &#8220;Um, about two weeks?&#8221;. &#8220;Oh, fine&#8221;, check. Imperial blood is bad? Must be all the vinegar crisps they eat. I knew that can&#8217;t be good for you.</p>
<p>The setup was very conventional and everything was as sterile as anywhere. The only difference in the setup was they used what looked like regular kitchen scales to measure the blood bags, instead of fancy schmanzy specialized automatic scales you see elsewhere.</p>
<p>I felt fine afterwards, but slept like a log last night.</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/04/10/tapd/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>cobain onebritney nose reindeer</title>
		<link>http://roines.net/blog/2007/02/04/cobain-onebritney-nose-reindeer</link>
		<comments>http://roines.net/blog/2007/02/04/cobain-onebritney-nose-reindeer#comments</comments>
		<pubDate>Sun, 04 Feb 2007 06:52:15 +0000</pubDate>
		<dc:creator>roine</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://roines.net/blog/2007/02/04/cobain-onebritney-nose-reindeer</guid>
		<description><![CDATA[OK, so an update. Not dead. The bunnymess sending was recently fixed, and he&#8217;s been online pretty much constantly lately so sending a bunnymess should work now.
People always ask me what I&#8217;m doing. I guess if I updated this a bit more people wouldn&#8217;t need to ask. It&#8217;s just that my days are mostly ordinary [...]]]></description>
			<content:encoded><![CDATA[<p>OK, so an update. Not dead. The bunnymess sending was recently fixed, and he&#8217;s been online pretty much constantly lately so sending a bunnymess should work now.<br />
People always ask me what I&#8217;m doing. I guess if I updated this a bit more people wouldn&#8217;t need to ask. It&#8217;s just that my days are mostly ordinary and boring anyway; I&#8217;m doing much the same thing as everyone else, just 9000km away. And it&#8217;s a little better weather here I guess.<br />
While other of my friends do cool and spontaneous things like delivering babies on their kitchen floor, I mostly go through my daily routine. Lately I&#8217;ve been working my ass off to get a release done, so I think I&#8217;ll be in for a little vacation afterwards. After all, I <em>am</em> living in paradise.</p>
<p>The title? Oh, it&#8217;s from a spam mail. I don&#8217;t know what a onebritney is either.</p>
]]></content:encoded>
			<wfw:commentRSS>http://roines.net/blog/2007/02/04/cobain-onebritney-nose-reindeer/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
