Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am steinn on github.
* I am steinn (https://keybase.io/steinn) on keybase.
* I have a public key ASBT378qqq_txaHOtoXBvun_HZfBLo4PSd8pOFy90jT15go
To claim this, I am signing this object:
#+Title: Put your pants on Kubernetes!
#+Author: Steinn Steinsen
#+EPRESENT_FRAME_LEVEL: 2
microservices + monorepo + Kubernetes = love
* WOWair Tech Stack
@steinn
steinn / slack_random.sh
Last active December 16, 2020 17:51
Post random number from random.org to a channel on Slack
#!/bin/bash
RANDOM_URL=http://www.random.org/integers/?num=1\&min=1\&max=100\&col=1\&base=10\&format=plain\&rnd=new
RND_NUMBER=$(curl $RANDOM_URL)
MESSAGE=$RND_NUMBER
USERNAME="random.org"
CHANNEL="#random"
PAYLOAD="payload={\"channel\": \"$CHANNEL\", \"username\": \"$USERNAME\", \"text\": \"$MESSAGE\"}"