Home Assistant Creating timelapses with Home Assistant, C# and Azure - step 2 Uploading images to Azure blob storage with a few lines of C# and one HTTP call. Part of a series of blog posts.
Azure Using Azure Functions as glue between Octopus deploy and Microsoft Teams Channel In this post we'll use Azure Functions as a gateway that recieves a payload from Octopus Deploy (after a deployment to production) and posts a notification to a Microsoft Teams
.NET System.IO.InvalidDataException: End of Central Directory record could not be found. When using System.IO.Compression.ZipFile.Open on a rar file I got theInvalidDataException. System.IO.InvalidDataException: End of Central Directory record could not be found. I started recreating the rar files, but no luck. Instead of digging further I got on nuget.
.NET HttpResponseMessage with custom http code like 429 The HttpResponseMessage has a constructor that takes in a value of the HttpStatusCode enum. Most of the http status codes you need are available in that enum. But what if you need to set the status code to a value that hasn’t been
.NET I installed ReSharper, now what? The most important shortcuts Alt+Enter: Quick fix menu when you are close to the squiggly lines. Ctrl+Shift+R: The “Refactor This” menu Ctrl+T: Go to functionality – just start typing (in CamelHumps you’ve got skills) Docs Official docs page can be
.NET Uploading a file using SFTP in C# SSH.NET is a new library, inspired by the discontinued SshSharp, that can be used to upload files using the sftp protocol. The documentation is very limited, just some API listing, so here is a sample for file upload with SFTP and .NET/C#