I was told the other day by a Principal Engineer (PE) to change a class I wrote and I didn’t agree with his reasoning. This […]
Misconceptions about async Tasks
This article is about asynchronous programming in C# using Task and Task<T>. Do you really need to make your code asynchronous? The first misconception about […]
Enlarging a CHAR column
Scenario As usual when you don’t do something for a very long time, it is easy to forget what you knew already. I had to […]
Small date time is garbage and you should stop using it
Smalldatetime has been obsolete for a long time now get with the program A major pet peeve of mine is the smalldatetime datatype from SQL […]
++i vs. i++, YES they are different!
For this first test you will see that there isn’t a difference, it is working differently, but you cannot tell the difference in this example: […]