Skip to content

Instantly share code, notes, and snippets.

View dcbauer's full-sized avatar
🎯
Focusing

dcbauer dcbauer

🎯
Focusing
View GitHub Profile
@htr3n
htr3n / macos-ramdisk.md
Last active December 3, 2025 05:50
Creating RAM disk in macOS

Built-in

diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nobrowse -nomount ram://XXXXX`

where XXXXX is the size of the RAM disk in terms of memory blocks.

Notes:

@jed
jed / deploy.sh
Last active July 2, 2025 00:06
Using AWS CloudFormation to deploy an edge lambda
#!/bin/sh
aws cloudformation deploy \
--template-file stack.yaml \
--stack-name edge-lambda-test \
--capabilities CAPABILITY_IAM \
--parameter-overrides Nonce=$RANDOM