View latestatic.php
<?php | |
class A { | |
protected static function doStuff() { | |
return "Hello "; | |
} | |
} | |
class B extends A { | |
View closure.php
<?php | |
/** | |
* What will the following code output? (No cheating!) | |
*/ | |
class Test { | |
private $a; | |
private $b; | |
public function getFunction() |
View conf.json
{ | |
"data_dir": "/var/local/consul", | |
"datacenter": "california", | |
"enable_syslog": true, | |
"server": true, | |
"bootstrap_expect": 3 | |
} |
View fizzbuzz.go
package main | |
import ( | |
"fmt" | |
"strconv" | |
) | |
func main() { | |
for i := 0; i < 100; i++ { |
View cat.php
<?php | |
$xml = new SimpleXmlElement(file_get_contents("http://thecatapi.com/api/images/get?format=xml&results_per_page=1&size=small")); | |
$cat_picture = $xml->data->images[0]->image->url; | |
?> | |
<Response> | |
<Message> | |
<Body>Meow!</Body> | |
<Media><?php echo $cat_picture; ?></Media> | |
</Message> | |
</Response> |
View curl.sh
$ curl 'http://sandbox.influxdb.com:8086/db/callprocessing/series?u=andy&p=andy' \ | |
-H 'Origin: http://sandbox.influxdb.com:8083' \ | |
-H 'Accept-Encoding: gzip, deflate' \ | |
-H 'Accept-Language: en-US,en;q=0.8' \ | |
-H 'Content-Type: application/json' \ | |
-H 'Accept: application/json, text/javascript' \ | |
-H 'Referer: http://sandbox.influxdb.com:8083/' \ | |
-H 'Connection: keep-alive' \ | |
--data-binary $'[{"points":[[{"name":"log_lines","columns":["line"],"points":[["here\'s some useful log info from paul@influx.com"]]}]],"name":"log_lines","columns":["0"]}]' \ | |
--compressed |
View gist:024e81c0056c7df97830
### Keybase proof | |
I hereby claim: | |
* I am andrewwatson on github. | |
* I am andywatson (https://keybase.io/andywatson) on keybase. | |
* I have a public key whose fingerprint is A73A DC6B 059F FC6C A0D0 AC71 6AA2 5555 E811 C05C | |
To claim this, I am signing this object: |
View logspout-min.yaml
logspout: | |
image: gliderlabs/logspout:master | |
volumes: /var/run/docker.sock:/tmp/docker.sock |
View haproxy.template
{{range services}} | |
{{if .Name | regexMatch "data*"}} | |
listen http-in | |
bind *:{{env "ENTERPRISE_BIND"}}{{range service .Name}} | |
server {{.Node}}{{.Port}} {{.Address}}:{{.Port}}{{end}} | |
{{end}} | |
{{end}} |
View loop through services.tmpl
{{range services}} | |
{{.Name | regexMatch "manager"}} | |
listen http-in | |
bind *:{{key "service/{{.Name}}/bindport"}} | |
{{range service .Name}} | |
server {{.Node}} {{.Address}}:{{.Port}}{{end}} | |
{{end}} |
OlderNewer