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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How do you learn new technologies?

4 点作者 mauz大约 10 年前
I&#x27;m relatively new to web development and I&#x27;m currently trying to learn new technologies like Angular.js, Node, etc.<p>I&#x27;m finding myself reading through all the documentation, but I feel like I&#x27;m wasting my time. I don&#x27;t know if I should just jump right in and start coding.<p>What&#x27;s the most efficient way for you to learn new technologies?

3 条评论

nostrademons大约 10 年前
Jump in and start coding. The type of knowledge you get from reading docs is very different from the type of knowledge you get from solving problems. The former may get you a job but is generally pretty useless when it comes to solving more problems. The latter is harder to do, but once you do, you find that it compounds and you can solve harder and harder problems.<p>I usually try to start with a nearly trivial problem and work my way through it, eg. right now I&#x27;m learning Polymer and started by taking the landing page of my previous startup (written in Django&#x2F;vanilla-JS) and porting it to Polymer. It is slow going, partially because Polymer is really bleeding-edge (still in developer preview) and core functionality changed as recently as a few hours ago. But I&#x27;ve learned a dozen or more technologies in my career, and each one of them was through actually building something and wrestling with the framework enough to grok it.
评论 #9156781 未加载
Lorenzo45大约 10 年前
It depends how &#x27;new&#x27; you are to it. Personally, if I know nothing about a technology, I find that trying to figure things out myself is extremely inefficient and a waste of time. The best things for me in this situation are watching videos of people coding, or taking an online course if there is one available. Once you&#x27;ve got a bit of a handle on it, it&#x27;s much easier to progress on your own just by using documentation and StackOverflow.
insin大约 10 年前
Make things.<p>There&#x27;s no substitute for having a concrete problem to solve, <i>then</i> hitting the docs, reading around and implementing a solution.<p>You&#x27;ll also find out what it&#x27;s like when things <i>don&#x27;t</i> work, which is something you rarely get from documentation.