IDG Code Night C#
Dag Königにより

1. ASP.NET Core Tutorials
1.1. Your First ASP.NET Core Application on a Mac Using Visual Studio Code
1.2. Building your first ASP.NET Core MVC app with Visual Studio
1.3. Building Your First Web API with ASP.NET Core MVC and Visual Studio
1.4. Getting started with ASP.NET Core and Entity Framework Core using Visual Studio
1.5. Getting started with EF Core + Sqlite + Asp.Net core Web api on Mac
1.6. Deploy an ASP.NET Core web app to Azure using Visual Studio
1.7. Enabling authentication using Facebook, Google and other external providers
1.8. Building projects with Yeoman
1.9. Building an (awesome) API with NancyFX 2.0 + Dapper
1.10. ASP.NET Core Workshop
2. Code Challanges
2.1. Write an efficient function to find the first nonrepeated character in a string. For instance, the first nonrepeated character in “total” is 'o' and the first nonrepeated character in “teeter” is 'r'.
2.2. Implement a routine that prints all possible orderings of the characters in a string. In other words, print all permutations that use all the characters from the original string. For example, given the string “hat”, your function should print the strings “tha”, “aht”, “tah”, “ath”, “hta”, and “hat”. Treat each character in the input string as a distinct character, even if it is repeated. Given the string “aaa”, your routine should print “aaa” six times. You may print the permutations in any order you choose.
2.3. Implement an efficient version of the quicksort algorithm.
2.3.1. https://en.wikipedia.org/wiki/Quicksort
2.4. Build a weather service for Stockholm
2.4.1. http://opendata.smhi.se/apidocs/metfcst/index.html
2.4.2. https://www.nuget.org/packages/Rest.Net/
2.4.3. https://www.nuget.org/packages/Newtonsoft.Json/9.0.2-beta2