Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/magdalena-abakanowicz
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/michael-anderson
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/avigdor-arikha
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/l-c-armstrong
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/chakaia-booker
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/fernando-botero
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/claudio-bravo
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/grisha-bruskin
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/steven-charles
#!/bin/bash
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/magdalena-abakanowicz
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/michael-anderson
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/avigdor-arikha
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/l-c-armstrong
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/chakaia-booker
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/fernando-botero
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/claudio-bravo
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/grisha-bruskin
ab -kc 10 -t 2 http://staging.marlboroughgallery.com/galleries/new-york/artists/steven-charles
504 Gateway Time-out
nginx/0.6.37
3 # Table name: causes
4 #
5 # id :integer(4) not null, primary key
6 # body :text
7 # name :string(255)
8 # slug :string(255)
9 # created_at :datetime
10 # updated_at :datetime
11 #
12
// Cookie
var Cookie = {
set: function(name, value, daysToExpire) {
var expire = '';
if (daysToExpire != undefined) {
var d = new Date();
d.setTime(d.getTime() + (86400000 * parseFloat(daysToExpire)));
expire = '; expires=' + d.toGMTString();
}
return (document.cookie = escape(name) + '=' + escape(value || '') + expire);
class Hash
def recursively_symbolize_keys
tmp = {}
for k, v in self
tmp[k] = if v.respond_to? :recursively_symbolize_keys
v.recursively_symbolize_keys
else
v
end