Skip to content
Papayawhip Blog
A place for code snippets.
Home
Django ORM DB migration notes
admin
March 11, 2025
Django
No changes detected
ORM
Python
zero comment
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
admin
February 7, 2023
.NET Core 6
C#
Code Snippet
Serilog
zero comment
Utilizing Serilog in .net core 6 to automatically log events, as well as manual logging if needed. I will...
Read More
Dockerfile config for Python (Django) on a windows Docker container.
admin
July 7, 2022
container
Django
Docker
dockerfile
Python
windows
windows container
zero comment
I found a lot of examples for using python on a linux docker container instance, but not much for...
Read More
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