Skip to content

Instantly share code, notes, and snippets.

@sebdeckers
Created April 13, 2013 14:50
Show Gist options
  • Save sebdeckers/5378704 to your computer and use it in GitHub Desktop.
Save sebdeckers/5378704 to your computer and use it in GitHub Desktop.
HTTP request/response exchange
GET / HTTP/1.1
Host: ninja.sg
Connection: keep-alive
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1469.0 Safari/537.36
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Cookie: __utma=85144454.1985279365.1365846625.1365846625.1365862890.2; __utmb=85144454.6.10.1365862890; __utmc=85144454; __utmz=85144454.1365846625.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK
Server: GitHub.com
Date: Sat, 13 Apr 2013 14:49:07 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Last-Modified: Tue, 02 Apr 2013 07:29:58 GMT
Expires: Sat, 13 Apr 2013 14:59:07 GMT
Cache-Control: max-age=600
Vary: Accept-Encoding
Content-Encoding: gzip
Vary: Accept-Encoding
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Blog | Sebastiaan Deckers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css" />
<link rel="stylesheet" href="/solarized.css" />
<link rel="stylesheet" href="/app.css" />
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="The Blog of Sebastiaan Deckers" />
</head>
<body>
<header>
<h1>
<a href="/" class="title">
The Blog of Sebastiaan Deckers
</a>
</h1>
</header>
<ol reversed>
<li>
<a href="/casperjs-travis-ci/">CasperJS on Travis CI</a>
<i>April 02, 2013</i>
<p>Functional and integration testing with PhantomJS</p>
</li>
<li>
<a href="/frontend-testing/">Frontend Testing</a>
<i>April 01, 2013</i>
<p>Code hinting, unit testing, functional testing.</p>
</li>
<li>
<a href="/using-grunt-to-build-javascript-projects/">Using Grunt to Build Javascript Projects</a>
<i>February 26, 2013</i>
<p>Grunt is the Javascript developer's shiny new build tool.</p>
</li>
<li>
<a href="/hypermedia-api/">Why Hypermedia APIs are bullshit</a>
<i>February 04, 2013</i>
<p>HATEOAS is not a real solution to real problems</p>
</li>
<li>
<a href="/nda-considered-anti-pattern/">NDAs Considered an Anti-Pattern</a>
<i>October 19, 2012</i>
<p>The opportunity cost of execution is greater than the value of any unproven idea.</p>
</li>
<li>
<a href="/mozilla-please-burn-down-the-palace/">Mozilla, Please Burn Down the Palace and Rebuild the Community</a>
<i>October 01, 2012</i>
<p>What's the matter with Mozilla these days?</p>
</li>
<li>
<a href="/gamification-is-not-about-games/">Gamification Is Not About Games</a>
<i>September 18, 2012</i>
<p>Gamification is often misunderstood by entrepreneurs.</p>
</li>
<li>
<a href="/how-facebook-shot-itself-in-the-foot/">How Facebook Shot Itself in the Foot</a>
<i>September 12, 2012</i>
<p>The Facebook iOS app shifted from HTML5 to native code.</p>
</li>
<li>
<a href="/blog-reborn/">Blog Reborn</a>
<i>August 31, 2012</i>
<p>Now with 100% more vitriol!</p>
</li>
</ol>
<footer>
Content by <a href="mailto:[email protected]">Sebastiaan Deckers</a>,
published under <a href="http://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>,
code on <a href="http://git.io/seb">GitHub</a>.
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34478357-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment