Skip to content

Instantly share code, notes, and snippets.

View carpusherw's full-sized avatar
👶
Making diaper money

carpusherw carpusherw

👶
Making diaper money
View GitHub Profile
@carpusherw
carpusherw / zshrc.md
Last active March 14, 2024 06:09
zsh
@carpusherw
carpusherw / gitsetup.md
Last active December 8, 2023 04:34
Git setup

git

ssh-keygen -t rsa -b 4096 -C "carpusher.wu@gofreight.com"

eval "$(ssh-agent -s)"
eval $(ssh-agent -s)
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub

Advent of Code 2022

https://adventofcode.com/2022

Coding in browser developer tools.

Get input

var line = document.querySelector('pre').innerText.split('\n').filter(s => s)

Advent of Code 2021

https://adventofcode.com/2021

Coding in browser developer tools.

Get input

var arr = document.querySelector('pre').innerText.split('\n').filter(s => s)