Skip to content

Instantly share code, notes, and snippets.

View cw6365's full-sized avatar
💭
Commercial software developer

Chris Ward cw6365

💭
Commercial software developer
View GitHub Profile
@steprobe
steprobe / vimspector-mocha.json
Last active January 6, 2024 14:24
Vimspector + mocha
...
"configuration": {
"request": "launch",
"name": "Debug mocha Test",
"type": "node",
"program": "${workspaceRoot}/node_modules/mocha/bin/mocha",
"env": {
"NODE_ENV": "test"
},
"args": [
@fernandoaleman
fernandoaleman / mysql2-m1.md
Last active October 1, 2024 01:46
How to install mysql2 gem on m1 Mac

Problem

Installing mysql2 gem errors on Apple silicon M1, M2 or M3 Mac running macOS Sonoma.

Solution

Make sure mysql-client, openssl and zstd are installed on Mac via Homebrew.

Replace mysql-client with whichever mysql package you are using