Skip to content

Instantly share code, notes, and snippets.

View mikegardner's full-sized avatar

Michael Gardner mikegardner

View GitHub Profile
@tadhgboyle
tadhgboyle / x86-m1.md
Last active June 29, 2025 01:06
running x86_64 `.ova` VMs on an m1 mac
  • install homebrew if you have not already

    • /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  • install qemu

    • brew install qemu
  • extract the .ova file

    • tar -xvf /path/to/ova
@AaronPhalen
AaronPhalen / basic_vim_commands.md
Last active June 29, 2025 01:03
Useful Vi Editor Commands

Author: Aaron Phalen | Twitter: @aaron_phalen | Email: aaronphalen@gmail.com

#Useful Vi Editor Commands

  1. :w --> save to a file
  2. :q --> quit out of editor file
  3. :q! --> quit out of editor without saving file
  4. w --> move one word forward at a time in file
  5. b --> move one word back at a time in file
  6. :wq --> save file and quit editor