Skip to content

Instantly share code, notes, and snippets.

View michaelerobertsjr's full-sized avatar

Mike Roberts michaelerobertsjr

View GitHub Profile
@michaelerobertsjr
michaelerobertsjr / sendmail_setup.md
Created July 21, 2016 18:18 — forked from kany/sendmail_setup.md
Setup SENDMAIL on Mac OSX Yosemite
@michaelerobertsjr
michaelerobertsjr / 0_reuse_code.js
Created January 1, 2017 20:43
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@michaelerobertsjr
michaelerobertsjr / example.cs
Created June 5, 2017 21:57 — forked from brandonmwest/example.cs
Generating base64-encoded Authorization headers in a variety of languages
httpClient.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue(
"Basic",
Convert.ToBase64String(
System.Text.ASCIIEncoding.ASCII.GetBytes(
string.Format("{0}:{1}", username, password))));
@michaelerobertsjr
michaelerobertsjr / roles_invesitgation.md
Created July 27, 2017 19:00 — forked from facultymatt/roles_invesitgation.md
Roles and permissions system for Nodejs
@michaelerobertsjr
michaelerobertsjr / .gitignore
Created July 26, 2020 21:39 — forked from pdxjohnny/.gitignore
Setting Up k3s for Serverless (knative) on a $5 DigitalOcean Droplet Using k3d
.terraform/
*.pem
*.tf
*.tfstate
*.yaml
*.backup
istio-*/
cert-manager-*/
*.swp
env