I hereby claim:
- I am bonniejools on github.
- I am jonnyballs (https://keybase.io/jonnyballs) on keybase.
- I have a public key whose fingerprint is 3C30 3F27 AEED A971 63C8 BE56 03A2 97ED A247 2F95
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>crossword.fetch.at.midnight</string> | |
<key>UserName</key> | |
<string>jonathanballs</string> | |
<key>ProgramArguments</key> | |
<array> |
#!/bin/bash | |
# Deletes one random pod from kubernetes every DELAY seconds | |
DELAY=0 | |
while true; do | |
POD=$(kubectl get pods -o json | jq -r '.items[].metadata.name' | grep -v backend | grep -v frontend | shuf | head -n1) | |
# Log with pod name in bold | |
echo -e "$(date) -- Killing pod \e[1m$POD\e[0m" |
/* | |
* This file is part of gtkD. | |
* | |
* gtkD is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU Lesser General Public License as published by | |
* the Free Software Foundation; either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* gtkD is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python2 | |
import requests | |
import datetime | |
import json | |
from bs4 import BeautifulSoup | |
PCFINDER_URL = "http://pcfinder.nottingham.ac.uk/" | |