Step 1 Mop the floor with warm water and a cap full of distilled vinegar. Allow to dry. Step 2 Mix bicarbonate of soda (baking powder will not do) with water. Begin with around the same volume of both in a tub. Brush this paste onto the floor, one tile at a time, using an old paint brush. Each brush… Read more →
Month: January 2021
Find errors in Azure DevOps build log
search for Error Message Read more →
Exception capture in .NET Core
app.UseExceptionHandler(options => { options.Run( async context => { var error = context.Features.Get<IExceptionHandlerFeature>(); if (error is object) { Log.Error( “EXCEPTION {method} {url} {query} => {exception}”, context.Request.Method, context.Request.Path.Value, context.Request.QueryString.Value, error.Error); } }); }); Read more →