Skip to content

Instantly share code, notes, and snippets.

View davidelambert's full-sized avatar

David E. Lambert davidelambert

  • Greensboro, NC
View GitHub Profile
@davidelambert
davidelambert / cheatsheet.yml
Created August 28, 2023 14:06 — forked from xputerax/cheatsheet.yml
YAML cheat sheet
# YAML cheat sheet
# Reference: https://www.youtube.com/watch?v=cdLNKUoMc6c
# object
person:
# string value. single/double quotes
# anchoring
name: &name "daniel" # anchor name doesn't have to be the same as key name
occupation: 'student'