Skip to content

Instantly share code, notes, and snippets.

View jay-hankins's full-sized avatar

Jay Hankins jay-hankins

View GitHub Profile
authelia_1 | info: date='Mon Mar 25 2019 03:52:58 GMT+0000 (UTC)' message='Starting Authelia...'
authelia_1 | info: date='Mon Mar 25 2019 03:52:58 GMT+0000 (UTC)' message='Listening on port 9900...'
authelia_1 | debug: date='Mon Mar 25 2019 03:56:13 GMT+0000 (UTC)' method='GET', path='/' requestId='7a171062-22d0-4b1c-88ec-a32bc372d8bd' sessionId='zFBBf9ygd29TOUpFXIjAhhkSYvflLIVV' ip='10.42.69.1' message='Headers = {"host":"login.nutt.men","user-agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:67.0) Gecko/20100101 Firefox/67.0","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.5","dnt":"1","te":"trailers","upgrade-insecure-requests":"1","x-forwarded-for":"10.42.69.1","x-forwarded-host":"login.nutt.men","x-forwarded-port":"443","x-forwarded-proto":"https","x-forwarded-server":"b47108ec15b0","x-real-ip":"10.42.69.1"}'
authelia_1 | debug: date='Mon Mar 25 2019 03:56:13 GMT+0000 (UTC)'

Keybase proof

I hereby claim:

  • I am jay-hankins on github.
  • I am jay_hankins (https://keybase.io/jay_hankins) on keybase.
  • I have a public key ASBGw85et3WAZmkw0XfkTwhFt03h68CiqXk6J6jIiI18vAo

To claim this, I am signing this object:

@-moz-document domain("www.rabb.it") {
div.content {
max-width: 100% !important;
}
div.social.inRoom {
display: none !important;
}
}
{
"version": "0.0.1",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/src"
},
@jay-hankins
jay-hankins / github_remote_switch.sh
Last active June 2, 2017 22:41
Basic shell function to switch your GitHub repo remote URL from (https|ssh) to (ssh|https) respectively.
# Basic shell function to switch your GitHub repo
# remote URL from (https|ssh) to (ssh|https) respectively.
# Tested with zsh and zprezto on macOS 10.12
github_ssh_to_https (){
URL_PART=$("grep" "-Eo" "([A-z0-9-]+\/[A-z0-9-]+.git)" <<< $1)
# echo $URL_PART
NEW_URL="https://github.com/"
NEW_URL+=$URL_PART
# echo $NEW_URL