Great read. But I honestly had to read it while awkwardly covering up parts of my browser window. Some of those large animated GIFs are super distracting.
If you have AdBlock, it's fairly simple to block the distracting images by clicking on them. Otherwise, you can inject a little CSS into the page using JavaScript on the console. I agree that the GIFs were very distracting. Static GIFs probably could have captured the feel of the game era just as well.
Get a browser with "show images" toggle of some sort and disable it (opera before 15 has one, and I'm sure others can get something similar as an extension). Your only problems would then be videos and super large fonts on headers.
Quick fix to hide images- paste this into your console:
for(var i = 0; i < document.querySelectorAll('img').length;i++) { document.querySelectorAll('img')[i].style.display='none'; }