Learn the power of ASP.NET Core's Startup.Configure method with examples.
The Configure
method in Startup.cs
is essentially a fundamental part of Microsoft's OWIN implementation
Katana. To sum up what OWIN and Katana are:
Learn the power of ASP.NET Core's Startup.Configure method with examples.
The Configure
method in Startup.cs
is essentially a fundamental part of Microsoft's OWIN implementation
Katana. To sum up what OWIN and Katana are:
These aren't supposed to be hot takes as most of these are pretty lukewarm and things that for the majority people follow anyway, thought it would be nice to have them all in one place.
I like to use loops where possible with functional array methods (not sure what the best terminology for it is but in JS it's stuff like map
, reduce
, filter
and in C# it's Where
, Select
etc...).
The design of these array methods is to follow very standard functional programming concepts so methods such as a .ForEach
where nothing is returned from these iterations always bug me.
using System.Diagnostics.CodeAnalysis; | |
using System.Net.Http.Json; | |
using System.Text.Json.Serialization; | |
var httpClient = new HttpClient(); | |
try | |
{ | |
// Section 1 - async I/O | |
/** |
PLEASE REVIEW UPDATED VERSION AT https://github.com/pielegacy/digital-garden/blob/7f8bbf969d9b392ed14ccb9c6d835e3c955621b4/Work/Web%20Developer%20Roadmap.md
Web Development is in a weird spot. I don't think there's been a better time to build websites and interactive web applications however it's incredibly challenging to