Skip to content

Instantly share code, notes, and snippets.

View danielmorgan's full-sized avatar

Daniel Morgan danielmorgan

View GitHub Profile
@danielmorgan
danielmorgan / .eslintrc.js
Last active March 8, 2025 12:15
Expo prettier/eslint setup
module.exports = {
extends: ["expo", "prettier"],
plugins: ["prettier"],
rules: {
"prettier/prettier": "error",
},
};
@danielmorgan
danielmorgan / portforward.ps1
Last active May 20, 2026 13:59
Powershell (admin) to forward WSL2 ports
netsh interface portproxy add v4tov4 listenport=8081 listenaddress=0.0.0.0 connectport=8081 connectaddress="$((wsl hostname -I).Trim())"