My ambition to blog everyday during the conference was met by the reality of not having as much time as I had imagined.

After 2.5 days of great sessions and conversations I have to say that the conference was one of the best I have attended. The sessions were really well done with the exception for the last one I attended. The MS presenters were all consistently good – the best 2 being Scott Hanselman (ASP.NET MVC) and Karen Korby (Silverlight 2.0 Controls.)

I feel that not only did I learn a lot but more importantly I have walked away re-energized and focused. I had a feeling that Silverlight 2.0was going to be awesome but after working with the beta bits I realized that it is a game changer. The ability to create RIAs (Rich Internet Applications) in a familiar and productive environment is just awesome.

I have started to re-design my company website (which is in dire need of an update – a case of  “the shoemakers children are often shoeless”) as a way to get my feet wet with the SDK. I have worked with WPF and WCF over the last year but now that it can be leveraged in the a cross-platform/cross-browser way it is a viable option for the work that I do.

I will post more detailed impressions of Silverlight 2.0 Beta once I get a working version of the new site up and running.

MIX08 Begins Tomorrow

March 5, 2008

Just arrived in Vegas for this year’s MIX conference. The big thing at this conference is Silverlight 2.0. A greatly enhanced Silverlight platform will bring a trimmed down version of the .NET CLR to the browser. Allowing you to write RIA apps hosted in the browser in your .NET language of choice.

Silverlight Version 1.0 your only choice for langauge was Javascript – and for me if I can avoid Javascript I will do it anytime that I can. It is not that Javascript is a bad language – but C# is much better – at least for me. 

Looking forward to the conference – it my first conference since going out on my own 9 years ago. I hope to get energized and inspired by getting away and being able to focus on some new technology – sort of like a mini-sebatical.

I will try and blog each day with the highlights from the sessions and conversations.

I had two .NET celebrity sightings – first was checking into the hotel – Miguel de Icaza- of the mono project - who I saw present a few years ago at a user group meeting in Waltham MA. The scecond was during the Wintellect scavenger hunt. One of the things we needed to find a Silverlight illuminary and we ran into Scott Hanselman of the famed Hanselminutes podcast. He was gracious and let us take a picture with him – he obviously just arrived and all he wanted to do was check-in – thanks Scott.

I came across this article that blew my mind and scared the crap out of me at the same time. Its is titled Life 2.0 in Newseek Magazine.

Here is a quote that connected it to software development for me …

“We can now regard cells as ‘programmable matter’,” says Ron Weiss, a Princeton computer scientist who now writes genetic software for cells. Weiss is convinced that he will soon be able to “program cell behaviors as easily as we program computers.”

 The prospect of engineering new organisms from scratch opens up all sorts of possibilities — Good and bad.

I like to think more good than bad. The article mentions developing a “highly efficient biological organism that converts sunlight directly into a clean bio fuel” – now that is mind boggling.

Imagine a day when we can program cells and create new living entities with a programming language – Cell# maybe?

This one is going to take a while to sink in.

- M

Script#

May 25, 2007

I just came across something that I originally found last year that I thought was so very cool.

I don’t know about you but the experience of writing Javascript without really good tools for debugging is a real pain in the a$$.

What if you could write C# with all of its strong-typed-ness and awesome development environment (VS.NET 2005) then just compile it to JavaScript?

Check out Script#

EDIT: Link to more updated build of Script# – thanks Nikhil for the correction

This is such a great idea – instead of compiling to IL – compile to Javascript. The combination of the C# to Javascript compiler  and the object oriented extensions MS made to Javascript for ASP.NET AJAX - makes for very clean Javascript code.

It even provides a debug version that has easy to read code and a release version that compresses everything down (no white space and small private variable names) to make it as small as possible.

I found a good screencast on Channel9 where the author (in about 9 minutes) writes a Javascript behavior in C# that provides text-box watermark functionality.

So very cool

 - M

Microsoft Silverlight

May 22, 2007

This is old news but Microsoft announced a new technology that they are calling Microsoft Silverlight on April 30th 2007.

On the surface, v1.0 might be seen as an Adobe Flash competitor – which I think it pretty much is.

Where it gets interesting for me is in v1.1 which is currently available in Alpha and targeted to be available by the end of this year.

This is the version that gives you the ability to write cross-platform browser apps in languages like C# without having to resort to Javascript (unless you enjoy that sort of thing). It runs on top of a trimmed down version of the .NET Framework – not the compact framework – but a version of the framework with only things that relate to writing web apps. It also has something called the DLR which is essentially an extension to the CLR that makes it easier to port dynamic languages (like Ruby and Python) to the .NET framework.

This is a huge deal for developers who currently target the .NET framework and are tired of writing browser apps that use HTML for the GUI and Javascript for client-side interactivity – I know I am ready for something better.

I look forward to the day where you can write a desktop quality app and have it run in a browser.

- M