## General Suggestions * You're here! Awesome! Learning to code is a great idea, and I hope these tips can help nudge you in a good direction. * This isn't gonna be quick, and it's not gonna be easy. Staying motivated is big. If you feel like you're losing steam, maybe there's a better approach. Think about your goals & motivations, and reflect on why it isn't fun. There's probably a way to fix that. I said it's not easy, but it *should* be fun :) * Keep focused on your **big-picture goals**. Be conscious of how what you're working on is going to facilitate those goals. * **Define some non-big-picture goals**. Tiny-picture. A big part of successfully building large coding projects is to split them into smaller chunks. Treat learning the same way. In a year, you'll learn WAY more from 52 tiny projects than 1 huge one. * Thinking of a project is tough, even just for learning. There's lots of lists online (search "beginner coding projects", "small coding projects", "Python coding projects"). But don't get too attached. Better to build something silly and useless than spend a week deciding what to build. * There's ***so many* free/cheap resources**, think twice before paying for books/materials unless you're really sure it'll move you forward in a direction you want to go. * There's lots of places online to ask for help, and lots of experienced programmers happy to help. * If you can, [write some code every day](https://johnresig.com/blog/write-code-every-day/). ## Sites to use/trust These will come up often when you Google for error messages / how to fix stuff. - **[StackOverflow](https://stackoverflow.com)** - Questions and answers about how to solve specific errors/problems in programming. Most programmers would be totally lost without this. When you're stuck, either SO already has the answer, or you can ask on SO and someone will help you figure it out. - **[Mozilla Developer Network](https://developer.mozilla.org)** - Really detailed documentation from Mozilla (they make the Firefox browser) on web programming (HTML, JavaScript, CSS). Bound to become relevant sooner or later. - **[GitHub](https://github.com)**: Code written by others. Read it, use as an example for your own work, see what the code for a full finished project might look like. Just don't get overwhelmed. There's a lot, it looks really diverse, not everyone's code is easy to read, and not all code is good. But programming is different from many other occupations because you can read for yourself the code that powers websites/apps you use every day, and Github is where you can do that. ## Reading * Getting your head in the right place / General beginner stuff https://www.reddit.com/r/learnprogramming/wiki/faq ## Interactive / Work ### JetBrains Academy I haven't tried these lessons, but [people say good things](https://www.reddit.com/r/learnprogramming/comments/gzqxre/that_free_jetbrains_academy_is_really_helpful/). Free until January 2021. https://www.jetbrains.com/academy/ ### codecademy Wide variety of courses, and I believe they have an interactive online thing for coding so you don't have to spend time installing things on your computer. Great to feel stuff out & try different things, but I think it doesn't dive deep enough on the details and doesn't explain why things work the way they do. https://www.codecademy.com/catalog/subject/all ### LPTHW I'm a fan of Zed Shaw's *Learn Python The Hard Way*. It's a whole course on Python, walking you through the basics to actually building your own working project. Here's the current version: https://learnpythonthehardway.org/python3/ The first 8 exercises are free, the rest $30. I've followed along with an older version, and thought it was a thorough approach that focused on the important stuff. ### Others These are far from the only resources, and may not be the best. **The best** has to feel right to you, so you can follow along and enjoy doing it. These are just a starting point to try. If you love them - awesome! Try to complete them. If it feels like a major chore, lets rethink, maybe there's a better approach for you.