I hereby claim:
- I am tyrostone on github.
- I am tyrostone (https://keybase.io/tyrostone) on keybase.
- I have a public key ASAUJqEs26BcnjBTWFAZyMZkioAK6hBWIy-rDYou_tVW2go
To claim this, I am signing this object:
ENV=$1 | |
RED='\[\033[1;31m\]' | |
YELLOW='\[\033[1;33m\]' | |
NC='\[\033[0m\]' # No Color | |
if [[ "$OLD_PS1" == "" ]]; then | |
OLD_PS1="$PS1" | |
fi |
#!/bin/bash | |
aws iam list-users --profile=${DEV_PROFILE} | grep UserName | awk '{ print substr($2, 2, length($2)-3) }' > iam_users.txt | |
terraform init | |
INPUT="./iam_users.txt" | |
while IFS= read -r USER | |
do | |
terraform import aws_iam_user.${USER//\./_} "$USER" | |
done < "${INPUT}" |
import boto3 | |
import os | |
import statsd | |
# Add your accounts here | |
AWS_ACCOUNTS = [] | |
# Add programmatic users here | |
PROGRAMMATIC_ACCESS_ONLY = [ |
I hereby claim:
To claim this, I am signing this object:
import argparse | |
import csv | |
import fnmatch | |
import multiprocessing | |
import os | |
import re | |
import sys | |
def search_logfiles_for_email(email): |
const Image = (props) => { | |
return ( | |
<div style={{width: '150px', margin: '1em'}}> | |
<img src={props.imageUrl} style={{width: "20em", height: "13em"}} placeholder={props.name} /> | |
<div style={{display: 'inline-block', marginLeft: 10}}> | |
<div style={{fontSize: '1.25em', fontWeight: 'bold'}}>{props.name}</div> | |
</div> | |
</div> | |
); | |
}; |
.fa-star { | |
margin: 0.5em; | |
font-size: 24px; | |
} | |
span { | |
display: inline-block; | |
margin: 0.5em; | |
text-align: center; | |
background-color: #ccc; |
const Card = (props) => { | |
return ( | |
<div style={{margin: '1em'}}> | |
<img width="75" src={props.avatar_url} /> | |
<div style={{display: 'inline-block', marginLeft: 10}}> | |
<div style={{fontSize: '1.25em', fontWeight: 'bold'}}>{props.name}</div> | |
<div>{props.company}</div> | |
</div> | |
</div> | |
); |
class Button extends React.Component { | |
render() { | |
return ( | |
<button onClick={() => this.props.onClickFunction(this.props.incrementValue)}> | |
+{this.props.incrementValue} | |
</button> | |
); | |
} | |
}; |