Read DNS entries with .NET
.NET does not have a built-in mechanism for querying DNS records; nevertheless, this is a use case that is required relatively often.
Read Blog Post.NET does not have a built-in mechanism for querying DNS records; nevertheless, this is a use case that is required relatively often.
Read Blog PostCloudflare is a popular service for managing DNS records, providing security features and optimizing website performance. Automating DNS management tasks can save time and reduce the risk of human error. In this article, I will explore how to use PowerShell to automate Cloudflare DNS management tasks.
Read Blog PostNowadays, you can’t actually run a website on the Internet without having a protection mechanism against content bots. One possibility is the use of CAPTCHAs. CAPTCHAs are small tasks that a human can easily solve, but a bot (almost) cannot.
Read Blog PostWith .NET 9, Microsoft has added new options to the System.Text.Json library to format the output of JSON objects - features that, in my opinion, should have been available with day 1.
The recommended variant for specifying the SDK in .NET is the global.json file. This centrally guarantees that all computers on which the code is compiled ideally have the same SDK installed and use it.
Read Blog PostFor several years now, C# has supported Records as a new “type”. Initially only for classes (which is why the class is optional for a record class), later also for structs. Records are specially designed for use as data containers aka DTOs (please dont use DTO in your class name!). They are immutable and have special semantics for equality.
Read Blog PostAnti-idle apps for Microsoft Teams and the like are a dime a dozen, but how about creating your own? In this article, I’ll show you how to create an anti-idle app for Microsoft Teams using .NET and C#.
Read Blog PostQR Codes are a very popular way to pass on information - for example an URL. The QR code can be placed on all kinds of places, for example in parking lots for buying parking tickets.
Read Blog PostThe Microsoft Graph and Entra documentation are both very comprehensive and provide a lot of information - but they often contain no examples or no working examples. In addition, the SDKs are either not, insufficiently or incorrectly documented.
Read Blog PostOften you don’t need all the configurations of an app per stage; sometimes they are optional. This is often the case for the development stage in particular.
Read Blog Post