Keybase proof
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:
Describe what is wrong?
some description that
Describe what is the expected behavior?
some description of good behavior!
Include a "Steps to Reproduce" section describe:
#!/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 |
The [MySQL Input Plugin][8] for Telegraf gathers data from a MySQL server.
For connections that are local to the MySQL server, use localhost
as your hostname:
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 |
{
"timestamp": "2018-03-28 15:06:23 -0700",
"event_name": "created",
"decline": {
"updated_at": "2018-03-28 15:06:20 -0700",
"survey_id": "XXXXXXXXX",
"origin_url": "http://localhost:3000/",
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"' |