The client-side execution time and transfer time of large image assets is interesting, and I'm glad the article covers those matters in-depth.<p>That said, what I find surprising about GitHub in my admittedly infrequent usage is the amount of time spent waiting for the server to respond to requests.<p>At the URL cited in the article, Chrome reported a ~800ms round trip time for the initial request. Clicking on the "View file" link resulted in a request that took ~1,200ms. Clicking "Network" on the navigation resulted in a request that waited ~5,500ms until a response arrived that then painted an animation of an encircled cat while the real work started.<p>Even presumably semi-static pages such as github.com/about reported ~400ms round-trip. /features = ~400ms.<p>For fun, I decided to see how some other sites behaved by way of comparison. Here's some anecdotal measurements from my PC:<p>microsoft.com = ~175ms; <a href="https://www.microsoft.com/" rel="nofollow">https://www.microsoft.com/</a> = ~175ms; microsoft.com/about = ~75ms; microsoft.com/windows = ~100ms.<p>google.com = ~75ms; <a href="https://google.com/" rel="nofollow">https://google.com/</a> = ~100ms; google.com/about = ~75ms; investor.google.com = ~75ms.<p>apple.com = ~100ms; <a href="https://www.apple.com/" rel="nofollow">https://www.apple.com/</a> = ~150ms (note: assets will not load, site is not intended to be loaded with https); apple.com/ipad = ~40ms; store.apple.com = ~175ms.<p><a href="https://stripe.com/" rel="nofollow">https://stripe.com/</a> = ~800ms;<p>In my experience, yes, GitHub "feels" slow. Not agonizing, but slow enough to be annoying. For me, the feeling comes from the hesitation that I feel before a response starts arriving from the server. To an extent, I'm comfortable with the browser continuing to download slow assets (large images, analytics JavaScript, etc.) as long as the principal UI gets painted and I can get my click on.<p>Using GitHub sometimes feels like using my AT&T U-Verse DVR. Okay, that was an unfair low blow; nothing is as slow as an AT&T DVR.<p>I'm glad to hear that the GitHub guys are hard at work to tune things up. Thanks!