Skip to content

Instantly share code, notes, and snippets.

View jonfazzaro's full-sized avatar
💭
Probably off looking for a cup of coffee.

Jon Fazzaro jonfazzaro

💭
Probably off looking for a cup of coffee.
View GitHub Profile
@jonfazzaro
jonfazzaro / git-ci
Created September 10, 2024 13:37
A git script for quick continuous integration in an ensemble.
#!/bin/bash
MESSAGE=$1
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
@jonfazzaro
jonfazzaro / vitest-init
Last active March 14, 2025 20:05
An init script for vitest/react/TypeScript
#! /bin/bash
function main() {
install_packages
add_setup
add_configuration
configure_compilation
add_test_script
}
What I call it Symbol What a grown-up might call it
Banana ( or ) Parenthesis
Football () Open/closed parentheses
Mustache { or } Curly Brace
Goatee {} Open/closed curly braces
Staple [ or ] Square bracket
Box [] Open/closed square brackets
Alligator < or > Angle bracket
Alligators kissing &lt;&gt; Open/closed angle brackets OR fragment
@jonfazzaro
jonfazzaro / git-join
Created August 14, 2025 13:29
A script to quickly join an ensemble as a driver to work on a branch that you may not have pulled down yet.
#!/bin/sh
git fetch origin
npx --yes git-branch-selector
git pull