I've had lots of discussions with people over the past few days around how open source projects in the .NET space have poor documentation (if it exists). So how do we fix this?
At a high-level, I've got these goals in mind:
- make it easy
- make it cool
I've had lots of discussions with people over the past few days around how open source projects in the .NET space have poor documentation (if it exists). So how do we fix this?
At a high-level, I've got these goals in mind:
| (function() { | |
| // request PerformanceResourceTiming info for all resources on the page | |
| var resources = window.performance.getEntriesByType('resource'); | |
| // filter all resources to just +1 button iframes with timing information | |
| var p1Resources = resources.filter(function(rtInfo) { | |
| return rtInfo.name.indexOf('_/+1/fastbutton') != -1 && | |
| rtInfo.responseStart != 0; | |
| }); |