Best products from r/FreeCodeCamp

We found 14 comments on r/FreeCodeCamp discussing the most recommended products. We ran sentiment analysis on each of these comments to determine how redditors feel about different products. We found 14 products and ranked them based on the amount of positive reactions they received. Here are the top 20.

Top comments mentioning products on r/FreeCodeCamp:

u/Jumballaya · 10 pointsr/FreeCodeCamp

> Felt pretty good about myself.. until I got to the algorithm section.

This is VERY normal. These are hard math concepts that take everyone a little bit to get used to. The only way you will learn these concepts is by implementing them, over and over and over and over and over.

> I would say I was getting stuck probably about half the time and would turn to read-search-ask method.

If this were not the case, then there would be no need to learn. I am a web developer and I look up the most inane shit on a daily basis because it is something that I either have never used/implemented or something I rarely use/implement (my big one here is PHP's array functions, I can never remember if the array comes before the callback or not with array_map() but I remember that it is the exact opposite of array_filter() and array_reduce()). Embrace this, build your Google-fu because you will always need it.

> A lot of times I was missing some small operator (code error) or somewhat minor step in the thought process, other times I would be lost entirely. Basically I wasn't thinking about how to implement my code well enough, imo.

This is 100% normal. Have you ever heard of a code review? This is where other developers review your code before it goes live. The point of this is that you cannot be 100% perfect with your code, maybe you forgot a semicolon or maybe your code is tough to read, that is what the code review process is like. I write code in iterations to make sure that I never 'get in too deep' and the fear of removing code sets in, each of these phases I go through a mini code review to see what is working at what isn't. I ALWAYS find some half-baked logic in my first few iterations before I really get into it and over the last couple years I find that I need fewer and fewer iterations and that I am able to get a better 'big picture.'

Don't be afraid to scrap some code and go back at it, this is your education and only you know when you understand the material. I have a bajillion abandoned side projects and so does every developer that I know.


Advice


  1. Keep coding, it is the only way you are going to get better, for real.
  2. Read other people's code. This is where I learn all my cool tricks; Anytime I find a cool project/library/framework I hit up github and read through as much of the source as I can stomach. You will be surprised at how much you learn about the parts of a project that AREN'T code like documentation, contributing, comment styles, things that seem secondary when first learning to program.
  3. Design patterns, paradigms, data structures, algorithms. I wouldn't suggest going head-on with this stuff yet, but don't be afraid of it. Design Patterns Book (Gang of Four) - This is a very highly suggested book, though the examples are in C++
  4. Learn another language. The largest increases in my JS knowledge have come from learning another language and bringing back that language's way of thinking into JS. I would suggest Python because it is stupid-easy to jump in and start making cool stuff, but any language will do. Python, Java, C#, PHP, Elixir, Ruby, C++ and Go are a handful I can think of that will aid in employment as well as teach you new ways of thinking about JS.
  5. Talk to developers, go to meetups, scour github for misspellings in documentation and contribute. Anything that you can do to get a free mentor will be an AMAZING boon for you


    Links

  6. Project Euler - Looking for something to code? Here is around 600 different problems to solve. I am pretty sure some of the FCC algorithms were taken from Project Euler as it is a very good resource.
  7. Eloquent JavaScript - A great resource, though, a little dated
  8. You Don't Know JS - Another great resource on the JavaScript language. I reread through these books every once in a while.
  9. Professor Frisby's Mostly Adequate Guide to Functional Programming - Great primer on functional programming with JavaScript
  10. Rosetta Code - Algorithm reference across many languages, though, the coding style for each tends to be a mess it is a good getting-started reference.
  11. 2017 Frontend Handbook - This is great for figuring out what to learn next when you get to that point where you don't know what to learn next.


    I did FCC up through the frontend section, I started my web dev career path in 2014 and picked up FCC in mid 2015 right before getting a job in web development. The most important part of FCC is that you are coding, getting practice and making mistakes, TONS of mistakes. Just keep it up, don't get burned out and remember that it is about your education, not how many challenges you complete. Code and read and read code.
u/gavlois1 · 9 pointsr/FreeCodeCamp

It depends on how much programming experience you have. If FreeCodeCamp is all you've done and have only worked with JavaScript, then I think that CS50 would be worth going through. For the first few lectures, he goes material which uses C and talks about low-level memory management and how many things work under the hood. While this isn't necessary to the daily work of a web developer, it is still good to write code while being conscious of what's happening under the hood through all those abstractions.

As /u/artotal said in his reply, learning the fundamentals of data structures and basic algorithms and complexity really go a long way. I don't think CS50 goes very in-depth with regards to this, but there's a few different sources you could learn from. You could go the hands-on route and hop straight onto sites like HackerRank and Kattis and start working your way up the problem ladders if you already have some basic familiarity. If learning from scratch, FreeCodeCamp has a nice set of videos on their YouTube channel talking about different data structures implemented in JS.

As for general progression after FreeCodeCamp, keep building projects. I'm not sure how far you're into the curriculum, but it's quite long and it's got many projects even in the curriculum if you do both front and back end curriculums. With your currently existing projects, go back and see if you can make improvements to any of them. Maybe try and move them off of Codepen (if you did them there) and to your own personal portfolio site. Refine your portfolio page and have links to your projects, your Github, resume, etc. You can have free hosting through Github Pages and you should be able to host all the front end projects there. For Node projects, you can try hosting them through Heroku, or see about free hosting through Google Cloud or get trial credits on AWS or Digital Ocean.

I hope this gave you a general idea of how to progress. Choose what you want to do depending on your immediate goal. Looking for a job? Polish that resume, get your portfolio site and projects up and running, maybe get a domain name for it. Go on HackerRank and LeetCode and practice some common interview problems. Have a bit of free learning time? Dive into the fundamentals of CS. Consider taking a look at some of the tried and true CS textbooks like this one (I'm sure that with some Googling you can find links to a pdf of it for free).

u/HaltenIhm · 2 pointsr/FreeCodeCamp

Programming folks are SUPER opinionated. I think knowledge is knowledge, how you get to the source(or sauce) is irrelevant. Such as some folks love Stack Overflow, some hate it.

w3schools is a good entry point into some of the concepts, they do examples that make sense to me-- so I use them. I also use books, other websites, blogs, podcasts, and other programmers. Just find something that works for you. Find the tasty sauce :D

One thing you'll realize is how much people who seem to know things don't actually know as much as they think. There is this book pragmatic programmer that examines the idea of being less opinionated since tech constantly evolves. It's kind of like this, when you start learning things it kind of crystalizes how you think about programming. Kind of like on average folks like music from their high school years the best since that's when they were into music the most. Much like music, there will be better artists, there will be better songs, or even better compilers, higher concept languages, and there will be better frameworks. Whatever helps you drink from the fount, use that.

I hope that wasn't too self-congratulatory and here are some links to a podcast I listen to, a youtube channel, and that book I mentioned:
http://www.codenewbie.org/
http://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X
https://www.youtube.com/watch?v=IalgBQQKROU

u/jpmmcb · 1 pointr/FreeCodeCamp

For one of my projects, I decided to just use vanilla JavaScript AJAX and for the rest, I ended up using jQuery. I felt this gave me a better handle of what was going on behind the scenes.

For vanilla JavaScript resources, the MDN documentation was helpful to get going. Using vanilla JavaScript was hard and it isn't super intuitive. This is why I think most people just end up using a library to call out to APIs. There's also a good Lynda course that's called "AJAX and JavaScript." It's pretty fast paced, and the course assumes you already know basic JavaScript, but I found it helpful with learning vanilla js ajax.

As far as jQuery goes, this video was also really helpful. Again, fairly fast pace but overall, good info. Once again, using the jQuery documentation is ESSENTIAL. I've found that in general, if I am stuck, asking myself the right questions, going to the documentation, and finding the answers is usually best.

I also read through the book Secerts of the JavaScript Ninja which had a few things to say about asynchronous code. Hope this helps!

u/-SG · 3 pointsr/FreeCodeCamp

I found that the Codecademy course helped me a little, but I also picked up these books by Jon Duckett. I'm the type who likes to have a book handy for reference and these have been great so far.

u/akame_21 · 3 pointsr/FreeCodeCamp

Funny because I'm on the same one. It definitely is tough and for one, I'm definitely going to redo the Basic Javascript section at least one or two more times. I've never learned JS before so I don't expect it to come "easy" to me and I kind of expected to have to put in extra effort.

I did pick up a textbook on the side A Smarter Way to Learn JavaScript, I don't know how it is because it was just delivered yesterday.

I've also been parsing through parts of this guide.

u/Amimaro · 1 pointr/FreeCodeCamp

Thanks for your feedback and for digging into the code! It was a big help. Also sorry for the late response.

> Only found one 'bug'

I will fix it.

> You also might want to rework your 'blocks' array

You are right, this will make it easier.
I wanted to make the enemies move around the map, maybe this might ease things out.

> readability + maintainability

I agree! I will fix it. Some concepts that you pointed out I remembered (but forgot while coding) from Clean Code (Robert Cecil Martin) about conditional encapsulation and the magical numbers.


u/AndreWebDog · 1 pointr/FreeCodeCamp

Yeah for sure! This is the amazon link to exactly what I bought: http://www.amazon.com/dp/1118871650/ref=rdr_ext_tmb
I am on page 195 and I like it a lot! It's very visual.

u/dallashall · 2 pointsr/FreeCodeCamp

Last year, I got myself a USB 3.0 monitor for my laptop. Awesome for coding on the go.
This is the one I got. I think there are newer models out now.
http://www.amazon.com/gp/product/B00FE690DI?psc=1&redirect=true&ref_=oh_aui_search_detailpage

u/devtastic · 2 pointsr/FreeCodeCamp

> https://hackdesign.org/

I'd add the "The Non-Designer's Design Book" by Robin Williams as another brilliant resource for programmers trying to make their designs look a bit more professional.

u/tells1 · 1 pointr/FreeCodeCamp

Learning Web Design by Jennifer Robbins is a really good book for learning CSS.

Also, for me, learning CSS takes a ton of practice. Take a site you like and recreate it from scratch. You'll bang your head against the wall but you'll learn practical skills that might not sink in if you just watch videos and read tutorials.