I hereby claim:
- I am sgnl on github.
- I am sgnl (https://keybase.io/sgnl) on keybase.
- I have a public key ASDIs__WPhdiU_6GI9-vhTAff-pwxdo-OAzH5mt3p8wg9go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| swapon_results=$(swapon -s) | |
| if [[ $swapon_results != 0]]; then | |
| dd if=/dev/zero of=/swapfile count=4096 bs=1M | |
| chmod 600 /swapfile | |
| mkswap /swapfile | |
| swapon /swapfile | |
| echo "/swapfile none swap sw 0 0" >> /etc/fstab | |
| else |
I had this guide open in a tab just in case: https://www.influxdata.com/blog/monitoring-jenkins-with-influxdb/
After Set-up we need to create/gather these piece of information from our account:
token api token*.tar.gz file from their sitesudo tar -xzf postman.tar.gz -C /opt
rm postman.tar.gz
sudo ln -s /opt/Postman/Postman /usr/bin/postman
launch postman via your favorite fucking launcher
| terraform init | |
| - initializes | |
| - installs modules | |
| - aws | |
| - gce | |
| terraform plan | |
| - test | |
| - audit mode |
| window.onload = _ => { | |
| pumpTheJam(randomItemList, 500) | |
| } | |
| const pumpTheJam = (randomItemList, initalValue) => { | |
| setTimeout(function() { | |
| const elementToRemove = placeRandomTextOnScreen(randomItemList) | |
| setTimeout(_ => { | |
| elementToRemove.remove() | |
| pumpTheJam(randomItemList, 500) |
| osascript -e 'display notification "Lorem ipsum dolor sit amet" with title "Title" subtitle "subtitle"' |