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 -ex | |
| # Build a new Centos8 install on EBS volume in a chroot | |
| # Run from RHEL8 or CentOS8 instance - eg: ami-0c322300a1dd5dc79 in us-east-1 (RHEL 8 official image) | |
| # Script expects a second EBS volume, I add them as /dev/sdf in the console | |
| # When the script completes, turn the second EBS volume into your new AMI through the console. | |
| # Adjust the section below to match the device names you're using. Defaults are for an m5.large | |
| # m5 series requires the updated device names |
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
| code --install-extension QassimFarid.ejs-language-support | |
| code --install-extension SirTori.indenticator | |
| code --install-extension TimonVS.ReactSnippetsStandard | |
| code --install-extension TwentyChung.jsx | |
| code --install-extension abusaidm.html-snippets | |
| code --install-extension asvetliakov.move-imports | |
| code --install-extension aws-scripting-guy.cform | |
| code --install-extension bierner.markdown-preview-github-styles | |
| code --install-extension ccitiriga.TSMethodCreator | |
| code --install-extension christian-kohler.npm-intellisense |
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
| """ | |
| Code for a music video where sheet music is | |
| scrolled transparently on my hands playing the | |
| piano. See that effect here: | |
| https://www.youtube.com/watch?v=V2XCJNZjm4w | |
| """ | |
| from moviepy.editor import * |
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 |