Useful Reading

This is a list of useful articles which I’ll try and update when I find them rather than immediately forgetting them after reading! 2020/01/22 – Designing a microservices architecture A basic introduction to designing a microservice architecture. 2020/01/22 – Make secure .NET Microservices and Web Applications An overview of how Read more

Creating Random Files in C#

I maintain a library called PGPCore for using PGP encryption in C#, in order to test how this performs when processing large files I needed to create a large file full of random data to check it was encrypting/decrypting as expected. After a bit of searching the answers to this Read more

Masking Strings in C#

I recently needed to mask out some characters of a credit card string so that only the last 4 were displayed. Surprisingly there doesn’t seem to be many good examples of this so I decided to put together something myself and I figured it would be more useful as an Read more