Skip to content

Instantly share code, notes, and snippets.

View dasantonym's full-sized avatar
🧐

Anton dasantonym

🧐
View GitHub Profile
@dasantonym
dasantonym / howto-lignal.md
Last active March 2, 2021 21:35
LIGNAℓ How-To
@dasantonym
dasantonym / nginx.conf
Created October 6, 2020 15:46 — forked from thoop/nginx.conf
Official prerender.io nginx.conf for nginx
# Change YOUR_TOKEN to your prerender token
# Change example.com (server_name) to your website url
# Change /path/to/your/root to the correct value
server {
listen 80;
server_name example.com;
root /path/to/your/root;
index index.html;

Keybase proof

I hereby claim:

  • I am dasantonym on github.
  • I am antonkoch (https://keybase.io/antonkoch) on keybase.
  • I have a public key ASBW7bcU6oxrUHVGfuHcJg6z4iJInzGkTWdJBaUDbPI8Qgo

To claim this, I am signing this object:

@dasantonym
dasantonym / bmdtools_ffmpeg_recording.md
Last active February 28, 2018 11:01
Record MP4 with Blackmagic devices tools & FFMPEG

Requirements

Use with Blackmagic devices tools.

Shell command

  • Input is 1080p 25fps (-m 7) with audio & video from HDMI (-A 3 -V 3)
  • Output is 720p 25fps at ca. 5mbit h264
@dasantonym
dasantonym / pm3_ea_demo.md
Last active January 1, 2018 20:51
Motion Bank API Demo

Work In Progress

API Server

Open a terminal window:

git clone https://github.com/motionbank/libmb-feathers-api.git
cd libmb-feathers-api
npm install
# It will prompt you to run install a second time
@dasantonym
dasantonym / pm2-config.json
Created October 31, 2017 19:10
pm2 config for vm
{
"apps": [
{
"exec_mode": "fork_mode",
"script": "/home/piecemaker/.nvm/versions/node/v6.11.5/bin/static-server",
"name": "piecemaker2-frontend",
"args": "-p 9000 /home/piecemaker/piecemaker2-frontend",
"node_args": [ "--harmony" ],
"env": {
"NODE_ENV": "production"
@dasantonym
dasantonym / mtk-dl-dependencies.js
Last active October 23, 2017 06:00
Downloads all required libs and installers for node-metakit on Windows
// Collecting some dependencies necessary for 'npm install' on Windows.
//
// Reference:
// https://github.com/Venemo/node-lmdb#building-node-lmdb-on-windows
// https://github.com/mateogianolio/vectorious#usage
//
// Put this file into the project root of https://github.com/piecemeta/node-metakit.git
// Then run "node ./mtk-dl-dependencies" and the files should be popping up
// in "./lib/x64", "./install/x64", "./install/x86", "./install/x86".