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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What's your process for learning?

222 点作者 mysterpaul将近 8 年前
I&#x27;m interested in seeing if anyone has a process they use to help with learning.<p>- Do you focus on one topic&#x2F;book&#x2F;course&#x2F;project&#x2F;article at a time, or split your time between multiple things?<p>- Do you use any tools to track your resources, todos, notes, or goals?<p>- Are there any pain points you have while learning, or are there any tools you wish existed?

53 条评论

danielvf将近 8 年前
The biggest test of what I&#x27;ve learned about learning was the day I had to learn embedded programming in twenty four hours.<p>A customer called me at 5 pm. They had a possible six figure hardware sale, but a key aspect of their hardware was too slow, their only embedded software&#x2F;hardware guy was no longer working there, and they had to have the new code in 24 hours for a demo.<p>The software component to be sped up was three cores running handwritten assembly, and had been optimized by several people over four years.<p>The total of my embedded software experience was fooling around with an Arduino. I&#x27;d never written assembler before and never see this processor or its family before.<p>This was going to be good.<p>I wrote down the problem, and did the math to find out what the solution would have to look like.<p>It&#x27;s hugely important to define the problem, and constrain the solution as much as possible. Nailing these down is probably the single most important &quot;trick&quot; problem solving.<p>With the problem defined, and the solution constrained, I printed the entire processor manual, and read&#x2F;scanned it through in one sitting. I then went back over the memory and instruction timing sections, since that was going to be the hardest part.<p>I at least, learn much better by first scanning through a paper book on a subject. This lets you get the big picture all in your head at once, and see how things connect. Unlike just reading an overview, you also get to see the hard details that make up the way the system works. Then go back through later for the sections that matter for the problem you are working on.<p>I hooked up the customers hardware to the computer, flashed code the existing code to it, then changed the code to turn a status LED off. This was just to verify that I had the code to hardware toolchain working.<p>I&#x27;ve learned to bite off a small piece at a time, and then build up, rather than trying to solve everything at one go. The first code I ran on the processor just changed a status LED. This let me focus on as small of a chunk as possible, and deal with getting the new IDE configured, etc, without having to worry about the whole class of problems that would come from running my new algo.<p>I know I need X amount of sleep to solve problems. Even with a crazy deadline, knew I&#x27;d do still come out ahead. I went to bed at my usual time.<p>When I woke up, I knew how to solve the problem. The solution was similar to drawing a diagonal line on a computer screen - which is a really easy problem.<p>I&#x27;ve found that you can think in your sleep. Maybe this is just me again, but I&#x27;ve learned that as long as I clearly layout a problem, solution, and tools before I sleep, I wake up with the answer. I don&#x27;t even wonder anymore if it&#x27;s going to happen. Perhaps this is just the result of a lot of experience, but it never fails. If I&#x27;m stuck on something during the day, I just take a shower or a nap and know the answer afterwords.<p>Because the algorithm was going to be the most important part of this, I coded a JavaScript&#x2F;HTML 5 canvas visualizer that gave me a live slider for the input variable and showed me a single view the output over many thousands of time steps. The JavaScript version of the algo worked great.<p>In optimization, the algorithm usually matters far more than anything else. It wasn&#x27;t that I was the king of assembly language programmers, it was just that I was doing an entirely different thing than the previous programmers had been optimizing. I started with &quot;what would the ideal solution to this problem be&quot;, and they started with &quot;let&#x27;s translate a hardware concept to software&quot;.<p>The second biggest trick to working with a new problem is visualization. I&#x27;ve learned that I can hugely increase my speed of understanding by building tools to visualize the problem and what my code is doing to solve it. For example in the recent, awesome, Halite programming competition, I built a tool that would let me output annotated html5 game maps and documents from within my code. Here&#x27;s an example visualization output, straight from source code <a href="http:&#x2F;&#x2F;braino.org&#x2F;thoughts&#x2F;halite_the_simple_way.html" rel="nofollow">http:&#x2F;&#x2F;braino.org&#x2F;thoughts&#x2F;halite_the_simple_way.html</a> OODA loops really do matter, and really are constrained by how much you can see how fast.<p>After breakfast, I worked out the assembly instructions I&#x27;d need, tracking the timing and register values on graph paper. I read up carefully in the docs on each instruction I&#x27;d need.<p>By lunch time I had a paper version that should work, and by 3pm I had it running in the product and had learned how to use an oscilloscope. The customer picked up the hardware and got the sale. The new version used one core instead of three and was measurably, literally ten thousand times improved.<p>I was now a carded member of the Real Programmers Society.
评论 #14643878 未加载
评论 #14640898 未加载
评论 #14722492 未加载
mikegerwitz将近 8 年前
My learning falls into a couple main categories: formal study for the sciences (be it math, programming, crypto, etc); and broad research for advocacy and activism. Both of these involve keeping up with current events, the latter moreso than the former; the former can be especially time-sensitive.<p>I don&#x27;t have the time to put these in any coherent order, so I&#x27;ll just list some:<p>- Bookmarks. I find much of my information online. I make aggressive use of tags, and I found that organizing them into folders is too difficult and a waste of time (unless grouping them for a project&#x2F;talk temporarily); the tree structure doesn&#x27;t lend itself well to a graph of concepts. I have ~10k bookmarks. I keep them; you never know when they&#x27;ll come in handy, even if only for trivia. Figuring out what tags are appropriate forces me to extract key material.<p>- Maintain a reading list&#x2F;backlog. I have short, medium, and long-term lists. Go through them on occasion and re-order them by interest&#x2F;importance. Remove ones you know you won&#x27;t have time for.<p>- Learn to speed read. I find it difficult on a screen, but easy on paper.<p>- Hands-on experience: if you&#x27;re programming, go hack on your favorite project, look at bug reports, or write your own. Struggle through problems before you give up and look online.<p>- My time is split between many things. I use Org mode to organize my thoughts and agenda. Sometimes I can do the entire project in Org mode (e.g. <a href="https:&#x2F;&#x2F;mikegerwitz.com&#x2F;projects&#x2F;sapsf&#x2F;tree&#x2F;slides.org" rel="nofollow">https:&#x2F;&#x2F;mikegerwitz.com&#x2F;projects&#x2F;sapsf&#x2F;tree&#x2F;slides.org</a>, but I left my time tracking private). It also integrates with my mail client (Gnus), where I live a good chunk of my life outside of work.<p>- While I read many articles and blogs and stuff online, for any in-depth material, I buy the book or print the paper and read offline. I have a system with 5 different color pens that I use to aggressively mark up and underline (blue general concepts, red a problem, green a solution, purple a technical detail, black misc.). I have a Bamboo tablet, but I still prefer paper.<p>- As I mentioned in another one of my comments (and as adamnemecek mentioned), read a book multiple times (<a href="http:&#x2F;&#x2F;pne.people.si.umich.edu&#x2F;PDF&#x2F;howtoread.pdf" rel="nofollow">http:&#x2F;&#x2F;pne.people.si.umich.edu&#x2F;PDF&#x2F;howtoread.pdf</a>). It not only helps with absorbing the information and selecting what is important to you for further study (which is important given limited time), but also helps if you can&#x27;t often finish books; after a few iterations, you&#x27;ll have a good idea on all of the concepts and know _what information exists_ and _where to find it later_ when you actually need it. Discovery is the most important (thus my bookmarks)---material is always there to reference.<p>- I don&#x27;t have time to watch videos---I prefer transcripts, which I can also search through. If I do need to watch a video (either because it explains a concept better or because there is no alternative), I watch it at 2--2.5x and slow down when I get to something I&#x27;m having trouble keeping up with. Some people talk slowly even at 2x. :x<p>- Get rid of distractions. One of the best things I did was create an agenda in Org mode, because once I complete a daily task (e.g. reading news sites; checking mail; checking GNU Social), I _stop_ and move onto another task. No peering at my e-mail or news sites 20 times while I&#x27;m doing another task.<p>- Similar to the previous: I only work on personal things at night. I have a family, and I want to spend time with them---I feel guilty if I work during the day when the kids want to play, and all the noise is a distraction; it breaks flow constantly. Wait until a calm point.<p>- Iterate over your system. Everything I do has evolved over the course of many years. The learning curve for some tools will slow you down, but can be very rewarding. The iterative process can slow you down. But that&#x27;s not always the point: a good system can have returns in the long run, but it also _reduces stress_; you want to enjoy learning, enjoy the tasks you&#x27;re doing, and not have to worry about other things. This might involve writing scripts, too.<p>I have more things, but that&#x27;ll have to do for now.
评论 #14638775 未加载
adamnemecek将近 8 年前
For books, you have to generally read them like 5 times. The first pass might take me like an hour, it&#x27;s mostly to establish a general mental framework for what&#x27;s in the book (actually try to read the table of content, and like familiarize yourself with the words you might not know). On the second pass, you will actually try to read the book and retain like 20% of what you read. On the next one try the next 30%.<p>This approach has the advantage that it lets you decide what&#x27;s important. I also like to believe that it establishes better connections between the single ideas.<p>I would say that goals are counterproductive until you are somewhat comfortable but not when starting out. Like yeah sure, you should make some progress but you are in an uncharted territory, the best thing you can do is to walk around a bit and make sure you stay engaged.<p>If you move to a new city, you probably walk around the neighborhood for a bit, then to the neighborhood next to yours etc etc.
评论 #14638147 未加载
评论 #14638383 未加载
评论 #14639377 未加载
评论 #14639834 未加载
Joeri将近 8 年前
I almost always only learn things that I can immediately apply afterwards, because otherwise I find I don&#x27;t retain enough useful knowledge that I have to go through the same learning resources again by the time I need the knowledge.<p>I have two learning modes. When I first come across a new topic, e.g. hadoop, I will go broad and skim as many learning materials as I can to get an idea of the lay of the land. Once I feel confident I have a handle on the major parts and technologies involved, I&#x27;ll switch to the second learning mode and work through the subjects &#x2F; technologies one by one by searching online for &quot;best way to learn X&quot;, figuring out what the common denominator is, and then working my way through that while taking notes in onenote.<p>The note-taking is crucial for retention as well as keeping track of salient points (it&#x27;s all in a onenote notebook, so I can find something relevant again even if I don&#x27;t recall the particular book it was in).<p>What I wish existed was a sort of wikipedia for learning, keeping track of every subject &#x2F; technology and giving a reference to the best learning materials in a crowd-sourced way. Right now learning sites focus on their own content, but it&#x27;s not always the best, and it is not crowd-sourced. The best hits for learning resources are usually stackoverflow or quora links, but neither are the right format for such a thing.
评论 #14639336 未加载
评论 #14639524 未加载
评论 #14641270 未加载
dizzystar将近 8 年前
I think the question is a tad ambiguous. Are you talking about learning from scratch or building on what you already know?<p>The common thread in both is mastering the foundations. I know this is controversial, but I believe in book learning before playing whack-a-mole around the internet, simply because you aren&#x27;t at the point where you can differentiate the signal from the noise.<p>After the foundations, I learn on a need-to-know basis, which is generally more applicative: if you are trying something that&#x27;s never been done before, then the perspective is top-down instead of bottom-up.<p>I don&#x27;t use notes, todos, online tracking, or whatever goal-oriented resources people are using. I don&#x27;t see learning as a goal-oriented exercise so much as an accidental accumulation of knowledge. Knowledge gained best from a genuine interest in the subject at hand, which often leads into a genuine struggle to learn some topic, either because it is genuinely difficult or it something you find boring but necessary to learn to continue.<p>I&#x27;m an autodidact, and really, the best advice I can give is learn yourself first. Be absolutely honest with yourself about your interests, your limitations, and the answers, via a long journey of trial and error, will eventually come to you. The fact is, we aren&#x27;t all able to fit into a mold, and no matter how much advice you read... advice reading is pretty much worthless without a grounding on failure.
cher14将近 8 年前
I made a tool to help making notes while studying. Aim was to make something which allows you to:<p>Add text and images quickly, so you can type along with a lecture, or by copying and pasting text, html or pdf from documents you are reading. At the same time it must be easy to add and scale images.<p>Tidy up and restructure your note. Just typing your notes is not enough. You also need to think about it, and restructuring or tidying up your notes is a great way to do that. The tool you use should not make you redo or rewrite the notes completely. It should just be click and dragging without messing up the formatting.<p>Show structure in multiple ways (colors, sizes, shapes, connections etc). Making notes in a text editor is limited. You need something that does not just scroll up and down, but also left and right. Something that looks more like a diagram or a mindmap, to which you can also add connections, labels, arrows, and colors. Having notes that look more like infographics helps me alot to remember or retrieve what is in them.<p>Have overview and detail in the same map without to much clutter. I myself like having notes on a topic in one document, but it must still be easy to show the structure and the details.<p>I am pretty pleased about how all this works in Breakdown Notes (my project). If you would like to check it out I suggest you take a look at an example map about english grammar: <a href="https:&#x2F;&#x2F;www.breakdown-notes.com&#x2F;makemap&#x2F;load&#x2F;grammar" rel="nofollow">https:&#x2F;&#x2F;www.breakdown-notes.com&#x2F;makemap&#x2F;load&#x2F;grammar</a>
评论 #14639159 未加载
GregBuchholz将近 8 年前
You might like:<p><a href="https:&#x2F;&#x2F;www.coursera.org&#x2F;learn&#x2F;learning-how-to-learn" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;learn&#x2F;learning-how-to-learn</a>
评论 #14638259 未加载
评论 #14638602 未加载
jvanloov将近 8 年前
Doing.<p>I pick a project that interests me at some point; currently &quot;I&#x27;d like to have an internet music player that sits on my cupboard and doesn&#x27;t require my tablet&quot;.<p>Then:<p><pre><code> * decide on platform (CC3200, because it has wifi, enough processing power, and I happened to have one) * build something that decodes an MP3 stream (investigate, pick Helix as the decoder, make it run on the CC) * think about hardware (DAC, amplifier) * think about enclosure (wood, how to do front panel) </code></pre> I knew next to nothing about many of these things when I started, and I&#x27;m making lots of mistakes along the way, and I won&#x27;t become an expert in any of these things, but the overall goal&#x2F;&quot;target&quot; provides a guide to decide what to learn next. A search engine then helps me find the resources I need.<p>For tracking my progress, I&#x27;ve started to use Emacs org mode.
评论 #14639703 未加载
goshx将近 8 年前
I usually focus on one goal at a time and dedicate all the time I have available to it.<p>The key is that I must have something I want to accomplish as a reason to learn something new. For instance, if I just decide to learn a new programming language, I will lose interest very quickly. But if I decide I wan&#x27;t to create a new app, I can then use that same programming language for the job and I will consume every information I can in order to make it happen. Usually using google and youtube to find the resources. I start from the basic I need to start and go on from there.<p>I&#x27;ve used that method to learn new programming languages, surf fishing, technical analysis&#x2F;investments in the stock market, grow plants, electronics, cooking, etc.<p>TLDR; focusing on a project makes it easier to learn as you need the information in order to make it happen
评论 #14638768 未加载
jasode将近 8 年前
<i>&gt;Do you focus on one topic&#x2F;book&#x2F;course&#x2F;project&#x2F;article at a time, or split your time between multiple things?</i><p>For me, I deliberately split across multiple topics&#x2F;books because my brain has different thresholds of concentration depending on time of day. The early mornings are best for more challenging subjects (e.g. math, deep learning algorithms, etc). At night, it&#x27;s easier to read softer topics like history and politics. I think it&#x27;s important to pay attention to your brain&#x27;s energy levels and when&#x2F;how it gets distracted. With that knowledge, you optimize your learning schedule around that.<p><i>&gt;- Do you use any tools to track your resources, todos, notes, or goals?</i><p>Since learning time is finite, I think it&#x27;s a important to put together a little curriculum of all the topics you want to learn. Prioritize them.<p><i>&gt;Are there any pain points you have while learning</i><p>Another piece of advice that nobody ever seems to emphasize (but I wish I had known early in life) is that there are topics that will be <i>a waste of time to learn</i>. In my case, I regret I spent hours on PowerBuilder, IBM DB2, and DOS batch scripting with VBScript. It doesn&#x27;t mean those skills are bad for others but a little research would have made me realize there were other more important skills to spend precious hours on. (Time spent learning X is time not spent on learning Y.) The tldr is that people will often evangelize things for you to learn that you really don&#x27;t need to learn. They have good intentions with their advice but they don&#x27;t know the complete picture of your life&#x27;s goals.
评论 #14639123 未加载
ellius将近 8 年前
I read whatever interests me until it doesn&#x27;t interest me any more, and I quit reading things that don&#x27;t interest me. I don&#x27;t say that to be flip—it&#x27;s actually what I do, and it has allowed me to consume an enormous amount of material over the years. The only trick to this method is not to confuse difficulty with boredom. There are times when I learn to code, for example, or when I read about obscure financial wizardry or mathematics, where my mind drifts and it <i>feels</i> like boredom. But the reality is just that it&#x27;s hard. Sometimes when things are hard you do have to change your track until you&#x27;ve developed prerequisite knowledge to come back to it. Just make sure in those instances not to decide the thing was boring because you couldn&#x27;t handle it on the first go.
themodelplumber将近 8 年前
&gt; focus<p>For casual learning, I split my time across various subjects and do whatever feels interesting. For serious learning like a certification, I set goals based on e.g. time spent studying.<p>&gt; Tools<p>I use plain text files, either a single file or a folder full of them. I try to develop a sort of learning system for the subject in question.<p>&gt; Pain points<p>I was too reliant on outside sources before and did not spend enough time creating &quot;my own&quot; knowledge through hypothesis, testing, measuring, etc. Nowadays I realize I have very little need for most of my books; it&#x27;s more fun to see what I can come up with on my own.<p>I also wrote up a &quot;learning ladder&quot; that ranks various forms of study; for example before opening a book or a browser tab on a topic I will check to see if there&#x27;s a short YouTube video available. After that I might look for an ELI5 on Reddit. Then eventually you get to books.<p>While that may seem obvious, it represents my taking responsibility for my own learning and I am a more motivated person because I created the ladder by myself and continually work on it. I have hundreds of these systems in areas from learning to fitness to work operations to finances, etc. When I go on vacation it&#x27;s the #1 &quot;book&quot; I enjoy reading and pondering (I save all the .md files to Dropbox for reading on my phone).
sghiassy将近 8 年前
I&#x27;m surprised nobody has mentioned Anki cards. It&#x27;s a scientifically proven method to learn any topic through spaced repetition.<p>Any time you find some thing you want to learn - add a card to Anki. Anki will make sure you never forget and truly understand the topic.<p>I highly recommend AnkiApp: <a href="https:&#x2F;&#x2F;www.ankiapp.com" rel="nofollow">https:&#x2F;&#x2F;www.ankiapp.com</a><p>Or: <a href="https:&#x2F;&#x2F;apps.ankiweb.net" rel="nofollow">https:&#x2F;&#x2F;apps.ankiweb.net</a>
评论 #14645282 未加载
danielbigham将近 8 年前
I work in the field of natural language understanding and in the last few years I&#x27;ve figured out how to use that very advantageously wrt learning.<p>Here&#x27;s the approach I use:<p>- Every time you come across a new term or concept, you create a new &quot;notebook&quot;&#x2F;document. That&#x27;s right, one notebook per concept. The title of the notebook is the name of the concept.<p>- You create a summary for the concept using bullet points. What you&#x27;re trying to maximize with this set of bullet points is the speed at which, in the future, you can re-read them and achieve a similar brain state to what you had when you originally learned the concept.<p>- You can then obviously have extended notes below that where you go into more detail.<p>- Then, crucially, you create something akin to a regex that will allow you to quickly and unambiguously look the concept up in the future. If you just learned what a rectified linear unit is, your pattern might simply be:<p>rlu | (rectified linear unit)<p>- You then have a hotkey on your computer -- I use Ctrl-Q, that brings up a text box where you can type the name of the concept you want to bring up (ex. &quot;rlu&quot;). When you press ENTER, it doesn&#x27;t give you search results if there&#x27;s an exact match, but instead directly opens the document and makes it instantly viewable &#x2F; editable.<p>- As your concept graph starts to grow, you have links within your notebooks to related concepts as they&#x27;re referenced.<p>- Each time you read an article that is important to your understanding of a concept, you quickly open up that notebook and add that article, and perhaps one or two bullet points that contain the key things you learned that expanded your sense of that concept.<p>- This same system can be used for more than learning text book information. You can use it if your a project manager to keep tabs on the millions of things you have to juggle, you can have notebooks for people, for lists, and you can have &quot;regexes&quot; for &quot;programs&quot;&#x2F;scripts, for web pages, for files&#x2F;directories, etc, etc.<p>- More general than &quot;regexes&quot; are context free grammars. In this context what that means is the ability to have named &quot;subroutines&quot; for your regexes. For example, if you end up using RLU as a sub-part of a lot of other notebook regexes, then you might define $rlu to be a short form for (rlu | (rectified linear unit)).
hypertexthero将近 8 年前
Work on projects that you are passionate about. Work together with peers, get help when you are stuck and help when they are stuck. Be playful, do not be afraid of making mistakes and do not focus on perfection.<p>I warmly recommend Pragmatic Thinking and Learning by Andy Hunt and Alex Martelli’s lecture “Good Enough is Good Enough!” from EuroPython 2013: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=gHG9FRSlPxw" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=gHG9FRSlPxw</a><p>More notes on learning: <a href="https:&#x2F;&#x2F;www.simongriffee.com&#x2F;what&#x2F;learning&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.simongriffee.com&#x2F;what&#x2F;learning&#x2F;</a>
edanm将近 8 年前
Depends on what I&#x27;m trying to learn, but for things like Math and other technical topics, I&#x27;ll try to find textbooks&#x2F;video lectures, go through them, while adding them to Anki.<p>If you don&#x27;t use Anki - you really, really should. I&#x27;d be lost without it - it&#x27;s one of the greatest life-hacks I have. Without it, I don&#x27;t really feel like I&#x27;ve learned something &quot;for life&quot;, only just for a moment.<p>Also, reading multiple textbooks on the same topic is in general much better than just reading one, preferably in slightly increasing complexity.
评论 #14640887 未加载
nikivi将近 8 年前
I actually started using a search engine I built for choosing what and how to learn things.<p><a href="https:&#x2F;&#x2F;learn-anything.xyz&#x2F;" rel="nofollow">https:&#x2F;&#x2F;learn-anything.xyz&#x2F;</a><p>As for learning I usually mind map concepts I thought were interesting and then review the mind maps and create flash cards. It depends on the content however.<p>If it is something actionable like learning a programming language, I try to use the knowledge straightaway and build things. :)
评论 #14638336 未加载
neovive将近 8 年前
It depends a lot on the topic. For coding&#x2F;tech, I find working through an &quot;organized collection&quot; of video tutorials by rewriting the code locally and taking notes along the way, works very well. It&#x27;s time-consuming, but I tend to retain more concepts after watching, listening and practicing, since it engages more senses (vision, sound and touch).<p>Prior to learning a new topic, I try to make mind&#x2F;concept map of the material based on my initial understanding from reading articles or browsing books, docs and examples. It also helps to have an end goal or project in mind to connect concepts to actual outcomes. You can also try explaining what you just learned to a non-technical person; forcing you to &quot;make sense&quot; of a concept while converting to non-technical jargon.<p>Overall, it just takes time. After years as an autodidact, I haven&#x27;t found many short cuts around hard work. There are many great techniques out there--some will work for you and others won&#x27;t--but consistent practice is usually the underlying theme.
munificent将近 8 年前
1. Read a little until I&#x27;m itching to try to apply what I know.<p>2. Try it.<p>3. Reflect on what went wrong.<p>4. Go to 1.
lojack将近 8 年前
Usually, when learning something, I have a project to work on to apply my knowledge to. I find that I&#x27;ll start by searching for some good resources. This is typically books, blogs, subreddits, screencasts, awesome-X, etc. Then I&#x27;ll spend an hour or two a day learning from whatever resource I&#x27;m using, and spend the rest of my time working on the project, applying what I&#x27;ve learned.<p>Sometimes I don&#x27;t have a project to work on, but I&#x27;m interested in something. For these things I&#x27;ll push to use on new projects at my company, and will read a book or two about them prior to convincing people its a good idea. This isn&#x27;t always ideal because the knowledge doesn&#x27;t really stick without applying it to projects, but it scratches my itch to a certain extent.
matthewvincent将近 8 年前
My favorite way to learn a new topic (which consistently works well for me) is to read several books about the same topic back to back.<p>I find that if I read three books by different authors on let&#x27;s say React for example, which are all meant to cover the basics, I learn much more than by reading one book three times. The difference in the authors voices and inevitable variability of emphasis and style throughout, really helps me stay engaged and pick up the things I might have missed in the last book.<p>I&#x27;ll usually do this first, then move on to tutorials and deep dive type books which are mostly a breeze by the time I get to them because of the very solid fundamental foundation provided by the initial book set.
hyfgfh将近 8 年前
Setup<p>[ ] Define a subject, and a goal<p>[ ] Get resources<p>[ ] Create a topic list<p>[ ] Filter the resources and assign resources to the topic list<p>[ ] Think about possible projects<p>Study - For each topic<p>[ ] Collect data in a reference note<p>[ ] Create flashcards<p>[ ] Search and create questions &#x2F; exercises<p>[ ] Explain the subject in a piece of paper (Feynman&#x27;s technique)<p>[ ] Apply the knowledge in quizzes and practical projects<p>[ ] With notes, explanation, quizzes and flashcards create a KL<p>-----<p>- Do you focus on one topic&#x2F;book&#x2F;course&#x2F;project&#x2F;article at a time, or split your time between multiple things?<p>&gt; I focus on topics, not resources. But I split my time into multiple disciplines.<p>- Do you use any tools to track your resources, todos, notes, or goals?<p>&gt; Yes. Evernote(Premium)<p>- Are there any pain points you have while learning, or are there any tools you wish existed?<p>&gt; Yes, a good markdown &#x27;platform&#x27; compatible with Linux&#x2F;Windows&#x2F;Android
评论 #14643394 未加载
closed将近 8 年前
Other people have covered in detail different approaches to learning, so I figured I&#x27;d mention a weird thing that&#x27;s been helpful for me, in case it&#x27;s useful.<p>While learning, I try to split off a little piece of myself into a sort of adversary, whose job it is to get me to do basic problems &#x2F; tasks, in order to demonstrate that I don&#x27;t remember as much as I think I do.<p>This might happen in the form of spending an hour one morning leafing through older material, and setting aside things for me to solve &#x2F; re-prove. It&#x27;s pretty simple, and I take some kind of perverse joy in finding areas where I thought I would remember much better.
jgamman将近 8 年前
Two classes of problems: something related to what I&#x27;m already well versed in is different to something that I&#x27;m a noob.<p>For noob stuff, I make and quiz myself with physical cue cards. The act of writing the card and the answer seems to be 75% of the memorisation i need but i forget quickly... related to that, i write myself &#x27;guides&#x27; that I wish i had read weeks&#x2F;months before when i didn&#x27;t know anything. something about writing the subject down as if i&#x27;m teaching it let&#x27;s me anchor the beginning at a level that i can treat as a given and then baby steps all the way to the end. it&#x27;s a bit Feynman-ish in that it really does force you to acknowledge when you&#x27;re skipping over something and just rote-memorising.<p>Also, treat black boxes as a known unknown that you can always go back to. You often have to link up a dozen black boxes to get anywhere and if you go down each rabbit hole, you&#x27;ll never get to the end. Better to play with them, get a feel for how they are behaving and dive in if&#x2F;when they aren&#x27;t doing as expected.<p>Quiz yourself. After a while it gets quite relaxing to glide over problems that stumped you when you first thought your should write them down. helps remind you that you _are_ learning.<p>Lot&#x27;s of books&#x2F;articles etc covering the same topic and re-reading them. You&#x27;re different each time and you never know when you are _ready_ to learn that particular thing.
Top19将近 8 年前
I would look at Timothy Kenny&#x27;s courses on Udemy for a really good explanation on this.<p>There is also a book called &quot;Cognitive Productivity&quot; by a professor at Simon Fraser university I recommend you check out.<p>Sadly there is not a lot on this subject. A good example of this is the fact that right now, the only traditionally published book on this topic is literally called &quot;How To Read&quot; and was published in the 1940&#x27;s.<p>- - - - -<p>To directly answer the question though, you should: 1. Read a book and use a pen instead of a highlighter. This allows you to not only underline but also write in the margins insights 2. Type up your raw notes 3. Take your raw notes and the synthesize them into a higher level summary of the main points 4. THEN, THE MOST IMPORTANT STEP, take your synthesized notes and create a &quot;concept map&quot; of them, something visual. Mind Maps are a good example of this, but they&#x27;re only 1 type of concept map. This is extraordinarily easy to remember, and ideally you want to create a visual diagram for each book you read. These pictures or patterns are incredibly easy (comparably) to store in long term memory than recalling say 3 pages of notes. Also they are far easier to draw and convey to another person.
beat将近 8 年前
Try to get learning working in multiple aspects of your brain at once. One of the best &quot;learn about learning&quot; lessons I ever had was studying jazz theory. My teacher used a four-way method of learning chords - say the name of the chord, visualize it on the keyboard, feel the shape your hands make to play the chord, and listen to the sound of the chord. I&#x27;ve applied this sort of approach to all sorts of skills since then.
WheelsAtLarge将近 8 年前
Here&#x27;s a quick clip on learning and knowledge from Richard Feynman one of the greats in physics. I suggest you watch the whole video, it&#x27;s good but at the last minute or so he summarises learning and knowledge in his view. It&#x27;s GOLDEN!!<p>Here it is:<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=dQai9QikTBI&amp;feature=youtu.be&amp;t=739" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=dQai9QikTBI&amp;feature=youtu.be...</a>
StevenForth将近 8 年前
My learning style is Abstract, Connected, Historical, Written, Social<p>This means I need to understand the theory first and work down to practical examples (many people learn the other way around but not me). I need to understand how one set of abstractions or theories connects to others that I may understand better. I like to go back to origins, understand motivations, follow the evolution, and see what paths are thought to be dead ends (like machine learning was thought to be a dead end by many people around 2005). I only really understand things if I write them down and preferably write about them. I learn best when I learn with other people, my wife jokes that when I want to learn something I start a company.<p>Given my learning style, yes, I need to be learning several things in parallel, helps with the connections. I also tend to read too quickly so having three or so learning themes at any time helps me to slow down and reflect.<p>I have been tracking my learning in granular detail for about ten years using Excel. I am also tracking it on TeamFit.co Every year I build a learning plan (goals, resources, evidence) and track against that.
agitator将近 8 年前
I take the most practical approach possible, because it allows me to get to my goals as fast as possible.<p>Usually, I want to learn something because I want to do something with that knowledge. So as an example, if I wanted to develop an app on a platform or in a language I have never used before, I would start by reading some general knowledge about the language or platform, to get my mind going. Maybe grabbing a book or finding some good online basic tutorials. I usually never finish the books, because I often get to a point where I understand enough to start asking specific questions that I need answered in order to make progress on my project. So I stop with the general knowledge, as I have enough understanding to actually start implementing things, and I start researching the specific questions I have for making progress on my app. And I just start executing and working on it, and researching answers as I go. This way, I learn as I go, and I keep myself motivated by actually having deliverables at the end of each &quot;lesson&quot; I set for myself.
amorphid将近 8 年前
I learn best by doing. I imagine how something might work (I am usually wrong!), and try building it. When I discover that I need to learn something, I try to communicate what I&#x27;m trying to build, why I am trying to build it, and where I got stuck. Then I ask around a bit (StackOverflow, Quora, Reddit, coworkers) to see if someone has insight how I might succeed. The depth and quality of answers I receive hint at the quality of my question, or the familiarity others have with the problem I am solving.<p>If I get no answers, I usually grind away at the problem until I lose interest, can ask a better question, or make enough progress that I can answer my own question.<p>Useful answers include offering:<p>- a suggestion to use alternative solution with acceptable trade-offs<p>- a different approach to how I solve my problem<p>- a specific answer to the question I asked<p>- to collaborate with me in finding a solution<p>- a supportive comment (the cutting edge can be lonely!)<p>- understanding about a trade-off or consequence of how I am approaching the problem<p>- a suggestion on improving the quality of the question<p>- a referral to someone who knows the answer
garysieling将近 8 年前
I built a tool to hep me find good talks, <a href="https:&#x2F;&#x2F;www.findlectures.com" rel="nofollow">https:&#x2F;&#x2F;www.findlectures.com</a>. I&#x27;ve been curating some of the best of these and sending them out in an email (<a href="http:&#x2F;&#x2F;www.findlectures.com&#x2F;emails" rel="nofollow">http:&#x2F;&#x2F;www.findlectures.com&#x2F;emails</a>), which has forced me to push a lot further exploring available topics.<p>I split my time between multiple topics, generally aiming for variety over depth, and collect recommendations for books &#x2F; speakers from various places (friends, Hacker News, the evening news, etc).<p>I&#x27;ve found that having multiple simultanous books or project s is helpful, because they can interact in interesting ways E.g. one author has accidental insight into the topic of a second book, for instance, or a footnote to a problem in one project solves a major problem for the other project.
startupdiscuss将近 8 年前
Here is the key insight (from, in my mind, Gilbert Ryle originally):<p>There is a difference between knowing that, and knowing how.<p>When you want to learn that something is the case, read.*<p>When you want to learn how something is done, do.<p>If you want to learn how to do something, and you are not doing the thing, then you might find yourself not learning.<p>* You can take notes, summarize, and repeat.
ssivark将近 8 年前
In my experience, understanding theoretical concepts is challenging because the process of learning is often not legible [0].<p>What has worked for me is having multiple periods of immersion into a concept or topic, while referring to multiple sources, with notes [1] summarizing small bits as I learn them. I keep refactoring those notes as my understanding grows, to include coherent maps of larger and larger chunks. On short time scales, my learning is not measurable, but experience indicates that my understanding grows over time. Looking back, my periods of immersion range from a few hours&#x2F;days, while I tend to revisit topics every few weeks&#x2F;months. I guess this falls under the umbrella of spaced repetition methods.<p>Since my interests and pursuits are very diverse, and I&#x27;m seldom &quot;finished&quot; with something, I don&#x27;t like the psychological weight of todo lists [2]. I maintain lists of interesting stuff [3], and several hundred browser tabs [4] but they&#x27;re mostly not things to be checked off, and languish peacefully for long periods. That said, I&#x27;m on the lookout for better knowledge&#x2F;idea management workflows and software. What I currently use is organically grown, and very messy.<p>That was for theoretical understanding. Practice helps, for things one &quot;does&quot;.<p>---<p>[0]: Venkatesh Rao: A Big Little Idea Called Legibility -- <a href="https:&#x2F;&#x2F;www.ribbonfarm.com&#x2F;2010&#x2F;07&#x2F;26&#x2F;a-big-little-idea-called-legibility&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.ribbonfarm.com&#x2F;2010&#x2F;07&#x2F;26&#x2F;a-big-little-idea-call...</a><p>[1]: Markdown files, or scribbles&#x2F;diagrams on scratch paper<p>[2]: Scott Hanselman: It&#x27;s not what you read, it&#x27;s what you ignore -- <a href="https:&#x2F;&#x2F;www.hanselman.com&#x2F;blog&#x2F;ItsNotWhatYouReadItsWhatYouIgnoreVideoOfScottHanselmansPersonalProductivityTips.aspx" rel="nofollow">https:&#x2F;&#x2F;www.hanselman.com&#x2F;blog&#x2F;ItsNotWhatYouReadItsWhatYouIg...</a><p>[3]: Zim Wiki notebook -- <a href="http:&#x2F;&#x2F;zim-wiki.org&#x2F;manual&#x2F;Help&#x2F;Notebooks.html" rel="nofollow">http:&#x2F;&#x2F;zim-wiki.org&#x2F;manual&#x2F;Help&#x2F;Notebooks.html</a><p>[4]: I &lt;3 Firefox and the TabGroups extension
aalhour将近 8 年前
I have different processes and strategies depending on what I am learning and how familiar I am with a topic. For example, if I would like to explore a brand new topic that I have no clue about then this is how my thought process looks like:<p>1) Look for verticals&#x2F;lists of resources. These exist in all fields, awesome-lists are just an engineering example, universities keep lists of open courses, list of book recommendations or lists of open-sourced books.<p>2) Look for key figures in that field. PhD Researchers, Conference Presenters, TEDx Talkers, Professors, Founders of Companies in that field. Follow their pages&#x2F;blogs&#x2F;twitter accounts and ask them what resources do they recommend for beginners. Compile your own vertical of resources based on cross matching the resources here with the ones you found in other verticals.<p>3) Look for courses, new ones are usually offered on MOOC Platforms, archived ones can be found on university websites. Check the reviews of such courses and pick the most beginner friendly one. Depending on the field, if it&#x27;s not technical then you will have to look for courses elsewhere, for example: The Great Courses.<p>By now you should know, roughly, the best resources (Books, Articles and Courses) and how to find more (verticals and people in that field).<p>4) Learn the terminology. One way to learn the terminology of a field is to pick the book you decided is best to start with using the previous 3 steps, open it and go to the index section, read the index and start googling terms as you come across them, for example: If I am exploring Data Engineering and I come across the word or term &quot;stream processing&quot; then I will start googling that term. Familiarise yourself with as much terms as possible.<p>5) Commit to reading at least 1 book, going through 1 course and trying to apply as much of what you learned as possible. Technical subjects are the easiest to apply this step to, since you can start a side-project at anytime.<p>P.S. you can always ask for guidance in this, you don&#x27;t have to repeat all the steps for all fields, for example, you can submit an &quot;Ask HN&quot; post asking for resources about X topic or a question on a related Subreddit such as: &#x2F;r&#x2F;PostgreSQL.<p>Best of luck!<p>EDIT: typo
clarry将近 8 年前
Learning what? Welding? Practice, practice, practice.<p>I focus on the thing that I&#x27;m most interested in at the moment. That is rarely an entire book, though I&#x27;ve done that too.<p>If I feel like I need to take notes to keep track of what&#x27;s going on, I will do so. I might also leave a note about things I&#x27;ve skipped or glossed over and should want to (re)visit again later.<p>The biggest pain point is usually scattered information, or information that assumes some background you don&#x27;t have and doesn&#x27;t give you enough clues to fill in.
dyarosla将近 8 年前
I think this question can be best answered by first looking at what research tells us about learning (otherwise your question attracts only anecdotal responses which will be less universally applicable). Here&#x27;s what research says, followed by how it applies to your questions in particular.<p>1) Mastery based learning is generally the most effective process (learning each axiom of a topic to 100% before moving onto the harder topic)<p>2) Spiral based learning is an effective add-on to mastery based to keep you remembering the things you&#x27;ve learned (coming back to a topic just at the point of forgetting keeps you retaining knowledge)<p>3) The content you learn off of (video, text, etc) has different attributes which may correlate to better transferring of knowledge: Shorter videos, hand-written visuals, enthusiastic voice, have all been shown to correlate with better learning outcomes.<p>4) The motivation you have for the topic you&#x27;re learning and how much closer it exists to intrinsic&#x2F;extrinsic motivation dictates how well you&#x27;ll absorb a topic. The closer to intrinsic, the more effective learning will be. Project-based learning generally falls into this category: projects that interest you motivate you to learn more.<p>Now with all of that in mind, to answer your questions:<p>&gt; Do you focus on one topic&#x2F;book&#x2F;course&#x2F;project&#x2F;article at a time, or split your time between multiple things?<p>(1) would suggest that you should not split your time, at least at first, unless you are trying to find a better explanation (3)<p>&gt; Do you use any tools to track your resources, todos, notes, or goals?<p>Most of the suggestions sound like meta work. I wouldn&#x27;t suggest tracking todos so much as perhaps writing down the things you&#x27;ve learned to prove to yourself of (1) mastery or to come back to later for (2) spiraling.<p>&gt; Are there any pain points you have while learning, or are there any tools you wish existed?<p>Sounds like you are trying to make a tool to help people learn&#x2F;track learning at a high, abstract level. Because there is no one right solution to everything because of (3) and (4), whatever tool you create may not actually help anyone unless it&#x27;s more domain-specific and less abstract.
JeSnuster将近 8 年前
Head. Wall. Repeat.<p>Persistent effort. Work it out yourself. Don&#x27;t just read it, think it, play with the concept until you can generate examples and explain them to others.
VoodooJuJu将近 8 年前
Several comments mentioned that the best way to learn is by doing - applying the knowledge. How would you go about learning-by-doing something like particle physics or advanced chemistry without access to labs? Are you reduced to creating homemade soap and rote memorization of theory? Could you ever make a meaningful contribution or get a job as an autodidact in either field?
评论 #14639998 未加载
pgbovine将近 8 年前
If you&#x27;re doing needfinding for a project idea to enhance learning, my suggestion is to focus on a single DOMAIN of learning first rather than trying to make something to help learning in general, since it&#x27;s such a vague and broad problem. e.g., &quot;how do you learn to do your taxes?&quot; or &quot;how do you learn basic home maintenance?&quot;
Dowwie将近 8 年前
I&#x27;d like a desktop app that, when engaged, would monitor browser usage and lightbox my screen after 3 minute of browser use with a simple question &quot;Are you solving a problem or taking a break?&quot;. If I choose &quot;taking a break&quot;, I&#x27;d like a 1 minute countdown timer engaged with a suggestion to focus on breathing instead.<p>Please? Pretty please? :)
sunwicked1将近 8 年前
I wrote a summary of a Coursera course, which I highly recommend, &quot; Learning How to Learn &quot; and a book &quot; Deep Work: Rules for Focused Success in a Distracted World &quot;. You can find the first draft here <a href="https:&#x2F;&#x2F;goo.gl&#x2F;mfNhp1" rel="nofollow">https:&#x2F;&#x2F;goo.gl&#x2F;mfNhp1</a>
ivm将近 8 年前
No videos, taking notes in Scapple, searching for the most simple explanation in multiple articles at the same time, implementing what I need as soon as possible.<p>Focusing if the topic I learn is focused itself or not focusing if it&#x27;s very broad.
mindcrime将近 8 年前
I use a mixture of approaches, but w&#x2F;r&#x2F;t development I&#x27;d say one of the main approaches I use is to just start building something that requires me to learn something new, and then learn as I go. The actual learning is a mix of trial-and-error (in the case of programming), reading books, watching videos, taking classes, reading papers, etc.<p>For non-development topics (say, math) it&#x27;s again a mixture of reading books, watching videos, working exercises, etc. And I try to attack problems from multiple angles, by using different books and resources. Just to illustrate with an example:<p>Last night I started working through <i>How To Prove It</i> by Daniel J. Velleman. I got to the Chapter 1 exercises, and hit a point where I needed to know if a given number was prime or not in order to verify my answer. It was a number larger than the list of primes I have memorized, and I didn&#x27;t feel like testing all the possible factors by hand, so I just fired up R on my laptop, loaded the matlab library and used the isprime() function.<p>Later in those same exercises I got to a point where I had an answer, but wasn&#x27;t sure if it was correct or not, so I just googled until I found a guy&#x27;s blog where he posted his answers to the same problems. My answer matched his, so I felt fairly confident that it was right (of course, we might have both made the same mistake).<p>Had I not found that guy&#x27;s blog, my plan was to post a question to math.stackexchange.com or one of the reddit.com math forums, asking if somebody could verify my answer.<p>So I started with a book, and eventually used a number of other resources as part of my overall learning experience (a scientific calculator was mixed in there somewhere as well, before I pulled out R).<p>This might lead one to ask &quot;well, how did you learn R?&quot; First of all, I wouldn&#x27;t yet rank my R skills very high, but to the extent that I know some R, it was from (again) a mix of sources:<p>1. A bunch of Coursera classes, including several of the ones in the Johns Hopkins Data Science track, and the Duke &quot;Probability and Statistics with R&quot; track.<p>2. Working through parts of several R books, including <i>R In Action</i>, <i>Learning R</i>, <i>Using R For Statistics</i>, etc.<p>3. Trial and error, playing around, using the built-in docs, etc.<p>That&#x27;s kinda it. I take notes using pencil and paper, sometimes a plain text file, occasional an OpenOffice Writer document, and sometimes a wiki (I keep a MediaWiki instance running locally).
sevensor将近 8 年前
For self-study, I like to dip my toe in the water a few times over a long stretch of time (I&#x27;ve got lots of other things on my plate), and if I decide I&#x27;m interested in going further I&#x27;ll dig into a real project.
elchief将近 8 年前
I read books backwards (by chapter) as the end is where the interesting stuff is. I generally read only the section titles and first sentence or two of paragraphs<p>I find it helpful to type examples as I read too (for programming stuff)
cgag将近 8 年前
Multiple books, rotating between them relatively quickly (interleaving), usually 20 minutes.<p>Make anki cards for key points.<p>If I&#x27;m actually dedicating time to studying that&#x27;s how I do it, haven&#x27;t had that session in a while though.
viiralvx将近 8 年前
For programming languages.<p>1) Read the documentation 2) Sometimes, do a tutorial. 3) Build a small project and ask questions via Twitter&#x2F;IRC&#x2F;Slack along the way.
pavlakoos将近 8 年前
I need to write things down myself, then read them over and over. It doesn&#x27;t work if I read over and over what somebody else wrote.
killjoywashere将近 8 年前
<p><pre><code> def learn(thing, max_time=0, max_attempts=1): while run_time &lt; max_time: while attempts &lt; max_attempts: attempts =+ 1 if do(thing) = 0 break else learn(thing) </code></pre> Always set a time limit or a maximum number of attempts. Default to at least try (you may already know it).<p>Edit: I don&#x27;t write code very much, and certainly don&#x27;t claim to earn my living on it.
评论 #14638915 未加载
navyad将近 8 年前
- pick a topic.<p>- find reliable resource&#x2F;book to read from.<p>- read and make notes.<p>- refer notes to make things stick.
manikiran24将近 8 年前
I am a newbie and want to learn angular js, where can i learn angular the easiest way?
learngr8now将近 8 年前
i use a text (word file) template i made - if you want to see, visit<p>blondyn.com
megamindbrian将近 8 年前
I use the app I made studysauce.herokuapp.com for memorization. Google calendar for tracking progress and lots of personal analytics. I spend about a day on little set up projects such as connecting to Watson, or adding up calendar events using Google API, or learning the basic of some new framework. I&#x27;ll do one of these little projects 1 to 4 times per month. Reading other people&#x27;s research is a good starting point for me. I wish API&#x27;s weren&#x27;t so expensive. That is cost prohibitive of my turning a little app I write in a weekend in to a product. No one wants to pay 30 dollars on top of my 20 dollar monthly expense. If my use case ends up costing more than about $5 per month, I try it out and then shut it down. Usually there is no output from my adventures except self-improvement, which is pretty disappointing, I&#x27;ll admit.