<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://bloggingabout.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Rob van der Meijden</title><link>http://bloggingabout.net/blogs/rob/default.aspx</link><description>So ... what&amp;#39;s new today ?</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>FourHour Launch @ MIND available at fourhour.net</title><link>http://bloggingabout.net/blogs/rob/archive/2005/10/16/9841.aspx</link><pubDate>Sun, 16 Oct 2005 09:04:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9841</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9841</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/10/16/9841.aspx#comments</comments><description>Take a look at a short impression of Mind 2005 and&amp;nbsp;the launch of &lt;a href="http://www.fourhour.net"&gt;fourhour.net&lt;/a&gt; during one of the sessions. Also see &lt;a href="http://www.bloggingabout.net/blogs/jschreuder"&gt;Jan's&lt;/a&gt; strange behavior during the final game ...&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9841" width="1" height="1"&gt;</description></item><item><title>Your four minutes of fame ...</title><link>http://bloggingabout.net/blogs/rob/archive/2005/10/11/9687.aspx</link><pubDate>Mon, 10 Oct 2005 22:01:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9687</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9687</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/10/11/9687.aspx#comments</comments><description>&lt;p&gt;In just a few hours&amp;nbsp;you know it ... &lt;a href="http://www.fourhour.net"&gt;www.fourhour.net&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img height="139" src="/UserFiles/Rob van der Meijden/Image/fourhour.jpg" width="497" alt="" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9687" width="1" height="1"&gt;</description></item><item><title>PDC 2005 Linq, DLinq, XLinq and C# 3.0</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/16/9430.aspx</link><pubDate>Thu, 15 Sep 2005 15:08:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9430</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9430</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/16/9430.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Inspired by the key-note I went to the sessions about &amp;ldquo;LINQ&amp;rdquo; (.NET language integrated query) and &amp;ldquo;C# future directions in language innovation&amp;rdquo; to see more of the possibilities. So, here is a little summary of two sessions by &lt;/font&gt;&lt;a href="http://en.wikipedia.org/wiki/Anders_Hejlsberg"&gt;&lt;font size="2"&gt;Anders Hejlsberg&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Linq is the SQL integration for all classes which implement the IEnumerable&amp;lt;T&amp;gt;.In a demo Anders showed us the power of using a query language on a collection. For example; take a customer collection in mind, order them by name, select only one state and create a join with a different collection within &amp;hellip; in just a few lines of code &amp;hellip; not to mention that&amp;rsquo;s its all type safe. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;DLinq (Date Linq) can be seen as the next version of ADO.NET. Using attributes above classes relate a class to a database model. DLinq can communicate directly to you&amp;rsquo;re database or with the help of classes. These classes can either been generated as a partial class or been written by you. You can choose to use SQL queries generated (efficient; only that columns are used which are selected) by DLinq or use stored procedures (no plans for automatic generation). &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;XLinq (Xml Linq) is the query language again XML DOM documents which makes it much easier the do queries on XML data. When you&amp;rsquo;ve a collection you can also create XML document in a very easy way. The current downloads contain &lt;/font&gt;&lt;a href="http://msdn.microsoft.com/vcsharp/future/linqsamples/default.aspx"&gt;&lt;font size="2"&gt;a sample application&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; where all the possibilities of Xlinq and Dlinq are expressed in scenarios. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;One of the design goals for C# 3.0 is &amp;ldquo;Integrate objects, relation and XML&amp;rdquo;; pretty necessary when you are creating Linq. Anders went geeky on all this new features as &lt;/font&gt;&lt;a href="http://www.codeproject.com/useritems/Introduction_to_C__3.asp"&gt;&lt;font size="2"&gt;Lambda&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; (c =&amp;gt; c.Name), &lt;/font&gt;&lt;a href="http://developernotes.com/archive/2005/09/13/736.aspx"&gt;&lt;font size="2"&gt;Extension methods&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; (static void Dump(this object o);), &lt;/font&gt;&lt;a href="http://www.almaer.com/blog/archives/001055.html"&gt;&lt;font size="2"&gt;local variable type inference&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; (var x = 5;), &lt;/font&gt;&lt;a href="http://download.microsoft.com/download/9/5/0/9503e33e-fde6-4aed-b5d0-ffe749822f1b/csharp%203.0%20specification.doc"&gt;&lt;font size="2"&gt;Object initializers&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; (new Point { x = 1, y = 2 }), Anonymous types (new { c.Name, c.Phone }), Query expressions (from &amp;hellip; where &amp;hellip; select) and Expression trees (Expression&amp;lt;T&amp;gt;). I admit &amp;hellip; at some points he lost me &amp;hellip; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;a href="http://objectsharp.com/blogs/barry/archive/2005/09/13/3395.aspx"&gt;&lt;font size="2"&gt;Linq resources from Barry Gervin&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;, thx. &lt;/font&gt;&lt;a href="http://bloggingabout.net/blogs/ramon"&gt;&lt;font size="2"&gt;Ramon&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9430" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>PDC 2005 VSTS Bridging the gap</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/15/9423.aspx</link><pubDate>Thu, 15 Sep 2005 10:03:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9423</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9423</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/15/9423.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Excellent session by &lt;/font&gt;&lt;a href="http://blogs.msdn.com/jochens/"&gt;&lt;font size="2"&gt;Jochem Seemann&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; about DSL (Domain Specifiek languages) and the support in Visual Studio. He started with the statement: &amp;ldquo;We (MS) don&amp;rsquo;t think we can create all the designers you need. Some of them you need the buy from 3e party vendors or you can create designers yourself&amp;rdquo;. Yeah right &amp;hellip; create yourself &amp;hellip; if I have some time left &amp;hellip; At this point I was a little bit skeptical about the possibilities until he showed a demo. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;In&amp;nbsp;his demo he created a activity designer based on the DSL tools (Beta 2 today available), customized it and used it&amp;nbsp;in a project. It goes further, with the help of the DSL mapping tool you can create dependencies between the different diagrams and theoretically drill down from requirements to the actual source code. In beta2 of the DSL tool you can create/customize the use-case, activity, class diagram and simple architect designer &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;It seems very simple to customize an out of the box diagram for you&amp;rsquo;re project &amp;hellip; awesome &amp;hellip; &lt;/font&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Version 1 of DSL will be available Q1 2006, version 2 will ship the next release of VS. &lt;/font&gt;&lt;a href="http://www.bloggingabout.net/blogs/ilske"&gt;&lt;font size="2"&gt;Ilske&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;: start &lt;/font&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=57a14cc6-c084-48dd-b401-1845013bf834&amp;amp;DisplayLang=en"&gt;&lt;font size="2"&gt;downloading&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; beta2 for the upcoming project. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Links: &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;a href="http://lab.msdn.microsoft.com/teamsystem/workshop/dsltools/default.aspx"&gt;&lt;font size="2"&gt;Labs.msdn.microsoft.com&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9423" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>PDC 2005 Biztalk 2006</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/15/9419.aspx</link><pubDate>Thu, 15 Sep 2005 07:21:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9419</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9419</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/15/9419.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;I have to recall this session from my head because the slides are not yet available for download, and after the great party (&lt;/font&gt;&lt;a href="http://bloggingabout.net/blogs/rene/archive/2005/09/15/9418.aspx"&gt;&lt;font size="2"&gt;as Rene mentioned&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;) this is a little bit difficult. So here are some things for me to remember. I went to this session because of the use of &lt;/font&gt;&lt;a href="http://www.microsoft.com/biztalk/default.mspx"&gt;&lt;font size="2"&gt;Biztalk 2006&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; in the next project I mentioned earlier and because the confusion with WWF (Windows Workflow Foundation).&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;So first I saw some new features working in a demo. Creating a form in Infopath sending the form direct into Biztalk and trough email approved or rejected by some person. It all worked fine without to write one single line of code. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;What about the correlation with WCF (Windows Communication Foundation). There is no need for a direct implementation of WCF because all the protocols WCF support already exists within Biztalk. But in further releases this part of Biztalk could partially been replaced by WCF.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;So is the WWF (Windows Workflow Foundation) going to replace Biztalk ? It seems that the WWF is similar, in a functional matter, to the orchestration part of Biztalk. And in further releases this part of Biztalk is going to be replaced by the WWF. When to use Biztalk or WWF ? When you&amp;rsquo;re creating business apps which &amp;lsquo;stays&amp;rsquo; within you&amp;rsquo;re organization, you&amp;rsquo;re workflow doesn&amp;rsquo;t contain long running processes and all the endpoints are supported in a familiar way use the WWF, otherwise use Biztalk.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9419" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>PDC 2005 Extended</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/15/9417.aspx</link><pubDate>Thu, 15 Sep 2005 06:14:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9417</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9417</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/15/9417.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Wendy &amp;hellip; Manou &amp;hellip; please help &amp;hellip;.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;img height="161" src="/UserFiles/Rob van der Meijden/Image/DeltaBankruptcy.JPG" width="300" alt="" /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9417" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>PDC 2005 UI Designer vs. Developer</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9389.aspx</link><pubDate>Wed, 14 Sep 2005 11:47:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9389</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9389</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9389.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Yesterday I followed some sessions about all new UI interfaces which can be created within the new Windows presentation foundation (WPF). During some demos and at the hands on labs sessions it seems that all new graphics had to be build with XAML by hand. Not by the use of a graphic interface, no just by writing the XAML by yourself. Well a little circle which makes nice 3d rotations can be done, but when you want a slicky interface it gets really complex &amp;hellip; I don&amp;rsquo;t ant to do that &amp;hellip; &lt;/font&gt;&lt;a href="http://www.bloggingabout.net/blogs/rene"&gt;&lt;font size="2"&gt;Rene&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; and &lt;/font&gt;&lt;a href="http://www.bloggingabout.net/blogs/erwyn"&gt;&lt;font size="2"&gt;Erwyn&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; did make fun out of me, because programming in XAML is the thing to do. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Today at the General session one new product was presented and demonstrated, namely &lt;/font&gt;&lt;a href="http://www.microsoft.com/products/expression"&gt;&lt;font size="2"&gt;Microsoft Expression&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; with three editions Graphic, Interactive and Web designer. And you know what, while Rene and Erwyn are going to hack into XAML I will use Microsoft Expression to create the XAML files for me. There is only one problem; I am not graphical designer and I feel fine by that. The idea is that designers will create the user interface using Microsoft Expression, they can create their slicky, funcky, smoothy interfaces and expressions will create the XAML file for you. The designer passes the XAML file (actually they are in one solution) to the developer and voila; the developer only has to implement the things he is good as: CODE. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;They showed this is a great demo (designer vs. developer) and is all looks very good.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9389" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>What’s wrong with me</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9378.aspx</link><pubDate>Wed, 14 Sep 2005 06:15:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9378</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9378</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9378.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;Today we finally did receive&amp;nbsp;the goods, 1 five pack DVD set with 30Gb of software. I'm trying to pretend as a good nerd, so when I finally arrived at my hotel at 8:30pm, first thing to do &amp;hellip; installing the goods. Trying to install VSTS Beta 2 &amp;hellip; damn &amp;hellip; it needs SP2 for Windows XP. So looking into my own DVD library, found it, install it, 5,6,7,8, 9 percennnntttt &amp;hellip;&amp;hellip; (I fell asleep) &amp;hellip;&amp;hellip; 10:00pm I woke up &amp;hellip; aahhh finally SP2 installation has been finished. Next thing: installing VSTS Beta 2, 10, 11, 14, 20 percennnnrrr &amp;hellip; (I fell asleep again) &amp;hellip; 11:09pm I woke up by the reset beep of my laptop &amp;hellip; dawn fell asleep twice, what&amp;rsquo;s wrong with me. Normally I never fell asleep before 01:00am, what&amp;rsquo;s happening. This morning I all figured it out. I think it&amp;rsquo;s a hidden feature in Windows Vista. Al those flying, fading, scrolling and moving Windows are hypnotizing me &amp;hellip; I don&amp;rsquo;t know what this new feature leads us to but it didn&amp;rsquo;t gave me more productivity &amp;hellip; :-)&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;span&gt;&lt;img height="94" alt="" src="/UserFiles/Rob van der Meijden/Image/20050914 Whats wrong with me.JPG" width="221" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9378" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>PDC 2005 SO day</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9359.aspx</link><pubDate>Tue, 13 Sep 2005 15:19:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9359</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9359</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9359.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Not it&amp;rsquo;s not a typo, &lt;/font&gt;&lt;a href="http://www.ronjacobs.com/"&gt;&lt;font size="2"&gt;Ron Jacobs&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; just prefers the term SO instead of SOA because all the hyping around it. Again an introduction to SO, boring ? No, not the way Ron is explaining it. He gave a very clear explanation in the four tenets of SO using a country with border as metaphor. After that 2 anti-patterns in SOA, namely&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;1. CRUDy interface; crud operations on the webservice interface just as you did when designing components with stateful conversation and operations which require multiple messages to complete the operation. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;font size="2"&gt;2. Loosey-Goosy; Trying to build a flexible and extensible service (for instance a method to query the database at the interface, DON&amp;rsquo;T) &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;font size="2"&gt;And naturally 2 patterns: &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;1. Document interface; How to define a simple well to use interface ? Simple; create a response and request document (message) for each method. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;2. &lt;span&gt;&lt;font size="2"&gt;Reservation; Maintain data consistency across long running processes. Prefer not to use the composition patters because you can&amp;rsquo;t rely that a service will composite a transaction. Use reservation by sending confirmation after de operation toke place. Take care off all possible outcomes (confirmed, cancelled or timed-out) &lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&amp;nbsp;&lt;span&gt;&lt;font size="2"&gt;Links on patterns: &lt;/font&gt;&lt;/span&gt;&lt;span&gt;&lt;a href="http://msdn.microsoft.com/practices"&gt;&lt;font size="2"&gt;patterns &amp;amp; practices&lt;/font&gt;&lt;/a&gt;,&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;a href="http://www.patternshare.org/"&gt;&lt;font size="2"&gt;Patterns&lt;/font&gt;&lt;/a&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;a href="http://practices.gotdotnet.com/"&gt;&lt;font size="2"&gt;patterns &amp;amp; practices community&lt;/font&gt;&lt;/a&gt; &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;After the intro &lt;span&gt;&lt;a href="http://www.thearchitectexchange.com/asehmi"&gt;Arvindra Sehmi&lt;/a&gt;&lt;/span&gt; and &lt;span&gt;&lt;a href="http://bloggingabout.net/FCKEditor/editor/blogs.msdn.com/beatsch"&gt;Beat Schwegler&lt;/a&gt;&lt;/span&gt; gave a presentation on Modeling &amp;amp; Messaging for Connected Systems based on real life cases. They added a service model (next to the business and technology model) in their modeling strategy. They showed how to use this model with the use of UML techniques; Looks very use-full. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;VS&lt;/font&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;TS integration of wizards which create a solution and files that you need for the best practices of a SO implementation, wizard is known as WS-BAT. Couldn&amp;rsquo;t find anything on the internet except for this &lt;/font&gt;&lt;a href="http://www.activehead.com/dotnetweblogs/Default.aspx?ItemID=105497"&gt;&lt;font size="2"&gt;link&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Last subject fot today &lt;/font&gt;&lt;a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22f72167-af95-44ce-a6ca-f2eafbf2653c"&gt;&lt;font size="2"&gt;&amp;ldquo;the composite UI application block&amp;rdquo;&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; typically useful for composite smart clients. These are clients which have discrete independent yet cooperative functional pieces. Looking good for this type of application.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9359" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>PDC 2005 Keynote Bill’s career move</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9357.aspx</link><pubDate>Tue, 13 Sep 2005 14:57:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9357</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9357</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/14/9357.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Bill Gates started the Key note at the PDC 2005 with al little movie where he shows the recruitment procedure at Microsoft. LOL &amp;hellip; Bill Gates acting in his younger years with a cool dude besides him, even a dancing part &amp;hellip; picture a dancing &lt;/font&gt;&lt;a href="http://www.mrbean.co.uk/"&gt;&lt;font size="2"&gt;Mr. Bean&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; &amp;hellip; you have it &amp;hellip; didn&amp;rsquo;t work &amp;hellip; take a dancing nerd ... LOL &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Very fast demo of &lt;/font&gt;&lt;a href="http://www.microsoft.com/windowsvista/default.mspx"&gt;&lt;font size="2"&gt;Microsoft Vista&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; &amp;hellip; it&amp;rsquo;s just too much to write down, you&amp;rsquo;ll have to see it &amp;hellip; one thing though; within our company we need more graphical designers to do this right (probably working with Macromedia right now). &lt;span&gt;Jim Allchin gave a demo of a tool within Windows Vista which monitors the usage off all programs and collects this information. This information is used next times you start Windows and this tools starts loading most used programs, so when you start-up you&amp;rsquo;re programs there is a performance boost. Another nice feature; you can use use you&amp;rsquo;re USB memory stick to extend the memory of Widows Vista.&lt;/span&gt; &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;a href="http://www.microsoft.com/office/preview/default.mspx"&gt;&lt;font size="2"&gt;Office 12&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; with all its new features are based on the fact: &amp;ldquo;Features that users want are already in the current versions but they cannot find it&amp;rdquo; So they changed the UI (especially the toolbar and menu part) to let the user find the features much easier. And a lot of predefined set of &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;font size="2"&gt;&lt;span&gt;They showed us a very nice framework for reading date out of you're database, no more T-SQL, stored procs and creating a datalayer &amp;hellip; No, just add some attributes above you're classes and fields which represent a table in the database and query them in C# code. Ready to go &amp;hellip; very nice &amp;hellip; they also gave is a name &lt;/span&gt;&lt;span&gt;&lt;a href="http://msdn.microsoft.com/netframework/future/linq/"&gt;LINQ&lt;/a&gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span&gt;&lt;font size="2"&gt;Microsoft has assigned a team to create a real life demo using all new technologies. In this case Avalon for the UI a WCF for the communication, named &lt;/font&gt;&lt;a href="http://www.microsoft.com/max/"&gt;&lt;font size="2"&gt;Max&lt;/font&gt;&lt;/a&gt;&amp;nbsp;(like my son, how nice).&lt;font size="2"&gt;&amp;nbsp;&amp;ldquo;Real life&amp;rdquo; not for my line of business. Anyway it worked pretty well with a very slicky interface.&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;One minor issue at de keynote, &lt;span&gt;Jim Allchin showed the &lt;/span&gt;&lt;span&gt;&lt;a href="http://www.clubimate.com/t-DETAILS_JASJAR.aspx"&gt;i-mate JASJAR&lt;/a&gt; which we all could have form only $149 dollar in stead of $1000. Sold out under 2 hours, even before the key-note was ended. What was there stock &amp;hellip; 100 &amp;hellip; Look at the bright side, I can spend $149 dollar to something else &amp;hellip;. &lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9357" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>And then there was nothing …</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/13/9328.aspx</link><pubDate>Mon, 12 Sep 2005 13:55:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9328</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9328</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/13/9328.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;There are times at the PDC 2005 that you must visit the restroom, after lunch was such a moment and what happened &amp;hellip; darkness &amp;hellip; total power failure &amp;hellip; when I was in the restroom ... 10 seconds later de emergency lights went on. I shall spare you the details except one; the soap dispenser still works but there was no water. The electronic device on the tap needs power to see my hands &amp;hellip; no water &amp;hellip; only soap. After one hour the power was restored in de conference center and we all went back to the sessions. So what do you do in the meantime &amp;hellip; take some picture.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;a href="http://www.nu.nl/news/591048/22/Grote_stroomstoring_in_Los_Angeles.html"&gt;Dutch newslink on power failure&lt;/a&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;img height="75" alt="" src="/UserFiles/Rob van der Meijden/Image/20050912 Powerfailure.JPG" width="600" /&gt;&lt;/p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9328" width="1" height="1"&gt;</description></item><item><title>PDC 2005 Team system pre-conference day</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/12/9325.aspx</link><pubDate>Mon, 12 Sep 2005 09:17:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9325</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9325</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/12/9325.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;After the PDC I&amp;rsquo;m starting with a new project. At this project we&amp;rsquo;re going to use all new tools Microsoft has available (VS 2005 TS, SQL 2005, Biztalk 2006 and maybe Indigo). For this reason my first day is going to be all about Team systems (dawn, Team system is without the S) this time not the into&amp;rsquo;s but a real case scenario. Session was given from 3 point of view, namely Project manager, Architect and Developer (occasionally the tester was mentioned &lt;/span&gt;&lt;span&gt;&lt;span&gt;J&lt;/span&gt;&lt;/span&gt;&lt;span&gt;) &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;font size="2"&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;span&gt;&lt;font size="2"&gt;Team system gives the project manager finally the control he was searching last years. No longer: my work is finished for about 80% which was the same last week and the week before that, but accurate productivity numbers from the project. Using his own tools&amp;nbsp;(Excel, Powerpoint) to manage work items and some very nice report: such as:&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;
    &lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Feature creep report a.k.a. planned and unplanned features. In a timeline you can when the unplanned features take overhead on you&amp;rsquo;re projects. &lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Code churn, based on (MS) statistics it risks you&amp;rsquo;re work-items and predicting code failure (see this &lt;/font&gt;&lt;a href="http://blog.accentient.com/Code+Churn++Predicting+Code+Failure+With+An+Accuracy+Of+89.aspx"&gt;&lt;font size="2"&gt;blog&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;. As somebody in the audience mentioned, what does this mean if it&amp;rsquo;s based on MS statistics &amp;hellip; :-) &lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;The architect is namely drawing his diagrams for the logical data center and application diagram. Adding constraints to this diagrams which will be checked when you are creating the deployment diagram. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;The developer only may implement the application diagram created by the architect. However when the developer changes the code by adding a new public method, the synchronization of code and diagrams adjusts the application diagram without the notice of the architect ... Ouch &amp;hellip; I don't like that.&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Some must have links/reads: &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;a href="http://blogs.msdn.com/robcaron"&gt;&lt;font size="2"&gt;Rob Caron&amp;rsquo;s blog&lt;/font&gt;&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;a href="http://www.accentient.com/resources/vstsopml.zip"&gt;&lt;span&gt;&lt;font size="2"&gt;VSTS OPML file containing dozens of RSS feeds&lt;/font&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;a href="http://lab.msdn.microsoft.com/teamsystem/workshop/sdm/"&gt;&lt;font size="2"&gt;VSTS &lt;span&gt;&lt;span&gt;System Definition Model&lt;/span&gt;&lt;/span&gt;&lt;span&gt; (SDM) SDK&lt;/span&gt;&lt;/font&gt;&lt;/a&gt;&lt;a name="Intro"&gt;&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9325" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/PDC/default.aspx">PDC</category></item><item><title>Obsessed by numbers</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/12/9302.aspx</link><pubDate>Sun, 11 Sep 2005 14:08:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9302</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>6</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9302</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/12/9302.aspx#comments</comments><description>&lt;p&gt;&lt;span&gt;First day at PDC 2005, first time visiting the&amp;nbsp;US a lot impressions &amp;hellip; One off them is the &lt;a href="http://www.starbucks.com/"&gt;Starbucks&lt;/a&gt; coffee numbering system. My current project has some relation with numbers, namely &lt;a href="http://www.burgerservicenummer.nl/"&gt;www.burgerservicenummer.nl&lt;/a&gt;. So every time people are writing numbers to objects I am interested in the why. Today my Starbucks coffee mug was painted by a number so I &amp;lsquo;m wondering &amp;hellip; why. I seem that they use a parallel message system to take an order; messages are separated into simple coffee and the complex coffee. Simple coffee is served directly and you&amp;rsquo;re charged for the total order. Complex coffee is numbered is a queue and after you paid you can wait for it &amp;hellip; and wait &amp;hellip; and wait (message queues don&amp;rsquo;t perform well) and there is you&amp;rsquo;re coffee out of the queue. I found a bug in this interface &amp;hellip; as a customer I want coffee fast and have influence on this process. How to fix: change the pricelist by adding the complexity rate to a coffee item. Besides this minor issue the coffee is great.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img height="150" alt="" src="/UserFiles/Rob van der Meijden/Image/starbucks.JPG" width="200" /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9302" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/Other/default.aspx">Other</category></item><item><title>Gaming and raising you’re kids</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/11/9294.aspx</link><pubDate>Sun, 11 Sep 2005 06:20:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9294</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9294</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/11/9294.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Society says: Kids and video games are not going well together. The result of these are&lt;span&gt;&amp;nbsp; &lt;/span&gt;lazy, fat and low on social skills kids. So as a good father of Max and Cas (7 and 3 years old) we introduced the house rule: &amp;ldquo;Only 1 hour gaming per day&amp;rdquo;, hoping that there lives will succeed. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;Today I&amp;rsquo;m flying to 

Los Angeles &amp;hellip; final destination Microsoft PDC &amp;hellip; it takes a while so plenty of time the read all the magazines they put into to chair in front of you. I really did read one article, nl. &lt;i&gt;Gamers Aren&amp;rsquo;t Weirdos&lt;/i&gt;, &lt;i&gt;and they even make excellent employees&lt;/i&gt; by John Gaudiosi. Some statements from the article:&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;
    &lt;div&gt;&lt;span&gt;&lt;font size="2"&gt;The skills that are required to become a guild master [team leader] in a MMO (Massive Multiplayer Online) game are the same skills for quality middle and top managers in a company.&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;div&gt;&lt;span&gt;&lt;font size="2"&gt;Gamers are more willing to jump in and try rather than gathering lots of information, doing lots of analysis and than make a decision.&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;div&gt;&lt;span&gt;&lt;font size="2"&gt;Video game players spend more than three times the amount of time sports, reading, community work and cultural activities. &lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;font size="2"&gt;I still have to discuss this with my wife but maybe the 1 hour houserule is going to be changed to: &amp;ldquo;You must play 1 hour videogames&amp;rdquo;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;&lt;img height="147" alt="" src="/UserFiles/Rob van der Meijden/Image/weirdos.JPG" width="485" /&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9294" width="1" height="1"&gt;</description><category domain="http://bloggingabout.net/blogs/rob/archive/tags/Other/default.aspx">Other</category></item><item><title>Where is the suit ...</title><link>http://bloggingabout.net/blogs/rob/archive/2005/09/11/9293.aspx</link><pubDate>Sun, 11 Sep 2005 06:14:00 GMT</pubDate><guid isPermaLink="false">813b6dfd-644e-4573-a816-eebab56ba0d0:9293</guid><dc:creator>Rob van der Meijden</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bloggingabout.net/blogs/rob/rsscomments.aspx?PostID=9293</wfw:commentRss><comments>http://bloggingabout.net/blogs/rob/archive/2005/09/11/9293.aspx#comments</comments><description>&lt;p class="MsoNormal"&gt;&lt;span&gt;&lt;font size="2"&gt;Some people within our organization appreciate some old values. People who are always wearing there suit and tie. Let name an example: &lt;/font&gt;&lt;a href="http://www.bloggingabout.net/rene"&gt;&lt;font size="2"&gt;Rene Schrieken&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;. I respect that. But I have some mixed feelings about today. I know it&amp;rsquo;s Saturday, he is my colleague what do you care. As a fact we are traveling together to
Los Angeles
(Microsoft PDC) and I was expecting a fully dressed up Rene this morning because he always says: &amp;lsquo;&lt;i&gt;conferences are also work, so I am not dressing differently&lt;/i&gt;&amp;rsquo;. Today he is casual &amp;hellip; surprised &amp;hellip;well I was. He even didn&amp;rsquo;t take any suits with him, that means: a whole week casual Rene. I think it&amp;rsquo;s a good thing that he&amp;rsquo;s losing up, what&amp;rsquo;s bad: one statement of Rene has left the building.
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://bloggingabout.net/aggbug.aspx?PostID=9293" width="1" height="1"&gt;</description></item></channel></rss>