Page Fault Programming / Parrot Programming - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:34:33Z http://stackoverflow.com/feeds/question/891419 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming 0 Page Fault Programming / Parrot Programming Steve C 2009-05-21T04:49:40Z 2009-06-23T05:43:09Z <p>In Podcast 53 of Stackoverflow, Joel and Wil Shipley mentioned a term called "page fault programming" or "parrot programming".</p> <p>In Joel's words: "The page faulting is I try doing something, I see something, maybe in a piece of sample code, I go to Google and I say "What is..."</p> <p>Basically, it's learning while you're doing, and doing the research when you need it, as opposed to learning from a book.</p> <p>In my experience, this happens a lot and I think this is similar to going for an exam and "winging it". The code you produce isn't stellar. It's usually copy and pasted and lacks good software architecture. However, it gets the job done as long as you know programming fundamentals (this applies to the test analogy too: you can pass if you know the bare minimum).</p> <p>My question is whether the SO community thinks this is a bad habit. Also, can it actually help you learn something compared to learning from a book? I'm thinking if it's something where a deep understanding is needed (ex: C++), then you're better off reading a book first. If it's just another MVC Framework and you're not producing production code, I would learn like a parrot.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/891457#891457 1 Answer by moobaa for Page Fault Programming / Parrot Programming moobaa 2009-05-21T05:06:19Z 2009-05-21T05:06:19Z <p>I'd love to learn by... well, "Learning": digging into a book, writing little bits of sample code, and generally immersing myself in Something New.</p> <p>But the harsh reality is that I'm not paid to do that; I'm paid to solve problems. Hence, you tend to learn by example; if you find something that solves your current issue, you use it.</p> <p>Now, it could be argued that a Smart Employer should allow you time to Learn, on the basis that the resultant in-depth knowledge would pay off in the long term. But I'd wager there's few hard numbers to support that viewpoint.</p> <p>Is it a bad habit? Maybe. But sometimes it's the only opportunity you've got.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/891497#891497 0 Answer by Cogsy for Page Fault Programming / Parrot Programming Cogsy 2009-05-21T05:24:21Z 2009-05-21T05:24:21Z <p>I'm all about "Parrot Programming" - although I don't care for the term.</p> <p>I find it difficult and quite boring to learn from a book without having a context for the solutions I find.</p> <p>Having seen some "more mature" colleuges fall behind in technical knowledge I personally don't think there is any other way than learn as you code.</p> <p>Given the vast number of languages and frameworks in the world, I challenge anyone to learn from a book, and then be the most effective programmer they can be without constantly learning new things, and of course keep it up for the duration of their life as a coder.</p> <p>This is how things work today. What's the point in having all the worlds information indexed and search-able if your just gonna try and memorize all of the relevant stuff before you need it.</p> <p>As for producing a good software architecture. You can't google the answer to your own unique project... At this point, you're going to need to be able to think for yourself and have some decent theory behind you. But this should be independent of the implementation anyway.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/891575#891575 0 Answer by idstam for Page Fault Programming / Parrot Programming idstam 2009-05-21T05:59:40Z 2009-05-21T05:59:40Z <p>Even if you take the page fault approach to learning you need to know enough about your task to be able to make the right questions. So learning things up front is still very viable, but I think you need to know less details by heart now than you did 10 - 15 years ago.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/1030743#1030743 0 Answer by Tore for Page Fault Programming / Parrot Programming Tore 2009-06-23T05:21:08Z 2009-06-23T05:21:08Z <p>its the only way to learn tbh.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/1030762#1030762 0 Answer by mquander for Page Fault Programming / Parrot Programming mquander 2009-06-23T05:33:29Z 2009-06-23T05:33:29Z <p>I'm not sure what the question is. Obviously actually understanding something is always preferable to having a superficial reference to it, but nobody has time to learn everything in the world, so we compromise.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/1030785#1030785 0 Answer by Jan de Vos for Page Fault Programming / Parrot Programming Jan de Vos 2009-06-23T05:43:09Z 2009-06-23T05:43:09Z <p>Of course you need to learn things up front. You have to have the knowledge to perform most of your tasks without having to go 'the parrot way'. However, you can't know everything, and there will always be situations in which you need to get something done which you don't know everything about, and you will have to use google and learn the bare minimum to get the job done. That is flexibility that a real professional <em>must</em> have.</p> <p>I always take this as an opportunity to learn more, later, though. Make the deadline, and then use the advantage you now have (you are 'into it') to learn as much as you can much quicker than when you did not have any reason to. Try to find out whether you really did the correct/best thing. Learn.</p>