Skip to main content

LEAP Sweden - Windows 8 and Windows Server 2012

I am back home in the couch filled with enthusiasm from the last gathering of LEAP Sweden before the trip to Redmond in the end of May. Todays topic was the new versions of Windows (server and client) as well as the Business Intelligence product suite from Microsoft.

The Business Intelligence suite basically is a really nice integration between products that already exist. With SQL Server 2012, SharePoint 2010 and Excel 2010 tightly integrated Microsoft offers a really attractive package.

Mikael Nyström showed off some of the new features in Windows Server 2012. To say the least this is an impressive release. There is a heavy focus on virtualization, storage and terminal services which makes Microsoft a strong competitor against both VMWare and Citrix in the small to medium sized business segment. One of the coolest features has to be conditional permissions.

Johan Lindfors gave a demo on Windows 8 development. He showed some samples of how easy it is to develop Metro style applications on the WinRT. We have already seen some new cool features in Visual Studio 11 and .NET 4.5, but the new async features coming sometime in the future (CTP currently available) is absolutely awesome! Especially the async/await keywords, which simply is an extremely clean way of dealing with asynchronous calls.

At last we got a presentation from Chris Klug who had prepared a neat cross framework demo built with the Portable Class Libraries. This makes it quite simple to create a shared code base for Windows Phone 7, Windows 8, Silverlight and WPF.

In about a month we will be heading to Redmond for the last three days of the Lead Enterprise Architect Program, which I am sure will be awesome!

Comments

  1. Casinos in the UK - How to find good games - GrizzGo
    So, what do jordan 22 retro clearance we buy air jordan 6 shoes mean 하랑 도메인 by “casinos in the titanium metal trim UK”? to find a casino and live casino games on a 출장마사지 mobile phone device in 2021.

    ReplyDelete

Post a Comment

Popular posts from this blog

The Cornball goes to Brunch with Chaplin

Lately I've been working pretty hard on different projects but not really stumbling upon anything blogworthy. The most recent project is quite interesting though, a single page, touch friendly, web application using the latest and greatest technologies. We've ended up with using Brunch with Chaplin , which is a very neat way of setting up a Backbone based single page web project with Brunch and Chaplin . Aside from this, I have my own little project that has lived on for almost 15 years already, The Cornball . From being a plain Windows application written i C an Win32 API, it has been ported to .NET using WPF, and is currently a Silverlight application hosted on Windows Azure. I could not find a better time to reanimate this project and create a new web based version, touch friendly, super optimized, awesome in any way. So I did... So please follow my journey at Github . It's going to take a while, I assure you, but I already have some ground work done. Meanwhile,...

Using ASP.NET MVC with MEF

I wrote this post almost a year ago, but never published it for some reason. Anyway, here is a little MVC/MEF magic. By default a controller in MVC must have a parameterless constructor. When using MEF a good practice is to inject the services via constructor parameters. These two in combination obviously creates an issue where the following scenario will not work out of the box, since there is no parameterless constructor for  MVC  to use. Note that the PartCreationPolicy is set to NonShared since a new controller have to be initialized for each request. [Export] [PartCreationPolicy(CreationPolicy.NonShared)] public class HomeController : Controller {     private readonly IServiceClient _service;     [ImportingConstructor]     public HomeController(IServiceClient service)     {         _service = service;     }     public ActionResult Index()     {         ...

Bindable RichTextBox with HTML conversion in WPF

In WPF , the RichTextBox  control is not really like other controls. Due to its flexible nature, there is no built in way of binding a property to the content. In this case, I wanted a simple  RichTextBox  control with a binding to an HTML formatted string to be able to use the built-in formatting features of the  RichTextBox  and allow users to create simple HTML formatted content. First, doing the conversion on-the-fly proved to have major performance issues, so I ended up binding the content to a XAML string. The XAML to HTML conversion can be performed at any time. I created a UserControl with a bindable Text-property. The view contains a  RichTextBox  control. <RichTextBox x:Name="richTextBox" TextChanged="OnRichTextBoxChanged"> The source code for the user control contains the Text property and the methods to handle the binding. public static readonly DependencyProperty TextProperty = DependencyProperty.Register( "Te...