I hereby claim:
- I am dominics on github.
- I am dominics (https://keybase.io/dominics) on keybase.
- I have a public key whose fingerprint is 5D4E 69C9 1300 92C2 06E9 D460 EB3E 4C9E E747 114F
To claim this, I am signing this object:
class profile::datadog::agent( | |
$ensure = 'present', | |
) { | |
class { | |
'datadog_agent': | |
puppet_run_reports => true; | |
} | |
# Realize wrapped integration classes | |
Profile::Datadog::Integration<| |> |
describe('client api class Setting', function() { | |
before(() => { | |
this.server = sinon.fakeServer.create(); | |
this.server.autoRespond = true; | |
this.server.respondWith('/api/setting/all', [ | |
200, | |
{ 'Content-Type': 'application/json' }, | |
'{"type": "setting", "data": [{ "id": "foo", "value": true }]}', | |
]); |
# Initial settings | |
VERSION=3.7.2 | |
ITERATION=0 | |
BUILD=/tmp/ganglia/build | |
INSTALL=/tmp/ganglia/install | |
# Dependencies | |
sudo apt-get install -y build-essential libconfuse-dev libapr1-dev | |
sudo gem install fpm |
#!/bin/bash | |
command='/usr/bin/env git' | |
wd=$PWD | |
parallel=1 | |
quiet=1 | |
function usage() { | |
echo "git splay [-p] <directory> <git command>" | |
echo "" |
I hereby claim:
To claim this, I am signing this object:
import sys | |
while True: | |
try: | |
with open('current/foo') as f: | |
contents = f.read() | |
if contents != 'a' and contents != 'b': | |
sys.exit("Couldn't read the contents") | |
except IOError: | |
sys.exit("Couldn't open the file") |
#!/bin/bash | |
# vim: set ts=4 sw=4 tw=79 et : | |
# | |
# rsyncs the music from an iPhone into the iphone directory | |
if [[ ! -z "$1" ]]; then | |
ADDRESS="$1" | |
else | |
# Attempt to use avahi to get the iPhone's IP | |
# - Make sure your iPhone is unlocked |
. | |
├── F00 | |
│ ├── AAXG.mp3 | |
│ ├── .. and 180 other badly named files | |
│ └── ZRSJ.mp3 | |
├── ... and fifty other directories exactly the same | |
└── F49 |
#!/bin/bash | |
# vim: set ts=4 sw=4 expandtab tw=79 : | |
# | |
# Asks to delete remote branches that have been merged into master and haven't | |
# been committed to in a fortnight. Also asks to delete unmerged branches that | |
# haven't been committed to in three months. | |
set -e | |
c_red=`tput setaf 1 || tput setf 4` |