Skip to content

Instantly share code, notes, and snippets.

View dotysan's full-sized avatar

Curtis Doty dotysan

View GitHub Profile
@dotysan
dotysan / direnv-build.sh
Last active November 14, 2023 19:00
Install direnv on a Go-less system using Go in Docker
#! /usr/bin/env bash
#
# Install direnv on a Go-less system using Go in Docker.
#
set -ex
# latest stable release
#DIRENV_VER=v2.32.3
# don't use above as much is fixed in master
@dotysan
dotysan / ghcli-build.sh
Last active November 14, 2023 19:01
Install GitHub CLI on a Go-less system using Go in Docker
#! /usr/bin/env bash
#
# Install GitHub CLI on a Go-less system using Go in Docker.
#
set -ex
# latest stable release
GHCLI_VER=v2.38.0
GO_VER=1-bookworm
@dotysan
dotysan / Google Forms monitor
Last active November 14, 2023 02:58
Google Forms monitor
We couldn’t find that file to show.
@dotysan
dotysan / deobfuscated.js
Created May 10, 2023 20:45
Found this creepy tickler for Mobirise
(!document.querySelectorAll('a[href*="https://mobirise.site"]').length || !document.querySelector('a[href*="https://mobirise.site"]').parentElement.nodeName === 'SECTION') && document.querySelectorAll('link[href*="mbr-additional.css"]').forEach(function (_0x3c4461) {
_0x3c4461.remove();
});
@dotysan
dotysan / jetson-nano-post-install.sh
Created April 12, 2023 01:18
Post-install script for Jetson Nano
#! /usr/bin/env bash
#
# This is a custom post-install script for a Jetson Nano.
#
set -ex
me=$(whoami)
if [ "$me" != "root" ]
then
echo 'Must run as root!'
@dotysan
dotysan / ssh_purge.sh
Created March 27, 2023 02:25
Purge your SSH known_hosts file
# was reading https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/
# and decided to perform a simple purge...
awk '/^#/||$2=="ssh-rsa"&&length($3)<544 {print}' ~/.ssh/known_hosts >~/.ssh/known_hosts.buh-bye.`date -Im` && \
awk '/^#/||$2=="ssh-rsa"&&length($3)<544{next}{print}' ~/.ssh/known_hosts >~/.ssh/known_hosts.new && \
mv ~/.ssh/known_hosts.new ~/.ssh/known_hosts
@dotysan
dotysan / bootstrap-cuda-toolkit.sh
Last active January 22, 2023 00:10
Auto-installer for CUDA Toolkit inside WSL2
#! /usr/bin/env bash
#
# Auto-installer for CUDA Toolkit inside Windows Subsystem for Linux.
#
if [ -z "${BASH_VERSINFO[0]}" ] || [ ${BASH_VERSINFO[0]} -lt 4 ]
then
echo "ERROR: Only tested on Bourne-Again SHell v4/v5."
exit 1
fi >&2
@dotysan
dotysan / hello.sh
Last active July 14, 2022 14:40
A template for seeding new Bash scripts.
#! /usr/bin/env bash
#
# A template for seeding new Bash scripts.
#
if [ -z "${BASH_VERSINFO[0]}" ] || [ ${BASH_VERSINFO[0]} -lt 4 ]
then
echo "ERROR: Only tested on Bourne-Again SHell v4/v5."
exit 1
fi >&2
set -e
@dotysan
dotysan / mta-sts.js
Last active December 13, 2024 04:38
CloudFlare Worker for MTA-STS policy
// const mode = 'testing';
const mode = 'enforce';
// const max_age = 86400; // 1 day
const max_age = 604800; // 1 week
const mx_list = [
'aspmx.l.google.com',
'alt1.aspmx.l.google.com',
'alt2.aspmx.l.google.com',
@dotysan
dotysan / unbuff.exp
Last active February 6, 2022 22:14
poor-man's unbuffer
#! /usr/bin/env expect
# tell stty to postprocess output
set stty_init "-opost"
# infinite
set timeout -1
# $argv is the command that we unbuffer
eval [list spawn -noecho] $argv