Django ORM DB migration notes

General Notes, troubleshooting, etc about Python Django migration. “No changes detected”, even though I have a new model, or... Read More

Serilog manual / automatic logging to file in .net core 6

Utilizing Serilog in .net core 6 to automatically log events, as well as manual logging if needed. I will... Read More

C# slope function

Pretty simple stuff here. Replicating rise over run in C#. Then grab this result and plug in for ‘m’... Read More

Vue – very basic props example. Passing data to other components.

Props are really straight forward. Here is the most basic example…. I assume you have a running project, or... Read More

Dropdown and multi select dropdown in C# razor views

I needed to change a single select dropdown to a multi select. It was easier than I thought, essentially... Read More

How to add line numbers to T-SQL editor

Not sure why this feature doesn’t come out of the box. First, go to Tools > Options. In the... Read More

Sql Server bulk upload flat file

In every company I have been with, there has always been a legacy app (or sometimes new) that needs... Read More

how to update package-lock.json dependencies

With my project hosted on github, I have been getting a lot of emails from Dependabot regarding packages that... Read More

SQL order of operation cheat sheet

Order Clause Description 1 FROM Choose your tables from where to get the data 2 JOIN Join matching data... Read More