<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Michael Wolbert's Blog &#187; Work</title>
	<atom:link href="http://michaelwolbert.nl/blog/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelwolbert.nl/blog</link>
	<description></description>
	<lastBuildDate>Thu, 06 May 2010 12:44:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hijacking HTTP headers starring Vodafone</title>
		<link>http://michaelwolbert.nl/blog/2009/09/hijacking-http-headers-starring-vodafone/</link>
		<comments>http://michaelwolbert.nl/blog/2009/09/hijacking-http-headers-starring-vodafone/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 08:35:48 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Smarty]]></category>
		<category><![CDATA[Vodafone]]></category>
		<category><![CDATA[WURFL]]></category>

		<guid isPermaLink="false">http://michaelwolbert.nl/blog/?p=204</guid>
		<description><![CDATA[Currently I&#8217;m working on a mobile website and I&#8217;m in the midst of some pain-in-the-arse compatibility issues on page rendering on multiple handsets. I ran across WURFL (Wireless Universal Resource FiLe) , a project which can help you detect a device and to retrieve its device specific properties. WURFL models the properties of wireless/mobile devices [...]]]></description>
			<content:encoded><![CDATA[<p>Currently I&#8217;m working on a mobile website and I&#8217;m in the midst of some pain-in-the-arse compatibility issues on page rendering on multiple handsets. I ran across <a href="http://wurfl.sourceforge.net/" target="_self">WURFL</a> (<strong>W</strong>ireless <strong>U</strong>niversal <strong>R</strong>esource <strong>F</strong>i<strong>L</strong>e) , a project which can help you detect a device and to retrieve its device specific properties. WURFL models the properties of wireless/mobile devices in a 13mb XML file.</p>
<p>Next to that there are a lot of APIs (<a href="http://www.tera-wurfl.com/" target="_self">TERA-WURFL PHP</a>, <a href="http://www.madagasgar.com/wurfl/">WURFL-PHP</a>, WURFL-Java, WURFL-.NET and WURFL-Perl). I&#8217;m using the TERA-WURFL PHP API since I&#8217;m also fond of the <a href="http://smarty.net" target="_self">Smarty template engine</a>. :-)</p>
<p><strong>How it works<br />
<span style="font-weight: normal;">The WURFL-PHP API uses a mysql instance to store device specific properties. </span></strong>A caching mechanisms works on top of the mysql instance to enable lightning fast queries on the database.</p>
<p>By querying the device table (11,000+ rows) using $_SERVER['HTTP_USER_AGENT'], we can now retrieve our device screen width capability:</p>
<pre>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;"><span class="re0">$width</span> = <span class="re0">$wurfl</span>-&amp;gt;getCapa<span class="br0">&#40;</span><span class="st0">'resolution_width'</span><span class="br0">&#41;</span>; <span class="co1">// get width capability</span></div>
</div>
</pre>
<p>All capabilities can be found at WURFL&#8217;s documentation: <a href="http://wurfl.sourceforge.net/help_doc.php">http://wurfl.sourceforge.net/help_doc.php</a>.</p>
<p><strong>Back to Vodafone:<br />
<span style="font-weight: normal;">Ok, so why does Vodafone suck?</span></strong></p>
<p><strong><span style="font-weight: normal;">Well, it is all about Vodafone&#8217;s reformatting proxy. A what? Yeah, a reformatting proxy. Vodafone uses reformatting proxies to reformat a page to display only the content of interest (ie. article text, article thumbnail, <strong>no</strong> layout). This comes in handy when a website doesn&#8217;t have a mobile design; think about reading <a href="http://slashdot.org/" target="_self">Slashdot</a> without a reformat. However, many websites have a mobile specific website nowadays, which leads to better user experience, since reformatted pages are mostly completely stripped down. The big problem in this case is that Vodafone&#8217;s reformatting proxy changes crucial HTTP headers..</span></strong></p>
<ul>
<li>A normal request from a mobile phone:
<pre>HTTP_USER_AGENT =&gt; Nokia6288/2.0 (05.92) Profile/MIDP-2.0 Configuration/CLDC-1.1
HTTP_X_WAP_PROFILE =&gt; "http://nds1.nds.nokia.com/uaprof/N6288r100.xml"</pre>
</li>
<li>Vodaphone&#8217;s reformatting proxy&#8217;s request:
<pre>HTTP_USER_AGENT =&gt; = Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/
Firefox/1.5.0.7 MG (Novarra-Vision/6.1)
HTTP_X_DEVICE_USER_AGENT =&gt; Nokia6288/2.0 (05.94) Profile/MIDP-2.0 Configuration/CLDC-1.1</pre>
</li>
</ul>
<p>The reformat proxy changed the HTTP_USER_AGENT header to a desktop browser version [sigh]. HTTP_X_DEVICE_USER_AGENT is a non-standard HTTP header. Hijacking HTTP headers is great sport, way to go Vodafone! Is this just as bad as <a href="http://michaelwolbert.nl/blog/2008/09/free-magenta-from-these-evil-minds-at-t-mobile/" target="_self">claiming a color</a>?</p>
<p><strong>References:</strong></p>
<ul>
<li><a href="http://wurfl.sourceforge.net/vodafonerant/">http://wurfl.sourceforge.net/</a></li>
<li><a href="http://wurfl.sourceforge.net/vodafonerant/">http://wurfl.sourceforge.net/vodafonerant/</a></li>
<li><a href="http://www.betavine.net/bvportal/forums/index.html?threadId=207&amp;postPage=6">http://www.betavine.net/bvportal/forums/index.html?threadId=207&amp;postPage=6</a></li>
<li><a href="http://wapple.net/press-releases/33/vodafone-misses-the-point-of-the-mobile-internet.htm">http://wapple.net/press-releases/33/vodafone-misses-the-point-of-the-mobile-internet.htm</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://michaelwolbert.nl/blog/2009/09/hijacking-http-headers-starring-vodafone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Preparing for a trip to Seattle</title>
		<link>http://michaelwolbert.nl/blog/2009/06/preparing-for-a-trip-to-seattle/</link>
		<comments>http://michaelwolbert.nl/blog/2009/06/preparing-for-a-trip-to-seattle/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 10:37:16 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft Oslo]]></category>
		<category><![CDATA[Study]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Redmond]]></category>
		<category><![CDATA[SDR]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[trip]]></category>

		<guid isPermaLink="false">http://michaelwolbert.nl/blog/?p=200</guid>
		<description><![CDATA[Hi there! My bachelor project is almost coming to an end: time to graduate! Friday the 26nd of June I have to defend my thesis at the Hogeschool Utrecht. In the meantime I&#8217;ll be heading to Seattle to attend an &#8220;Oslo&#8221; Software Design Review (SDR) from June 19th till 24th which I got invited to [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there! My <a href="http://michaelwolbert.nl/blog/2009/01/been-a-while/" target="_self">bachelor project</a> is almost coming to an end: time to graduate! Friday the 26nd of June I have to defend my thesis at the Hogeschool Utrecht. In the meantime I&#8217;ll be heading to <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=seattle&amp;sll=47.619891,-122.334523&amp;sspn=0,359.973435&amp;g=2301+8TH+AVENUE,+SEATTLE&amp;ie=UTF8&amp;ll=47.606163,-122.34375&amp;spn=24.861096,54.404297&amp;z=5&amp;iwloc=A" target="_self">Seattle</a> to attend an &#8220;Oslo&#8221; Software Design Review (SDR) from June 19th till 24th which I got invited to by Microsoft. At this event I&#8217;ll be discussing experiences I had during the development of a prototype for my bachelor project at <a href="http://avanade.com" target="_blank">Avanade</a>.</p>
<div class="wp-caption aligncenter" style="width: 346px"><img title="Seattle Skyline" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Seattle_skyline_night.jpg/800px-Seattle_skyline_night.jpg" alt="" width="336" height="249" /><p class="wp-caption-text">Seattle skyline</p></div>
<p style="text-align: center;">
<p>Next to this event I have some time off to go to <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=olympic+national+park&amp;sll=37.579413,-95.712891&amp;sspn=57.196548,108.808594&amp;ie=UTF8&amp;ll=47.652438,-123.266602&amp;spn=1.550452,3.400269&amp;z=9" target="_self">Olympic National Park</a>; roam downtown Seattle and have a look on how the American Dream is lived. Or do you have to be asleep to believe it?</p>
<p style="text-align: left;"><em>The reason they call it the American Dream is because you have to be asleep to believe it.</em><br />
- <a href="http://www.youtube.com/watch?v=acLW1vFO-2Q" target="_blank">George Carlin</a></p>
<p>Hang around for photos! :-)</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelwolbert.nl/blog/2009/06/preparing-for-a-trip-to-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second video of Bangalore online!</title>
		<link>http://michaelwolbert.nl/blog/2008/11/second-video-of-bangalore-online/</link>
		<comments>http://michaelwolbert.nl/blog/2008/11/second-video-of-bangalore-online/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 07:41:57 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Study]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Bangalore]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[trip]]></category>

		<guid isPermaLink="false">http://michaelwolbert.nl/blog/?p=128</guid>
		<description><![CDATA[Once again credits go out to Bart Boonstra!

]]></description>
			<content:encoded><![CDATA[<p>Once again credits go out to <a href="http://www.bartboonstra.nl/2008/11/bangalore-deel-3-video/" target="_blank">Bart Boonstra</a>!</p>
<p style="text-align: center;"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/idPAO9wJ_XY&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/idPAO9wJ_XY&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://michaelwolbert.nl/blog/2008/11/second-video-of-bangalore-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ULab 1.0 Silverlight case published in .NET Magazine</title>
		<link>http://michaelwolbert.nl/blog/2008/10/ulab-10-silverlight-case-published-in-net-magazine/</link>
		<comments>http://michaelwolbert.nl/blog/2008/10/ulab-10-silverlight-case-published-in-net-magazine/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 15:13:15 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Study]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[.NET Magazine]]></category>
		<category><![CDATA[ULab]]></category>

		<guid isPermaLink="false">http://michaelwolbert.nl/blog/?p=60</guid>
		<description><![CDATA[Our Silverlight case has recenlty been published in the .NET Magazine of the Benelux (Belgium, the Netherlands and Luxembourg). We got ourselfs a covershot!
Full article (PDF alert, 3.5mb).
]]></description>
			<content:encoded><![CDATA[<p>Our <a href="http://michaelwolbert.nl/blog/2008/09/ulab-10/" target="_self">Silverlight case</a> has recenlty been published in the .NET Magazine of the Benelux (Belgium, the Netherlands and Luxembourg). We got ourselfs a covershot!</p>
<div id="attachment_61" class="wp-caption aligncenter" style="width: 211px"><img class="size-medium wp-image-61" title="dotnetmagazine_cover" src="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/dotnetmagazine_cover-201x300.jpg" alt="Front row left to right: Pieter Brinkman (Software Developer), Dennis Van Baalen (Manager Software Development), Herbert Pesch (Owner of Evident Interactive); back row left to right: me, Bryan Sumter, Ruben De Gooijer" width="201" height="300" /><p class="wp-caption-text">Front row left to right: Pieter Brinkman (Software Developer), Dennis Van Baalen (Manager Software Development), Herbert Pesch (Owner of Evident Interactive); back row left to right: me, Bryan Sumter, Ruben De Gooijer</p></div>
<p><a href="http://www.evident.nl/ulab/includes/img/assets/dotNETmagazine.pdf" target="_blank">Full article</a> (PDF alert, 3.5mb).</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelwolbert.nl/blog/2008/10/ulab-10-silverlight-case-published-in-net-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Day at the Dutch Microsoft Headquarters</title>
		<link>http://michaelwolbert.nl/blog/2008/10/a-day-at-the-dutch-microsoft-headquarters/</link>
		<comments>http://michaelwolbert.nl/blog/2008/10/a-day-at-the-dutch-microsoft-headquarters/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 11:55:29 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://michaelwolbert.nl/blog/?p=50</guid>
		<description><![CDATA[Last week Bryan Sumter and I received a phone call from Microsoft. We were asked if we could fill in for a speaker who couldn&#8217;t make it that day. We seized this upportunity to visit the Microsoft HQ for the first time in our lives. This presentation was almost Identical to our MixEssentials presentation, but [...]]]></description>
			<content:encoded><![CDATA[<p>Last week Bryan Sumter and I received a phone call from Microsoft. We were asked if we could fill in for a speaker who couldn&#8217;t make it that day. We seized this upportunity to visit the Microsoft HQ for the first time in our lives. This presentation was almost Identical to our <a href="http://michaelwolbert.nl/blog/2008/09/ulab-10/" target="_self">MixEssentials presentation</a>, but this one was a more interactive one.</p>
<div id="attachment_51" class="wp-caption aligncenter" style="width: 235px"><a href="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/p1010979.jpg"><img class="size-medium wp-image-51" title="dutch_weather" src="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/p1010979-225x300.jpg" alt="On our way to Microsoft dealing with the typical Dutch weather scenario.." width="225" height="300" /></a><p class="wp-caption-text">On our way to Microsoft dealing with the typical Dutch weather scenario..</p></div>
<p><strong>Coffee<br />
</strong>First of all the coffee, served by the <a title="Coffee Company Home" href="http://www.coffeecompany.nl/" target="_blank">Coffee Company</a>, was tremendously nice. I will lie if I told you it was the best I had so far, but it fell in this order of goodness.</p>
<p><strong>Presentation<br />
</strong>The audience consisted of about 60 people from the IT educational branch. Most of them were managers and some of them were actually teachers, who all had their own expertise: developers, designers, system administrators, network administrators and so on..</p>
<div id="attachment_52" class="wp-caption aligncenter" style="width: 310px"><a href="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/p1010998.jpg"><img class="size-medium wp-image-52" title="presentation_room" src="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/p1010998-300x225.jpg" alt="At least you can find the exit in case of.." width="300" height="225" /></a><p class="wp-caption-text">At least you can find the exit in case of..</p></div>
<p>We showed the applications we built using new Microsoft technologies so that teachers could understand how these technologies could benefit the students in their future careers.</p>
<div id="attachment_53" class="wp-caption aligncenter" style="width: 310px"><a href="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/p1020017.jpg"><img class="size-medium wp-image-53" title="bryan_maartenjan_i" src="http://michaelwolbert.nl/blog/wp-content/uploads/2008/10/p1020017-300x225.jpg" alt="Bryan Sumter, me and Maarten Jan Vermeulen (Microsoft Student Partner)" width="300" height="225" /></a><p class="wp-caption-text">Bryan Sumter, me and Maarten Jan Vermeulen (Microsoft Student Partner)</p></div>
<p><strong>Drinks<br />
</strong>At the reception we had some nice conversations with diverse teachers, who all were positive about our presentation. They asked or we proposed to give presentations or maybe even workshops at their schools.</p>
<p>Tuesday 14 October we&#8217;ll have another meeting with Maarten Jan Vermeulen, which I&#8217;ll probably cover afterwards!</p>
]]></content:encoded>
			<wfw:commentRss>http://michaelwolbert.nl/blog/2008/10/a-day-at-the-dutch-microsoft-headquarters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ULab 1.0</title>
		<link>http://michaelwolbert.nl/blog/2008/09/ulab-10/</link>
		<comments>http://michaelwolbert.nl/blog/2008/09/ulab-10/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 15:48:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Study]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[DevDays 2008]]></category>
		<category><![CDATA[Evident Interactive]]></category>
		<category><![CDATA[Hogeschool Utrecht]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[MixEssentials 2008]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[ULab]]></category>

		<guid isPermaLink="false">http://michaelwolbert.nl/blog/?p=12</guid>
		<description><![CDATA[There are a lot of things that happend in the past which I will be mentioning in upcoming posts. For example my role in ULab 1.0 from February 2008 till June 2008.
Evident Interactive, a company which primarily focuses on existing .NET technologies, was keen to know the latest ins and outs on new Microsoft technologies, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">There are a lot of things that happend in the past which I will be mentioning in upcoming posts. For example my role in <a title="ULab 1.0" href="http://ulab.nl" target="_blank">ULab 1.0</a> from February 2008 till June 2008.<a href="http://ulab.nl"><img class="aligncenter" title="ULab logo" src="http://www.evident.nl/ulab/includes/img/ulab-logo.jpg" alt="" width="279" height="173" /></a></p>
<p style="text-align: left;"><a title="Evident Interactive" href="http://evident.nl" target="_blank">Evident Interactive</a>, a company which primarily focuses on existing .NET technologies, was keen to know the latest ins and outs on new Microsoft technologies, such as <a title="Silverlight homepage" href="http://silverlight.net" target="_self">Silverlight</a> and mapping technologies (<a title="Virtual Earth" href="http://maps.live.com" target="_blank">Virtual Earth</a> &amp; <a title="Google Maps" href="http://maps.google.com" target="_blank">Google Maps</a>). Although mapping technologies aren&#8217;t that new, Silverlight could deliver the extra punch of User Experience the company was looking for in creating small lightweight webapplications.</p>
<p style="text-align: left;">Evident Interactive made an agreement with the <a title="HU" href="http://hu.nl" target="_blank">Hogeschool Utrecht</a> to hire students from IT related studies to study and to develop a pilot given these technologies. <strong><em>We the students</em></strong>, Bryan, Bastiaan, Ruben and I took the opportunity to join the team.</p>
<div class="wp-caption aligncenter" style="width: 516px"><img title="ULabteam" src="http://www.evident.nl/ulab/includes/img/assets/Studenten_ULab.jpg" alt="" width="506" height="339" /><p class="wp-caption-text">left to right: Ruben, Bastiaan, Pieter (coworker@Evident), Bryan and me</p></div>
<p style="text-align: left;">While we where studying and developing we had contact with <a title="User Experience Blog" href="http://blogs.microsoft.nl/ux/default.aspx" target="_self">Martin Tirion</a>, who is a Microsoft User Experience Evangelist. He proposed that we&#8217;d demo the pilot at <a title="MixEssentials 2008" href="http://www.microsoft.com/netherlands/evenementen/mix/default.html" target="_blank">MixEssentials 2008</a>, which was concurrent to the <a title="DevDays 2008" href="http://www.devdays.nl" target="_blank">DevDays 2008</a>. So we did!</p>
<p style="text-align: center;"><img class="aligncenter" title="Presentation@MixEssentials" src="http://www.evident.nl/ulab/includes/img/assets/HU_ULab.jpg" alt="" width="506" height="339" /></p>
<ul>
<li><a title="MixEssentials Presentation Impression" href="http://www.evident.nl/ulab/video-ulab.html?KeepThis=true&amp;TB_iframe=true&amp;height=500&amp;width=700" target="_blank">Short impression of the presentation</a> (video with funky music)</li>
<li><a title="Full presentation" href="http://www.microsoft.com/library/errorpages/smarterror.aspx?aspxerrorpath=/emea/msdn/spotlight/event.aspx" target="_blank">Full presentation</a> (requires Live passport.. booooo!)</li>
<li><a title="MixEssentials Presentation Impression" href="http://www.evident.nl/ulab/video-hu-int.html?KeepThis=true&amp;TB_iframe=true&amp;height=500&amp;width=700" target="_blank">Screencapture</a></li>
</ul>
<p style="text-align: left;">It was pretty exciting and cool to demo an application in front of 150 people, trying to take their breath away.. ;-) For all the efforts we received a nice bottle of Prosecco (the bottle was empty next day) and a trip to <a title="TechEd 2008" href="http://www.microsoft.com/emea/teched2008/developer/" target="_blank">TechEd 2008</a> in Barcelona! Pretty nice.. but unfortunately I&#8217;m going on a trip to <a title="Bangalore, India" href="http://maps.google.com/maps?f=q&amp;hl=en&amp;q=Bangalore,+Bengaluru,+Karnataka,+India&amp;ie=UTF8&amp;cd=1&amp;geocode=FVbuxQAdCP-fBA&amp;ll=19.311143,79.453125&amp;spn=37.933436,79.101563&amp;t=h&amp;z=4" target="_blank">Bangalore, India</a> from the 2th till the 22th of November for my study.. Too bad..</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://michaelwolbert.nl/blog/2008/09/ulab-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

