<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by DevJunkie111</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by DevJunkie111</title>
		<link>http://channel9.msdn.com/Niners/DevJunkie111/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/DevJunkie111/Discussions</link>
	<language>en</language>
	<pubDate>Tue, 21 May 2013 11:57:28 GMT</pubDate>
	<lastBuildDate>Tue, 21 May 2013 11:57:28 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - Javascript/HTML v.s Silverlight4....</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">TommyCarlier said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Tommy - ok half way true....</p>
<p>&nbsp;</p>
<p>but AJAX does depend on the browser running javascript</p>
<p>and i have seen that break it more than a few times.</p>
<p>&nbsp;</p>
<p>some times a client will just puke if some error happens in the clients script and if that script works on other pc's then we are left with an unstable app and we do not know why ...</p>
<p>&nbsp;</p>
<p>we wind up taking the pc and re-loading the browser to try and fix it. (well the tech on site does anyway).</p>
<p>and it does not fail totally.... it just crashes/hangs when they are in the second or third part of a data entry process.</p>
</div></blockquote>
<p>fuguerres, tommyCarlier, great comments. Tommy is right gmail is a great example to show that JavaScript/Ajax works if done right.</p>
<p>If you listen to Douglas Crockford, he is on a mission to talk about the Good parts of Javascript; he would argue that if done right it is a good language to write apps in once you learn to avoid the bad parts! &nbsp;</p>
<p>And now you have JQuery and RxJavaScript etc to make it easier to write better apps.&nbsp;</p>
<p>Also as far as I know silverlight does not run on Linux, does it?</p>
<p>If we all were to embrace the Javascript/HTML paradigm would we be able to create a better JavaScript, and evolve the browser DOM. Yes, this is all standards work, but there is no way to get a cross platform work except through some standards work.&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/a1bfa55a60794cdd98779deb00dc4801#a1bfa55a60794cdd98779deb00dc4801</link>
		<pubDate>Thu, 18 Mar 2010 14:33:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/a1bfa55a60794cdd98779deb00dc4801#a1bfa55a60794cdd98779deb00dc4801</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>38</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why is IE9 not built on the CLR? </title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">ManipUni said:</div><div class="quoteText">
<p>What is the benefit of moving IE9 to the CLR? You asked why it isn't, but you never really said why it SHOULD?
</p>
<p>&nbsp;</p>
<p>If your reasoning is security then frankly IE9 could do more good by dropping back-compatibility with every existing addon and OS tie-in, and only allow back in those that supported low privileged execution. If they developed a CLR version and supported
 existing addons etc then it would do absolutely no good at all. </p>
<p>&nbsp;</p>
<p>Frankly I'd like to see all browsers move to a &quot;whitelist&quot; model for automatic file type execution... Drop PDF, Office Formats, and unknown formats entirely from auto-starting and require the user download, save, and run them.
</p>
</div></blockquote>
<p>I did...touch on the benefits of writing IE on the CLR earlier in the thread...</p>
<p>if IE were written on the CLR we would get a lot of benefits. The innovation in the browser would drive the evolution of the CLR and vice versa.&nbsp;</p>
<p>When Javascript needs a runtime we could use the CLR to build it? So it would become a first class CLR language. So if I need to create a library and use it outside the browser I could just do that. &nbsp;We could also imagine generating Javascript libraries
 from .Net languages!</p>
<p>here is an example of the kind of things we would get; when the browser folks need to create the concept of isolation so that tabs would not crash each other for example. We could use the same technology in our .Net apps.&nbsp;</p>
<p>The browser folks would benefit from any good work that was done on the CLR; new techniques to code for concurrency is a good example.&nbsp;</p>
<p>there are many more benefits...&nbsp;</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537750-Why-is-IE9-not-built-on-the-CLR/2144865aa2eb47518ec59deb00dc8a2e#2144865aa2eb47518ec59deb00dc8a2e</link>
		<pubDate>Wed, 17 Mar 2010 22:59:14 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537750-Why-is-IE9-not-built-on-the-CLR/2144865aa2eb47518ec59deb00dc8a2e#2144865aa2eb47518ec59deb00dc8a2e</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why is IE9 not built on the CLR? </title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">AndyC said:</div><div class="quoteText">
<p>Because the vast majority of IE is a component that can be hosted inside other processes and those processes do not necessarily want to take a large dependencie on the CLR for very little benefit (and in some cases, i.e. CLR 1.0/1.1 apps, wouldn't be able
 to if they wanted).</p>
</div></blockquote>
<p>Technically I think that a clr based browser would work just as well; and perform just as well. If it did not then it would push the CLR team to make a better runtime.&nbsp;</p>
<p>The discussion about legacy investment and when to change that is a business decision. I think Jason Zander and VS team require kudos for writing thier UI in .Net. I think that overall this was a big win, we got a better UI but more importantly we got a
 lot of feedback to the WPF and CLR teams about improving things. Which&nbsp;benefited&nbsp;everyone!</p>
<p>I think that if IE were written on the CLR we would get a lot of benefit in this sense. And the innovation in the browser would drive the evolution of the CLR. And when javscript needs a runtime we could use the CLR to build it perhaps?</p>
<p>And I would say the same about the office folks! The enormous investment in COM is holding back innovation.&nbsp;</p>
<p>Windows I do not know, perhaps that is a lost cause. Maybe someday we would have a CLR based OS?&nbsp;</p>
<p>Remember we have challenges like switching to taking advantage of multi cores and GPUs that we could all share and use if we built on the CLR and developed good libraries to represent all the innovation. All the algorithms and innovation at the core of IE
 is opaque and unavailable; conversely the innovation on the CLR and from the community is not available to the IE team.&nbsp;</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537750-Why-is-IE9-not-built-on-the-CLR/0a293fb9843c414ab8c99deb00dc88a6#0a293fb9843c414ab8c99deb00dc88a6</link>
		<pubDate>Wed, 17 Mar 2010 16:38:16 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537750-Why-is-IE9-not-built-on-the-CLR/0a293fb9843c414ab8c99deb00dc88a6#0a293fb9843c414ab8c99deb00dc88a6</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - wpf...does it just fade away...?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">turrican said:</div><div class="quoteText">
<p>I have been pondering the same thing myself. I think Silverlight is great for most of the &quot;regular&quot; user apps, no more chasing users with updates etc so it's nice. But WPF still is needed, for example in business and enterprise where you need to have local
 access to the PC without the sandboxing of Silverlight.</p>
<p>&nbsp;</p>
<p>I got a pretty huge app in winforms which I ponder to rewrite soon, I still haven't decided to go WPF or Silverlight but I'm very much leaning towards Silverlight since it now how rightclick contex menus for example.</p>
<p>&nbsp;</p>
<p>Good thing about XAML is that if I go Silverlight and get stuck on something, I can pretty much convert that app to WPF without too much headache.</p>
</div></blockquote>
<p>great comments turrican! I was in the same boat, with the winforms situation and large applications and client base. I was waiting for wpf to mature, get more performant and controls to become available from the vendors etc. But in the mean time FLEX and
 HTML5/javascript arrived and so did Silverlight. So we have to reevaluate. It is good that we are discussing this. WPF right now is presented as THE option for RICH windows only standalone applications. But if we could get RICH browser based apps would we
 take it? I think that the quality of the browser based app is not good enough, and the programming model is not great but that is changing as we speak? And looks like people would like to combine RICH and REACH apps if they can get it!</p>
<p>How much innovation is happening in WPF? how many talks at MIX on WPF? Where does that leave us?</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/f5ecc453bf414c8797689deb00dc2e10#f5ecc453bf414c8797689deb00dc2e10</link>
		<pubDate>Wed, 17 Mar 2010 16:01:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/f5ecc453bf414c8797689deb00dc2e10#f5ecc453bf414c8797689deb00dc2e10</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Javascript/HTML v.s Silverlight4....</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">sysrpl said:</div><div class="quoteText">
<p>Developing text based content, such as a news article, a forum for users to exchange messages, a listing of online products, is so much easier than producing audio or video based content such as a news video, a voice chat message board, or an interactive
 animated product brouchure.</p>
<p>&nbsp;</p>
<p>As such...</p>
<p>&nbsp;</p>
<p>HTML and JavaScript = The standard for delivering web sites. Everyone uses it, everything supports it, does just everything you need.</p>
<p>&nbsp;</p>
<p>Silverlight/Flash = You want some video, sounds, and animation in a web page. Fun to use, but mostly impractical.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div></blockquote>
<p>it is still early days, but with all the audio and video support in HTML5 and IE9;
</p>
<p>Javascript and libraries like JQuery</p>
<p>backend services based on &nbsp;ODATA (a.k.a ADO .net services) or GDATA or REST in general
</p>
<p>&nbsp;we have a good platform for building good cross platfrom browser based applications.&nbsp;</p>
<p>with all available what are we getting with silverlight.</p>
<p>Look at apps&nbsp;<a href="http://www.zoho.com/">http://www.zoho.com/</a>&nbsp;or all the Google apps (Gmail included) they demonstrate that this works quite well.&nbsp;</p>
<p>How do we justify all the investment in silverlight? I thought that is was because we could provide a rich experience (including audio/video) but that is all changed now that we have IE9 and HTML5 isn't? Could some one from the IE and silverlight teams comment?&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/0117f068fd71471e90f59deb00dc470d#0117f068fd71471e90f59deb00dc470d</link>
		<pubDate>Wed, 17 Mar 2010 15:45:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/0117f068fd71471e90f59deb00dc470d#0117f068fd71471e90f59deb00dc470d</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>38</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Why is IE9 not built on the CLR? </title>
		<description><![CDATA[<p>Can anyone explain why IE9 is not a .Net application?&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537750-Why-is-IE9-not-built-on-the-CLR/537750#537750</link>
		<pubDate>Wed, 17 Mar 2010 15:36:28 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537750-Why-is-IE9-not-built-on-the-CLR/537750#537750</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>16</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Javascript/HTML v.s Silverlight4....</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">figuerres said:</div><div class="quoteText">
<p>Dev:</p>
<p>I would say that SIlverlight is very very very far from dead.&nbsp; Flash too.</p>
<p>why? many details but here are a few issues:</p>
<p>&nbsp;</p>
<p>HTML5 does have a video tag yes... but it does not address issues like DRM and business like cable companies and pay-per-view will not go with a NO-DRM solution.</p>
<p>also related is that HTML5 does not specify one video format so site owners face a problem of do they make every video on like 3-4 formats (possibly more?) or use something like Flash or SIlverlight to keep one video format?</p>
<p>&nbsp;</p>
<p>leaving video now lets look at JavaScript/EcmaScript:</p>
<p>&nbsp;</p>
<p>if i am trying to make money on the web and i use script &#43; html then i am totally left open to copying of my work by any 12 year old kid.</p>
<p>while silverlight does not totaly protect me it at least packages the work and makes it slightly hard to copy.</p>
<p>also if i want to distribute a silverlight app i can send a xap file to folks all packaged.</p>
<p>&nbsp;</p>
<p>and now what about a browser that has scipt disabled? or the script engine is bugged? a plain html page w/o any client script can still use and run silverlight.</p>
<p>&nbsp;</p>
<p>also not everyone will have html5 right away... some folks may never get it in some corp. network cases.
</p>
<p>&nbsp;</p>
<p>and silverlight can run out of browser with no internet connection.... </p>
<p>&nbsp;</p>
<p>and you can use other programming languages than just C# and VB .... with javascrip you can only really use that....</p>
<p>&nbsp;</p>
<p>also the XAML markup can create layout that can be very hard to do in html.</p>
<p>and html does not render the same on all browsers....</p>
<p>and silverlight can &quot;chnage pages&quot; locally which standard html does not do.</p>
<p>&nbsp;</p>
<p>and there are many other details of why SIlverlight compliments html and they are not exclusive to each other.</p>
</div></blockquote>
<p>good points figurres! Can anyone who is an expert in HTML/Javascript please respond.&nbsp;</p>
<p>A couple of comments I do not have any solution to you question about code security. But maybe the revenue model is not from selling the code and protecting it but by getting ad revenue?&nbsp;</p>
<p>..if the Javascript engine is turned off it could also be the Silverlight plugin is not installed.&nbsp;</p>
<p>Also we do not have silverlight for all platforms linux for example?</p>
<p>The Javascript experts would argue that you do not need other languages and that Javascript is a pretty good language. And Eric Meijer was talking about using Javascript as the &quot;assembly language&quot; for the web; so &nbsp;you could imagine generating Javascript
 from other languages soon.&nbsp;</p>
<p>The html standards we can all hope will remove some of the other problems you mention.</p>
<p>&nbsp;</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/17acca3d22354a9183c59deb00dc4578#17acca3d22354a9183c59deb00dc4578</link>
		<pubDate>Tue, 16 Mar 2010 22:45:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/17acca3d22354a9183c59deb00dc4578#17acca3d22354a9183c59deb00dc4578</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>38</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Javascript/HTML v.s Silverlight4....</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">PaoloM said:</div><div class="quoteText">
<p>Yeah, no.</p>
<p>&nbsp;</p>
<p>HTML5 &#43; JavaScript still does not provide the experience that Silverlight (especially with v4) can do. Besides, HTML5&#43;JS is purely a browser technology, Silverlight is not limited to that&nbsp;anymore.</p>
</div></blockquote>
<p>Paolo could you please elaborate on your comments? What features do you have in mind that provide a richer experience? Did you see all the rich interaction and graphics for IE/HTML5 that was demoed at MIX? I think that does change the equation significantly.
</p>
<p>&nbsp;</p>
<p>And maybe we can work out a way to build a CLR runtime for Javascript so it can eventually run outside the broswer and even be compiled as well.&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/07146c556f9145f48bcd9deb00dc44bd#07146c556f9145f48bcd9deb00dc44bd</link>
		<pubDate>Tue, 16 Mar 2010 22:01:36 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/07146c556f9145f48bcd9deb00dc44bd#07146c556f9145f48bcd9deb00dc44bd</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>38</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - wpf...does it just fade away...?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">brian.shapiro said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">DevJunkie111 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>XAML is really a more powerful, flexible development platform. XAML and HTML5 will not be equivalent by any means. &nbsp;Compare how easy it would be to make a circular listbox (as an example) in XAML vs in HTML5. However that doesn't mean XAML should one day
 replace HTML either, imo. The thing about XAML is that with its flexibility is a lot more complexity and is only friendly to use if you're an experienced developer. It also depends on a very specifically designed object framework, whereas the DOM is a lot
 simpler.</p>
</div></blockquote>
<p>thanks for the comment brian, if you noticed I started a new thread to discuss this further.&nbsp;</p>
<p>Please contribute. Do we really need these two approaches to build browser based Ui's?</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/29003a1a04d64644bc2e9deb00dc2d88#29003a1a04d64644bc2e9deb00dc2d88</link>
		<pubDate>Tue, 16 Mar 2010 21:12:48 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/29003a1a04d64644bc2e9deb00dc2d88#29003a1a04d64644bc2e9deb00dc2d88</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Javascript/HTML v.s Silverlight4....</title>
		<description><![CDATA[<p>I am starting this thread so that I can get some clarity from all the great developers on channel9</p>
<p>on the future of browser based UI development.</p>
<p>I remember having a discussion a while ago about wether we needed to &quot;invent&quot; xaml and why we could not just evolve HTML instead. Looks like we have a clear answer now thanks to the community who pushed for HTML5. What a waste of time and resources with
 all the investment in silverlight and xaml, if it is going to die eventually as it should! There was all this emphasis on GPU support and rich graphics that wa available via Silverlight. Looks like that is not the case any more with IE9.</p>
<p>Funny I though that this Mix conf was about&nbsp;highlighting&nbsp;silverlight4; now it looks like the silverlight funeral with all the announcements on HTML5 support; i see no sense in silverlight anymore , am I missing something?</p>
<p>I was just getting ready to invest time in Silverlight4 for browser UIs; maybe it seems much more sensible to invest in HTML5 &#43; Javascript; Can we get some more intelligent comments to help clarify?&nbsp;</p>
<p>So far it seems to me that&nbsp;Javascript &nbsp;wins by a knockout with IE9 support!&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/537633#537633</link>
		<pubDate>Tue, 16 Mar 2010 21:05:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537633-JavascriptHTML-vs-Silverlight4-at-MIX-Javascript-wins-by-a-knockout-with-IE9-support/537633#537633</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>38</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - wpf...does it just fade away...?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">Bass said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">DevJunkie111 said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>The difference is HTML5 is an open standard with wide industry adoption. Silverlight is a properitary Microsoft technology.
</p>
<p>&nbsp;</p>
<p>From Microsoft's perspective they would rather you use Silverlight. They have more control over that, and their whole business model basically revolves around platform control. HTML5 doesn't really fit into that well.</p>
<p>&nbsp;</p>
<p>I suspect HTML5 support was not Microsoft's idea. &quot;HTML5 support was my idea.&quot;
<img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif" alt="Smiley"></p>
<p>&nbsp;</p>
<p>Many (most) web designers seem to be firmly supportive of an open web, and Microsoft is not able to ignore them anymore.</p>
</div></blockquote>
<p>&nbsp;</p>
<p>Bass that is a good point; i remember having this discussion about wether we needed to &quot;invent&quot; xaml and why we could not just evolve HTML instead. Looks like we are there now! Thanks to all the developers who pushed for it. What a waste of time and resources
 with all the investment in silverlight and xaml, if it is going to die eventually! At that time; there was all this emphasis on GPU support and rich graphics that was only available via WPF and eventually silverlight. Looks like that is not the case any more.</p>
<p>Funny I though that this Mix conf was about hightlighting silverlight4; now it looks like the silverlight funeral with all the announcements on HTML5 support; i see no sense in silverlight!! I was just getting ready to invest time in silverlight4 and maybe
 seems much more sensible to invest in HTML5 &#43; Javascript. Can we get some more intelligent comments to help clarify?&nbsp;</p>
<p>I will start a new thread to discuss Silverlight v.s. HTML/Javascript.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/a0fff99d6928471eba439deb00dc2d2c#a0fff99d6928471eba439deb00dc2d2c</link>
		<pubDate>Tue, 16 Mar 2010 20:49:56 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/a0fff99d6928471eba439deb00dc2d2c#a0fff99d6928471eba439deb00dc2d2c</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - wpf...does it just fade away...?</title>
		<description><![CDATA[<p><blockquote><div class="quoteUser">exoteric said:</div><div class="quoteText">
<blockquote>
<div class="quoteUser">spivonious said:</div>
<div class="quoteText">*snip*</div>
</blockquote>
<p>Nonsense. These are not replacements, these are complementary. But yes, it's overwhelming at times.</p>
<p>At least it doesn't make any sense to stop progress because we can't keep up with everything.</p>
</div></blockquote>
<p>Thank you for all your posts, your comments are insightful.&nbsp;</p>
<p>It is totally overwhelming!</p>
<p>Today I was watching the ie9 talk. So now you have&nbsp;HTML &#43; JavaScript and ASP .net mvc as options to write UIs thrown into the mix.</p>
<p>And all of these technologies are evolving rapidly.</p>
<p>Given that writing good UIs is still a great challenge all these different UI technologies and frameworks&nbsp;make it hard for developers to focus on the &quot;real&quot; problem of designing and building good UIs;&nbsp;instead time and effort is spent on learning all these
 frameworks. These are not just different in terms of ideas like XAML vs HTML for mark up they also differ in strategies for managing state(Client vs. server). If we were going to be investing in HTML5; why could we not have invested in it more, so we would
 not need XAML? We could have built WPF engine on top of the HTML5 DSL for UIs.</p>
<p>And while we are discussing this, let us think of also of the complexity of many implementations of MVC, MVVM (Too many implementations to list out; corrected based on comments from wkempf).</p>
<p>Is this not getting way too complex?</p>
<p>Of course we should not stop progress in anyway; but perhaps we can do better?</p>
<p>Am I missing something? Please help me understand I really appreciate it.</p>
<p>&nbsp;</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/2271eeacc267499a9c099deb00dc2c9b#2271eeacc267499a9c099deb00dc2c9b</link>
		<pubDate>Tue, 16 Mar 2010 17:44:33 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/2271eeacc267499a9c099deb00dc2c9b#2271eeacc267499a9c099deb00dc2c9b</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - wpf...does it just fade away...?</title>
		<description><![CDATA[<p>with all this emphasis on silverlight is all the innovation on WPF over?&nbsp;</p>
<p>What is the scenario here, how can we justify haveing two major UI frameworks with minor differences in the api and intricate differences in the core implementation.&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/537381#537381</link>
		<pubDate>Mon, 15 Mar 2010 23:13:32 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/537381-wpfdoes-it-just-fade-way/537381#537381</guid>
		<dc:creator>DevJunkie111</dc:creator>
		<slash:comments>17</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DevJunkie111/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>