General
Hiragana/Katakana
Websites
I really benefited from Tofugu's mnenomics for identifying the kana.
// 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; |
I really benefited from Tofugu's mnenomics for identifying the kana.
Acknowledgements to this article for the ffmpeg commands.
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
<html lang="en"><head> | |
</head> | |
<body translate="no"> | |
<button onclick="hey()">Hey</button> | |
<br> | |
<button onclick="windoh()">Windoh</button> |
🍟 \[\e[1;93m\]\w\[\e[0m\]\[\] \[\e[0m\] |
#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:
To claim this, I am signing this object:
<fieldset>
and <button>
- clone this gist | |
- open index.html in browser | |
- observe an exception is thrown |
git show --name-only | grep css | xargs postcss --use postcss-sorting -r --postcss-sorting.sort-order=alphabetical |