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 |
#!/bin/bash | |
# customizable | |
LIST_DATA="#{window_name} #{pane_title} #{pane_current_path} #{pane_current_command}" | |
FZF_COMMAND="fzf-tmux -p --delimiter=: --with-nth 4 --color=hl:2" | |
# do not change | |
TARGET_SPEC="#{session_name}:#{window_id}:#{pane_id}:" | |
# select pane |
#!/usr/bin/env sh | |
# Run this on an air-gapped computer with an encrypted hard drive to set up GPG keys on your yubikey. | |
# Derived from https://github.com/drduh/YubiKey-Guide | |
# Assumes OS has already been prepared (packages, services, etc) -- see dr duh guide. | |
# Does not configure PINs on the yubikey. If no admin pin is provided, the default 12345678 is used. | |
# | |
# Usage: gpg_add_yubi.sh gpg-backup.tar.gz gpg_passhrase [yubikey_admin_pin] | |
######################################################################## | |
# Safety and portability |
// Run with target-cpu="native" | |
// Commit history at https://git.plobos.xyz/Playground/1brc/src/branch/main/src/main/rust | |
use std::{ | |
fs::File, | |
io::BufReader, | |
thread, | |
}; | |
use std::collections::HashMap; | |
use std::fmt::Display; |