Skip to content

Instantly share code, notes, and snippets.

@gluxon
gluxon / pnpm-pr-10508.diff
Created February 6, 2026 08:04
pnpm-pr-10508-diff
diff --git a/before/dist/node_modules/.modules.yaml b/before/dist/node_modules/.modules.yaml
deleted file mode 100644
index 7f88561..0000000
--- a/before/dist/node_modules/.modules.yaml
+++ /dev/null
@@ -1,169 +0,0 @@
-hoistPattern:
- - '*'
-hoistedLocations:
- '@isaacs/balanced-match@4.0.1':
@gluxon
gluxon / setup-zsh.sh
Last active January 29, 2018 21:15
Setup ZSH on 3150 VMs
#!/bin/bash
# Modified from https://coderwall.com/p/ynq-nw/compiling-your-software-to-run-almost-anywhere-without-ever-using-root
set -ex
mkdir -p ~/.local
WORKDIR=`mktemp -d`
pushd "$WORKDIR"
@gluxon
gluxon / scheme-testing.md
Last active January 22, 2018 18:23
scheme-testing.md
  1. Select Custom Test Case for Test Case Type
  2. Paste the following bash script. Modify testFunction, testArguments, and testAssertion appropriately.
testFunction="inc"
testArguments="0"
testAssertion="(ref-approx-=? student reference 0.001)"
# Optional extra message, could be used to display info about the test case
testMessage="\"\""

# Get first file with .rkt extension.