Development Notes

Solutions to problems encountered on projects, or useful dev-related notes

Remove jobs from Hangfire

TRUNCATE TABLE [HangFire].[AggregatedCounter] TRUNCATE TABLE [HangFire].[Counter] TRUNCATE TABLE

Change Scratch files location in Rider and Webstorm

Help > Edit Custom Properties idea.scratch.path/scratches=G:

Fix SQL DECLARE variable use in DataGrip

In 2025.1.3 you can't execute this

Using MirageJS to fake a .NET API

By default Mirage sends models using a different style than

Killing a Vite port

Run npx kill-port 8080 etc

Fixing Chrome "Failed to read the cssRules" errors

At some point Chrome got picky about using <link&

Cleaning git after .gitignore changes

git rm -r --cached . git add . git commit -m "

Parsing numbers from strings in SQL

SELECT Id, PetCount, ISNULL(SUBSTRING(PetCount, PATINDEX('%[0-9]%'

Refresh Rider solution analysis after Git branch change

Sometimes non-existent errors are shown after changing branches while a

Disable watch in Vue 2 when mutating data

This is a mixin for Vue 2 export default { methods: