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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What do you consider to be the fundamentals of programming?

2 点作者 user0x1d超过 2 年前
I guess there&#x27;s a stack of knowledge and you can always pick at which bit of this stack you&#x27;d like to be. You can learn about JavaScript but use whatever you know about Assembly to help you code (e.g. is that multiplication really the same as adding that number 4 times to itself. one is more expensive than the other... bla bla).<p>To you in your career, are there some things you consider to be deep fundamentals to what you do that really benefit your work? What are these fundamentals?<p>To me, understanding how some algorithms work is not fundamental, for example. But understanding where your code actually goes to (think of the logic gates in a processor) is fundamental to understanding what it is that I&#x27;m doing (and not thinking of things as magic)

1 comment

david927超过 2 年前
That&#x27;s a good question. I would say architectures and data structures, generally.<p>We tend to get into the weeds as programmers, but 9&#x2F;10ths of it is the above. If you approach the problem in the right way, everything is easy. The wrong way and everything is hard.