Skip to content

Instantly share code, notes, and snippets.

View petersellars's full-sized avatar
🏠
Working from home

Peter Sellars petersellars

🏠
Working from home
View GitHub Profile
@dikiaap
dikiaap / git-io-custom-url.md
Last active May 7, 2024 17:34
git.io custom URL

Update: As of 11 January 2022, git.io no longer accepts new URLs.

Command:

curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"

URLs that can be created is from:

  • https://github.com/*
  • https://*.github.com
@mjuarez
mjuarez / containercamp15.md
Last active September 27, 2017 05:55
Container Camp '15 Notes

Container Camp 2015

Presentations

Building and scaling container driven cloud infrastructure - Bryan Cantrill

Bryan Cantrill, CTO of Joyent. My god did he talk stupidly fast. People mentioned that he apparently beat some record.

Bryan did an excellent recap of how LXC containers, and eventually Docker came to be. Also brought us up to speed with what Joyent has been doing to basically allow inherently Linux based LXC containers to run under "Solaris."

@stevepereira
stevepereira / resources.md
Last active January 18, 2020 16:20
Talk resources
@bradland
bradland / ssh-known-hosts-mgmt.sh
Last active April 4, 2023 21:21
SSH known_hosts tools
# This is a short collection of tools that are useful for managing your
# known_hosts file. In this case, I'm using the '-f' flag to specify the
# global known_hosts file because I'll be adding many deploy users on this
# system. Simply omit the -f flag to operate on ~/.ssh/known_hosts
# Add entry for host
ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts
# Scan known hosts
ssh-keygen -f /etc/ssh/ssh_known_hosts -F github.com