Skip to content

Instantly share code, notes, and snippets.

View npodonnell's full-sized avatar
🎯
Focusing

npodonnell npodonnell

🎯
Focusing
View GitHub Profile

Docker Compose Cheatsheet

N. P. O'Donnell, 2020

Facts about Docker Compose

  • Docker Compose is not a part of Docker
  • Consists of 2 parts: CLI and .yaml files
  • Deals in services (a service is comprised of several containers)
  • Default compose file is docker-compose.yml but any filename may be used
  • First line of compose file is version, but compose file version does not correspond to docker compose version.
@npodonnell
npodonnell / rename-repo.sh
Last active February 6, 2021 16:29
Renames a named git repo on the server side
#!/usr/bin/env sh
# rename-repo
# Renames a named git repo on the server side
# N. P. O'Donnell, 2020
REPO_BASE=/git
REPO_OLD_NAME=$1
REPO_NEW_NAME=$2
REPO_OLD_DIR=$REPO_BASE/$REPO_OLD_NAME.git
REPO_NEW_DIR=$REPO_BASE/$REPO_NEW_NAME.git
@npodonnell
npodonnell / rust-crash-course.md
Last active January 19, 2023 11:06
Rust Crash Course

Rust Crash Course

N. P. O'Donnell, 2020 - 2023

Commands

rustup (Rust updater)

Show rustup version (not Rust version):

@npodonnell
npodonnell / typescript-cheatsheet.md
Last active April 17, 2021 21:09
TypeScript Cheatsheet

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.
@npodonnell
npodonnell / openssl_X509_cheatsheet.md
Last active July 31, 2020 17:10
OpenSSL X.509 Cheatsheet

OpenSSL X.509 Cheatsheet

N. P. O'Donnell, 2020

Creating Keys

Create 2048-bit RSA key:

openssl genrsa -out example.com.key 2048
@npodonnell
npodonnell / docker_networking_cheatsheet.md
Last active August 5, 2020 14:44
Docker Networking Cheatsheet

Docker Networking Cheatsheet

N. P. O'Donnell, 2020

List networks:

docker network ls

Create a network called beatles:

@npodonnell
npodonnell / conan_cheatsheet.md
Last active September 12, 2021 23:16
Conan Cheatsheet
@npodonnell
npodonnell / npm_cheatsheet.md
Last active August 26, 2020 18:55
NPM Cheatsheet

NPM Cheatsheet

N. P. O'Donnell, 2020

Website

Security Best Practices

Python Cheatsheet

N. P. O'Donnell, 2020

Virtual Environments

Create venv:

virtualenv -p python venv
@npodonnell
npodonnell / pandas_cheatsheet.md
Last active November 8, 2020 11:49
Pandas Cheatsheet

Pandas Cheatsheet

N. P. O'Donnell, 2020

Importing the Library

import pandas as pd