I really like reading blogs on programming stuff. Either the ones I can't really undestand.
What I hate is this trend to write without capitalizing after full stops. like this. a full blog post. it hurts my brain. i can't read for long like this.
So a quick bookmarklet to "fix the thing":
add a new bookmark and as url put:
javascrip:b=/^(address|blockquote|body|center|dir|div|dl|fieldset|form|h[1-6]|hr|isindex|menu|noframes|noscript|ol|p|pre|table|ul|dd|dt|frameset|li|tbody|td|tfoot|th|thead|tr|html)$/i;docap=(_,p,c)=>`${p}${c.toUpperCase()}`;cap=(e,p)=>{if(e.nodeType==Node.TEXT_NODE){e.textContent=e.textContent.replace(/([.?!]\s+)([a-z])/,docap);if(b.test(p.nodeName))e.textContent=e.textContent.replace(/^(\s*)([a-z])/,docap);}else{e.childNodes.forEach((c)=>cap(c,e));}};cap(document.body,document.body)