Skip to content

Instantly share code, notes, and snippets.

@hackerb9
hackerb9 / wordleminusscowl80,95.txt
Created August 2, 2022 04:18
comm -13 <(egrep '^[A-Za-z]{5}$' $(ls /usr/share/dict/scowl/* | egrep -v 'upper|abbrev|proper|contract') | egrep 'english-words.(80|95)' | cut -d: -f2 | sort -u) <(curl -s https://raw.githubusercontent.com/tabatkins/wordle-list/main/words | sort -u)
aalii
aarti
abaca
abaci
aback
abaft
abamp
abase
abash
abate
@hackerb9
hackerb9 / scowl70percent.txt
Created August 2, 2022 03:16
egrep '^[A-Za-z]{5}$' $(ls /usr/share/dict/scowl/ | egrep -v 'upper|abbrev|proper|contract') | egrep -v 'english-words.(80|95)' | cut -d: -f2 | sort -u
aalii
abaca
abaci
aback
abaft
abase
abash
abate
abbey
abbot
@hackerb9
hackerb9 / Arthritis fishing.md
Last active May 21, 2022 19:53
Tips on making fishing easier for people with arthritis

From fishing forum:

Hirdy Well-known member Jan 26, 2017 #12 G'day Denny,

Although I don't personally have arthritis, I can empathise fully with you. My wife has had it in her hands since she was a teenager.

@hackerb9
hackerb9 / Raven.md
Last active July 25, 2022 16:52
Raven todo

Now that I have a phone running GrapheneOS (GOS), here are some of the things that need doing.

  • import phone book

  • install/replace missing apps

    • text editor
    • calendar
    • email
  • jitsi (web app works)

@hackerb9
hackerb9 / NotoColorEmoji.ttf
Last active September 30, 2021 23:17
Debian's NotoColorEmoji.ttf from September 2020
This file has been truncated, but you can view the full file.
@hackerb9
hackerb9 / IBM5100-NYT-1975-Sept-10.png
Last active August 20, 2021 20:36
Screenshot from New York Times, September 10, 1975, page 75 (via "Times Machine")
IBM5100-NYT-1975-Sept-10.png
@hackerb9
hackerb9 / gitfixssh
Created August 20, 2021 05:34
Fix existing github repository to use ssh access instead of username/password
#!/bin/bash
# A temporary script for a temporary problem.
# I have a bunch of github repositories that no longer work
# for git push because the original URL uses the deprecated
# username/password combo. This script repairs the remote
# origin so it uses ssh.
# B9 August 2021
@hackerb9
hackerb9 / bogodisk
Created August 1, 2021 05:19
A quick hack, no-frills disk speed test. Works with any mountable filesystem (SSD/SATA/IDE/tmpfs...). Just specify the directory you'd like to write the test file to -- defaults to /tmp. Uses 'dd' for a quick test (default is 64MB) and then tries hdparm to run a three second test of direct I/O (no filesystem). It's just a shell script, so this s…
#!/bin/bash -e
# Bogus disk speed tester by b9 2016-2021
# Well, not exactly bogus, but overly simplistic.
TMPDIR=/tmp # where to write the file
COUNT=64 # number of blocks
BS=1 # blocksize (in *MEGA*bytes)
total=$((COUNT*BS))
[ "$1" ] && TMPDIR="$1" # Usage: bogodisk [dir [count]]
@hackerb9
hackerb9 / lookup.py
Last active November 4, 2019 07:14
Simplest example of parsing text files of ITIS taxonomy
#!/usr/bin/python3
# globals
name={}
hierarchy={}
vernacular={}
synonyms={}
def loaddb():
"Load up databases into dictionaries: name, hierarchy, vernacular"