TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Which technical guides or cheatsheets are a must read for a developer?

13 点作者 gymshoes将近 5 年前
I was reading WCAG&#x27;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?

5 条评论

austincheney将近 5 年前
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:&#x2F;&#x2F;gist.github.com&#x2F;thegitfather&#x2F;9c9f1a927cd57df14a59c268f118ce86" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;thegitfather&#x2F;9c9f1a927cd57df14a59c26...</a><p>* <a href="https:&#x2F;&#x2F;prettydiff.com&#x2F;2&#x2F;guide&#x2F;unrelated_dom.xhtml" rel="nofollow">https:&#x2F;&#x2F;prettydiff.com&#x2F;2&#x2F;guide&#x2F;unrelated_dom.xhtml</a><p>* Web APIs - <a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;API" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;API</a><p>* RegExp - <a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;JavaScript&#x2F;Guide&#x2F;Regular_Expressions&#x2F;Cheatsheet" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;JavaScript&#x2F;Guid...</a><p>* http - <a href="https:&#x2F;&#x2F;devhints.io&#x2F;http-status" rel="nofollow">https:&#x2F;&#x2F;devhints.io&#x2F;http-status</a>
评论 #23927131 未加载
rtkaratekid将近 5 年前
For picking up language syntax quickly or reminding yourself when you&#x27;re learning a new one: <a href="https:&#x2F;&#x2F;learnxinyminutes.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;learnxinyminutes.com&#x2F;</a><p>And then for more robust language&#x2F;syntax support: <a href="https:&#x2F;&#x2F;rosettacode.org&#x2F;wiki&#x2F;Rosetta_Code" rel="nofollow">https:&#x2F;&#x2F;rosettacode.org&#x2F;wiki&#x2F;Rosetta_Code</a><p>And for those who enjoy Vim but, like me, aren&#x27;t masters quite yet. <a href="https:&#x2F;&#x2F;vim.rtorr.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;vim.rtorr.com&#x2F;</a>
seanwilson将近 5 年前
I would say Google&#x27;s Search Engine Optimization (SEO) Starter Guide is essential for frontend developers: <a href="https:&#x2F;&#x2F;support.google.com&#x2F;webmasters&#x2F;answer&#x2F;7451184?hl=en" rel="nofollow">https:&#x2F;&#x2F;support.google.com&#x2F;webmasters&#x2F;answer&#x2F;7451184?hl=en</a><p>I maintain my own guide of concise webdev tips that&#x27;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:&#x2F;&#x2F;www.checkbot.io&#x2F;guide&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.checkbot.io&#x2F;guide&#x2F;</a>
jobigoud将近 5 年前
What Every Programmer Should Know About Floating-Point Arithmetic<p><a href="https:&#x2F;&#x2F;floating-point-gui.de&#x2F;" rel="nofollow">https:&#x2F;&#x2F;floating-point-gui.de&#x2F;</a>
animesh将近 5 年前
Why good commit messages matter.<p><a href="https:&#x2F;&#x2F;chris.beams.io&#x2F;posts&#x2F;git-commit&#x2F;#intro" rel="nofollow">https:&#x2F;&#x2F;chris.beams.io&#x2F;posts&#x2F;git-commit&#x2F;#intro</a>