Hacker News Advice on Learning New Skills

There was a recent Ask HN post entitled Do you have a process or a framework to learn specific skills quickly? with lots of great advice sprinkled throughout the discussion.

This is my attempt to organize and synthesize some of those nuggets into a single post.

Meta

  • Figure out if what you are trying to learn requires a mentor or can be self-taught. Some criteria:
  •     For things with real risks (both during and after the learning stage), engage with an experienced practitioner, apprentice-style.
  •     Things with high levels of complexity
  •     Things that are highly subjective in interpretation
  • Be in a good place mentally to learn and grow
  • Sleep, eating well, physical activity, avoid distractions, don't study while stressed
  • If you have a mentor, be comfortable asking questions. Be thoughtful and gather your questions up; especially in context of an exercise or your own attempt to apply the knowledge.
  • The best time to learn something is when you don’t need it. Play and lack of time pressure means you're only learning what you really want to learn.
  • We do not all have the same style to learning. Figure out what works for you as you learn. Reflect often.
  • Exhibit growth mindset behaviors. Don't have expectations. Be prepared to fail, and learn from your failures. Keep going until you're proud.
  • To go fast, go alone; to go far, go together.
  • Don't confuse learning something quick and mastery - these are typically mutually exclusive.
  •    When learning something quick, optimize for time and optimize for memorization (the lowest cognitive skill.)
  •    When attempting to master something, optimize for the long-term and optimize for application (the highest cognitive skill.)
  • Consider the Bruce Lee quote: "I don't fear the man who ..."
  • If it's an advanced topic that you already have the intermediate experience for, consider learning it in reverse chronological order: from the end to the beginning
  • Avoid learning skills if you can get away with it. This allows you to focus your time and attention on skills you cannot function without.

Basic Principles

  • Understand your motivation. If it's extrinsic (job-related, or to earn a good grade, etc.), you will need discipline in place of desire.
  • If you have trouble with self-discipline, get outside accountability through a trusted peer or mentor.
  • Know how you will evaluate yourself. What happens if you fail? How will you measure progress, and ultimate success? Who will hold you accountable?
  • Ideally use common measurements of achievement used by other learners (e.g. ELO for chess, leaderboards, coursework)
  • Commit to sharing what you've learned with others. By applying intense emotional context - the shame of disappointing your audience - you will sharpen your focus.
  • Pick an Interesting Project to make sure you enjoy the learning process
  •    Prepare the skeleton of the project you want to complete to demonstrate your mastery. Have it ready, have it as easy to duplicate as possible (don't be precious) have it versionable (so you can focus on different areas during your learning).
  • Set a schedule to practice.
  • Immerse oneself into the community of practitioners. Be social about the thing you're trying to learn.
  •    If you can enlist someone as a mentor, do so. Let them use the Socratic method to guide you. Don't ask for answers, ask what resources they would use and then solve it that way.
  •    Often you don't need an actual 'expert' but someone who's already intermediate.
  • Wherever possible, eat your dogfood. If you are learning a new language, try to only speak it during the day. If you are learning a new CLI, use it exclusively.
  • The ratio of study vs. practice varies by the skill you're trying to learn, your prior experience, and the context in which you're learning
  •    A general rule of thumb is a ratio of 1 hour of study/review to 4 hours of practice.
  •    The more specific the context, the higher the ratio of practice vs. study e.g. learning a single song versus learning a musical instrument; learning a single design pattern versus learning an entirely new platform

Before You Begin

  • Write down what you already know of the topic. Dump it all out. Write down questions you have at the onset. Try to predict what you will learn, or how something works.
  •    Don't forget to come back and compare notes afterwards.
  • Prepare a note taking system and/or mind mapping system.
  • Gather your learning resources and centralize them in one location.
  • Divide and conquer. Identify tangible sub-goals or milestones of your progress. Ideally these are things that can divided into even time periods

Understand

  • "Lightly wash lots of information over yourself."
  • Skim to get an overview.
  • Read the table of contents of books on the subject, or blog post titles on the topic.
  • Writing is a better medium than videos for skimming / skipping info you don't need.
  • Watch 30 minutes of YouTube videos.
  • "Knowing that a particular thing exists and where it is documented is itself a form of learning."
  • Find ways to speed up traversing the knowledge graph of prerequisite knowledge.
  • If you find yourself going down too many rabbit holes, explicitly limit yourself to X key points per section or concept. If something requires more, put an asterisk and return once you've covered the X points per section. Breadth over depth in the early stages.
  • Avoid linear learning tracks for things with lots of branches / tangents (e.g. React.)
  • Don't avoid "religion", but don't subscribe, either. Note the arguments for and against certain ways of thinking or concepts, especially when you don't understand the reasoning.
  • If possible, learn from the experts, watch what they do - you can learn both process and results.
  • An alternative suggestion: reading until something violates your understanding of the world.
  • Try to put it in context of what you already know, find parallels and contrasts
  • A third suggestion: read with the explicit goal of finding a use case to serve as the subject of your teaching material. That is, read until you can "see" something that you can learn worth teaching to someone else.
  • For complex subjects, group topics into 3-5 buckets of "current understanding", ranging from "I completely understand this"- to "I don't understand this at all".
  • Expect to spend more time on the things with least understanding, so "start" those simultaneously to parallelize the effort
  • By going after the hardest things first, you learn the most information in the quickest way as all supporting things must be researched on the way.
  • Start from the highest level, wrap all low level concepts into black boxes to call on demand from the higher level without understanding their internals. Unwrap black boxes for understanding only as needed.

Note Taking

  • Note-taking is a "meta-skill" - your discipline and ability to take good notes, organize them, and use them during practitioning will positively / negatively impact your overall ability to learn new skills.
  • General tip: write in plain terms, avoid jargon. These are breadcrumbs for later when you've forgotten it all, don't make them indecipherable.
  • Save a bibliography of all of your references (books, videos, URLs, etc) in one place. Emphasize those you return to on a regular basis vs. sporadically.
  • Start a "cheat sheet" glossary of concepts you don't understand. Reference it often.
  • Write questions as you read. Answer them the next day. These become your flashcards.
  • Feynman technique - Rewrite what you've learned in your own summary. Use progressive summarization.
  • Especially focus on the gaps in your understanding.

Test Your Understanding

Leverage spaced repetition

  • Create flashcards
  • The creation itself forces you to dive deeper into what you don't understand
  • Basic questions for every step of a topic: what, why, how, who, when, where
  • Use specific flashcards as jumping off point for deeper understanding
  • Don't be afraid to invent names or make flashcards for concepts which have no names

"Teach it to yourself"

  • Rubber ducking
  • Recreate from first principles - especially math, algorithms, design patterns
  • Writing explanatory essays or tutorials. optimization of the writing up to the point where it would even please your enemy.
  • Advanced mode: trying to recall from minimal input (a topic heading)

Exercises / Homework

  • Prefer exercises that ask you to explain your thinking. Always answer why this is so.
  • Look at the solution, understand the parts. Solve the problem.

Practice

"One learns by doing."

-- First line of a Geometry book that I have long since forgotten.
  • Practice the "muscle memory" aspects of your skills on day 1. When you are ready for more applied practice, these will not hinder you.
  • Examples: learning language syntax / typing / keyboard shortcuts for coding, line drawing for art, scales for music
  • Start practicing as soon as possible. "Anything worth doing, is worth doing poorly."
  • After one day you should at least attempt to apply your understanding through practice.
  • Use the simplest possible project for the basics; do not get distracted by your secondary goals.
  • Practice a little every day vs a Herculean effort. You can avoid burnout and take advantage of compound interest.
  • Deliberate practice - "slow, perfect practice of component parts".
  • Figure out a way to get feedback on your practice.
  • Supervised practice is always superior to unsupervised practice. You don't know what you don't know.
  • Having a mentor, someone that can challenge you in the right way, evaluate your progress, and direct your attention is more valuable than any self-help hack.
  • Practice chunking, and meta-chunking (chunking the chunks) - look for natural breaks and transitions in the practical. Apply pattern recognition principles aggressively - if this, then that.
  • Stop when you are no longer making visible progress.
  • Find a standard set of challenges or goals, which already exists for many common skills e.g. cooking, music, programming. If there's not one, try creating one or deriving one from existing material on the subject
  • If you are practicing for "the real thing" (a competition, an interview) - rehearse in as realistic a scenario as possible. Understand what feedback you want to gather. Record it if possible.
  • For computer science, notebooks are an excellent tool for combining practice, notes, and knowledge / reference material

Reflect

  • Go back to your predictions you created and compare your notes now. What did you get wrong? Why?
  • Ask yourself: Why is it this way? Why are other ways worse or not possible?
  • Focus on your worst areas. Our natural inclination is emphasize our strengths and downplay our weaknesses; for learning, the opposite is better.
  • Incorporate whatever feedback you have received from mentors, colleagues, and others.

Teach

  • Write the post you wish you'd originally found. As brief as possible. In a style that makes sense to you.

Anti-Patterns

  • Cut and paste. You must get a handle on the raw materials (e.g. code syntax), and there are many tools related to handling those materials (i.e. IDE autocomplete) which can only be experienced by recreating the code by hand.
  • Only reading. Take notes or perform deliberate practice. Distracted or disinterested reading leads to weaker retention.
  • Never want to learn something just to learn it. This is transient and makes retention harder.
  • Avoid the sage teacher - a know-it-all who is more focused on your well-being or attitude than your results. Ask for candid feedback.

Books

Blogs/Articles

Videos

Kyle Hale

Kyle Hale