https://askubuntu.com/questions/1029128/inverted-horizontal-scrolling-ubuntu-18-04
https://askubuntu.com/questions/964242/synaptics-palm-dimensions-numbers
bframes=2:keyint=15:level=4.1:ref=7:b-adapt=2:direct=auto:deblock=-1,-1:analyse=all:me=umh:merange=24:subme=10:trellis=2:psy-rd=1.00,0.15:vbv-bufsize=78125:vbv-maxrate=62500:rc-lookahead=60 |
const crypto = require('crypto') | |
function createRandomPassword() { | |
return new Promise((resolve, reject) => { | |
crypto.randomBytes(32, (err, buf) => { | |
if (err) return reject(err) | |
resolve(buf.toString('hex')) | |
}) | |
}) | |
} |
async function main () { | |
const actions = [...Array(5)].map((_, i) => new Promise((resolve) => { | |
console.log(`Promise ${i} has started already...`) | |
console.time(`Promise ${i}`) | |
setTimeout(() => { | |
console.log(`Promise ${i} has finished!`) | |
console.timeEnd(`Promise ${i}`) | |
resolve() | |
}) | |
})) |
From: https://superuser.com/a/556031
ffmpeg -t 6 -i tooltip_gif.mov -vf "fps=10,scale=480:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 tooltip.gif
Given a structure like:
/
/terraform
/environment
/infra
/other
Given a structure like:
/
/terraform
/environment
/infra
/other