I really benefited from Tofugu's mnenomics for identifying the kana.
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
// Google Cloud Source repos don't allow world-readable so this is the next best thing | |
// this is the code as of SHA b34717ce19fa9da940333402e7534c0e99f687a3 | |
const synth = require("synth-js"); | |
const MidiWriter = require("midi-writer-js"); | |
const ffmpeg = require("fluent-ffmpeg"); | |
const { Readable } = require("stream"); | |
const concat = require("concat-stream"); | |
const MEASURES = 100; |
Acknowledgements to this article for the ffmpeg commands.
- Install Ubuntu on a bootable partition - not a VM - a live CD / USB is ok.
sudo apt install ffmpeg vlc v4l-utils
. Don't be fooled, snaptools will not work.ffmpeg -f v4l2 -thread_queue_size 512 -i /dev/video1 -f alsa -thread_queue_size 512 -i hw:2,0 -t 00:00:30 -c:v h264 -c:a aac -pix_fmt yuv420p test.mp4
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
<html lang="en"><head> | |
</head> | |
<body translate="no"> | |
<button onclick="hey()">Hey</button> | |
<br> | |
<button onclick="windoh()">Windoh</button> |
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
🍟 \[\e[1;93m\]\w\[\e[0m\]\[\] \[\e[0m\] |
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
#include <iostream> | |
using namespace std; | |
int main() { | |
int running_sum = 0; | |
for (int i = 2; i < 1000; i++) { | |
if (i % 3 == 0 || i % 5 == 0) { | |
running_sum += i; | |
} | |
} |
I hereby claim:
- I am sebm on github.
- I am seb_m (https://keybase.io/seb_m) on keybase.
- I have a public key whose fingerprint is C480 445D 7E8C C1CE 58F4 214C B6B4 3DD0 8888 1430
To claim this, I am signing this object:
- keypress events don't have "key" set
- doesn't support audiorecorder
- some elements can't be flex containers, like
<fieldset>
and<button>
- (chromium / canary) devtools occasionally doesn't show where CSS rules are set, which is 80% of the point of using devtools
- (chromium / canary) crashes a lot
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
- clone this gist | |
- open index.html in browser | |
- observe an exception is thrown |
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
git show --name-only | grep css | xargs postcss --use postcss-sorting -r --postcss-sorting.sort-order=alphabetical |
NewerOlder