Skip to content

Instantly share code, notes, and snippets.

View crispd's full-sized avatar

Dan Crisp crispd

  • Fermi National Accelerator Laboratory
View GitHub Profile
@crispd
crispd / redefault.sh
Created December 14, 2022 21:35 — forked from clockworksoul/redefault.sh
Simple bash script to create and switch master to main branch
#!/bin/bash
set -euo pipefail
function git_branch {
git branch 2>&1 | grep '^\*' | sed 's/\* //g'
}
function git_repo {
grep 'url = git@github.com:' .git/config \
@sekcompsci
sekcompsci / Comparison Espressif ESP MCUs.md
Last active February 12, 2026 21:19 — forked from fabianoriccardi/Comparison Espressif ESP MCUs.md
Comparison chips (SoCs) table for ESP8266/ESP32/ESP32-S2/ESP32-S3/ESP32-C3/ESP32-C6. Forked from @fabianoriccardi

Comparison chips (SoCs) table for ESP8266/ESP32/ESP32-S2/ESP32-S3/ESP32-C3/ESP32-C6

A minimal table to compare the Espressif's MCU families.

ESP8266 ESP32 ESP32-S2 ESP32-S3 ESP32-C3 ESP32-C6
Announcement Date 2014, August 2016, September 2019, September 2020, December
@clockworksoul
clockworksoul / redefault.sh
Created September 27, 2020 12:14
Simple bash script to create and switch master to main branch
#!/bin/bash
set -euo pipefail
function git_branch {
git branch 2>&1 | grep '^\*' | sed 's/\* //g'
}
function git_repo {
grep 'url = git@github.com:' .git/config \
@wcarhart
wcarhart / bash_tidbits.md
Last active February 23, 2026 06:22
Helpful Bash design patterns

Helpful Bash tidbits