Skip to content

Instantly share code, notes, and snippets.

View davidplappert's full-sized avatar
🌎
*** busy changing the world ***

David Plappert davidplappert

🌎
*** busy changing the world ***
View GitHub Profile

Keybase proof

I hereby claim:

  • I am davidplappert on github.
  • I am davidplappert (https://keybase.io/davidplappert) on keybase.
  • I have a public key ASD5V2VKJIfB2-LD6VzvvNidwDRV7mAeEGbuJSiLfMeCAAo

To claim this, I am signing this object:

@davidplappert
davidplappert / AWSCloudwatchUpdate.sh
Created July 18, 2016 14:48
Jenkins job to update and maintain cloudwatch alerts with cloudwatch meterics
#!/usr/bin/env ruby
require 'aws-sdk'
require 'json'
require 'curb'
## cw-processHeartbeat user
AWS_ACCESS_KEY_ID = '*****'
AWS_SECRET_ACCESS_KEY = '*****'
MINUTES = '5'
@davidplappert
davidplappert / updateServerTimeManually.sh
Last active July 18, 2016 14:42
Update Server Time Without NTP
#!/bin/bash
date -s "$(curl -sD - google.com | grep '^Date:' | cut -d' ' -f3-6)Z"