| Chaotic | Neutral | Lawful | |
|---|---|---|---|
| Evil | Vecna | Kay | Brenner |
| Billy | Mind Flayer | Akers | |
| ———— | ———— | —————— | ———— |
| Neutral | Erica | Eleven | Owens |
| Karen | Jonathan | ||
| Argyle | |||
| ———— | ———— | —————— | ———— |
| Good | Max | Steve | Hop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| FILE="$1"; shift | |
| SUB="${SUB:-{}}" | |
| if [[ -z "$FILE" || $# -eq 0 || "$1" == "-h" || "$1" == "--help" ]]; then cat >&2 << EOF | |
| Revise a file in-place. Basically, sed's \`-i\` flag, but for any command. | |
| Usage: | |
| revise 𝘧𝘪𝘭𝘦 ...𝘤𝘮𝘥 | |
| the content of 𝘧𝘪𝘭𝘦 will be passed to 𝘤𝘮𝘥 on stdin, or if \`${SUB}\` is present in the argument list, | |
| the filename will be passed. The substitution string can be changed by setting the SUB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| "011B777", | |
| "01sandyshook", | |
| "0311mcp", | |
| "0ctoberReignz", | |
| "0foks", | |
| "0ryuge", | |
| "0xOliverWong31", | |
| "10_03_23_ABC", | |
| "10k__gold", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For easily managing your SSH identity for github. | |
| # | |
| # 1. Source this script in your .profile or .bashrc | |
| # 2. Run `git config user.identity=/path/to/keyfile` in each repository you want to be using a non-default SSH identity | |
| # 3. Git around as usual. | |
| function git() { | |
| local git="$(which git)" | |
| local cmd=("$git" "${@}") | |
| local ident="$("$git" config user.identity)" |
I hereby claim:
- I am fordi on github.
- I am fordiman (https://keybase.io/fordiman) on keybase.
- I have a public key ASBlGL04vAv2m8ZfucjiLx4YD7hZmjqlgmY_2KJu_eY9BAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Stepper.h> | |
| #include <math.h> | |
| #include <Servo.h> | |
| #include <Wire.h> | |
| #include <Adafruit_GFX.h> | |
| #include <Adafruit_SSD1306.h> | |
| #include <stdint.h> | |
| #define SCREEN_WIDTH 128 // OLED display width, in pixels | |
| #define SCREEN_HEIGHT 32 // OLED display height, in pixels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| const getPixels = require('get-pixels'); | |
| const { basename } = require('path'); | |
| const { writeFile } = require('fs/promises'); | |
| const pixels = async src => new Promise((resolve, reject) => { | |
| getPixels(src, (err, pixels) => { | |
| if (err) return reject(err); | |
| return resolve(pixels); | |
| }); |
NewerOlder