This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
504 Gateway Time-out | |
nginx/0.6.37 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
NewerOlder