Will Sheppard

Will Sheppard @zaphoddont

Joined:
Aug 30, 2024

Will Sheppard
articles - 8 total

Python virtual env cheat sheet

This is one way to do it, probably sub-optimal. Setup python3.6 -m venv venv source...

Learn More 0 0Feb 19

sed tricks

Search and replace over multiple lines: sed -i -e ':a' -e 'N' -e '$!ba' -e 's/)\n(/),\n(/g' file

Learn More 0 0Feb 7

Simple toast notification

Easy: <button onclick="toast('foo')">Show Toast</button> <script> function...

Learn More 0 0Feb 5

WSL2 tips and fixes

Noah's tip Out of the box new windows - wsl2 unusable - need to be able to do sudo apt...

Learn More 0 0Feb 4

Tools I use in software engineering

These are not traditional tools, but modern methods of assimilating new information and concepts, and...

Learn More 1 0Dec 9 '24

Escape quotes correctly when using psql via docker in bash

docker compose exec site bash -c 'PGPASSWORD=***** psql -Ufoo -d bar \ -h example.com -x -c...

Learn More 0 0Nov 18 '24

Disable keyboard shortcuts for Jira and Confluence

Keyboard "shortcuts" are enabled by default for Atlassian products, and they're extremely...

Learn More 5 1Nov 12 '24

How to get past Sub::Defer in the Perl debugger

YOU ARE IN A MAZE OF TWISTY LITTLE PASSAGES, ALL ALIKE perl -d...

Learn More 0 0Oct 1 '24