ssh-keygen -t ed25519 -C "username@domain"username@domain can be your email or the username @ server domain for easier readability, or anything.
Store it using a custom filename like ~/.ssh/github-REPO
| /** | |
| * https://tabletopaudio.com/ is an awesome source of free music. | |
| * Consider making a donation (to him) if using his creations! | |
| * | |
| * | |
| * Just place the following .js+.bat files in the location you want to download | |
| * from tabletop audio ^^ | |
| * | |
| * Creating symboling links (to put files inside folders based on categories) | |
| * requires admin permissions in Win :( |
| # OBS to be configured with the following Recording options | |
| # * Settings > Output > Recording (Advanced) | |
| # - Recording Format: mkv | |
| # - Recording Tracks: 2, 3 | |
| # - Encoder: NVIDIA NVENC H.264 | |
| # Convert video to something usable by Premiere | |
| ffmpeg.exe -i input.mkv -codec copy output.mp4 | |
| # Extract the other audio track |
| // ==UserScript== | |
| // @name Simracing GP for IPESC | |
| // @namespace ipesc.danikaze | |
| // @version 0.3.1 | |
| // @description Set of utilities available on DevTools for IPESC racing community | |
| // @author danikaze | |
| // @source https://github.com/danikaze/ipesc | |
| // @updateURL https://gist.github.com/danikaze/9154b3b79eb2c605687c78f4991841fd/raw/ipesc-helpers.user.js | |
| // @downloadURL https://gist.github.com/danikaze/9154b3b79eb2c605687c78f4991841fd/raw/ipesc-helpers.user.js | |
| // @match https://app.simracing.gp/* |
| # | |
| # Add subtitles from a .srt (i.e. extracted before) to a .mkv file | |
| # | |
| ffmpeg.exe \ | |
| -i video.mkv # input 0 = video to use | |
| -sub_charenc 'UTF-8' # support for UTF8 on subs | |
| -f srt # subtitle format srt (change to ass when needed) | |
| -i sub-file1.srt # input 1 = subs1 | |
| -i sub-file2.srt # input 2 = subs2 |
| // ==UserScript== | |
| // @name Simracing GP utils | |
| // @namespace srgp.danikaze | |
| // @version 1.0.0 | |
| // @description Avoid the anti ad-blocker in SimRacing GP | |
| // @author danikaze | |
| // @source https://github.com/danikaze/ipesc | |
| // @updateURL https://gist.github.com/danikaze/1f803cac51248068ae4b42a62416a1b1/raw/be30561cd0d5e900f403d39befa5af522209965d/ipesc-remove-anti-adblocker.user.js | |
| // @downloadURL https://gist.github.com/danikaze/1f803cac51248068ae4b42a62416a1b1/raw/be30561cd0d5e900f403d39befa5af522209965d/ipesc-remove-anti-adblocker.user.js | |
| // @match https://app.simracing.gp/* |