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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What is an efficient strategy to retain skills with minimum investment?

16 点作者 JCDenton2052大约 8 年前
My observation is that a technical skill requires a certain time investment in order to master during which process the brain adapts by forming linear pathways in the form of neural networks. These pathways may fade away without regular activation, much like a road might fall into disrepair without anyone using it. Restoring them to their previous state may take effort proportional to the time spent not having used the skill, except in the presence of a related skill.<p>Nothing new there.<p>My question is what form should this activation take that is time-efficient for a software engineer and how often should it happen?<p>Clafirication: By skill I mean an API, a programming technique like Dependency Injection or a smaller language like SQL, anything that requires non trivial investment over a period of time.<p>Problem definition: An engineer spends 150 hours over a few months mastering a reasonably complicated API. This could be by working in a project, reading a book, asking questions on StackOverflow or anything related. A couple of years pass before the engineer has a chance to work on a project that utilises that skill. The degree to which different people will have the retained the skill obviously will vary, although for the purposes of this example, let us assume that the engineer finds they need to spend a weekend (8-16 hours) refreshing it.<p>Could the engineer have deployed a long term retaining strategy in those two years that would have allowed them to hit the ground running in their new project and what form would that take?

7 条评论

csnewb大约 8 年前
Every time I start a new project, read a book&#x2F;tutorial&#x2F;blog, or watch a lecture, I write down notes in a Google Doc. These notes are mostly bullet notes summarizing the main idea of what it is that I&#x27;ve learned (Feynman Technique), and I make sure to document from which source I learned that thing. Every few weeks I&#x27;ll read through this document full of notes to refresh my memory on whichever topic I choose. That way, instead of wasting time (for example) re-read a dense technical textbook, I can quickly ramp up on a topic by reading my notes. If those notes are insufficient, I&#x27;ll reference my bibliography and go straight to the source. The benefit of having these notes stored in Google Docs is that I can reference them from any device. However lately I&#x27;ve been considering switching to writing all notes in plain text files with vi so that I could grep and find things easier later on.<p>I also personally retain knowledge better when I write it down. I always keep a stack of printer paper or composition notebooks nearby so that I can write down my ideas. These methods aren&#x27;t always very effective, but they help.
评论 #13728766 未加载
itamarst大约 8 年前
In my experience regaining the skill is much faster than learning it in first place (assuming I&#x27;d gotten reasonably proficient). I spent a few years not coding much and had easy time getting back to it.<p>I often find that more important than having a skill is knowing it exists, so I can learn&#x2F;relearn it when needed (<a href="https:&#x2F;&#x2F;codewithoutrules.com&#x2F;2016&#x2F;04&#x2F;15&#x2F;40-hour-programmer&#x2F;" rel="nofollow">https:&#x2F;&#x2F;codewithoutrules.com&#x2F;2016&#x2F;04&#x2F;15&#x2F;40-hour-programmer&#x2F;</a>).<p>Earlier in my career gaining the skills was probably more important, though.
nyrulez大约 8 年前
you need at least two things to accomplish this:<p>- You need to have a personal knowledge base system<p>- You need to have a system to review this. Either using randomization, flashcards or some other method.<p>For example, you could use Evernote or Workflowy to organize everything new that you learn and then export all notes to a giant PDF that you randomly browse regularly on your mobile or desktop.<p>Sadly I haven&#x27;t found a good knowledge base application that also includes randomized review of content. It is a need but most of them focus on organizing and finding, but not so much on review.
FabHK大约 8 年前
I think you should look at Spaced repetition.<p>Simple version would be a form of Leitner boxes; Pimsleur recommended repetition after multiples of 5 (5 seconds, 25 seconds, 2 minutes, 10 minutes, 1 hour, 5 hours, 1 day, 5 days, 25 days, 4 months, and 2 years).<p>There are various software implementations (Anki, etc.), and some of them have a cult following among study freaks.<p>[Edit to add: The one with a &quot;cult following&quot; was &quot;SuperMemo&quot;, see links.]<p>However, I&#x27;m not that familiar with the field, and don&#x27;t know what software would be suitable on today&#x27;s platforms.<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Spaced_repetition" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Spaced_repetition</a><p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Leitner_system" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Leitner_system</a><p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;SuperMemo" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;SuperMemo</a>
评论 #13734586 未加载
sigmundritz大约 8 年前
The best you can do is to just learn stuff that is useful to you on a everyday basis. There&#x27;s too much stuff to remember anyway, so there&#x27;s no silver bullet for forgetting.<p>my take is this: if you forget, it&#x27;s not very useful&#x2F;valuable knowledge and you shouldn&#x27;t feel bad about it.
pizza大约 8 年前
Look here: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Long-term_memory#Encoding_of_information" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Long-term_memory#Encoding_of_i...</a>
AnimalMuppet大约 8 年前
I don&#x27;t worry about it. I suspect that the things that I use often enough to retain are the things that are worthwhile for me to retain.