Secure Webhooks
Security is always a tricky one. Especially when it comes to webhooks, it can be difficult to make sure that the payload being received is a valid one. For some...
»Security is always a tricky one. Especially when it comes to webhooks, it can be difficult to make sure that the payload being received is a valid one. For some...
»No doubt about it. Tracing is very important when working on a project. Not only will it make tracking down bugs easier, it will also make it a lot easier...
»The Distinct
method is one of the really useful methods in the System.Linq
namespace. Internally, it's really simple, too. It will just iterate your collection and add them all to...
Writing to the Console
can provide a lot of useful information while developing. While this can easily be done by using the static Console
class, I prefer using the Trace
...
A lot of programs use some form of passwords. These are usually kept in memory. The issue here is that a program's used memory is very easy to read out...
»