<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>Microsoft</title><link>http://blog.steeleprice.net/category/40.aspx</link><description>Other Microsoft Posts that are non-Windows and non-VS related</description><managingEditor>H. Steele Price, IV</managingEditor><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>H. Steele Price, IV</dc:creator><title>EntityDB: The next great Microsoft tool (if they would just make it)</title><link>http://blog.steeleprice.net/archive/2008/05/20/1485.aspx</link><pubDate>Tue, 20 May 2008 15:38:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2008/05/20/1485.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1485.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2008/05/20/1485.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1485.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1485.aspx</trackback:ping><description>&lt;P&gt;Reading in the Industry blogs, official samples and documentation provided with MS SQL Server 2005+, Visual Studio 2008 and Linq to Sql and the Entity Framework, you will get the impression that we have a tremendous ability to efficiently decipher how to interact with a Database.&amp;nbsp; Additionally, Industry leaders have led us down a path of Code Generators, Designers and the separation of UI Design from functional Object code; read "Astoria" and/or "MVC" here...&lt;/P&gt;
&lt;P&gt;Didn't CASE do this sort of thing for us years ago?&amp;nbsp; Didn't it also fail?&amp;nbsp; There is huge amount of traffic about the topic of "Falling down when you hit a threshold" and insistence that all things should be built ultra-scalable.&amp;nbsp; OK, that's great if you love to write plumbing.&amp;nbsp; I for one, don't. What if that could be done for you, with the most efficient options always at your disposal; of course with the opportunity to tweak and extend to meet a specific need.&lt;/P&gt;
&lt;P&gt;While there are many great arguments to be had over what is exactly ultra-efficient and those who think they have a better method must be able to override and extend the selected generation of code that is offered by not only being able to write that code, but also to inject it into the Generated Code (or at the least allowed to edit the templates) produced by Visual Studio.&lt;/P&gt;
&lt;P&gt;If you don't already know why this is so important, we need to first look at the massive shift in Business Software Development and where we are going to be running most business applications.&amp;nbsp; We used to run all our apps on our own hardware, inside our own network and everything was under our tight control.&amp;nbsp; While this model still applies to much corporate development, I believe it will become less and less used as a cost effective alternative to a HOSTED solution.&amp;nbsp; Pricing of hosted solutions have plummeted in recent years, in fact I am almost willing to bet that the cost of electricity alone using hardware just a few years old would cover the cost of a hosted solution.&amp;nbsp; And what happens when I DO need to scale, How do I add 20 servers to the Web Farm overnight?&amp;nbsp; Staffing requirements and maintenance of hardware start to become totally offset when we look at this model. I CANNOT BUILD A SERVER CHEAPER THAN I CAN HOST ONE!&amp;nbsp; That is the real bottom line.&lt;/P&gt;
&lt;P&gt;I would wager that MOST applications would run just fine on a hosted solution with one machine doing all the work, at least in the beginning, or at least with a hoster that gives you Web on one machine and your DB on another.&amp;nbsp; Are we talking about every solution here?&amp;nbsp; No, but I think we are talking about a gigantic sector of the market that is currently all but ignored by the provided tools we have at our disposal.&lt;/P&gt;
&lt;P&gt;Don't get me wrong here, we have GREAT tools available and more coming, do they target what is really needed?&lt;/P&gt;
&lt;P&gt;First lets look at the three new primary tools given to us by Microsoft.&amp;nbsp; WCF, Linq to Sql and the Entity Framework.&amp;nbsp; WCF provides a great pipeline to pass data between our UI, Business Objects and Database, but it just plumbing.&amp;nbsp; Linq to Sql and EF provide a great way to interact with a Database IF and ONLY If you have a proper database in place first.&lt;/P&gt;
&lt;P&gt;What does this mean to most data-driven development projects?&amp;nbsp; It means they either need a DBA, or they need to hire one for the portion of the application that defines the database.&amp;nbsp; This is one reason &lt;A href="http://wiki.rubyonrails.org/rails/pages/understandingmigrations" target=_blank&gt;Migrations for Ruby on Rails&lt;/A&gt; has gained so much popularity, it hides this chore.&amp;nbsp; Most of us don't care about the DB, it's just a place that holds data.&amp;nbsp; Some of you can go on and on all day about the subtleties of databases but that is completely outside the scope of what I am talking about here. Not only will Migrations create a DB and Schema around what your App needs, it will also keep it up to date with changes made by any developer that can be easily stored in Version Control software like SVN or TFS.&lt;/P&gt;
&lt;P&gt;This is what the Designers for Linq to Sql and/or Entity Framework need to do for us.&amp;nbsp; I really don't mind changing my Linq to SQL Apps over to Entity Framework if it will allow us to focus on one great technology.&amp;nbsp; It's great that they can operate against a currently created database, but they should also create one (IN AN OPTIMIZED WAY) when one does not exist.&amp;nbsp; It should create Stored Procedures if I tell it to... Even if we are migrating a legacy application, I would still like to see what a tool spits out for me.&amp;nbsp; I just might use the new techniques.&amp;nbsp; There are tons of ways to move data from one schema to another, again, outside the scope of this article.&amp;nbsp; So back to the scope...&amp;nbsp; EF Does a great job of creating an interaction between Database and Business Objects, but it doesn't help us rapidly create a NEW model without an existing database and I think this is important in two ways, first and foremost, I don't want to write any plumbing code to do this.&amp;nbsp; The tools are smart enough already to do almost all the work for us, it can go just a little bit further and create the expected interaction that solves most of the interaction of the database work for us.&amp;nbsp; I can create a Model with the EF Designer by adding Properties and Associations, but it won't go and create a database around that model.&lt;/P&gt;
&lt;P&gt;I should not have to know about how the interaction happens, just that it does and that it does so in a fairly efficient manner.&amp;nbsp; If I lose a certain percentage of performance due to layers, then so be it if I can create my application 10 times faster.&amp;nbsp; If the tool developers choose to implement change tracking in a DataContext or Object Context that is great, do so in a way that makes sense for the CODE developers to use, not require me to go hire Database professionals to argue about the proper plumbing or storage techniques.&amp;nbsp; Linq ALREADY knows how to create efficient SQL, if it did so in code generation vs. dynamically at runtime who cares?&lt;/P&gt;
&lt;P&gt;We can host a solution out in the cloud so should we need to be worried about the optimization of how our application persists its data?&amp;nbsp; Certainly there is is need to cover legacy applications and all the DBAs running around out there, that is well covered right now.&amp;nbsp; What we seem to be missing is the ability for competent application developers to create Rich Internet Applications (read Silverlight and Ajax) and have the data persisted without a bunch of plumbing and tweaking.&lt;/P&gt;
&lt;P&gt;What is NOT covered is the ability to rapidly envision, design, develop and deploy solutions destined to live on a Hosted Solution -- even if it is "hosted" internally.&amp;nbsp; This solution will most likely have a distinct separation between UI, Business Objects and Database, but do I really need to see those distinctions in my code?&amp;nbsp; Not really.&amp;nbsp; Do I really need to spend the time to wire up all the Databinding when the MetaData already knows what I need to do?&amp;nbsp; No Way, a tool can create that for us.&amp;nbsp; It can already look into our metadata and see what we need to do to hook up a DataGridView to a table.&lt;/P&gt;
&lt;P&gt;I would venture to say that the tools are already here, they just don't work the way we need them to so we can build these applications quickly.&amp;nbsp; I spend MOST of my time Creating a Database, then working on plumbing and interactions between the Database and the UI, I should not have to do this any more.&amp;nbsp; Microsoft did a fabulous job of giving us a database that can scale with us as our application grows.&amp;nbsp; We have SQL CE, SQL Server Express and SQL Server Enterprise to grow with us, we can use SQL CE for Mobile Apps and offline stuff, wouldn't it be wonderful if I did not have to architect that portion of the solution any more?&amp;nbsp; I am talking about the people who do not have the luxury of a full time DBA.&lt;/P&gt;
&lt;P&gt;Of course, the solution is there, staring us right in the face, the answer is the Designer for Entity Framework.&amp;nbsp; If this Designer could be used to build out the Database, and track the Schema changes, then it would take down part of the battle, just a little more work and it could completely remove the NEED (we should always have the option to extend and modify though) for us to write anything between the Business Objects and the Database.&lt;/P&gt;
&lt;P&gt;We should not need to write Serializers for Silverlight, WCF or anything else, the tools already KNOW how to do that, they just don't.&amp;nbsp; The MetaData is there, let's use it.&amp;nbsp; Rob Conery's Subsonic and ActiveRecord shows there is interest in such a tool, but I say this tool needs to come from Microsoft and it needs to be built into the current generation of tools we are using or are being pushed to use (aka Linq).&amp;nbsp; With Rob and Phil working AT Microsoft why can't they contribute some of that knowledge over to the ADO team and get this into the EF Tools we need.&amp;nbsp; Pablo, Mike, Dinesh and the rest of the ADO Team are doing a great job so far, but they are only touching on what we really need.&amp;nbsp; The newest version of EF finally gets a way to do disconnected graphs which is a step towards the goal thanks to &lt;A href="http://blogs.msdn.com/dsimmons/" target=_blank&gt;Danny Simmons&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;These tools need to work seamlessly with Linq and allow me as a developer to write applications with little or no concern for how my data is persisting.&amp;nbsp; I want to create Controls that I can offer to my UI which work seamlessly with Ajax or Silverlight and not require me to write a ton of plumbing just to move things back and forth from one layer to another.&lt;/P&gt;
&lt;P&gt;This is the challenge for the new world of development.&amp;nbsp; We have already moved to a hosted world and our tools need to move there with us. But what do I know, I am a VB developer first and foremost... This is what I know, my customers are asking me to create these applications and to create them really fast.&amp;nbsp; I can choose to use the tools I know best or I can branch out and find something new.&amp;nbsp; The problem here is that I have already invested years of time to learn the tools I am using and they are simply not doing what I need them to do to make my job truly easier.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;My Invoice Object doesn't really need to know what DataContext my Customer Object lives in and I as a developer should not have to be concerned about that in the slightest.&amp;nbsp; I should be able to freely take a Customer I loaded from Invoice "A" and assign it to be used for Invoice "B" without worrying what context it came from, Invoice "B" just needs to know its a valid Customer or that it is a new one I just created without me forcing something into the plumbing to test it.&amp;nbsp; It should know how to roll itself back when I cancel changes, etc.&lt;/P&gt;
&lt;P&gt;With Generics and XML Literals, VB is a Top Notch Code Generator.&amp;nbsp; &lt;A href="http://msmvps.com/blogs/kathleen/" target=_blank&gt;Kathleen has proven that here&lt;/A&gt; and &lt;A href="http://karlshifflett.wordpress.com/2008/03/02/visual-studio-2008-designers-and-code-generators-you-have-overlooked/" target=_blank&gt;Karl talks about Metadata and what we can do with it over here&lt;/A&gt;... We don't need Yet Another Code Generator.&amp;nbsp; We need something that works with the existing modelers and designers and just makes our life as developers easier.&amp;nbsp; It needs to be INSIDE Visual Studio and we need to be able to work with the templates.&amp;nbsp; I should not need LLBLGen or MyGeneration or CodeSmith or SubSonic to do something Visual Studio pretty much already knows HOW to do, it just doesn't.&amp;nbsp; I don't need another designer that works with an existing database, I need the CURRENT Designers to Make the Database AND the plumbing.&lt;/P&gt;
&lt;P&gt;I personally think this should be the direction for the next revision of Visual Basic.&amp;nbsp; VB IS the glue that puts the framework together, sure you could also do it in C# (if they added XML Literals...) but VB is already geared for it so why not enhance it's productivity even further by giving us a way to be far more productive than we are today.&amp;nbsp; This does not require any great shift in the tools we already have, it just requires Microsoft to use them smarter and provide us the keys we need to open the door.&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1485.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>It's Time for more Fun with Betas that are out of sync...</title><link>http://blog.steeleprice.net/archive/2008/05/12/1417.aspx</link><pubDate>Mon, 12 May 2008 15:57:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2008/05/12/1417.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1417.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2008/05/12/1417.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1417.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1417.aspx</trackback:ping><description>&lt;p&gt;I am working extensively with Linq as well as Silverlight.&amp;nbsp; Unfortunately they are not in the same release cycle :(&lt;/p&gt; &lt;p&gt;So for now, I am back to running my development machine with 2 Hard Drives. (because VMs suck on my laptop...)&lt;/p&gt; &lt;p&gt;Further info here: &lt;a href="http://blogs.msdn.com/webdevtools/archive/2008/05/12/error-installing-visual-studio-2008-sp1-beta-and-silverlight-tools-beta-1.aspx"&gt;Error installing Visual Studio 2008 SP1 Beta and Silverlight Tools Beta 1&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;[total tangent department]&lt;/p&gt; &lt;p&gt;Maybe I can get a new Laptop soon with a 17" screen, Hyper-V and 64Bit OS... and Tablet functionality... not holding my breath... they don't exist.&amp;nbsp; I just might have to build one, but I am not feeling that adventurous this month.&amp;nbsp; Maybe I'll just dedicate a small notebook to notes, but that defeats the purpose for me in most cases.&lt;/p&gt; &lt;p&gt;[/total tangent department]&lt;/p&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1417.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>Why do installers need to be painful</title><link>http://blog.steeleprice.net/archive/2008/03/05/1362.aspx</link><pubDate>Wed, 05 Mar 2008 14:57:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2008/03/05/1362.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1362.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2008/03/05/1362.aspx#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1362.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1362.aspx</trackback:ping><description>&lt;P&gt;When installing Silverlight 2.0 beta 1 I encountered the following error:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;An Error Has Occurred:&lt;BR&gt;Silverlight Tools cannot be installed because one or more of the following conditions is true: 
&lt;P&gt;1. Visual Studio 2008 RTM is not installed.&lt;BR&gt;2. The Web Authoring feature of Visual Studio is not installed.&lt;BR&gt;3. A previous version of the Silverlight Runtime is installed.&lt;BR&gt;4. A previous version of the Silverlight SDK is installed.&lt;BR&gt;5. The Visual Studio Update KB949325 is installed.&lt;BR&gt;6. A previous version of Silverlight Tools is installed. 
&lt;P&gt;To continue, please install or uninstall the appropriate products and run this installer again.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;First of all... This is ridiculous, the installer knows EXACTLY what is missing... so what is it?&amp;nbsp; Why do I need to hunt down one of 6 possible problems?&amp;nbsp; Just tell me EXACTLY what is wrong, or better yet, FIX IT!&amp;nbsp; If I need to uninstall something, then DO IT, obviously that is what I WANT to do to make this work.&amp;nbsp; If I need to Install something, then go get it and install it (unless of course it is VS08 which would make me a complete idiot for trying to install this without that)&amp;nbsp; or point to the Trial Version with a darned link already.&lt;/P&gt;
&lt;P&gt;I know that VS08&amp;nbsp; and the Web Authoring feature are installed...&lt;BR&gt;I already uninstalled the previous Silverlight stuff I have...&lt;BR&gt;I looked in Installed Updates and don't see the referenced KB Update...&lt;BR&gt;I already uninstalled the previous SDK Tools and Rebooted...&lt;/P&gt;
&lt;P&gt;So, this "error" is of course, NO HELP.&lt;/P&gt;
&lt;P&gt;If companies want to make tools and have them get widespread adoption, then they need to be smart and helpful, not say:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Uhhhh, something bad happened and I can't help you, later dude.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So, where is the log of the installer so I can manually go track down an error that the installer should be intelligently informing me about...&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;UPDATE:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Apparently the Registry Entry &amp;#8220;HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\ToolboxPages\Silverlight Components&amp;#8221; must not exist or the installer fails.&amp;nbsp; After simply removing this entry, the install worked without a hitch.&amp;nbsp; This must not get removed correctly by some versions of the Silverlight Tools.&lt;/P&gt;
&lt;P&gt;More information for &lt;A href="http://weblogs.asp.net/bradleyb/archive/2008/03/06/installation-tips-for-sivliverlight-tools-beta-1-for-visual-studio-2008.aspx"&gt;resolving problems can be found here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1362.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>Scott Guthrie is coming back to Scottsdale - March 11th</title><link>http://blog.steeleprice.net/archive/2008/01/23/1339.aspx</link><pubDate>Wed, 23 Jan 2008 14:03:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2008/01/23/1339.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1339.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2008/01/23/1339.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1339.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1339.aspx</trackback:ping><description>&lt;p&gt;&lt;a href="http://www.azgroups.com" target="_blank"&gt;AZGroups&lt;/a&gt; is pleased to announce of a visit to our valley of the sun of&lt;br&gt;Microsoft software development visionary Scott Guthrie. Our fifth annual&lt;br&gt;Arizona .NET User Group (100% free) event brings you a chance to spend some&lt;br&gt;time with an original inventor and creator ASP.NET. Scott has been busy&lt;br&gt;since ASP.Net was first launched and now presides over product development&lt;br&gt;efforts for Visual Studio, Silverlight, ASP.NET, IIS and Expression Tools.&lt;br&gt;If you have used these tools you have Scott Guthrie to thank. Many&lt;br&gt;developers, however, see beyond Scott's formidable product manager status,&lt;br&gt;and find a cut-to-chase, blog-friendly mentor helping to improve they way we&lt;br&gt;work and utilize Microsoft developer tools. Don't miss this opportunity to&lt;br&gt;experience one of the brightest and most down-to-earth technologists Redmond&lt;br&gt;has to offer. &lt;p&gt;See you there! &lt;p&gt;Scott's events in the past have always been the most informative, worthwhile events I have attended in Phoenix.&amp;nbsp; If you are a Developer, Designer, Architect, or Project Manager this is a MUST ATTEND event.&lt;/p&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1339.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>Xbox 360 + Xvid = Awesome</title><link>http://blog.steeleprice.net/archive/2007/12/06/1315.aspx</link><pubDate>Thu, 06 Dec 2007 00:11:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2007/12/06/1315.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1315.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2007/12/06/1315.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1315.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1315.aspx</trackback:ping><description>&lt;P&gt;I am pleased to report that my foray into getting Xvid content running natively on an Xbox 360 since the Dec 4th Dashbord update is working VERY well.&amp;nbsp; I am in the process of writing a better uPnP Server (using VB and Linq of course) to handle my library.&amp;nbsp; I had originally hoped we would have Xvid/Divx support on the 360 and I am quite pleased that now we do and it works perfectly for me.&lt;/P&gt;
&lt;P&gt;I have tried a couple different uPnP servers out there, &lt;A href="http://tversity.com/home"&gt;TVersity&lt;/A&gt;, &lt;A href="http://ushare.geexbox.org/"&gt;uShare&lt;/A&gt; and some others, they are all lacking when you want a rich interface for the server and high quality, easy to use management of your Library with thousands of files.&lt;/P&gt;
&lt;P&gt;I started leveraging the capability of Xvid years ago to reduce the storage size of my library as well as having centralized storage for all my personal media so I can share it around the house on different TVs in the house.&lt;/P&gt;
&lt;P&gt;And lets not forget that MP3s are still a chore to wrangle and manage, being able to play these on a device you can buy new for $399 or used for like $100-200 and still use as a Top Notch Gaming system as well is really awesome!&amp;nbsp; And I didn't have to hack a thing, it just works.&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1315.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>Xbox Team : December 2007 System Update</title><link>http://blog.steeleprice.net/archive/2007/12/02/1314.aspx</link><pubDate>Sun, 02 Dec 2007 22:22:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2007/12/02/1314.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1314.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2007/12/02/1314.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1314.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1314.aspx</trackback:ping><description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;December 2007 System Update&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Hello Everyone! 
&lt;P&gt;Coming shortly is our &lt;EM&gt;&lt;STRONG&gt;December 2007 System Update&lt;/STRONG&gt;&lt;/EM&gt;, one where we've added a lot of new features that you guys have been asking for. You should be prompted for the update early next week on December 4&lt;SUP&gt;th&lt;/SUP&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/xboxteam/archive/2007/11/30/december-2007-system-update.aspx"&gt;Xbox Team : December 2007 System Update&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;This is not only the most exciting update I've seen to the Xbox 360, it is also &lt;STRONG&gt;the most compelling reason for me to go out and buy another one!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;An Xbox lives in many rooms in my house right now, there are only 2 things I still want now that we FINALLY have Divx support.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;I want XNA Support for VB!!! 
&lt;LI&gt;We need Silverlight 2.0 Support&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;I know for a fact that &lt;A href="http://timheuer.com/blog/archive/2007/11/30/silverlight-firestarter-seattle-recap.aspx"&gt;some Silverlight support has at least been demoed&lt;/A&gt; for the Xbox but I don't believe this was running on an Xbox.&lt;/P&gt;
&lt;P&gt;VB Developers should be allowed to be XNA Developers!&amp;nbsp; This stems from there not being a build of the VB Runtime yet for the Xbox.&amp;nbsp; Hopefully this will be cleared up soon, there is some talk about the VB Runtime not being required any more in VB.Next but nothing firm.&amp;nbsp; I'd much rather see a port of the runtime to work on the Xbox so we can just start writing games in VB Now.&amp;nbsp; There were a ton of great PC Games written in VB3 and up, it only makes sense that many of those developers would love to be writing titles for the Xbox.&lt;/P&gt;
&lt;P&gt;With support for Silverlight, we could have awesome media library connections and Home Server applications that would be displayed on our main Entertainment / Living Room system.&amp;nbsp; I'm hoping both those updates roll out soon and I will then commit all my entertainment type development to the Xbox.&lt;/P&gt;
&lt;P&gt;I really look forward to testing out the Divx update on Tuesday and if it works as expected, I will finally be building my Library system with the Xbox in mind.&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1314.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>ScottGu on ASP.NET 3.5, Silverlight 2.0, and IIS7</title><link>http://blog.steeleprice.net/archive/2007/11/29/1311.aspx</link><pubDate>Thu, 29 Nov 2007 12:57:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2007/11/29/1311.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1311.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2007/11/29/1311.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1311.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1311.aspx</trackback:ping><description>&lt;P&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/11/29/net-web-product-roadmap-asp-net-silverlight-iis7.aspx"&gt;.NET Web Product Roadmap (ASP.NET, Silverlight, IIS7) - ScottGu's Blog&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Of Note is the changing of the Release name for the next version of Silverlight:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Previously we've been referring to this .NET-enabled Silverlight release as "Silverlight V1.1".&amp;nbsp; After stepping back and looking at all the new features in it (the above list is only a subset - there are many more we aren't sharing yet), we've realized that calling it a point release doesn't really reflect the true nature of it.&amp;nbsp; Consequently we have decided to change the name and refer to it as "Silverlight V2.0" going forward.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I had some OMG moments when reading this entry.&lt;/P&gt;
&lt;P&gt;Significantly on Silverlight 2.0&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;U&gt;WPF UI Framework&lt;/U&gt;: The current Silverlight Alpha release only includes basic controls support and a managed API for UI drawing.&amp;nbsp; The next public Silverlight preview will add support for the higher level features of the WPF UI framework.&amp;nbsp; These include: the extensible control framework model, layout manager support, two-way data-binding support, and control template and skinning support.&amp;nbsp; The WPF UI Framework features in Silverlight will be a compatible subset of the WPF UI Framework features in last week's .NET Framework 3.5 release.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Currently in Silverlight 1.1, the UI IS NOT compatible with WPF.&amp;nbsp; making it a compatible subset means that you can take a Silverlight App and recompile it in a Windows App and it will work without modification.&amp;nbsp; This is a MAJOR improvement and something I have really wanted, specifically for a project I am working on right now.&amp;nbsp; If I am reading that wrong, someone please enlighten me.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;We will be releasing a Beta of Silverlight 2.0 in Q1 of 2008.&amp;nbsp; This Beta will support a Go-Live license that enables developers to begin building and deploying Silverlight 2.0 applications.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Go Live rocks!&amp;nbsp; Thanks Microsoft.&lt;/P&gt;
&lt;P&gt;As I get deeper into 2.0 I will be publishing a lot of new tutorials as well.&amp;nbsp; I have been holding up a MAJOR site to put it on Silverlight 2.0.&amp;nbsp; That may release sooner on 1.1 but I sort of doubt it due to time contraints.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"ASP.NET 3.5 Extensions" release.&amp;nbsp;&amp;nbsp; --&amp;gt; WOHOO!&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The first public preview of this will be available for download next week on the web.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;ASP.NET MVC&lt;/P&gt;
&lt;P&gt;I have not been using MVC because it did not provide much benefit for what I do.&amp;nbsp; If Silverlight is going to be upward compatible to WPF, that just might change my mind.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ADO.NET Data Services&lt;/P&gt;
&lt;P&gt;I absolutely cannot wait for EF and Astoria to be ready for a Go Live.&amp;nbsp; I NEED IT NOW! I NEED IT NOW! I NEED IT NOW! &lt;/P&gt;
&lt;P&gt;ok, I'll settle down now :-)&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1311.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>VB guys can('t) be Zealots too</title><link>http://blog.steeleprice.net/archive/2007/10/22/1292.aspx</link><pubDate>Mon, 22 Oct 2007 14:36:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2007/10/22/1292.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1292.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2007/10/22/1292.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1292.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1292.aspx</trackback:ping><description>&lt;P&gt;As Nick points out, there is a disturbing situation going on in a forum where there are no posted rules. So I would like to correct what nick says as VB guys CAN'T be zealots, without being punished by the overlords.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://community.softteq.com/blogs/nick/archive/2007/10/21/vb-guys-can-be-zealots-too.aspx"&gt;VB guys can be Zealots too - Nick's .NET Travels&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;I am also a zealot when it comes to VB, I love the language and have written some great applications with it.&amp;nbsp;&amp;nbsp;I literally BASED MY CAREER on VB.&lt;/P&gt;
&lt;P&gt;If I were to refer to the treatment as being brought down by "Jackbooted Facists" in the same forum, then I would probably get myself in a lot of trouble.&amp;nbsp; Who knows, maybe making a reference to it here will get me into trouble as well.&lt;/P&gt;
&lt;P&gt;So should I and other MVPs that choose to rally support for our preferred language (and thus the reason we were awarded MVP status in the first place) be in fear of posing our opinions or lose access to our inside resources?&lt;/P&gt;
&lt;P&gt;VB needs zealots to whack Microsoft on the head and confer with urgency either the enormous mistake they are making by &lt;A href="http://msmvps.com/blogs/bill/archive/2007/10/22/is-vb-the-n-gg-r-of-programming-languages.aspx"&gt;excluding VB from SDKs and platforms&lt;/A&gt; or to get them to admit they want to &lt;STRONG&gt;KILL&lt;/STRONG&gt; VB as a language and focus solely on C#.&amp;nbsp; If it is the former, then they need to get their act together and start &lt;STRONG&gt;PUSHING&lt;/STRONG&gt; &lt;STRONG&gt;VB support and samples&lt;/STRONG&gt; out the door by hiring a dedicated crew to produce them.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Hey Microsoft, Feel free to hire me to&amp;nbsp;participate since I am going to be DOING IT ANYWAY!&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1292.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>Scott Guthrie on Silverlight</title><link>http://blog.steeleprice.net/archive/2007/05/07/1157.aspx</link><pubDate>Mon, 07 May 2007 18:26:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2007/05/07/1157.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1157.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2007/05/07/1157.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1157.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1157.aspx</trackback:ping><description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2007/05/07/silverlight.aspx"&gt;&lt;STRONG&gt;Silverlight&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Last Monday I delivered one of the keynotes at the MIX conference in Las Vegas, and&amp;nbsp;discussed a new project that I've been spending most of my time working&amp;nbsp;on over the last year: &lt;A href="http://www.silverlight.net/"&gt;Silverlight&lt;/A&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Scott's insights and thoughts about what his teams are working on are always enlightening.&amp;nbsp; I really look forward to getting my hands on a few of these Starter Kits.&amp;nbsp; Silverlight certainly has the potential to change the way programs for the Net are written.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The&amp;nbsp;"Top Banana" application&amp;nbsp;was built with C# and runs cross platform on any system where Silverlight is installed.&amp;nbsp; The total download size of the application (meaning the size of all of the XAML + compiled code when a user types in the URL of the site) is only ~50kb.&amp;nbsp; We'll be shipping a source-code version of the application as a sample later&amp;nbsp;this summer.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Awesome, hopefully we will see a bunch of these for VB as well.&amp;nbsp; VB As a Dynamic Language is also an interesting idea.&amp;nbsp; This is VB10 though, don't expect this for VB9 (Orcas).&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1157.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>H. Steele Price, IV</dc:creator><title>Developing ASP.Net with Ajax and SQL is completely Free</title><link>http://blog.steeleprice.net/archive/2007/04/29/1151.aspx</link><pubDate>Sun, 29 Apr 2007 01:41:00 GMT</pubDate><guid>http://blog.steeleprice.net/archive/2007/04/29/1151.aspx</guid><wfw:comment>http://blog.steeleprice.net/comments/1151.aspx</wfw:comment><comments>http://blog.steeleprice.net/archive/2007/04/29/1151.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.steeleprice.net/comments/commentRss/1151.aspx</wfw:commentRss><trackback:ping>http://blog.steeleprice.net/services/trackbacks/1151.aspx</trackback:ping><description>&lt;P&gt;I was reading &lt;A href="http://www.thedatafarm.com/blog/"&gt;Julie Lerman's&lt;/A&gt; &lt;A href="http://blogs.devsource.com/devlife/content/net_general/three_things_developers_might_not_know_about_aspnet_and_should.html"&gt;post today about her discovery of some things ASP.NET does &lt;/A&gt;and found this:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;/STRONG&gt;2) You can develop ASP.NET sites (and with AJAX) for free. &lt;A href="http://msdn.microsoft.com/vstudio/express/downloads/"&gt;Visual Web Developer 2005 Express Edition&lt;/A&gt; is free and the &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=FE6F2099-B7B4-4F47-A244-C96D69C35DEC&amp;amp;displaylang=en"&gt;.NET Framework &lt;/A&gt;is free and the &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&amp;amp;DisplayLang=en"&gt;AJAX extension &lt;/A&gt;are free. And if you want to do data access, &lt;A href="http://msdn.microsoft.com/vstudio/express/sql/download/"&gt;SQL Server 2005 Express Edition&lt;/A&gt; is free. &lt;/EM&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;OK, so I knew that, but I am betting that the general mass populous of developers and other people who want to&amp;nbsp;break into&amp;nbsp;development don't.&lt;/P&gt;
&lt;P&gt;But what about getting "free" hosting... can you even really do that anymore even on LAMP?&amp;nbsp; You can, but not&amp;nbsp;with any real quality or without heavy restriction.&lt;/P&gt;
&lt;P&gt;This blog is hosted at &lt;A href="http://www.webhost4life.com/" target=_blank&gt;Webhost4life&lt;/A&gt; who charges a whopping FIVE dollars a month to give you ASP, SQL and an assortment of plugins to use.&amp;nbsp; &lt;A href="http://www.webhost4life.com/hosting_nosetup.asp"&gt;For a few dollars more you can get&lt;/A&gt; dedicated SQL and Sharepoint.&amp;nbsp; It's completely affordable for anyone to do garage based development in.&amp;nbsp; For the price of a single Starbuck's Latte a month I can host a site... Amazing.&amp;nbsp; Even more amazing, I can get the absolute latest features of even the most sophisticated hosts.&amp;nbsp; I think I&amp;nbsp; have been down a few&amp;nbsp;minutes in the last 5 years - that's more reliable than a T1.&lt;/P&gt;
&lt;P&gt;So if someone tells you that &lt;EM&gt;developing with M1cro$haft is too expensive&lt;/EM&gt;... Tell them they are completely out of touch with reality and need to come out of the cave and look around a bit.&amp;nbsp; Microsoft has an incredible developer support arsenal.&amp;nbsp; From &lt;A href="http://msdn2.microsoft.com/" target=_blank&gt;MSDN&lt;/A&gt; to the &lt;A href="https://partner.microsoft.com/40011351" target=_blank&gt;Empower Program&lt;/A&gt; to the &lt;A href="http://blogs.msdn.com/" target=_blank&gt;Dev Team Blogs&lt;/A&gt; to the Online Training resources to &lt;A href="http://www.projectglidepath.net/glidepath/default.aspx" target=_blank&gt;GlidePath&lt;/A&gt; and other projects as well as the Forums and Lists; there simply is no other single company on the planet offering you as much support in your development endeavors as Microsoft.&amp;nbsp; And by the way... &lt;STRONG&gt;MOST OF THEM ARE FREE&lt;/STRONG&gt;! (as in Free Lunch, Free Beer, Freedom or any other spin you want to put on it)&lt;/P&gt;&lt;img src ="http://blog.steeleprice.net/aggbug/1151.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>