- 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
#!/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.” |
{ | |
// 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) { |
# Never mind. | |
# | |
# This functionality has been built in since BBEdit 11.6, | |
# and works way better. (See the notes below.) |
git add HISTORY.rst
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
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.
#!/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. | |