Skip to content

Instantly share code, notes, and snippets.

View johnsonjo4531's full-sized avatar
πŸ€“
πŸ‘

John Johnson johnsonjo4531

πŸ€“
πŸ‘
View GitHub Profile

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@sebmarkbage
sebmarkbage / Infrastructure.js
Last active February 26, 2025 13:57
SynchronousAsync.js
let cache = new Map();
let pending = new Map();
function fetchTextSync(url) {
if (cache.has(url)) {
return cache.get(url);
}
if (pending.has(url)) {
throw pending.get(url);
}