- Trail-Running Shoes
- Hiking/Barefoot Shoes
- Merino Shirts
- Hiking Trousers
- Set of nice Cloths
- socks and underwear
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
| FROM python:alpine | |
| RUN apk add --no-cache --virtual .build-deps gcc make python3-dev linux-headers libgcc musl-dev | |
| RUN pip install ansible-core | |
| RUN ansible-galaxy collection install azure.azcollection community.general kubernetes.core | |
| RUN pip install -r ~/.ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt | |
| #RUN pip install azure-cli==$(grep azure-cli-core ~/.ansible/collections/ansible_collections/azure/azcollection/requirements-azure.txt | cut -d'=' -f3) | |
| RUN apk del .build-deps | |
| ENV ANSIBLE_STDOUT_CALLBACK=yaml |
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
| #! /usr/bin/env -S ansible-playbook --inventory=localhost, -v | |
| # execute me by running `./multiline_commands.yaml` | |
| --- | |
| - name: Playground | |
| hosts: localhost | |
| connection: local | |
| gather_facts: no | |
| tasks: | |
| - name: > | |
| multiline command don't need `\` because |
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
| twitter_api_bearer_token=xxx | |
| hashtag=spotify | |
| granularity=hour | |
| curl \ | |
| -X GET \ | |
| -H "Authorization: Bearer ${twitter_api_bearer_token}" \ | |
| "https://api.twitter.com/2/tweets/counts/recent?query=%23${hashtag}&granularity=${granularity}&search_count.fields" \ | |
| | jq -r '.data[] \ | |
| | {"start","end","tweet_count"} \ |
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
| sudo iwlist wlan0 scan|grep -E '(Cell|ESSID|dBm)' | less |