Is there any place a developer can go besides Google to learn what it is they need to learn? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:18:25Zhttp://stackoverflow.com/feeds/question/95862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee1Is there any place a developer can go besides Google to learn what it is they need to learn?Tim2008-09-18T19:12:34Z2009-08-03T12:50:21Z
<p>I'm not really asking about how programmers learn how to program. More about specific technologies. If I wanted to learn Hibernate, how do I know what I should know prior to Hibernate? Should I learn JPA before, during or after Hibernate? Is there a better solution to Hibernate? (And I'm not really looking for information on Hibernate specifically)</p>
<p>Maybe stackoverflow is the place to find these answers, but it seems like with the shear vastness of frameworks, apis, libraries, programming languages, platforms, and whatever other techie word you want to use, it takes an extremely long time to come up to speed on what technology to use, when and what you need to know prior to using it.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95872#958722Answer by Mostlyharmless for Is there any place a developer can go besides Google to learn what it is they need to learn?Mostlyharmless2008-09-18T19:13:29Z2008-09-18T19:13:29Z<p><a href="http://stackoverflow.com/">Stackoverflow</a></p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95879#958793Answer by Branan for Is there any place a developer can go besides Google to learn what it is they need to learn?Branan2008-09-18T19:14:12Z2008-09-18T19:14:12Z<p>I use Wikipedia to compare various technologies to copmlete a task, although it can be incomplete with regards to commercial closed-source frameworks (probably because fewer people have access to them).</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95884#958841Answer by Phunchak for Is there any place a developer can go besides Google to learn what it is they need to learn?Phunchak2008-09-18T19:14:40Z2008-09-18T19:14:40Z<p>go to sites like Coding Horror, Slashdot, Techcrunch etc and find out what people are talking about. Usually if something is popular it's probably something you might want to talk a look at.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95889#958893Answer by Darren Kopp for Is there any place a developer can go besides Google to learn what it is they need to learn?Darren Kopp2008-09-18T19:15:02Z2008-09-18T19:15:02Z<p>Sometimes the best way to learn is to just dig in to a framework. Sure, you could use someones wrapper API around something, but if there is something wrong w/ hibernate, then you wouldn't know what's happening.</p>
<p>And to answer "how do i know what i should know prior to hibernate", you don't, that's why you are learning. When learning about c++, started out with simple data types, but i didn't know about pointers yet, didn't need to, but i learned about them when i got there. Just gotta jump in and start playing around.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95907#959070Answer by mbelly for Is there any place a developer can go besides Google to learn what it is they need to learn?mbelly2008-09-18T19:16:20Z2008-09-18T19:16:20Z<p>A lot of the time the documentation and/or tutorial for any technology or project will mention what prior knowledge is assumed or useful.</p>
<p>So for example hibernate: <a href="http://www.hibernate.org/hib_docs/v3/reference/en/html_single/#tutorial-intro" rel="nofollow">http://www.hibernate.org/hib_docs/v3/reference/en/html_single/#tutorial-intro</a></p>
<p>"This tutorial is intended for new users of Hibernate but requires Java and SQL knowledge"</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95908#959080Answer by Guy Starbuck for Is there any place a developer can go besides Google to learn what it is they need to learn?Guy Starbuck2008-09-18T19:16:28Z2008-09-18T19:16:28Z<p>For me, the things that have helped my career and taught me what questions to ask are:</p>
<ol>
<li>Podcasts -- .NET Rocks, etc., which introduce and discuss new technologies and put them in context</li>
<li>Join your local users group, and stick around after the presentation to talk shop with the folks there; you can learn a lot just by hearing what other people are doing and what they are working on learning next</li>
</ol>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95911#959111Answer by jnorthrop for Is there any place a developer can go besides Google to learn what it is they need to learn?jnorthrop2008-09-18T19:16:38Z2008-09-18T19:16:38Z<p>Find a book on the subject and read it. Then email the author with additional questions. Most of these authors are more than happy to help especially if you've bought and read the materials they worked so hard to produce. </p>
<p>If that's still not enough for you, go to a conference covering the subject, if you can make it. Again you can meet many of the people responsible for maintaining and/or creating these technologies and I've found they are always willing to answer questions.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95925#959250Answer by Pete for Is there any place a developer can go besides Google to learn what it is they need to learn?Pete2008-09-18T19:17:31Z2008-09-18T19:17:31Z<p>Just look around online and start trying to use whatever tool/technology your trying to learn. As you try to learn one thing, you'll realize your lacking knowledge in other needed areas. at which point you can repeat the process of looking around for this new item you need to learn. </p>
<p>for example, maybe you want to learn Rails, so you start following rails tutorials, but you realize you suck at Ruby. so then you start to focus a bit more on the details of Ruby, then come back to Rails with a little more knowledge and continue on till the next roadblock. this isn't really totally correct, but you get the idea.</p>
<p>you won't always find a full guide of how to use everything. just give it a shot and work it out on your own if you have the time</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95951#959510Answer by Ryan Farley for Is there any place a developer can go besides Google to learn what it is they need to learn?Ryan Farley2008-09-18T19:19:45Z2008-09-18T19:19:45Z<p>There is an infinite number of things one could learn. Maybe a better approach would be to think of a project that interests you, or join an open source one, and then learn what you need to know to accomplish what is needed in that project. When you're done, pick a new project that might include new things not learned in the last project. </p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95961#959610Answer by Cyberherbalist for Is there any place a developer can go besides Google to learn what it is they need to learn?Cyberherbalist2008-09-18T19:21:06Z2008-09-18T19:21:06Z<p>As far as free sources are concerned, as a .NET programmer I like www.asp.net, and there are many others, such as the ASP.NET quickstart tutorials at <a href="http://quickstarts.asp.net/QuickStartv20/default.aspx" rel="nofollow">http://quickstarts.asp.net/QuickStartv20/default.aspx</a>, <a href="http://www.c-sharpcorner.com/" rel="nofollow">C-SharpCorner</a> is good, too, if you don't mind C#.</p>
<p>If you don't object to paying a little money, Lynda.com is a decent place. They have OK tutorials on all kinds of things, not just programming, and I got a decent grounding in Javascript using one of their tutorials. They are adding new things all the time, so if they don't have something on Hibernate now, they may later on. I think their basic rate is $25 per month, but you can just pay for one month and then soak up as many courses as you can find time for.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95972#959720Answer by sik0fewl for Is there any place a developer can go besides Google to learn what it is they need to learn?sik0fewl2008-09-18T19:22:27Z2008-09-18T19:22:27Z<p>Asking a more specific question will get your a more specific answer here. When I want to read up on something I usually head to Wikipedia and then Google.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/95987#959870Answer by Macka for Is there any place a developer can go besides Google to learn what it is they need to learn?Macka2008-09-18T19:24:03Z2008-09-18T19:24:03Z<p>The truth is none of us have the time to read everything we'd like to. So I let someone else do it for me!</p>
<p>The way I solve this is by speed-reading the web - aka. subscribing and reading to other peoples blogs.</p>
<p>Everytime I come across something I'm not familiar with I google it.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/96309#963093Answer by Munger for Is there any place a developer can go besides Google to learn what it is they need to learn?Munger2008-09-18T20:01:46Z2008-09-18T20:01:46Z<p>For specific technologies such as Hibernate, Java, JPA, LDAP (OpenLDAP in particular), Log4J, anything Apache: they all have wikis and/or forums associated with the product that are usually more helpful than a Google search for learning. Many even come with tutorials and you should try them.</p>
http://stackoverflow.com/questions/95862/is-there-any-place-a-developer-can-go-besides-google-to-learn-what-it-is-they-nee/1222186#12221860Answer by Ken Liu for Is there any place a developer can go besides Google to learn what it is they need to learn?Ken Liu2009-08-03T12:50:21Z2009-08-03T12:50:21Z<p>There are these things called "books" that are filled with all kinds of knowledge.</p>