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
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
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
curl -X POST -H "Content-Type: application/json" -u brian:password -d '{"cpu_cb": 115}' "http://localhost:5000/api/v1.0/revisions/6/cinebenchr15results" | |
curl -X POST -H "Content-Type: application/json" -u ben:password -d '{"cpu_cb": 238,"opengl_fps":45.07}' "http://localhost:5000/api/v1.0/revisions/50/cinebenchr15results" | |
curl -X POST -H "Content-Type: application/json" -u kit:password -d '{"cpu_cb": 609,"opengl_fps":130.19}' "http://localhost:5000/api/v1.0/revisions/53/cinebenchr15results" | |
curl -X POST -H "Content-Type: application/json" -u kit:password -d '{"cpu_cb": 613,"opengl_fps":133.04}' "http://localhost:5000/api/v1.0/revisions/54/cinebenchr15results" | |
curl -X POST -H "Content-Type: application/json" -u kit:password -d '{"cpu_cb": 535,"opengl_fps":118.68}' "http://localhost:5000/api/v1.0/revisions/55/cinebenchr15results" | |
curl -X POST -H "Content-Type: application/json" -u jerry:password -d '{"cpu_cb": 812,"opengl_fps":149.42}' "http://localhost:5000/api/v1.0/revisions/56/cinebenchr15results" | |
curl -X PO |
# the idea here is to throw together a quick | |
# SQLite database to store the hash of all | |
# the files found in a given subdir | |
import hashlib | |
import os | |
import time | |
import datetime | |
import socket | |
from sqlalchemy import create_engine |
import json | |
from hashlib import md5 | |
from os import path | |
from sys import stdout | |
from datetime import datetime | |
from dateutil.parser import parse | |
from sqlalchemy import create_engine | |
from sqlalchemy import Column, Integer, String, Date, Boolean | |
from sqlalchemy.orm import sessionmaker, relationship | |
from sqlalchemy.ext.declarative import declarative_base |
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,5d,e0,5c,e0,00,00,00,00 |
Wordlist ver 0.732 - EXPECT INCOMPATIBLE CHANGES; | |
acrobat africa alaska albert albino album | |
alcohol alex alpha amadeus amanda amazon | |
america analog animal antenna antonio apollo | |
april aroma artist aspirin athlete atlas | |
banana bandit banjo bikini bingo bonus | |
camera canada carbon casino catalog cinema | |
citizen cobra comet compact complex context | |
credit critic crystal culture david delta | |
dialog diploma doctor domino dragon drama |
<html> | |
<head> | |
</head> | |
<body> | |
<div> | |
<h1>Input</h1> | |
</div> | |
<div> | |
<h1>Output</h1> | |
<textarea type="text" id="outputTextArea" style="width:100%" rows=25></textarea> |
import os | |
import time | |
# global vars | |
iterations = 0 | |
x = 0 | |
y = 0 | |
grid = [] | |
# function to check life/death |
puts "Hello World" |