Sponsored
Thursday, April 15, 2021
dotPeek: a Totally Free Alternative for .NET Reflector
Friday, April 9, 2021
Problems Migrating From SQL Server Management Studio (SSMS) v17 to v18
Wednesday, March 31, 2021
Reorder Columns in Spark DataFrame with Select() and Scala
Sometimes, when dealing with a Spark data frame it may be necessary to reorder columns in a certain order. For example, to keep data consistent when trying to union two or more data frames with the same schema but different order of columns. Let's explore how that can be done relatively easy using a select()
Spark SQL function.
Thursday, March 18, 2021
Incorrect ReSharper Behavior for CS1591 Warning
After upgrading from Visual Studio 16.8.x to 16.9.x the JetBrains ReSharper suddenly started marking a lot of public identifiers in the code as compiler errors with a message: "Missing XML comment for publicly visible type or member...". You can imagine how that can be very annoying.
Wednesday, February 3, 2021
.NET Web API: Confusing 404 Response to OPTIONS Request for CORS pre-flight
Problem: when a Angular applications sends an OPTIONS request to its own backend to satisfy CORS preflight policy it unexpectedly receives a 404 response from a .NET Core Web API application that effectively blocks an actual data data request from executing correctly. If you have ever experienced this problem, continue reading to understand what the problem is and how to fix it.