Skip to content

Instantly share code, notes, and snippets.

@hsyntax
hsyntax / ralph.sh
Created May 21, 2026 03:17
Codex ralph loop - expects a prd.md, and issues.md. Use https://github.com/mattpocock/skills/tree/main/skills/engineering to generate
#!/usr/bin/env bash
# ralph.sh
# Usage: ./ralph.sh <iterations|review>
set -e
if [ -z "$1" ]; then
echo "Usage: $0 <iterations|review>"
exit 1
fi
@myrtleTree33
myrtleTree33 / install-node-pi.sh
Last active March 8, 2024 22:37
Install Node JS in 30 seconds for Raspberry Pi / ARM
#!/bin/bash
## Check for versions compiled with ARM at http://nodejs.org/dist/
## Inspired by http://oskarhane.com/raspberry-pi-install-node-js-and-npm/
## Fill in the Node Version here:
##########################################################################
NODE_VERSION="v0.10.21"