Params:
- library
- how matrix is created
- matrix size
- JS engine
- hardware
Pipeline:
- set params
Params:
Pipeline:
unbind C-b | |
set -g prefix C-a | |
set -g mouse on | |
set -g status-keys vi | |
set-window-option -g mode-keys vi | |
set -g history-limit 100000 | |
bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard" | |
# set -g set-clipboard on | |
#!/usr/bin/env python3 | |
import random | |
characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%&*1234567890" | |
print(''.join([random.choice(characters) for i in range(0, 32)])) |
/** | |
* Create a new array without the n-th element from the original array | |
* | |
* @param arr | |
* @param n | |
* @returns New array without the n-th element from the original array | |
*/ | |
export function arrayWithoutNth(arr: Array<any>, n: number) { | |
return arr.filter((_, i) => i !== n); | |
} |
#!/bin/bash | |
# See https://rclone.org/filtering/ | |
FILTER_LIST=" | |
# Exclude timelapse temporary files | |
- /LRTimelapse/** | |
- /LRTimelapse_frames/** | |
# Include everything else |
ffmpeg -i timelapse1.mov -c:v libx264 -preset slow -crf 18 -vf "scale=1280:-1,format=yuv420p" /home/drola/Videos/timelapse1_720.mp4 |