A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
LIST Fruit = Apple, Banana, Orange, Lemon | |
VAR fruitSaladIndex = 0 | |
- (top) | |
* [add apple ] | |
~ addToSalad(Apple) | |
* [ add banana ] | |
~ addToSalad(Banana) | |
* [ add orange ] | |
~ addToSalad(Orange) |
~ relate(Key, MadeOf, Copper) | |
~ relate((Padlock, Spear), MadeOf, Iron) | |
~ relate(GoldCoin, MadeOf, Gold) | |
VAR Inventory = () | |
- (top) |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
To run on ios:
xcode-select --install
npm run ios
To run on Android:
npm run android-emulator-create
npm run android
Hello, visitors! If you want an updated version of this styleguide in repo form with tons of real-life examples… check out Trellisheets! https://github.com/trello/trellisheets
“I perfectly understand our CSS. I never have any issues with cascading rules. I never have to use !important
or inline styles. Even though somebody else wrote this bit of CSS, I know exactly how it works and how to extend it. Fixes are easy! I have a hard time breaking our CSS. I know exactly where to put new CSS. We use all of our CSS and it’s pretty small overall. When I delete a template, I know the exact corresponding CSS file and I can delete it all at once. Nothing gets left behind.”
You often hear updog saying stuff like this. Who’s updog? Not much, who is up with you?
javascript:(function(){$('.list-area').css('max-width','100%');$('.list').css('margin','10px 0 0 10px');var max = Math.max.apply(null,$('.list').map(function(){return $(this).height();}));$('.list').each(function(){$(this).css('margin-bottom', max - $(this).height())});})(); |
var a = []; | |
a[Math.pow(2, 32) - 2] = "max index"; // highest non-expando indexed property | |
console.log(a.length === Math.pow(2, 32) - 1); // true | |
try { | |
a.push("whoa", "EVEN MOAR WHOA"); | |
} catch (e) { | |
console.log(e instanceof RangeError); // true | |
} |
/** | |
* notabs.js | |
* | |
* A reporter that discards all warnings about mixed tabs and errors. | |
* This file was based on our default reporter so output is the same. | |
* | |
* Usage: | |
* jshint myfile.js --reporter=notabs.js | |
*/ |
var net = require('net') | |
var sock = net.connect(1337) | |
process.stdin.pipe(sock) | |
sock.pipe(process.stdout) | |
sock.on('connect', function () { | |
process.stdin.resume(); | |
process.stdin.setRawMode(true) |