$ python3 -q
>>> data_obj = {
... 'alpha': {
... 'bravo': [
... {'charlie': 1},
... {'delta': 2},
... ]
... }
... }
I hereby claim:
- I am nballenger on github.
- I am nballenger (https://keybase.io/nballenger) on keybase.
- I have a public key ASBawhI15-UDjjZAZEzaNjolNJBhb71AIygJjKmPJggDKgo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host github.com | |
Hostname github.com | |
User git | |
IdentityFile ~/.ssh/inside-docker-container |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"application-autoscaling:*", | |
"rds:*", | |
"codestar:*", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir click_cmd_as_fn | |
cd click_cmd_as_fn | |
pipenv install click | |
touch my_click_cmd.py module_calling_the_click_cmd.py | |
chmod 755 my_click_cmd.py module_calling_the_click_cmd.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Should be in ./client_cluster/Dockerfile | |
FROM python:3.9-bullseye | |
ADD ./entrypoint.sh /entrypoint.sh | |
ENTRYPOINT ["/entrypoint.sh"] |