ForzaRC Season 3: The Porsche Cup Winner Takes Podium at Le Mans

Tom Kristensen. Derek Bell. Jacky Ickx. All are legendary names who have graced the podium as winners of 24 Hours of Le Mans, the world’s most prestigious endurance driving race. Michael Coyne, (20) from Blackburn, UK can be added to that illustrious list thanks to his victory in the inaugural Official Endurance Esports Category of the largest esports racing event in Le Mans history –  Forza Racing Championship (ForzaRC) Season 3: The Porsche Cup. For the first time ever, the Elite Series finals of ForzaRC Season 3: The Porsche Cup took place onsite at the 24 Hours of Le Mans… Continue reading ForzaRC Season 3: The Porsche Cup Winner Takes Podium at Le Mans

CodeChat 067 – The Latest, Greatest Features of C# 7.0 | CodeChat

Mark Michaelis – Microsoft RD from Spokane – is back on the show to talk about the latest version of C#.C# version 7.0 is totally a thing and with it come a number of cool features like tuples and deconstruction. According to Mark, none of the enhancem… Continue reading CodeChat 067 – The Latest, Greatest Features of C# 7.0 | CodeChat

How refugees enrich their new homes with hope, resilience and grit

The house was empty when he got home from school one afternoon. Eight-year-old Farhad Agajan wandered out to ask if any neighbors had seen his mother or siblings. Crying and increasingly frantic, he reached the home of a relative who lived nearby and heard the words that changed him forever: “He gave me some money, and he told me, ‘Your life is in danger. Take this and leave, immediately,’” Agajan … Read more »

The post How refugees enrich their new homes with hope, resilience and grit appeared first on The Official Microsoft Blog.

Continue reading How refugees enrich their new homes with hope, resilience and grit

Code Analysis at Compile? Why? Do it Live!

Today’s project from Microsoft DevLabs leverages Visual Studio 2017 and the awesome that is Roslyn to enable live static code analysis.

Live static analysis?

You know! All the rules and stuff that run while you compile your code? All those warnings you pretend to not see?

Today’s extension makes it MUCH easier to see, and better yet respond too these warnings and suggestions!

Microsoft Code Analysis 2017

This is a preview version of the extension.

We’ve rebuilt the most popular 100+ FxCop rules as live analyzers to help you detect problems in your code and make it super easy for you to fix them on the spot with quick fixes. This extension gives you the same great code analysis as before with FXCop but now the analysis is live as-you-type and has quick-fixes.

Features

  • 100+ live diagnostics for API design, performance, security, and best practices for C# and Visual Basic.
  • Quick fixes for applicable diagnostics (using Ctrl+.).
  • Diagnostics appear in the editor, Error List, and scroll bar.
  • All diagnostics are suppressible.

Links

image

… [Click through to install it]

And of course it’s all open source! dotnet/roslyn-analyzers

Follow @CH9
Follow @coding4fun
Follow @gduncan411

Continue reading Code Analysis at Compile? Why? Do it Live!