Skip to content

Instantly share code, notes, and snippets.

View func09's full-sized avatar

Mitsuru Haga func09

View GitHub Profile
Scenario: Get List of My Hitchhiking Items via API
Given the existing things:
|name|
|The Guide (duh)|
|A towel|
|Sub-Etha Sens-O-Matic|
|Pan Galactic Gargle Blaster|
|Kill-o-Zap blaster pistol|
And the existing accounts:
|email|name|password|
@darkhelmet
darkhelmet / heroku.vcl
Created October 29, 2010 20:21 — forked from adamwiggins/heroku.vcl
Simplified Heroku Varnish config
director routing_mesh round-robin {
{
.backend = {
.host = "...some ip...";
.port = "...some port...";
.first_byte_timeout = 90s;
.between_bytes_timeout = 90s;
}
# ...more backends...
}