Source: sandy081/vscode-todotasks: A VS Code extension for todo tasks
Month: September 2016
How to extract every details from an exception and log it to Serilog
Just:
using Serilog;
using Serilog.Exceptions;
ILogger logger = new LoggerConfiguration()
.Enrich.WithExceptionDetails()
.WriteTo.Sink(new RollingFileSink(
@"C:\logs",
new JsonFormatter(renderMessage: true))
.CreateLogger();
C# Websocket server implementation
C# Websocket server implementation: statianzo/Fleck: C# Websocket Implementation
FluentValidation
A small validation library for .NET that uses a fluent interface and lambda expressions for building validation rules: GitHub – JeremySkinner/FluentValidation. Seems easy to use.
How to disable Windows 10 forced reboot
I was realy annoyed by too frequent Windows 10 reboot. Found this really easy way to disable them: How Easily Disable The Automatic Forced Reboot after Windows 10 has done an Update Four easy… – justpaste.it
Stopwatch under the hood
Excellent deep dive (low level included) into DateTime and Stopwatch:
Image manipulation for .Net core
Image manipulation for .Net core: ImageProcessor Core – James Jackson-South