Skip to content

Instantly share code, notes, and snippets.

View daveman1010221's full-sized avatar

David Shepard daveman1010221

  • Pittsburgh, PA, USA
View GitHub Profile
@mingliangguo
mingliangguo / websocat-install.sh
Last active May 3, 2024 17:08
install websocat in ubuntu
# libssl-dev and pkg-config are required in order to build websocat
#
apt-get update && apt-get install -y curl build-essential libssl-dev pkg-config
curl https://sh.rustup.rs -sSf | sh
export PATH=$HOME/.cargo/bin:$PATH
cargo install --features=ssl websocat
@jasonkarns
jasonkarns / readme.md
Last active March 11, 2024 23:26
Git send-email using Gmail
  1. Configure git.
# ~/.config/git/config
[sendemail]
  confirm = auto
  smtpServer = smtp.gmail.com
  smtpServerPort = 587
  smtpEncryption = tls
  smtpUser = <gmail email address>