TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is the proper way to become an good hacker/programmer?

6 pointsby newsoulalmost 3 years ago
A Hacker according to me is someone who is confident enough in their skill as an engineer (mostly computer engineer&#x2F;programmer) and not someone shady as the movies depict.<p>Basically, it is someone for whom implementation of some solution using a programming language and a computer has become second nature, so that, they can concentrate on the domain knowledge of the problem. Like a carpenter concentrates on the design he is going to carve out of a block of wood rather than worrying about how to hold the chisel and hammer.<p>What is the proper way to achieve that kind of skill?<p>Are there any must read topics&#x2F;subjects?

2 comments

gregjoralmost 3 years ago
Lots of deliberate practice. That’s the only way to build any skill. A good mentor helps a lot.
mindcrimealmost 3 years ago
<i>What is the proper way to achieve that kind of skill?</i><p>I don&#x27;t know that there&#x27;s any one specific &quot;proper&quot; way, and as the old saying goes &quot;many roads lead to Rome.&quot; But I do think the spirit of this old saw applies:<p><i>A fellow goes to New York to attend a concert, but gets lost. He spots another fellow who’s carrying a violin case. “Sir, can you tell me how to get to Carnegie Hall?” The musician smiles and says, “Practice, practice, practice.”</i><p><i>Are there any must read topics&#x2F;subjects?</i><p>I think many people approach this from different directions, but you can pretty much always figure that it helps to get &quot;close to the hardware&quot; and understand things from first principles as much as possible, and then build your knowledge up from that base. So if you start from literally understanding how you make a logic gate from a transistor, and then up to how AND,OR,NAND,NOR,NOT etc. gates are used to implement digital logic, and up through some basics of how a CPU executes code, yadda yadda, you&#x27;re probably on a good path. Then from the code level, understanding assembly language for at least one architecture and having at least some notion of how the assembly mnemonics map to the CPU ISA and what&#x27;s going on at the hardware level. What are registers and how are they used, how is data shuffled around between different parts of memory, etc. From there you can build up to understanding different parts of the computing &quot;stack&quot; - the operating system kernel, standard library, memory models, etc.<p>All of that said, I don&#x27;t claim that the above is <i>the</i> way, just <i>a</i> way. I&#x27;m sure there are people who use the title &quot;hacker&quot; who didn&#x27;t do any of that. Again - &quot;many roads&quot;.<p>The other thing I&#x27;ll throw out there is that math comes into play at some levels depending on exactly where your interests take you. It can&#x27;t hurt to pick up some basic number theory, boolean algebra, computability theory, etc. Some of the kinds of things that come up in the book <i>Hackers Delight</i>[1] could be of interest.<p>Another thought - if you haven&#x27;t read Steven Levy&#x27;s book <i>Hackers: Heroes of the Computer Revolution</i>[2] give that a read. It&#x27;s not a super technical book, being more about the &quot;spirit&quot; or essence of what &quot;hacking&quot; and &quot;hackerdom&quot; are. But I would say that might be as valuable as the technical stuff in many ways.<p>Also, reading the various pg essays[3] and&#x2F;or Paul&#x27;s book <i>Hackers and Painters</i>[4] probably can&#x27;t hurt either.<p>Beyond that, there&#x27;s a whole laundry list of books and resources one might mention as seminal or defining works of &quot;hackerdom&quot;. Things like the TCP&#x2F;IP Illustrated books by Stephens, <i>The C Programming Language</i> by Kernighan and Ritchie, <i>The Cathedral and the Bazaar</i> by esr, the <i>Internetworking with TCP&#x2F;IP</i> books by Comer, <i>Advanced Programming in the UNIX Environment</i> by Stephens, a lot of early LISP material by McCarthy and others, a lot of the &quot;AI Series&quot; papers from MIT&#x27;s CSAIL lab, etc., etc. And that&#x27;s not close to a comprehensive list, if such a thing could be said to exist. Just some examples of the kinds of things people who associate with hackerdom tend to get into.<p>Last thought - I would cite &quot;curiosity&quot; as the most important defining trait for becoming a &quot;hacker&quot;. If you&#x27;re never satisfied with your current level of knowledge, always want to probe and dig deeper, and understand more and more and more and more of how things work and why things are the way they are, then in my book you&#x27;re pretty much a hacker. I&#x27;d say try to cultivate that insatiable desire to learn and just dive in and don&#x27;t worry too much about the &quot;proper&quot; road.<p>[1]: <a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;Hackers-Delight-2nd-Henry-Warren&#x2F;dp&#x2F;0321842685" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;Hackers-Delight-2nd-Henry-Warren&#x2F;dp&#x2F;0...</a><p>[2]: <a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;Hackers-Computer-Revolution-Steven-Levy&#x2F;dp&#x2F;1449388396&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;Hackers-Computer-Revolution-Steven-Le...</a><p>[3]: <a href="http:&#x2F;&#x2F;www.paulgraham.com&#x2F;articles.html" rel="nofollow">http:&#x2F;&#x2F;www.paulgraham.com&#x2F;articles.html</a><p>[4]: <a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;Hackers-Painters-Big-Ideas-Computer&#x2F;dp&#x2F;1449389554" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;Hackers-Painters-Big-Ideas-Computer&#x2F;d...</a>