Jenkins Cheatsheet N. P. O'Donnell, 2020-21 Run in Docker Get the Jenkins docker image: docker pull jenkins/jenkins
SSH Cheatsheet N. P. O'Donnell, 2020 Specify a Key To have SSH use a specific key: ssh -i <path/to/key> <remote host>
OpenSSL Encryption Cheatsheet N. P. O'Donnell, 2020 Encrypting a file with AES 256 CBC openssl enc -aes-256-cbc -in <plaintext input file> -out <ciphertext output file>
Conan Cheatsheet N. P. O'Donnell, 2020, 2021 Online Resources Conan website: conan.io Search for packages in conan center: conan.io/center Documentation: docs.conan.io
Docker Networking Cheatsheet N. P. O'Donnell, 2020 List networks: docker network ls Create a network called beatles:
OpenSSL X.509 Cheatsheet N. P. O'Donnell, 2020 Creating Keys Create 2048-bit RSA key: openssl genrsa -out example.com.key 2048
TypeScript Cheatsheet N. P. O'Donnell, 2020 Facts about TypeScript Files end in .ts. TypeScript is a superset of JavaScript, similar to how C++ is a superset of C. All JavaScript is valid TypeScript. Compiles down to JavaScript.