Generate http files from a swagger definition
Http files are nice and handy - but they are also a bit of a pain to update. So why not generate them from a swagger definition?
Hey, I'm Steven a .NET Developer and Freelancer in Zurich, Switzerland. I am a Microsoft MVP. Also, this blog is open source on GitHub.
Http files are nice and handy - but they are also a bit of a pain to update. So why not generate them from a swagger definition?
Since the last blog post a lot has happened and many new features have been added to NCronJob. In this blog post I would like to introduce you to the new features and explain how you can use them.
As with almost every edition of .NET, the team has been working on improving performance. In this blog post, we will see some improvements to the related tickets and benchmarks.
I am a big fan of Analyzers, and in this blog post, I will showcase some of my favorite ones!
While your software might be the best in the world, it's only as good as the libraries it uses. In this small blog post, we will discover how to check your solution for NuGet vulnerabilities or deprecated packages.
Everyone falls for that and tries to change a list while enumerating it greeted by the System.InvalidOperationException: Collection was modified; enumeration operation may not execute.
message. But how does the List
know that you changed it? Let's find out.
In this blog post we will discover whether or not the readonly
modifier can make your code faster. So without further ado let's get started.
AI is a hot topic - one would say hype topic, and there are bold claims like this:
There Will Be No (Human) Programmers in Five Years
Source: https://decrypt.co/147191/no-human-programmers-five-years-ai-stability-ceo
Now how far is this from reality? Let's take a look at the current state of AI in the context of programming.
Sometimes, you have multiple async calls to make, and you want to do that asynchronously and get the results afterward. Let's build a fluent API to do that.
Deconstructor are a C# language feature that allows you to define a method that will be called when an object is being split up into its components. While this is straightforward to implement for your own types, it is not possible to add a deconstructor to a 3rd party type - or is it?