This file contains hidden or 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
| --[[ | |
| INSTALLATION: | |
| Put the .lua file in the VLC subdir /lua/extensions, by default: | |
| * Windows (all users): %ProgramFiles%\VideoLAN\VLC\lua\extensions\ | |
| * Windows (current user): %APPDATA%\VLC\lua\extensions\ | |
| * Linux (all users): /usr/lib/vlc/lua/extensions/ | |
| * Linux (current user): ~/.local/share/vlc/lua/extensions/ | |
| (create directories if they don't exist) | |
| Restart VLC. |
This file contains hidden or 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
| #!/bin/bash | |
| mkdir -p ~/.ssh | |
| # generate new personal ed25519 ssh keys | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <rthijssen@gmail.com>" | |
| ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <rob@rob.tn>" | |
| # generate new host cert authority (host_ca) ed25519 ssh key | |
| # used for signing host keys and creating host certs |