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
#!/bin/zsh | |
# This script downloads the latest copy of the FindVUK Online Database, | |
# unzips, and moves it to the logged in user's MakeMKV data directory | |
# NOTE: This script is designed for use on macOS, with the default | |
# location for the MakeMKV data directory. If you have changed the | |
# location in Preferences > General, you will need to edit the line | |
# that moves the file, near the end of the script. | |
This document is an archived version. The current version has been moved to my Automation/Transcription Tools repo
Turn this:
Brent: I'm your host Brent Simmons, in this studio with me is Bob Sterns, executive chef. Say hello, Bob.
Bob: Hello, Bob.
- Update CHANGELOG.md
- Commit the changes:
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
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
# Never mind. | |
# | |
# This functionality has been built in since BBEdit 11.6, | |
# and works way better. (See the notes below.) |
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
{ | |
// init will be called when the challenge starts | |
// Normally you will put most of your code in the init function, | |
// to set up event listeners and logic. | |
// TODO: If we're just picking up, only stop if we're going in the right direction | |
// TODO: Deal with multiple elevators | |
// TODO: Don't stop if the current car is full, until we've let off some passengers | |
init: function(elevators, floors) { |
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 python3 | |
""" | |
Balanced d20 Icosahedron | |
Code to determine the ideal balanced number layout for a d20 die, so that | |
it is the most "fair", as explained on this page from The Dice Lab: | |
http://www.mathartfun.com/thedicelab.com/BalancedStdPoly.html | |
“The numberings of The Dice Lab's d20 and d30 were worked out by Bob Bosch, | |
a Professor of Mathematics at Oberlin College.” |
I hereby claim:
- I am bobtiki on github.
- I am bobtiki (https://keybase.io/bobtiki) on keybase.
- I have a public key ASD3KW7dTV1Jw6fDQ59yTRz94mK4i1cYB6YczHb7IW2g6go
To claim this, I am signing this object:
I'm trying to figure out if OS X Server has, for some reason, reserved the directory
name /.well-known
, and if so, how to work around it, so that I can authenticate
my server for requesting an SSL certificate with letsencrypt.org.
During the letsencrypt
authentication process, I must put a challenge response on my server,
at the URL path:
http://example.com/.well-known/acme-challenge/<challenge key>
However, while dot-hidden paths like /.the-directory
are served just fine, I seem to have narrowed down
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/local/bin/python | |
# coding: utf-8 | |
import cv2 | |
import sys | |
import numpy | |
from matplotlib import pyplot as plt | |
from scipy.spatial import distance | |
""" |
NewerOlder