View keybindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "ctrl+f", | |
"command": "explorer.newFile", | |
"when": "explorerViewletFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "explorer.newFolder", | |
"when": "explorerViewletFocus" |
View tarZstd.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# scripts | |
tar --create --file - archive | zstd -15 -T0 > archive.tar.zst | |
# tty | |
tar --create --file - archive | zstd --progress -15 -T0 > archive.tar.zst |
View zstdHelp.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** zstd command line interface 64-bits v1.5.2, by Yann Collet *** | |
Usage : | |
zstd [args] [FILE(s)] [-o file] | |
FILE : a filename | |
with no FILE, or when FILE is - , read standard input | |
Arguments : | |
-# : # compression level (1-19, default: 3) | |
-d : decompression | |
-D DICT: use DICT as Dictionary for compression or decompression |
View gist:b60fd3f14eac06062944d31f1ee44e21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
: "${otherReposFolder:="$HOME/src"}" | |
gitClone ryanoasis/nerd-fonts | |
cd "$otherReposFolder/nerd-fonts" | |
sudo ./install.sh --install-to-system-path DroidSansMono FiraCode Inconsolata JetBrainsMono NerdFontsSymbolsOnly SourceCodePro Ubuntu UbuntuMono |
View .zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zsh | |
if [ -f ~/.env ]; then | |
source ~/.env | |
fi | |
if [ -f ~/.secrets ]; then | |
source ~/.secrets | |
fi |
View .secrets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# GitHub | |
export GITHUB_TOKEN=ghp_000000000000000000000000000000000000 | |
# samba, see https://github.com/Jaid/setup-server/blob/main/composes/samba/docker-compose.yml | |
export sambaUser=sambaUser | |
export sambaPassword= |
View .bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -f ~/.env ]; then | |
source ~/.env | |
fi | |
if [ -f ~/.secrets ]; then | |
source ~/.secrets | |
fi | |
: "${userBinFolder:="$HOME/bin"}" | |
: "${otherReposFolder:="$HOME/src"}" |
View htoprc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fields=0 17 38 2 46 111 1 | |
sort_key=46 | |
sort_direction=-1 | |
tree_sort_key=38 | |
tree_sort_direction=-1 | |
hide_kernel_threads=1 | |
hide_userland_threads=0 | |
shadow_other_users=0 | |
show_thread_names=0 | |
show_program_path=1 |
View results.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | Preset | Quality | Tune | Size | Time Absolute | Time Relative | VMAF | |
---|---|---|---|---|---|---|---|---|
1 | 10 | 40 | VQ | 5,464,409 b | 5 s | 0.70 | 64.14% | |
2 | 10 | 40 | PSNR | 5,273,856 b | 5 s | 0.70 | 61.79% | |
3 | 10 | 30 | VQ | 11,569,091 b | 5 s | 0.70 | 80.38% | |
4 | 10 | 30 | PSNR | 11,213,887 b | 5 s | 0.70 | 77.90% | |
5 | 10 | 20 | VQ | 19,670,020 b | 5 s | 0.70 | 88.42% | |
6 | 10 | 20 | PSNR | 19,277,973 b | 6 s | 0.84 | 86.84% | |
7 | 9 | 40 | VQ | 5,353,115 b | 7 s | 0.98 | 65.69% | |
8 | 9 | 40 | PSNR | 5,216,642 b | 7 s | 0.98 | 64.58% | |
9 | 9 | 30 | VQ | 11,156,832 b | 9 s | 1.26 | 81.74% |
NewerOlder