seq -w 1 100 | xargs -n1 -I% sh -c 'dd if=/dev/urandom of=file.% bs=$(shuf -i1-1000 -n1) count=1024'
I hereby claim:
- I am achauve on github.
- I am adrienchauve (https://keybase.io/adrienchauve) on keybase.
- I have a public key ASCg_0q9-XJUjiCy3ZmjH5w6lxOVBxivDJ76QqwBVcRLuwo
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
import logging | |
import os | |
import time | |
import traceback | |
# pip install slackclient | |
from slackclient import SlackClient |
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
machine: | |
environment: | |
CURRENT_IP: $(dig +short myip.opendns.com @resolver1.opendns.com) | |
dependencies: | |
override: | |
- pip install -r requirements.txt | |
# also install awscli tools | |
- pip install awscli==1.7.36 |
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
CURRENT_IP = $(dig +short myip.opendns.com @resolver1.opendns.com) |