Skip to content
Papayawhip Blog
A place for code snippets.
Home
Home
2021
Year:
2021
C# slope function
admin
November 16, 2021
C#
Code Snippet
zero comment
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.
admin
August 21, 2021
Code Snippet
Props
Vue
zero comment
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
admin
June 21, 2021
C#
Code Snippet
MVC
Razor
zero comment
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
admin
June 8, 2021
SQL Server
T-SQL
zero comment
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
admin
May 14, 2021
Code Snippet
SQL Server
zero comment
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
admin
May 12, 2021
Dependabot
GitHub
NPM
zero comment
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
admin
May 3, 2021
SQL Server
zero comment
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
admin
April 30, 2021
Axios
Code Snippet
Highcharts
Vue
2 comments
I looked around online and couldn’t find a good documentation about using Highcharts in Vue with data coming from...
Read More