Month: January 2018

  • Rolling Dice in Python

    The below rolls dice in python.  I’ve long loved python for dice-rolling―having created a now defunct twitterbot and a mastodon bot―it was nice to write this up briefly as I’m working on re-re-re-learning python. #!/usr/bin/python3 from random import randint total_dice = int(input(‘How many dice? ‘)) dice_val = int(input(“How many sides? “)) rolls = [] high_roll…

  • Rainfall (2004) Released

    For a very long time (I’m guessing ~10 years) I’ve had a blurb on the playscript section of my various websites saying: “Rainfall” (Coming Soon!) Now it has. Read it here. It’s a slow play. It was produced when I was in undergrad.

  • Bluetooth Keyboard Pairing on Kano OS

    Our Logitech K380 keyboard wouldn’t pair to our Raspberry Pi 3 running Kano OS today (I know, very specific). I couldn’t quickly find an answer to this on the greater web, in part because I figured that the Kano folks would have had a helpful guide somewhere―but that turned out to be a faulty assumption.…