Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
| # gruvbox-dark colorscheme for kitty | |
| # snazzy theme used as base | |
| foreground #ebdbb2 | |
| background #272727 | |
| selection_foreground #655b53 | |
| selection_background #ebdbb2 | |
| url_color #d65c0d | |
| # black |
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
| # Usage: mpv --vf=vapoursynth=60fps.py --hwdec=no <file> | |
| import vapoursynth as vs | |
| core = vs.get_core() | |
| src_fps = 24 | |
| dst_fps = 60 | |
| clip = core.std.AssumeFPS(video_in, fpsnum=src_fps) | |
| super = core.mv.Super(clip, pel=2) |