I hereby claim:
- I am ericreeves on github.
- I am ericreeves (https://keybase.io/ericreeves) on keybase.
- I have a public key ASADcxUC__xchLQ2nBpazeD7aBIeUWHqgAktrR6hxE7Z7go
To claim this, I am signing this object:
| Fri Apr 15 14:47:50 UTC 2016 |
| # Wrapper module for _ssl, providing some additional facilities | |
| # implemented in Python. Written by Bill Janssen. | |
| """This module provides some more Pythonic support for SSL. | |
| Object types: | |
| SSLSocket -- subtype of socket.socket which does SSL over the socket | |
| Exceptions: |
I hereby claim:
To claim this, I am signing this object:
| # | |
| #------------------------------------------------------------------------------- | |
| #------------------------- Eric's BoxStarter Magic ----------------------------- | |
| #------------------------------------------------------------------------------- | |
| # | |
| # Borrowed from piles of other BoxStarter scripts, assembled the way I like it. | |
| # | |
| # | |
| #------------------------------------------------------------------------------- |
The following procedure can be used to add Terraform modules to TFE's Private Module Registry when they are in a VCS system that is not supported by TFE. Note that we are using the Registry Modules endpoint of the TFE API. The procedure for adding a module without a backing VCS registry has 5 main steps:
| THIS_FILE := $(lastword $(MAKEFILE_LIST)) | |
| help: | |
| @make -pRrq -f $(THIS_FILE) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | |
| build: | |
| docker-compose -f docker-compose.yml build $(c) | |
| up: | |
| docker-compose -f docker-compose.yml up -d $(c) | |
| start: | |
| docker-compose -f docker-compose.yml start $(c) | |
| down: |
| version: '3.7' | |
| x-base: | |
| &base | |
| restart: unless-stopped | |
| networks: | |
| - airflow_docker_net | |
| logging: | |
| driver: json-file | |
| options: |
| send-keys 'echo Top Left' C-m | |
| split-window -h | |
| send-keys 'echo Top Right' C-m | |
| select-pane -t 0 | |
| split-window -v | |
| send-keys 'echo Bottom Left' C-m | |
| select-pane -t 2 | |
| split-window -v | |
| send-keys 'echo Bottom Right' C-m |
| ; | |
| ; Inspiration / Code Jacked from the following resources: | |
| ; https://www.reddit.com/r/windowsporn/comments/x6299x/a_small_effect_on_window_switching/ | |
| ; https://superuser.com/questions/1190658/fine-tune-this-red-border-around-active-window-ahk-script/1191059#1191059?newreg=d3acdcdab8714e76a5efeca9996e792f | |
| ; https://www.autohotkey.com/boards/viewtopic.php?f=6&t=110505 | |
| ; https://discord.com/channels/898554690126630914/898556726108901386/1053662963585781760 # Komorebi Discord | |
| ; | |
| #NoEnv | |
| #SingleInstance, Force |
| #export VAULT_TOKEN="<root>" | |
| export NS="TEST-NAMESPACE" | |
| echo "--- Creating namespace" | |
| vault namespace create $NS | |
| echo "--- Enable approle auth within namespace" | |
| vault auth enable -namespace=$NS approle | |
| # create policy | |
| echo "--- Writing ns-admin policy" | |
| echo '# Read TEST-NAMESPACE Namespace |