- Every baby and family is different.
- These are some rough notes I made for myself when bleary eyed.
- Most of the advice here applies to the first days/weeks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reminder on how to setup github ssh keys in bash. | |
mkdir -p ~/.ssh | |
ssh-keygen -t ed25519 -C "<COMMENT>" | |
# Add public Key to github | |
# ... | |
# Permissions Reminder | |
# https://superuser.com/questions/215504/permissions-on-private-key-in-ssh-folder |