Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # Splits video to separate scenes files | |
| # Inspired by https://stackoverflow.com/a/38205105 | |
| #!/bin/bash | |
| file="" | |
| out="./" | |
| diff=0.4 | |
| bitrate="512k" | |
| trim=0 |
| 'use strict'; | |
| var contours = require('d3-contour').contours; | |
| var PNG = require('pngjs').PNG; | |
| var fs = require('fs'); | |
| var png = PNG.sync.read(fs.readFileSync('./rain.png')); | |
| var data = []; | |
| for (var i = 0; i < png.height; i++) { |
So I wanted to see if I could get a solver running in the browser.
Why you might ask? Well its pretty typical to need to deploy a back end for a webapp or even to have a specific install on your OS.
This makes things clunky if we wanted to say:
| # Splits video to separate scenes files when full black frames are found in the video | |
| # Inspired by https://gist.github.com/achesco/4dc2ebf13378a0a61fc26c7fe01f539e | |
| # Who got inspired by https://stackoverflow.com/a/38205105 | |
| #!/bin/bash | |
| file="" | |
| out="./" | |
| dur=0.05 | |
| stripaudio="" |