<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The rise of the inevitable bitpipe</title>
	<atom:link href="http://bitpipe.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bitpipe.wordpress.com</link>
	<description>Whatever it is, I'm against it!</description>
	<pubDate>Fri, 18 Apr 2008 14:14:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>So I&#8217;ve been busy</title>
		<link>http://bitpipe.wordpress.com/2008/04/18/so-ive-been-busy/</link>
		<comments>http://bitpipe.wordpress.com/2008/04/18/so-ive-been-busy/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 14:14:24 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Software development]]></category>

		<category><![CDATA[Stupidity]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/?p=54</guid>
		<description><![CDATA[And since I have been busy I figured it would be fair to give you an insight into some of the crap I have to deal with. Here&#8217;s a past major grievance:
1) Who the hell came up the Authenticator singleton over at the JDK team? What the fuck were you smoking? Seriously? Authenticator.setDefault() is one of the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>And since I have been busy I figured it would be fair to give you an insight into some of the crap I have to deal with. Here&#8217;s a past major grievance:</p>
<p>1) Who the hell came up the Authenticator singleton over at the JDK team? What the fuck were you smoking? Seriously? Authenticator.setDefault() is one of the DUMBEST things I have seen in a long time. Why oh why not let people attach authenticators to HttpURLConnections if they want to on a per instance basis?</p>
<p>2) On the topic of HttpURLConnections, who came up with the brilliant idea to make transparentNTLMlogins the default and UNCHANGEABLE. Again with the IDIOT! Come on. This is just stupid. I know you were thinking &#8220;Client&#8221; but feel free to take your head out of your ass for four seconds and think &#8220;Server&#8221; instead. One of the major issues with NTLM is the lack of delegation and in some cases that delegation is easy to solve using intermediary accounts mapped to authenticated users&#8217; roles. OK?</p>
<p>Well children, you will now get to see some bonafide code. This doesn&#8217;t happen often so enjoy. If you want to bypass issue 2 above then you only have to do the following:</p>
<p>try{<br />
            Field f = sun.net.www.protocol.http.HttpURLConnection.class.getDeclaredField(&#8221;tryTransparentNTLMServer&#8221;);<br />
            f.setAccessible(true);<br />
            f.setBoolean(urlConnection, false);<br />
            f = sun.net.www.protocol.http.HttpURLConnection.class.getDeclaredField(&#8221;tryTransparentNTLMProxy&#8221;);<br />
            f.setAccessible(true);<br />
            f.setBoolean(urlConnection, false);</p>
<p>        } catch(NoSuchFieldException e){<br />
            //do whatever you normally do when an error occurs, you figure it out</p>
<p>            e.printStackTrace();<br />
        } catch (IllegalAccessException e) {<br />
            //see above</p>
<p>            e.printStackTrace();<br />
        }</p>
<p>That does the trick. No more transparent crap from that particular instance. I know that using the reflection API like that is considered bad form and that I am a BAD BAD BAD man. Fuck you. It works. I don&#8217;t care.</p>
<p>Now, let&#8217;s say you want to resolve issue one and you are running in a Tomcat instance: </p>
<p>public class CustomAuthenticator extends Authenticator {</p>
<p>    HashMap&lt;Long,PasswordAuthentication&gt; credentials = new HashMap&lt;Long,PasswordAuthentication&gt;();</p>
<p>    public void add(String user, String pwd){</p>
<p>        cred.put(getThreadId(),new PasswordAuthentication(user,pwd.toCharArray()));</p>
<p>    }</p>
<p>//feel free to use some other way, like the thread name if you consider that unique, I don&#8217;t know and I don&#8217;t care<br />
    private Long getThreadId(){<br />
        return new Long(Thread.currentThread().getId());<br />
    }<br />
    private PasswordAuthentication get(Long id){<br />
        return credentials.get(id);<br />
    }</p>
<p>    protected PasswordAuthentication getPasswordAuthentication() {<br />
        return get(getThreadId());<br />
    }<br />
}</p>
<p>Synchronize to your favorite flavor. And then set it as default using the Authenticator.setDefault()-method of craptastic hell. This works just fine with Tomcat for example. Your mileage may vary. I don&#8217;t care. Consider this an excuse for my long absence. Over and out.</p>
<p>(And if someone remote related to jcifs reads this&#8230; feel free to use and abuse the #1 trick if you want)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/54/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/54/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=54&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2008/04/18/so-ive-been-busy/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>Concurrent idiocy</title>
		<link>http://bitpipe.wordpress.com/2008/01/14/concurrent-idiocy/</link>
		<comments>http://bitpipe.wordpress.com/2008/01/14/concurrent-idiocy/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 18:52:42 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Architecture]]></category>

		<category><![CDATA[Software development]]></category>

		<category><![CDATA[Stupidity]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2008/01/14/concurrent-idiocy/</guid>
		<description><![CDATA[The next person that starts talking about the &#8220;Concurrency Crisis&#8221; I will hit over the head with a multi-core frying pan.
I will try to make this brief and to the point: very few applications (note: applications, not games, not huge asynchronous data munching processes that live in some dark and half forgotten data center in [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The next person that starts talking about the &#8220;Concurrency Crisis&#8221; I will hit over the head with a multi-core frying pan.</p>
<p>I will try to make this brief and to the point: very few applications (note: applications, not games, not huge asynchronous data munching processes that live in some dark and half forgotten data center in the damp and unholy basement of Miskatonic Data Processing, Dagon St, Miskatonic) will benefit from extensive use of things like Scala. Yes, it&#8217;s a shiny new toy. Certainly. But listen to me and listen to me well: most applications are IO-bound. The slowdowns that most users react to have more to do with that (or for interpreted languages with crappy garbage collection - IntelliJ, I love you as an IDE but stop fucking around with the deallocation of memory, I hate it when you freeze up on me) than with the 0.1 seconds extra it takes to sort that list. Yes it sucks that we suddenly have to learn new ways of doing things (no, it doesn&#8217;t - learning is fun idiots), it sucks that concurrency is really hard. The silver lining? If you&#8217;re  using it you&#8217;re probably doing it wrong and for all the wrong reasons as well. You don&#8217;t need Scala to write normal applications. You don&#8217;t need it. You. Don&#8217;t. Need. It. Sit down for a second and think about it instead. So you have four cores. Or maybe eight. Make sure your application handles I/O efficiently long before you start wondering about whether to split that sorting over several cores.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/53/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/53/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=53&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2008/01/14/concurrent-idiocy/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>Ah the freshness of a new year</title>
		<link>http://bitpipe.wordpress.com/2008/01/10/ah-the-freshness-of-a-new-year/</link>
		<comments>http://bitpipe.wordpress.com/2008/01/10/ah-the-freshness-of-a-new-year/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 22:13:44 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2008/01/10/ah-the-freshness-of-a-new-year/</guid>
		<description><![CDATA[Seriously. 2008. How the hell did this happen? It&#8217;s not supposed to be 2008 yet? Where are the flying cars? Where&#8217;s the moon base? And where is my household robot?
When I was a kid I used to hang out at the local library. Don&#8217;t do it kids, books are worse than drugs. Well, ok probably [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Seriously. 2008. How the hell did this happen? It&#8217;s not supposed to be 2008 yet? Where are the flying cars? Where&#8217;s the moon base? And where is my household robot?</p>
<p>When I was a kid I used to hang out at the local library. Don&#8217;t do it kids, books are worse than drugs. Well, ok probably not but they&#8217;re pretty bad. You get a lot of really weird ideas from books anyway. (Especially if they happen to be written by Carlos Castaneda but that&#8217;s a completely different story altogether) Since I was one of those kids that wasn&#8217;t content with the &#8220;See Spot run&#8221; storylines of the young adult section - I mean seriously, what was the deal with Enid Blyton and food - I soon learned how to avoid the ever watchful eye of Sauron, I mean the librarian, and sneak into the adult section. No, it wasn&#8217;t that kind of adult, just because it&#8217;s Sweden doesn&#8217;t mean we have porn in the libraries, not even in the seventies. In any case I found a goldmine. And I spent a lot of time reading all sorts of stuff.</p>
<p>A lot of what I read was science fiction, there was Asimov and Bradbury, Heinlein, Simak and many others and to me those fantastic potential futures really made an impression. What if? they asked and so did I. Most of these books were written in the fifties and early sixties and it shows, they were all focused primarily on man&#8217;s conquest of space and the effects on humanity as a whole. Most of it was in hindsight pretty bad but some of it was just mindblowing, especially to a warped and fragile little mind as mine. Where am I going with this? Well, I was sitting in the living room just after Christmas, just thinking about this and that, and it struck me that something really strange happened in the seventies. Mankind has been very focused on conquest. Higher. Faster. Colonize. But suddenly it seemed, at pretty much the same time as we finally reached beyond our own fragile little biosphere into the great and unfriendly space beyond, we stopped. Humanity turned inward, towards itself. No longer necessarily focused on conquest (if we ignore the usual realpolitikal squabbles over scarce finite resources) but on consumption and communication. Now, we have always been a communicating species. I usually say that if you introduce a new technology within minutes you will see people using it to try to find someone to fuck, steal from or sell porn to. These days we can probably add gank to that but you get the point anyway.</p>
<p>This seems to me to be an inevitable trend. Space is unfriendly. Very very unfriendly. It&#8217;s not a solution, at least for carbon-based lifeforms with a very narrow niche in which we can survive comfortably. And perhaps this newfound interest in ecology and the environment will actually ensure that the planet isn&#8217;t a complete dump within the next 100 years. But what fascinates me the most is that this inward turn has made us conquer a new and still emerging landscape, one which is far more complex then most people realize. We are only 10 or so Moore&#8217;s law generations from having CPUs that have the processing power equivalent of a human brain. We are starting to see services becoming augmentions, by which I mean that we use Google and other services to quickly find, assess and comment information. Strip away IT from a company, almost any company, and see what happens? The productivity gains have been enormous but what we haven&#8217;t realized is that we are dependent on these tools and services in a way that surpasses any previous generation. A typist was certainly dependent on the typewriter but not anywhere near to the same extent. Tools could be rebuilt. My grandfather who was a fairly good carpenter could probably have put together a pretty reasonable toolset if someone happened to steal all of his existing tools. But we can&#8217;t do that. Our tools are so complex that we need to realize that this generation may be the first semi-augmented one. Will children born in 2008 fork personality constructs that do farm work for them in whatever MMO they are playing around 2025? Probably not. But I am quite certain that their way of interaction with each other and with whatever terminals they use would seem almost magical, in much the same way that someone who had never even heard of the internet in 1990 would find today&#8217;s reality more than a little confusing. &#8220;What do you mean google it? And what&#8217;s a facebook? And who is that yahoo?&#8221; We won&#8217;t go into space, at least not the one out there. There might be a mission to Mars. It might even happen in my lifetime. There might be commercial space travel that take morons on a short flight outside of the Earth&#8217;s atmosphere (a fool and his money is easily parted). But there won&#8217;t be any large scale space colonization. Other things might happen. Stranger things than I think that most of us can even imagine today. And if the creation of large scale online communities with today&#8217;s technology is anything to go by then I would be very surprised if we don&#8217;t start seeing fully virtual work places in the next ten years or so. Those who have played a lot of MMOs wouldn&#8217;t have much of an issue dealing with their office interactions over a voice link and through a virtualized terminal where you switch between some social area and your workplace. Pair programming would be an excellent example of something that could be easily achieved and which would work extremely well in a situation like that. And when that happens - who cares about time zones? Who cares about physical location? From a Friedman perspective, one could argue that this is already happening of course. But I don&#8217;t think it is. Not yet. Some of the infrastructure is there. The mindset is spreading. But most of the people in workplaces today are still brought up with the notion of an office, a physical space where you go which has some inherent value in being Elsewhere. Who will create the services? It&#8217;s not a question of whether the future will be distributed, it&#8217;s just a question of how distributed it will be.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/52/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/52/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=52&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2008/01/10/ah-the-freshness-of-a-new-year/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>Death - the season to be jolly</title>
		<link>http://bitpipe.wordpress.com/2007/12/21/death-the-season-to-be-jolly/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/21/death-the-season-to-be-jolly/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 22:15:09 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Randomness]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/21/death-the-season-to-be-jolly/</guid>
		<description><![CDATA[Christmas time is closing in and the dark has pretty much engulfed us. But as the shining beacon of light that I am (universally loved by children and small animals everywhere), I figured I should give you a bit of a christmas present. I have spent some time finding some clips on youtube that I [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Christmas time is closing in and the dark has pretty much engulfed us. But as the shining beacon of light that I am (universally loved by children and small animals everywhere), I figured I should give you a bit of a christmas present. I have spent some time finding some clips on youtube that I like. For various reasons. You will watch them and enjoy the glorious splendor of various eras of entertainment. And remember, in Soviet Russia the entertainment watches you!</p>
<p>Now, I&#8217;d to start out with my personal hero, a man who I would easily place at the top spot of Funniest Men In History Of Mankind. He is of course a completely <a href="http://www.youtube.com/watch?v=n4zRe_wvJw8">awful</a> singer. But the lyrics and bizarre dancing certainly make up for any lack in that department. As long as you are tone deaf. And if you dislike the works of the Marx Brothers then I just pity you. You are probably a sad little person.<br />
And since Groucho himself references another Groucho character in that song (Cpt Spaulding) it&#8217;s no more than fitting that the next entry here is a song by one of my favorite bands of all time. The lead singer also has the good taste to look a little bit like me which has been commented upon so many times that if someone else says &#8220;Hey, you look like Joey Ramone&#8221; I am going to do a Blitzkrieg Bop on their head. In any case, <a href="http://www.youtube.com/watch?v=BiXklnXFuA4">here</a> they do a song which in a certain sense reflects a song sung by Groucho in another Marx Brothers movie. But different.<br />
And while we are speaking about funny, I don&#8217;t know I was alone in laughing my head off during the <a href="http://www.youtube.com/watch?v=xrShK-NVMIU">Germany vs Greece</a> game in the last european championships. Beckenbauer. Now there&#8217;s a surprise. I was just waiting for Karl Marx to turn up. It would also have been great if Thomas Aquianas had been one of the referees but I guess you can&#8217;t have everything. Regardless I think that particular skit sums up everything that made Monty Python so funny. And again, it&#8217;s binary. Either you find it hysterical or not.<br />
But I must say that there are some very funny comedians working now as well. But at the top of the list is Daniel Tosh in my book. (EDIT: Unfortunately the five Daniel Tosh clips are now gone gone gone from Youtube. You will of course feel very sorry. Also buy his DVD. No, really.) Now why does he get preferential treatment and five links, I hear you cry, pathetic person over there with no life. Because he is fucking funny. And <a href="http://www.youtube.com/watch?v=pE1-REAjpUU">evil</a>. My fellow Jantean PN will get that reference perhaps, perhaps not - if one person gets it, it&#8217;s worth keeping in my book. And it&#8217;s the Supersuckers - The Greatest Rock&#8217;n'Roll Band In The World. If you haven&#8217;t seen them live then please, for the love of God, don&#8217;t. It&#8217;s hard enough to get tickets to their shows as it is and I don&#8217;t want to miss them.<br />
Now, that pretty much wraps up my list of things that I have found on youtube lately. So the time has come to say <a href="http://www.youtube.com/watch?v=eNo7NWGR-vQ">good bye</a> and what better way to do that than in the words of <a href="http://www.youtube.com/watch?v=5t-Yw3IZPtU">lock, stock and barrel</a>. Merry christmas and see you next year!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=51&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/21/death-the-season-to-be-jolly/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>I am amazed</title>
		<link>http://bitpipe.wordpress.com/2007/12/20/i-am-amazed/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/20/i-am-amazed/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 22:13:33 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[IAMCP]]></category>

		<category><![CDATA[Zealots]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/20/i-am-amazed/</guid>
		<description><![CDATA[Well, the whole discussion about why IAMCP decided to sue SIS is over. At least according to the press release that their chairman, the erstwhile illustrious mr Berti sent me earlier today. (It has been covered at least in Computer Sweden) It&#8217;s because of what happened with the OOXML vote. Color me a completely unsurprised shade of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Well, the whole discussion about why IAMCP decided to sue SIS is over. At least according to the press release that their chairman, the erstwhile illustrious mr Berti sent me earlier today. (It has been covered at least in Computer Sweden) It&#8217;s because of what happened with the OOXML vote. Color me a completely unsurprised shade of pink.</p>
<p>There has been some private conversation between myself and Valentino Berti as well. I won&#8217;t go into any detail on that, suffice to say that it&#8217;s reached a point where I am truly amazed. Now, in the interest of full disclosure  - and because some of you will find this amazingly amusing - I will tell you that I happen to work for an IAMCP member. Wow. How intensely funny is THAT.</p>
<p>To the matter at hand however. This whole story is bullshit from start to finish. The process that SIS used was subverted. It was subverted by members of the swedish chapter of IAMCP. Period. In this case IAMCP is sitting on two chairs and that just ends up with ass-on-floor. And if you are really curious about who participated and when they joined <a href="http://blog.openxp.net/2007/12/drive-by-voting.html">this</a> this wonderful little resource should help you straighten things out. National Archive and Royal Library against. I&#8217;d really like to know why. Really really.</p>
<p>But anyway.</p>
<p>Let me be perfectly clear: I don&#8217;t care if it had been partners of IBM/Google/Procter &amp; Gamble who had done this. It would be WRONG either way. The people who had been working within the process didn&#8217;t get a chance to have their voices heard, they were - for all intents and purposes - shouted down by new arrivals. If I were on the board of SIS I would do EXACTLY the same thing. Their choice was either to invalidate the entire process, basically saying that ISO standards are completely and utterly buyable, or to actually put their foot down and invalidate the vote, thereby removing Sweden from the equation. If it had been a nay-vote that got nipped in the bud, would IAMCP have been as keen on litigation? I think not.</p>
<p>In my opinion the legal action against SIS by IAMCP is nothing but scare tactics. Instead of letting the dust settle and actively participating in a process to change the way SIS works in a way that ensures that the people who end up voting have actually participated in the work, they took a completely different route. As a matter of principle apparently. Where they are complaning about how market forces are able to subvert the SIS process. Which is just hysterical. When are the market forces ok as an influencing factor? Only when you win? This is not OK. And I must say that with friends like the IAMCP, Microsoft really doesn&#8217;t need enemies.</p>
<p>Now, you may think that this is a one eyed view of the world. And that is your prerogative. If you seriously think that IAMCP is suing SIS over $2 500 dollars and an excuse I think that you probably might be interested in some real estate on Neptune, beautiful vistas and so on. Never mind the poisonous fumes.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=49&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/20/i-am-amazed/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>IAMCP complains</title>
		<link>http://bitpipe.wordpress.com/2007/12/19/iamcp-complains/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/19/iamcp-complains/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 13:41:55 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[IAMCP]]></category>

		<category><![CDATA[OOXML]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/19/iamcp-complains/</guid>
		<description><![CDATA[For english speaking persons
I have invited the guerilla guys to contact me personally to be able to give the right information in an adult way. 
I expect this to happen, so you will get the right resons for our action. It has actually nothing to do with the voting.
regards
Valentino Berti
Chairman IAMCP

This little wonderful nugget of [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em>For english speaking persons</em></p>
<p><em>I have invited the guerilla guys to contact me personally to be able to give the right information in an adult way. </em></p>
<p><em>I expect this to happen, so you will get the right resons for our action. It has actually nothing to do with the voting.</em></p>
<p><em>regards<br />
Valentino Berti<br />
Chairman IAMCP</em></p>
<p><em></em></p>
<p>This little wonderful nugget of a comment hit the post on IAMCP&#8217;s legal action against SIS last night. Got to love it. Adult way. Nice.</p>
<p>Listen Valentino. The process that SIS used was knowingly SUBVERTED, not by SIS but by Microsoft partners. The idea, and this is to a certain extent a gentlemen&#8217;s agreement, is that if you want to vote you need to take part in the process. No exceptions. I don&#8217;t care what way your vote was going to be cast, if you hadn&#8217;t been there for the discussions you have no place casting votes. Period. That is what &#8220;securely participate in a standardisation process&#8221; means. Read the standard, discuss it with the stakeholders (did anyone of your members bother to talk to the people from the Royal Library that are actually tasked with ensuring that documents are stored in a future proof way, they were part of the original group, voted no for some reason). That is the process. There is nothing else to it. Turning up and paying the membership fee when it&#8217;s time to vote can only be construed as &#8220;securely participating in the standardisation process&#8221; if your interest are to push the decision one way or the other for reasons that are hidden from the other participants. As a pot smoking surfer would put it: &#8220;Not cool, dude&#8221;.  So the reason you are doing what you are doing is because SIS&#8217; board overturned the decision. This whole story is rotten borough through and through but this time with a Deus Ex Machina in the form of the board that actually had the balls to say that what was done wasn&#8217;t in line with the INTENT of the process. And Valentino, feel free to comment here and tell everyone your side of the story.</p>
<p> And just for the record: I don&#8217;t think that OOXML was anywhere near a state where it could be fast-tracked through standardisation.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=48&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/19/iamcp-complains/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>Chapter umpteen - in which I feel inclined to quote a robot</title>
		<link>http://bitpipe.wordpress.com/2007/12/16/chapter-umpteen-in-which-i-feel-inclined-to-quote-a-robot/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/16/chapter-umpteen-in-which-i-feel-inclined-to-quote-a-robot/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 22:23:55 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Networks]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/16/chapter-umpteen-in-which-i-feel-inclined-to-quote-a-robot/</guid>
		<description><![CDATA[Yes. I suggest that you take a look at this little nugget, courtesy of the New York Times.
It is interesting though. Where will our applications end up? Will it be the network computer (for the seventy millionth time) or will it be the fat client?
The thing I wonder is if everyone involved is smoking crack. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yes. I suggest that you take a look at <a href="http://www.nytimes.com/2007/12/16/technology/16goog.html?ei=5088&amp;en=51443a66d6584dc2&amp;ex=1355461200&amp;partner=rssnyt&amp;emc=rss&amp;pagewanted=print">this</a> little nugget, courtesy of the New York Times.</p>
<p>It is interesting though. Where will our applications end up? Will it be the network computer (for the seventy millionth time) or will it be the fat client?<br />
The thing I wonder is if everyone involved is smoking crack. Are the intarwebs really working better? Search engines being gamed, malware spreading like wildfire, ownership of core networks moving further and further into the vast unthinking depths of telco land. This is not a market for networked applications. In fact I am considering if it&#8217;s not looking a lot more like a market in which distributed trusted networks (overlayed on top of a inherently untrustworthy network) will be the thing. I guess you could describe it as VPN:s but VPN:s somehow assume that there is an entity (or group) which strives to be private and that is not really what I am talking about; rather that groups of people, who may or may not even be linked to each other in any other way than that they have established some form of trust , start to look at sharing information. (It&#8217;s a thought still forming so you will have to bear with me for a while on that subject)<br />
In any case - the idea that Google will succeed where so many others have failed is simply ludicrous. I certainly think that certain types of applications will move into the network domain, certain parts of applications will be managed centrally (See Excel Server for a very good example). But that enterprises would trust Google with their data? Or that Google could actually make a better Office suite than Microsoft in Javascript? Don&#8217;t be ludicrous. It&#8217;s not even a pipedream, it&#8217;s FUD. But not from Redmond for once in a while.<br />
Sure there are people, some who I even know and respect, who claim that Google Apps will be the way of the future. I think they are full of it.<br />
Look people, we are in the second half of the chessboard, growing our storage capacity exponentially, the concurrency crisis has only begun and we are starting to see how programming languages slowly mutate to handle a future where parallellism becomes more and more important. The idea that a networked application would somehow be necessary when storage and cycles are ultra cheap commodities is just dumb. If you can carry your desktop on your keychain and run it on pretty much anything, all your documents, applications, even your desktop - why would you need a networked application? (And if you think I am full of shit, think <a href="http://www.informationweek.com/news/showArticle.jhtml?articleID=199501108">again</a>) To share your documents? Don&#8217;t be daft, the wiki is the collaborative way and somehow I think that Microsoft latest posturing about the wikiness of Sharepoint shows that they have got the idea at long last (in spirit if not in practice).<br />
Applications will become even more personal as they become personalized. They may become thinner, certain aspects of them moving into server farms elsewhere (enterprise controlled or something like S3, who knows), but they will become - to a certain extent - part of us, of what we are. Simple things have already started to turn up. Personalized menues based on how we work. But this is a niche where there is much to be done and where major things will start happening soon I think. Predictive searches for information, abstract generation, monitoring of inbound async communications providing context sensitive background information inlined. Something like that. And many other things naturally.</p>
<p>Not bad for a sunday night ramble I think.</p>
<p> Oh yes. The robot quote. Bite my shiny metal ass.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=47&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/16/chapter-umpteen-in-which-i-feel-inclined-to-quote-a-robot/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>AT&#38;T or How to look like a moron</title>
		<link>http://bitpipe.wordpress.com/2007/12/07/att-or-how-to-look-like-a-moron/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/07/att-or-how-to-look-like-a-moron/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 18:29:33 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Brooklyn bridge]]></category>

		<category><![CDATA[Stupidity]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/07/att-or-how-to-look-like-a-moron/</guid>
		<description><![CDATA[Gather round children, the campfire is warm and cozy and there shouldn&#8217;t be any crazy axe murderers around this time of year. Let me tell you a story. Once upon a time there was a huge operator created out of the merger between two slightly less huge operators. They were called Orange and Blue. Well, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Gather round children, the campfire is warm and cozy and there shouldn&#8217;t be any crazy axe murderers around this time of year. Let me tell you a story. Once upon a time there was a huge operator created out of the merger between two slightly less huge operators. They were called Orange and Blue. Well, they weren&#8217;t actually called that but they used those &#8220;secret cover names&#8221; internally to ensure that nobody understod what was going on when preparing the merger. The fact that you had to be dead to not understand it never dawned on the geniuses that came up with it. But never mind that. They merged and created a new operator which was first called Orange and then suddenly changed it&#8217;s name to Blue. It was all very tricky. They were also a rather closed system but when another operator in their market declared that their network was open to any device Blue made a decision. They declared that they were also open but that they couldn&#8217;t guarantee the performance of devices not sold through the Blue stores.</p>
<p>And everybody laughed and laughed. Because some people actually knew that some of those devices that Blue had sold were so extraordinarily crappy that they couldn&#8217;t be used with most DTMF controlled voice application services.</p>
<p> The moral of this story is simple: don&#8217;t sell crap. And don&#8217;t buy Motorola phones. And don&#8217;t trust operators. And a lot of other stuff.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=46&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/07/att-or-how-to-look-like-a-moron/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>An offer you can&#8217;t refuse - Redmond style</title>
		<link>http://bitpipe.wordpress.com/2007/12/06/an-offer-you-cant-refuse-redmond-style/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/06/an-offer-you-cant-refuse-redmond-style/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 12:45:15 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[OOXML]]></category>

		<category><![CDATA[Stupidity]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/06/an-offer-you-cant-refuse-redmond-style/</guid>
		<description><![CDATA[This must be the joke of the day. IAMCP (International Association of Microsoft Certified Partners) have decided to sue SIS (Swedish Standards Institute). Oh the irony.
Perhaps you don&#8217;t remember this story (or you lived in a cave for the last six months, eating nothing but rocks) so I will retell it. Once upon a time [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This must be the joke of the day. IAMCP (International Association of Microsoft Certified Partners) have decided to sue SIS (Swedish Standards Institute). Oh the irony.</p>
<p>Perhaps you don&#8217;t remember this story (or you lived in a cave for the last six months, eating nothing but rocks) so I will retell it. Once upon a time a couple of months ago SIS was preparing to move to vote on the OOXML standard. There had been a work group and they were done. But at the meeting were the vote was to take place there was a sudden influx of new SIS members. Curiously the vast majority of them Microsoft Gold partners. And they voted in favor of standardising OOXML. How strange. SIS has a board though and they looked at the result and the process and decided to throw it out, basically telling IAMCP that the way they had done things (ignoring the process and just turning up at the last minute to change the outcome) wasn&#8217;t ok. And now IAMCP is going to sue.</p>
<p> Scare tactics. Listen IAMCP, you have a lot of members that could take part in the process. They could have done this in a way that fit the way that standardisation is supposed to work. Sit down with other parties and discuss the pros and cons of a format and write comments. Perhaps you learn something you didn&#8217;t know. The fact that the Royal Library (that is tasked with ensuring that documents are available for future generations) cast a NO vote tells you something, imagine if you had had the opportunity to actually understand their requirements and what they didn&#8217;t like about OOXML.</p>
<p>Let&#8217;s face it. You are behaving like assholes. And if it&#8217;s one thing that Microsoft really doesn&#8217;t need it&#8217;s more assholes associated with it.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=43&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/06/an-offer-you-cant-refuse-redmond-style/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
		<item>
		<title>Eloquence</title>
		<link>http://bitpipe.wordpress.com/2007/12/06/eloquence/</link>
		<comments>http://bitpipe.wordpress.com/2007/12/06/eloquence/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 03:14:38 +0000</pubDate>
		<dc:creator>Niklas Derouche</dc:creator>
		
		<category><![CDATA[It's the economy stupid]]></category>

		<guid isPermaLink="false">http://bitpipe.wordpress.com/2007/12/06/eloquence/</guid>
		<description><![CDATA[I hope you don&#8217;t get the stupid idea that this is somehow becoming a habit (me writing blog entries every single day that is) because it isn&#8217;t. I just happened to have a little bit of free time for once. This one will however be short and sweet. Here is a little song that you [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I hope you don&#8217;t get the stupid idea that this is somehow becoming a habit (me writing blog entries every single day that is) because it isn&#8217;t. I just happened to have a little bit of free time for once. This one will however be short and sweet. <a href="http://www.youtube.com/watch?v=fi4fzvQ6I-o&amp;eurl=http://slashdot.org">Here</a> is a little song that you will enjoy.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bitpipe.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bitpipe.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitpipe.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitpipe.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitpipe.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitpipe.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitpipe.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitpipe.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitpipe.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitpipe.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitpipe.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitpipe.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bitpipe.wordpress.com&blog=1514609&post=42&subd=bitpipe&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bitpipe.wordpress.com/2007/12/06/eloquence/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/nikder-128.jpg" medium="image">
			<media:title type="html">Niklas Derouche</media:title>
		</media:content>
	</item>
	</channel>
</rss>