This file contains hidden or 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
""" Map leader to space --------------------- | |
let mapleader=" " | |
set clipboard+=unnamed | |
""" Plugins -------------------------------- | |
set surround | |
set commentary | |
set argtextobj | |
set easymotion | |
set textobj-entire |
This file contains hidden or 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 | |
for KEY in $(airflow variables list | tail -n +2); do | |
echo "$KEY=$(airflow variables get $KEY)" | |
done |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am xlyk on github. | |
* I am xlyk (https://keybase.io/xlyk) on keybase. | |
* I have a public key ASCS3LK_afAMpPdCSmii2tU4Ee0RtPQXwJ7V050Nrvv_sQo | |
To claim this, I am signing this object: |
This file contains hidden or 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
package main | |
import ( | |
"encoding/json" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/secretsmanager" | |
) | |
type SecretData struct { |
This file contains hidden or 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
https://devel.tech/tips/n/pIpEnvNh/pipenv/ |
This file contains hidden or 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
# Delete all containers and images | |
docker rm $(docker ps -a -q); docker rmi $(docker images -q) |