This file contains 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/env bash | |
[ $# -eq 0 ] && echo "Usage: randomNIST number_contestants [pulseIndex]" && exit | |
[ $# -eq 1 ] && number_contestants=$1 && pulseIndex=last | |
[ $# -eq 2 ] && number_contestants=$1 && pulseIndex=$2 | |
# convert to hexadecimal | |
number_contestants=$(echo "ibase=10 ; obase=16 ; $number_contestants" | bc) | |
randomHex=$(curl https://beacon.nist.gov/beacon/2.0/chain/2/pulse/${pulseIndex} | grep outputValue | cut -d \" -f 4) |
This file contains 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/bash | |
clear | |
# init colors | |
FG="#00ffff" | |
BFG="#00ff00" | |
# if you wonder why true is in there https://www.shellcheck.net/wiki/SC2015 | |
gum confirm --default --affirmative="Play now" --negative="Dump source first" --timeout=10s "Would you like to view the source code before playing?" && true || ( gum format -t code <"$0" ) | |
# get initial info | |
gum style --foreground "$FG" --border-foreground "$BFG" --border double --align center --width 64 --margin "1 2" --padding "2 4" \ |
This file contains 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 python | |
## Simple controller shell to interface with MPC with minimal keystrokes | |
## Note: ssh -p 23 -L 6600:audiobox:6600 elliotwilliams.org | |
## makes it work from remote locations. Tunnels into my network. :) | |
import mpdclient2, time, pdb, curses, os | |
import cPickle as pickle | |
## os.system("export MPD_HOST='audiobox'") |
This file contains 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 | |
import serial | |
import subprocess | |
SENSITIVITY=250 | |
PORT1="/dev/ttyUSB1" | |
DEBUG = False | |
DELAY = 0.25 ## seconds, prevents race |
This file contains 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/env bash | |
number_contestants=$1 | |
# convert to hexadecimal | |
number_contestants=$(echo "ibase=10 ; obase=16 ; $number_contestants" | bc) | |
# take image | |
ffmpeg -f v4l2 -i /dev/video0 -frames:v 1 -y foo.png | |
# md5sum it and extract the value |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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
h_space = 57 / 7; // 8 LEDs = 7 gaps | |
v_space = 58.3 / 7; | |
gap = 1.5; | |
height = 2; | |
rotate([180,0,0]){ | |
difference(){ | |
translate([0,0,4.5/2]) | |
cube([69, 69, 4.5], center=true); | |
// circuit board cutout |
This file contains 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
:100000000C9401010C941E010C941E010C941E0111 | |
:100010000C941E010C941E010C941E010C941E01E4 | |
:100020000C941E010C941E010C941E010C94ED0105 | |
:100030000C941E010C941E010C941E010C941E01C4 | |
:100040000C94A3010C941E010C941E010C941E012F | |
:100050000C941E010C941E010C941E010C941E01A4 | |
:100060000C941E010C941E010000000025002800C5 | |
:100070002B0000000000240027002A0004040404D0 | |
:100080000404040402020202020203030303030342 | |
:10009000010204081020408001020408102001021F |
This file contains 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/python | |
"""\ | |
Simple g-code streaming script | |
https://github.com/bborncr/gcodesender.py/blob/master/gcodesender.py | |
""" | |
import serial | |
import time | |
import argparse |
NewerOlder