I hereby claim:
- I am bgerm on github.
- I am bgerm (https://keybase.io/bgerm) on keybase.
- I have a public key ASA_7_dXXvqF4ke6WgR3j9CC4vNyBABwB4FzGOtkG4JMlAo
To claim this, I am signing this object:
| // Parses: | |
| // | |
| // C7, C Major, Cm (as a Chord) | |
| // 1 b3 5 (as Degrees) | |
| // C E F (as Notes) | |
| // | |
| // | |
| // Notes: | |
| // | |
| // `-` denotes only a minor chord. |
I hereby claim:
To claim this, I am signing this object:
| $(function() { | |
| var grid = $("#box-container"); | |
| /*-------------------------------------------------------------------------- | |
| * Constants | |
| *--------------------------------------------------------------------------*/ | |
| var REQUIRED_MOUSE_MOVE_DISTANCE = 4; | |
| var GRID_HEIGHT = 900; // from the css, just hard-coded for now | |
| var MIN_CELL_HEIGHT = 15; |
| #!/bin/sh | |
| # Record web camera activity in a cron job using VLC. | |
| # This is in a script so that I don't have to go through | |
| # the vlc man pages again. Plus, somethings have unexpected | |
| # behavior, such as requiring --run-time and --stop-time | |
| # to be run together so it doesn't hang. | |
| # Camera used: Foscam FI8910W camer |
| #!/bin/sh | |
| # This script will make a timelapse video from a Foscam FI8910W camera by | |
| # downloading the snapshot image every 2 seconds, watermarking it with the | |
| # current time, and then using ffmpeg on those images to make the movie. | |
| # | |
| # Capturing stops on Ctrl-C or 10 hours of elapsed time. | |
| # Note: This was put together hastily and I'm sure the ffmpeg | |
| # options or framerate could be improved. |