Skip to content

Instantly share code, notes, and snippets.

View krscott's full-sized avatar

Kris Scott krscott

View GitHub Profile
@krscott
krscott / nixos-eyd-install.sh
Last active March 12, 2024 03:27 — forked from mx00s/install.sh
NixOS install script based on @grahamc's "Erase Your Darlings" blog post
#!/usr/bin/env bash
#
# NixOS "Erase Your Darlings" ZFS install script based on:
#
# - Original install script by mx00s (https://gist.github.com/mx00s/ea2462a3fe6fdaa65692fe7ee824de3e)
# - Erase Your Darlings (https://grahamc.com/blog/erase-your-darlings)
# - ZFS Datasets for NixOS (https://grahamc.com/blog/nixos-on-zfs)
# - NixOS Manual (https://nixos.org/nixos/manual/)
#
@krscott
krscott / gforth_cheat_sheet.md
Created March 17, 2023 20:07 — forked from RickCarlino/gforth_cheat_sheet.md
gforth cheat sheet

Math

  • .s - Show the stack
  • +, -, *, mod - Math operators
  • /mod - performs both / and mod

Stack manipulation

  • drop and 2drop - drop a stack item (once / twice)
  • dup - duplicate a stack item
  • rot - rotate the stack