Skip to content

Latest commit

 

History

History
131 lines (112 loc) · 11.2 KB

faq.md

File metadata and controls

131 lines (112 loc) · 11.2 KB

Frequently Asked Questions

What are the pre-requisites to begin any of the guides?

You should understand how to use Git and Github, which you can learn using any of these free resources:

Note: Just pick one of the courses below to learn the basics. You will learn a lot more once you get started!

What development environment should I be using?

  • Pick your favorite editor, write all your code on your own machine in that editor
  • Save all your code to GitHub
  • Publish all your projects to the web - using surge.sh, github pages, heroku etc
  • Avoid codepen.
  • Avoid cloud 9 or any other "just code it on the web so you don't have to learn how to code on your own machine" site.
  • Whenever you are doing a "Clone this" project - use only assets you create yourself or that have copyrights which would allow you to use them.
  • Develop the habit of giving attribution for everything you use that was the product of someone else's effort.

How should I approach the items in the guides?

Power up your learning - make every minute count

  • When you're working through a book, type out the example code and do all the exercises.
  • When you're working through a course, do all the assignments.
  • When you're building a Project, include a build process (like gulp), include at least 5 automated tests (Karma, mocha, sinon, chai, jasmine, tape, whatever works for you), include a README.md file that clearly explains the project, and practice using meaningful commit messages
  • Use each project to demonstrate that you can deliver an optimized product. Implement tests (as I mentioned above), use your build process to minimize assets, use a linter (like ESLint) on your JavaScript and have some method to your madness when it comes to your css naming conventions (like BEM)
  • As you learn, take the time to discuss what you're learning with others: write blog posts, spend time actively discussing code and concepts with other developers (of varying skill levels), if you're comfortable with it - produce some helpful videos explaining topics that others might find daunting, and (most importantly) embrace the opportunity to help others one on one. You never know something so thoroughly as when you take the time to deeply consider it and explain it to someone else who might be struggling. Helping others doesn't just benefit them, it benefits you by increasing your understanding and mastery of the topic. Help people - you'll learn a lot in the process - you'll be a better developer for having done it.

For each item you should:

  • take notes, on a blog, in markdown, wherever, somewhere - not about what you read, or about what the instructor said - about what you learned
  • build something - even if it's just a 20 line function that computes something you find interesting
  • if you build something, document it and test it as appropriate
  • do the exercises, build the projects - fully, not some scaled down halfassery

For four projects of your choosing

  • Seek 1-3 other developers to collaborate on the project
  • Coordinate with the team to complete the project
  • Build the project out to a full production quality application
  • Invite others who are not associated with the team to rigorously test the final product.
  • Resolve any legitimate issues found

Once per month - do two or more of the following:

Do you have any hints for success?

  • have git commits every week, most of the days of the week
  • try to get in one of @tropicalchancer's cohorts - be active once you're in
  • try to pick one to two other languages to use regularly for solving algorithms and implementing projects in addition to JavaScript (good choices would be to pick one of C++, Java or Python and one of Golang or Rust).
  • spend 30 minutes a day studying math on Khan Academy

What should I be studying alongside the guides?

There WILL be math. And, it's important. If the thought frightens you, or bores you, or has you thinking "this isn't for me", head to Khan Academy right now, sign up, and start devoting 30 minutes a day. This is an investment that will pay off. I'm not making this up.

Should I work through a guide in order?

Yes. Skip nothing, even if you think you already know it. If you need to "double up" for variety, do no more than two items from the guide simultaneously and don't add a third until you finish one of the two. Everything builds on everything else. Plus, if you try to do everything at once, you'll finish nothing - or end up "accidentally on purpose" skipping early foundational material because it was "too hard" and you moved on "just for now" which eventually morphed to "forever".

How long will this take me?

I don't know? How lazy are you? How much time are you devoting to it? How often do you plan to decide "this is too hard" and waste a month or more surfing YouTube for an easier option?

I'm stuck, what should I do?

  • Use the official docs.
  • Use MDN
  • Train yourself to write the code, not copy paste it.
  • Stack overflow should be a resource for ideas, not a crutch to help you avoid writing code yourself.
  • Shay Howe has a good overview of HTML and CSS if you need more than you got in the CS50 and MEAN stack course to feel comfortable with the projects.
  • If you're at a loss for how to figure out the design for a page you're building, reference Google's Material Design documentation. Try to become familar with it by the time you finish the list of resources in this post. It will save you from having shoddy looking pages.

If you get lost. If this is too hard.

  • Buck up camper - no one said this was easy - it is WORTH IT though.
  • Figure it out. Ask for someone to point you in the right direction.
  • Don't Quit.
  • Don't Panic!

How do I deploy a frontend project

Here are some resources to help you learn how to use surge.sh, you could also use GitHub Pages or any other host you want, but figuring that out is up to you.

What sites should I have bookmarked and reference frequently?

  • surge.sh - deploy your frontend projects here (or use github pages)
  • MDN - look HTML, CSS, and JavaScript stuff up here
  • Heroku - deploy your fullstack projects here (or glitch)
  • Firebase or mLab - database hosting
  • GitHub - store your code here
  • Material Design - lean on this when you need a structure for creating a minimalistic but awesome looking site
  • Material Palette - for selecting color schemes
  • Wirify - for quickly turning a web page into a wireframe so you can see the big picture instead of all the graphics

I need some extra stuff to do on the side for more practice. Have any ideas?

  • sign up for https://www.codingame.com - finish every training challenge up through "very hard", for the hard and very hard challenges, you'll likely need to have worked down the main list in this post to the data structures book
  • learn Sass
  • Join one of the Chingu cohorts that @tropicalchancer puts together and actively participate on one or more group projects
  • Project: Clone this landing page
  • Project: Clone this blog template - note that there are multiple pages
  • Project: Clone this online resume template
  • Project: Clone the front page of this website modifying it to highlight a different product or industry. Make special note of the secondary navigation bar at the top. Implementing that is the highlight of this project.
  • Project: Do one of the FCC projects not listed in this guide.
  • Goal: Contribute one pull request per month to an open source project of your choosing.

I really want some more advanced stuff for practice. Have any ideas?

  • pick a pet web development project you can code in a week and complete it
  • code an android application
  • learn golang or rust and complete any of the backend projects from FCC with that language as the backend language
  • redo any of the algorithmic type projects you've already completed from the list, in a language other than JavaScript
  • pick an open source project from Code Triage and contribute to fixing an open issue
  • code a flash cards application, for jotting quick notes you can use to quiz yourself later
  • hit hackerrank and complete the Project Euler problems

Are there any additional free resources you'd recommend alongside the materials in the guides?

OpenStax - Open Source textbooks on a variety of University level topics, check here if you want a reference math or physics textbook