<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://fwdnug.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">TimRayburn.net</title><subtitle type="html" /><id>http://fwdnug.com/blogs/timrayburnnet/atom.aspx</id><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/default.aspx" /><link rel="self" type="application/atom+xml" href="http://fwdnug.com/blogs/timrayburnnet/atom.aspx" /><generator uri="http://communityserver.org" version="3.1.20917.1142">Community Server</generator><updated>2008-04-13T16:28:04Z</updated><entry><title>PDC 2008 - The Future of C#</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/27/pdc-2008-the-future-of-c.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/27/pdc-2008-the-future-of-c.aspx</id><published>2008-10-28T00:35:09Z</published><updated>2008-10-28T00:35:09Z</updated><content type="html">So I had a chance today to attend a session given Anders Hejlsberg on C# 4.0, and beyond. Honestly I walked out of the session going ... that&amp;#39;s it? The feature list started with the dynamic keyword, which is cool but simply does not help the 80% of C# developers today. Most C# developers today are so bound to type safety that dynamic will give them even more heartburn than var did. Now in reality it will likely make scenarios like property movement from service contracts to domain objects easier...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/27/pdc-2008-the-future-of-c.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=930" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /><category term="pdc2008" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/pdc2008/default.aspx" /><category term="C#" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/C_2300_/default.aspx" /></entry><entry><title>GiveCamp Kiva Lending Team</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/26/givecamp-kiva-lending-team.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/26/givecamp-kiva-lending-team.aspx</id><published>2008-10-26T13:57:26Z</published><updated>2008-10-26T13:57:26Z</updated><content type="html">Just a quick update , that several of the micro-finance loans I made as part of the GiveCamp Kiva team have recently made their first payment back, which allowed me to begin to re-invest most of those funds in another loan. I&amp;#39;m backing the Yon Dial 2 Group, from Senegal. Here are their details: Palmarin (http://www.sem-fund.org/palmarinfr.php) is a village rich in fruits and vegetables. Nevertheless, lack of structures specialized in transformation incite people to import fruit and vegetables...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/26/givecamp-kiva-lending-team.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=927" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>Tulsa TechFest 2008</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/13/tulsa-techfest-2008.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/13/tulsa-techfest-2008.aspx</id><published>2008-10-13T21:48:17Z</published><updated>2008-10-13T21:48:17Z</updated><content type="html">Holy smokes, did I have a blast at Tulsa TechFest! It was a great couple of days hanging out with some great speakers, like Randy Walker, Caleb Jenkins, Zain, Chris, Phil and many more. I did presentations on three different topics. The first of these was called Building Services That Rock, the second was Intro to C# 3.0, and finally an intro to Parallelism in .NET. All were well received, I believe, and I thank David for having me out to speak again. This was my first time back since the original...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/13/tulsa-techfest-2008.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=907" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>Simple Reflection Based Assignment Using Extension Methods</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/08/simple-reflection-based-assignment-using-extension-methods.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/08/simple-reflection-based-assignment-using-extension-methods.aspx</id><published>2008-10-08T17:04:20Z</published><updated>2008-10-08T17:04:20Z</updated><content type="html">Have you ever had two objects, of different types, and wished that C# could just be smart enough to realize that objA.FirstName should be assigned to objB.FirstName? For me this comes up quite a bit when working with WCF services. I don&amp;#39;t want a service to directly expose my internal business object type, because that type might change on a different schedule than that of my data contract. So I often end up with objects that have identical property names, usually the service being a subset of...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/10/08/simple-reflection-based-assignment-using-extension-methods.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=904" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>BizTalk 2006 R2 Pre-requisites CAB Files</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/25/biztalk-2006-r2-pre-requisites-cab-files.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/25/biztalk-2006-r2-pre-requisites-cab-files.aspx</id><published>2008-09-25T15:45:52Z</published><updated>2008-09-25T15:45:52Z</updated><content type="html">With many thanks to Sanket for posting this information originally, I wanted to post these links here so that the next time I can save my self the Google search and just hit this post. These links are for the EN language, but there&amp;#39;s a link at the bottom to the full list for all languages. Windows 2003 Server 32 bit http://go.microsoft.com/fwlink/?LinkId=81468 Windows 2003 Server 64 bit http://go.microsoft.com/fwlink/?LinkId=81459 Vista 64 bit http://go.microsoft.com/fwlink/?LinkId=81423 Vista...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/25/biztalk-2006-r2-pre-requisites-cab-files.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=867" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>How To Create a Portable Office (Computing)</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/24/how-to-create-a-portable-office-computing.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/24/how-to-create-a-portable-office-computing.aspx</id><published>2008-09-24T21:24:56Z</published><updated>2008-09-24T21:24:56Z</updated><content type="html">Laptop What makes a great laptop for a mobile office? Well I can give some guidelines, and assume I&amp;#39;m talking to a group of developers, but in the end that is up to you. Some things you need to remember: Extensibility - Does your laptop have an expansion bay which can be used to swap in new hard disks, optical disks and/or batteries? USB Ports - I&amp;#39;ve yet to meet a laptop with &amp;quot;too many&amp;quot; USB ports. Mine has 4, and I run out quite regularly. Big screen - This is a desktop replacement...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/24/how-to-create-a-portable-office-computing.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=866" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>How To Create a Portable Office (Content)</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/22/how-to-create-a-portable-office-content.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/22/how-to-create-a-portable-office-content.aspx</id><published>2008-09-22T20:43:53Z</published><updated>2008-09-22T20:43:53Z</updated><content type="html">Content is king! Just ask anyone who is serious about the web and they will tell you, unless they&amp;#39;re in the midst of getting you to sign away your content at the moment. As a consultant or other person on the go, you should be ready to capture content at a moment&amp;#39;s notice. Now, I do a ton of community work, so I probably take this to extremes, but you should consider these options. Video Capture Video Camera A picture is worth a thousand words, but a video is king. Be it user groups, scrums...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/22/how-to-create-a-portable-office-content.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=862" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>Give back with Kiva and GiveCamp</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/22/give-back-with-kiva-and-givecamp.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/22/give-back-with-kiva-and-givecamp.aspx</id><published>2008-09-22T13:00:35Z</published><updated>2008-09-22T13:00:35Z</updated><content type="html">So you need only flip back about a year ago on this blog to find that I am clearly a fan of pushing people to contribute to their community, and their world, in a positive way. I was a huge proponent of the We Are Microsoft event last January that has since morphed into the GiveCamp initiative nationwide. I&amp;#39;ve been thrilled to watch that effort franchise itself around the United States, and am sure that it will reach further will. GiveCamp&amp;#39;s are based on the idea of using our skills, as developers...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/22/give-back-with-kiva-and-givecamp.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=859" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>How To Create a Portable Office (Network Connectivity)</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-network-connectivity.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-network-connectivity.aspx</id><published>2008-09-19T19:38:44Z</published><updated>2008-09-19T19:38:44Z</updated><content type="html">Phones AT&amp;amp;T Tilt I&amp;#39;ve carried an AT&amp;amp;T Tilt for nearly a year now as my primary personal phone. I truly love this phone, Windows Mobile 6, GPS, WiFi, full keyboard, 3 mega-pixel camera, and high speed networking is fabulous. I&amp;#39;ve been with AT&amp;amp;T for several years now. I was an AT&amp;amp;T Wireless customer, then I was a Cingular customer, now I&amp;#39;m an AT&amp;amp;T customer again so I&amp;#39;ve got a really good deal on a tethering plan for this unit as well which makes it Option 3 in my...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-network-connectivity.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=856" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>How To Create a Portable Office (Organization)</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-organization.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-organization.aspx</id><published>2008-09-19T19:34:29Z</published><updated>2008-09-19T19:34:29Z</updated><content type="html">Backpack For several years now I&amp;#39;ve used a Targus backpack to haul around my portable office. A good bag, one that you can trust and has space for what you want to carry is absolutely key. For me, as you will see below, this means I want a lot of space, with large cavernous storage areas. I find my use of other bags (see the next section) helps organize these large spaces without the waste of the designers trying to guess what I want to carry and what shape it will be. For instance, even my favorite...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-organization.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=857" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>How To Create a Portable Office (Overview)</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-overview.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-overview.aspx</id><published>2008-09-19T19:31:39Z</published><updated>2008-09-19T19:31:39Z</updated><content type="html">One of the things that I have had to do as a consultant is get used to moving from location to location. Even if I&amp;#39;m at a client for many months, I&amp;#39;ll often be moved around their facility because I&amp;#39;m not permanently moving in. This has meant that I&amp;#39;ve developed quite the interesting bit of tooling to help me keep a portable office. So there are a few different areas of concern: Organization Network Connectivity Content Capture &amp;amp; Playback Computing Resources Fallback Plans Personal...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/19/how-to-create-a-portable-office-overview.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=858" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>What is needed for Dallas TechFest 2009?</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/18/what-is-needed-for-dallas-techfest-2009.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/18/what-is-needed-for-dallas-techfest-2009.aspx</id><published>2008-09-18T20:00:20Z</published><updated>2008-09-18T20:00:20Z</updated><content type="html">So I assume many of those who read my blog are aware of Dallas TechFest and either attended, or thought about attending, last year. We&amp;#39;re starting planning for this coming year, and so its time to find out what you, our patrons, would like to see more of at Dallas TechFest 2009? What went great? What needed more attention? What was a waste of time? Leave me a comment, and tell me what you would like to see....(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/09/18/what-is-needed-for-dallas-techfest-2009.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=854" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>Microsoft MVP again in 2008</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/07/01/microsoft-mvp-again-in-2008.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/07/01/microsoft-mvp-again-in-2008.aspx</id><published>2008-07-02T01:44:16Z</published><updated>2008-07-02T01:44:16Z</updated><content type="html">I&amp;#39;m thrilled to report that I&amp;#39;ve been awarded a Microsoft Most Valuable Professional award once again in 2008, though this time I am a Connected Systems MVP, instead of a BizTalk MVP.&amp;#160; The difference&amp;#160; is nearly inconsequential, as I will still be working with the same team, but over the last year I&amp;#39;ve begun to focus more and more on things outside of purely BizTalk.&amp;#160; I&amp;#39;d like to take a moment to thank Microsoft for the award, this program is absolutely fabulous and...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/07/01/microsoft-mvp-again-in-2008.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=636" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>Let the upgrade begin</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/07/01/let-the-upgrade-begin.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/07/01/let-the-upgrade-begin.aspx</id><published>2008-07-01T21:00:27Z</published><updated>2008-07-01T21:00:27Z</updated><content type="html">So I know at least some of my friends will be pleased to hear that I&amp;#39;ve completed my upgrade to Graffiti CMS, migrating from dasBlog. I must say that dasBlog has served me very well, but as the blog has grown in popularity, I&amp;#39;ve done screencasts, and other things I&amp;#39;ve begun to realize that I truly needed a CMS, not just a blog. The blog will remain a major feature of TimRayburn.net and the existing feed url will continue to retrieve only my blog content, but I&amp;#39;ve now got room to grow...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/07/01/let-the-upgrade-begin.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=635" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author><category term="Blog" scheme="http://fwdnug.com/blogs/timrayburnnet/archive/tags/Blog/default.aspx" /></entry><entry><title>Connecting Logitech Freepulse Bluetooth Headphones to a Computer or Cellphone</title><link rel="alternate" type="text/html" href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/04/13/connecting-logitech-freepulse-bluetooth-headphones-to-a-computer-or-cellphone.aspx" /><id>http://fwdnug.com/blogs/timrayburnnet/archive/2008/04/13/connecting-logitech-freepulse-bluetooth-headphones-to-a-computer-or-cellphone.aspx</id><published>2008-04-13T21:28:04Z</published><updated>2008-04-13T21:28:04Z</updated><content type="html">I&amp;#39;ve just bought a set of Logitech Freepulse Bluetooth Headphones, these are very well reviewed Bluetooth 2.0 EDR headphones and so I was happy to grab a set as they solve another problem I&amp;#39;ve had which is that my Sprint Mobile Broadband ExpressCard blocks my headphone port. But darned if the default directions just want you to use their little headphone jack adapter. I knew there had to be a way to get these bound to my computer and/or cellphone, so I did some research. For those who come...(&lt;a href="http://fwdnug.com/blogs/timrayburnnet/archive/2008/04/13/connecting-logitech-freepulse-bluetooth-headphones-to-a-computer-or-cellphone.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://fwdnug.com/aggbug.aspx?PostID=206" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://fwdnug.com/members/Anonymous.aspx</uri></author></entry></feed>