I was reading WCAG's accessibility success criteria pages and the OWASP cheat sheets and they both ar e something that one needs to read through atleast once.<p>What are some other documents that are a must-read?
WCAG and OWASP indicate web development, probably front-end development.<p>You will want to learn the standard DOM methods. Walking the DOM as a tree structure as opposed to treating it as a database to query will increase your application capabilities. Learning to access the DOM without parsing a selector string will make your application many thousands of this new faster.<p>I suggest:<p>* <a href="https://gist.github.com/thegitfather/9c9f1a927cd57df14a59c268f118ce86" rel="nofollow">https://gist.github.com/thegitfather/9c9f1a927cd57df14a59c26...</a><p>* <a href="https://prettydiff.com/2/guide/unrelated_dom.xhtml" rel="nofollow">https://prettydiff.com/2/guide/unrelated_dom.xhtml</a><p>* Web APIs - <a href="https://developer.mozilla.org/en-US/docs/Web/API" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/API</a><p>* RegExp - <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Cheatsheet" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guid...</a><p>* http - <a href="https://devhints.io/http-status" rel="nofollow">https://devhints.io/http-status</a>
For picking up language syntax quickly or reminding yourself when you're learning a new one:
<a href="https://learnxinyminutes.com/" rel="nofollow">https://learnxinyminutes.com/</a><p>And then for more robust language/syntax support:
<a href="https://rosettacode.org/wiki/Rosetta_Code" rel="nofollow">https://rosettacode.org/wiki/Rosetta_Code</a><p>And for those who enjoy Vim but, like me, aren't masters quite yet.
<a href="https://vim.rtorr.com/" rel="nofollow">https://vim.rtorr.com/</a>
I would say Google's Search Engine Optimization (SEO) Starter Guide is essential for frontend developers:
<a href="https://support.google.com/webmasters/answer/7451184?hl=en" rel="nofollow">https://support.google.com/webmasters/answer/7451184?hl=en</a><p>I maintain my own guide of concise webdev tips that's mostly distill from and links to recommendations from OWASP, Mozilla and Google which you might find a good jumping-off point: <a href="https://www.checkbot.io/guide/" rel="nofollow">https://www.checkbot.io/guide/</a>
What Every Programmer Should Know About Floating-Point Arithmetic<p><a href="https://floating-point-gui.de/" rel="nofollow">https://floating-point-gui.de/</a>