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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Is it possible to become a language agnostic programmer?

2 点作者 debanjan16大约 3 年前
Language agnostic doesn&#x27;t mean the engineer doesn&#x27;t have a favourite language of choice. It means that the person can think of a problem critically, independent of any programming language and then design a solution. Then they can implement it in whatever language it needs to be implemented in. And does so efficiently. Ofcourse, to do this, they have to know the entire stack from the highest of high to the lowest of low abstraction levels of the machine.<p>Is this possible in practice? If so how? Any books?

3 条评论

baash05大约 3 年前
No.<p>The answer is no.<p>&quot;A language that doesn&#x27;t affect the way you think about programming, is not worth knowing.&quot; -- Alan Perlis<p>The way you handle a problem is affected by the languages you speak. An elixir programmer would think in functions and modules and gen-servers. A rails dev would think in objects and jobs.<p>It&#x27;s not so much a favourite language thing. I mean english isn&#x27;t my fav spoken language. It&#x27;s the one I grew up using and thinking in.<p>When I started working in Ruby&#x2F;Rails I wrote c++ code with ruby syntax. When years later, I wrote Elixir, it &quot;sounded&quot; like ruby. (still does really).<p>There is no way to know the full stack. Not really. One can have a working knowledge of it, (and that&#x27;s awesome in start up mode), but really knowing an element of the stack takes study. Honestly it cheapens us to say otherwise.
beebmam大约 3 年前
Virtually every computer science course in the UC system beyond the intro courses teach methods of critical thinking that transcend individual programming languages. The theory of computation course I took two decades ago was fundamental to this understanding I&#x27;ve gained. Outside of quantum computation ideas, there is no (reasonable) propramming language I can&#x27;t write software for, if that language is well defined and documented.
评论 #30485982 未加载
评论 #30485989 未加载
pabs3大约 3 年前
Pick a bunch of different languages, seek out open source projects written in them and try to contribute back fixes for each project. Eventually you will be able to work on projects in all those languages.