Add custom claims to token in Auth0
By default, the token of Auth0 does not contain any information about the user’s name.
The default claim for the name would be: http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name.
By default, the token of Auth0 does not contain any information about the user’s name.
The default claim for the name would be: http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name.
AWS (Amazon Web Services) offers an extra toolkit for Visual Studio 2017 and Visual Studio 2019 that integrates seamlessly to create projects based on AWS products.
Read Blog PostI had the wonderful task to change a 20 year old PHP software during a Lift-and-Shift migration to Azure, so that it doesn’t store files directly in the web folder anymore, but uploads them to an Azure Blob Storage.
Read Blog PostIn the past days I uploaded a lot of files to an Azure Blob Storage using the Azure Storage Explorer.
Read Blog PostFor some time now, Microsoft has been providing various MSSQL Server versions for Docker - for Linux and for Windows. This means that spending a few hours to install MSSQL Server on your own PC is a thing of the past and is now available with Docker in a few moments.
Read Blog PostTwitch is the leading streaming platform for video games and Co.
Starting small, Twitch hosts monthly over 3.5 million streamers that can be watched over the shoulder while playing games, cooking or driving a car. This platform is therefore very well known, especially with the younger generations. More than 70% of the viewers, whose average age is 21 years, belong to the millennials. The average Twitch user already spends almost 2 hours a day on the platform to watch videos.
Read Blog PostIn .NET, there is a very fast and easy way to pump a variety of entities into an SQL database: SqlBulkCopy
Read Blog PostThis pretty simply snippet exports your Image into a byte-array.
1public static byte[] ToByteArray(this System.Drawing.Image image)
2{
3 using(MemoryStream memoryStream = new MemoryStream())
4 {
5 image.Save(memoryStream);
6 return memoryStream.ToArray();
7 }
8}
Usage:
1System.Drawing.Image myImage = .....
2
3byte[] imageAsByteArray = myImage.ToByteArray();
ImageSharp uses the same signature to export bytes into a MemoryStream
Read Blog PostThe most current and currently recommended way to download .NET Framework, .NET Standard or .NET Core files from the Internet is the HttpClient class.
Read Blog PostThe GoPro Hero series is the most popular action cam on the market. The current GoPro Hero 7 also offers USB-C, a micro-HDMI port as well WiFi and Bluetooth. However, the GoPro is just too good to have a life in a bag until I’m next on holiday. That’s why I had the idea to replace my Logitech 720p webcam with my the GoPro Hero 7.
Read Blog Post