$ curl -s -H "X-Something: yeah" localhost:8000 > /dev/null
$ python serv.py
ERROR:root:User-Agent: curl/7.37.1
Host: localhost:8000
Accept: */*
X-Something: yeah
module Main exposing (..) | |
import Html exposing (..) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) | |
main = | |
Html.beginnerProgram { model = model, view = view, update = update } |
module Main exposing (..) | |
import Html exposing (..) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) | |
main = | |
Html.beginnerProgram { model = model, view = view, update = update } |
$ curl -s -H "X-Something: yeah" localhost:8000 > /dev/null
$ python serv.py
ERROR:root:User-Agent: curl/7.37.1
Host: localhost:8000
Accept: */*
X-Something: yeah
--- | |
layout: post | |
title: Author information in jekyll blog | |
published: true | |
categories: [ruby] | |
description: Author information in jekyll blog | |
author_github: neerajdotname | |
--- | |
BigBinary's [blog](http://blog.bigbinary.com) |
class PriceCalculator | |
ITEM_UNIT_PRICES = { | |
milk: 3.97, | |
bread: 2.17, | |
banana: 0.99, | |
apple: 0.89 | |
} |
['json','rest-client','pry'].each {|lib| require lib} | |
module Helper | |
def self.get_data_from_api(url) | |
response = RestClient.get url | |
response.force_encoding('utf-8') | |
JSON.parse response | |
end | |
end |
This histogram shows the distribution of GitHub Gist API response times (in milliseconds) for a sample of 10,000 requests as observed by bl.ocks.org.
The distribution roughly follows a log-normal distribution, which is unsurprising for a complex process that has multiple independently-random sources of delay. The mode response time was in the range 120-140ms, while the median response time was 206ms. The middle 80% of requests were in the range 114-527ms. About 11% of requests took longer than 500ms, and 5% of requests took longer than one second. (The rightmost bin in the histogram includes these long requests.)
Since API endpoints vary dramatically in their computational cost, the distribution of response times is likely multimodal. In this dataset, 96% of requests were for a single gist (/gists/42
), while the remaining 4% of requests were to list a user’s gist (/users/fred/gists
). By separating the API requests for a single
1) Error: | |
EagerAssociationTest#test_include_has_one_using_primary_key: | |
ActiveRecord::StatementInvalid: SQLite3::SQLException: ambiguous column name: id: SELECT "companies"."id" AS t0_r0, "companies"."type" AS t0_r1, "companies"."firm_id" AS t0_r2, "companies"."firm_name" AS t0_r3, "companies"."name" AS t0_r4, "companies"."client_of" AS t0_r5, "companies"."rating" AS t0_r6, "companies"."account_id" AS t0_r7, "companies"."description" AS t0_r8, "accounts"."id" AS t1_r0, "accounts"."firm_id" AS t1_r1, "accounts"."firm_name" AS t1_r2, "accounts"."credit_limit" AS t1_r3 FROM "companies" LEFT OUTER JOIN "accounts" ON "accounts"."firm_id" = "companies"."firm_id" WHERE "companies"."type" IN ('Firm') ORDER BY id, accounts.id | |
/Users/nsingh/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7/lib/sqlite3/database.rb:91:in `initialize' | |
/Users/nsingh/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.7/lib/sqlite3/database.rb:91:in `new' | |
/Users/nsingh/.rbenv/versions/1.9.3-p327/lib/ |
unless File.exists?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' | |
gem 'sqlite3' | |
GEMFILE | |
system 'bundle' | |
end |
unless File.exists?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) | |
source 'https://rubygems.org' | |
gem 'rails', github: 'rails/rails' | |
gem 'sqlite3' | |
gem 'debugger' | |
GEMFILE | |
system 'bundle' | |
end |