In terminal.app, install ffmpeg through homebrew
brew install ffmpeg
Validate the installation:
################################################################### | |
Writing C software without the standard library | |
Linux Edition | |
################################################################### | |
There are many tutorials on the web that explain how to build a | |
simple hello world in C without the libc on AMD64, but most of them | |
stop there. | |
I will provide a more complete explanation that will allow you to | |
build yourself a little framework to write more complex programs. |
" Background colors for active vs inactive windows | |
hi ActiveWindow guibg=#17252c | |
hi InactiveWindow guibg=#0D1B22 | |
" Call method on window enter | |
augroup WindowManagement | |
autocmd! | |
autocmd WinEnter * call Handle_Win_Enter() | |
augroup END |
#!/bin/bash | |
set -euxo pipefail | |
install_prefix=~/.local/opt/cpython/3.8.8-dbg | |
jobs=4 | |
# CPython | |
# https://stackoverflow.com/a/20126802/7829525 | |
( | |
[ ! -d cpython ] && git clone https://github.com/python/cpython |
You can play with the GraphQL API live here. It's pretty nice and has autocompletion based on the GraphQL schema.
The first example gets your first 3 starred repos, the cursor values can be used for pagination.
Here's an example response from the first query:
{
#!/bin/bash | |
# install: | |
# * rename the original script to script.original | |
# * rename the wrapper.sh to script | |
# * DONE! all calls are going to be logged now | |
TIMESTAMP=`date -u +"%Y-%m-%dT%H:%M:%SZ"` | |
ME=`basename $0` | |
WRAPPED_COMMAND=$ME.original |