One of the most interesting assignments of my dev career has been to explain why my name should appear on one of the world's most eminent lists of software engineer expertise. The list is talent…
Keep Reading →
Powershell Commands bypasses ssl certificate validation specifically for git
Keep Reading →
Visual Studio Shortcuts CTRL + M + O - collapse all sections of code in a file
CTRL + M + L - expand all sections of code in a file CTRL + K + C - comment selection or line
CTRL + K + U - un-comment…
Keep Reading →
Docker Commands lists all running containers executes commands within the containers so for example, to open a bash console within the container:
Keep Reading →
Have you ever spent hours trying to work out why your web application is doing the strangest things? I did today. And a good part of yesterday. Clicking the submit button was supposed to do 'x', but…
Keep Reading →
What is this odd code all about? So, for starters, what's happening here? Very simple on line 1 we create an instance of MyType and call it firstObject. on line 2 we change ('serialize' in fancy…
Keep Reading →
So what are C# 9.0 Record Types and are they really immutable objects? First things first - record is a new keyword introduced in C# 9.0 that is used in place of the class or struct keyword. For…
Keep Reading →