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

Using Vue with Highcharts and Axios

I looked around online and couldn’t find a good documentation about using Highcharts in Vue with data coming from... Read More