I now have 500 daily visitors on my blog!
Ah, not every day of the week but as an average over a week. This is yet another milestone for my blog. I have had 629, »
Ah, not every day of the week but as an average over a week. This is yet another milestone for my blog. I have had 629, »
I have witnessed this error quite a few times in my career. I see it every time there is something wrong with the network in a »
You can use both YAML and JSON for creating redirects. In this post I use JSON but you can easily translate my examples to YAML. Redirects »
Prior to .Net 6 you would have a startup.cs class to set up your asp.net application. In .Net 6 the standard is now to »
Most APIs you come across use a standard for the format of dates and time, often it will be the ISO 8601 format, known as round-trip »
Often you would use a class to represent the JSON object you want to Deserialize, however for whatever reason you might want to skip the class »
I recently extended a post on how to call the yahoo finance API [https://peterdaugaardrasmussen.com/2021/11/14/csharp-how-to-call-the-yahoo-finance-api/] with details on how to serialize »
So another year has passed and I am writing a status for my blog once again this year. In 2021 I made about 50 posts throughout »
Last year I did a "top 5 blog posts of 2020 [https://peterdaugaardrasmussen.com/2021/02/06/my-top-5-blog-posts-of-2020/]" and I have decided to keep »
Basic authentication is becoming a rare sight, however it is still quite widely used due to its simplicity. In C#, using the HttpClient and HttpRequestMessage you »