Skip to content

Instantly share code, notes, and snippets.

View xykj61's full-sized avatar

πŸ“β“‹ 🏹 keaton dunsford🧑 xykj61

View GitHub Profile
@chrissimpkins
chrissimpkins / gist:5bf5686bae86b8129bee
Last active December 21, 2025 20:02
Atom Editor Cheat Sheet: macOS

Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.

Key to the Keys

  • ⌘ : Command key
  • βŒƒ : Control key
  • ⌫ : Delete key
  • ← : Left arrow key
  • β†’ : Right arrow key
  • ↑ : Up arrow key
@hofmannsven
hofmannsven / README.md
Last active September 3, 2026 19:19
Git CLI Cheatsheet
@jdowning
jdowning / ami-clean.sh
Last active December 26, 2023 20:09
Script to clean up Ubuntu EC2 instance before packaging as an AMI
#!/bin/bash
# This script cleans up your EC2 instance before baking a new AMI.
# Run the following command in a root shell:
#
# bash <(curl -s https://gist.github.com/justindowning/5921369/raw/ami-clean.sh)
function print_green {
echo -e "\e[32m${1}\e[0m"
}