Tips to cementing new knowledge and skills as a beginner

I’m looking for tips to cement the skills I’m learning so they don’t go in one brain cell and out the other.
I’m extremely new to this field, with no CS background, just a love of computers. I’ve completed the HTML/HTML5 free course on FCC, and I am mostly done with CSS. I’ll keep going, in order, for as long as I can, but in all likelihood I am beginning the full-stack software developer program offered by Ed2Go.com as soon as this week. Luckily I have time on my side right now to optimize my learning, but my concern is I wont retain enough from these early, imperative lessons.
What can I do to help retain the knowledge? I’ve read through the forums and saw advice such as “after each section complete 5-10 projects with that material before advancing”, I love this approach and would love to hear more advice of this sort. I’ve joined the FCC Discord and expect to frequent both there and here often.

  • How do you organize your thoughts while learning?
  • What sites do you recommend for practice/challenges?
  • Is Wordpress my best initial opportunity to test-build a web page “from scratch”?
  • What other resources are out there for beginners?

Thanks so much for the feedback!

Tim

Don’t rush through the course and repeat it occasionally. Steer clear from learning the latest and greatest frameworks and libraries for as long as you can. Focus instead on learning the fundamentals of HTML, CSS, JS, or whichever language you are on. Do a section, build a small project that highlights what you learned. Write about it. Come to the forums and browse them for questions you can answer. Learn how to answer questions in terms a five year old could understand.

Go to CodePen and browse for projects and fork them and then disect the code to tweak it and learn from it.

Browse websites, find something unique and learn how its done by inspecting the page and learning to use developer tools to change CSS and live edit and build websites using just your browser.

Have fun, and keep learning.

1 Like

Thanks a bunch for the advice. About this:

Where does one go to build a project? My only experience is the code tester in the FCC curriculum.

A project doesn’t need to be anything special, don’t overdo it. Just take the concepts you learn and apply them.

It might make sense to take what you learn and add it onto a continuing project, such as the concept of the FCC curriculum as you build the Cat Photo App.

You could conceptualize your app idea now and start applying what you learn to your own concept of an app.

Really the sky is the limit and you are the only thing holding yourself back.

Random Project Idea Generator for inspiration

2 Likes

The usual “learning loop” is:

  1. Learn about a concept
  2. Learn about why/when you’d use that concept
  3. Go out and use that concept to learn more about it by “playing with it”
  4. Combine that concept with pre-existing knowledge to see “how it fits together”
  5. Learn about where you can take this concept and use it for things you don’t know
  6. Repeat

So the advice to go out and make 5-10 projects might be a tad high depending on what your learning, but the underlying idea is correct. You want to take what you learn and see how it fits with what you already know, and see where it leads into things you don’t really know. The only real way to do this is to play with it yourself.

FCC will later introduce codepen as a place where you can build and host your projects. It’s a simple free online editor that provides a way for you to write HTML/CS/JS.

There’s nothing to setup and configure, and you can use to to practice your front-end skills. Later FCC recommends using it to host/do your projects in so you’ll be “getting ahead in the game” in that aspect by getting more familiar with codepen. You can use codepen now to build your own projects from the ground up as a “sandbox” to try out what you learn and just play around.

A more advanced option introduced elsewhere is replit, which is similar in that it’s an online IDE, but it provides more power and supports “back-end” languages. You will use it later in the curriculum for projects that require a backend. However, if your just starting out you probably wont need its fancier tooling yet.

I’m not sure what you mean by this. If you mean “keep track of all the stuff you need to remember”, the key is you don’t. Memorization isn’t the goal, it’s a side-effect of doing things you need to do a lot. You should try to remember a few key aspects, such as the name of a concept, why and when you’d use it, but that’s it. You can look up the details about it later. Don’t try to memorize everything.

freeCodeCamp is a great start, but there are a number of other ones where you can get similar practice. However, I’d only suggest spreading out once you get to JavaScript, as most sites are focused on “programming challenges”. HTML and CSS are more “either know it or don’t”. As such looking up how to do things with them is usually the main option regardless of skill level.

No

One thing I usually recommend when starting out is “expanding your knowledge horizon”. What I mean by this is spreading out what you learn about “randomly”. You don’t want to try to become an expert in everything, you want to get an idea of what is out there of things you could go out and learn more in depth.

Because of this, getting “lost down the rabbit hole” can introduce you to concepts you never heard about, intrigue you, and possibly spark your curiosity about what is actually out there. Its a little “dangerous” in the sense that you can get totally sidetrack on topics that aren’t actually important, but its more up to you and your own “learning self control” to make sure that doesn’t happen haha.

A resources like wikipedia (HTML on wikipedia), or a page on MDN is a place where you can find a vast list of resources to learn more about almost anything.

Again, you don’t want to become an expert in everything, just get an idea of what’s out there, and decide for yourself later how important it actually is.

Good luck, keep learning, keep building :+1:

1 Like

Many thanks to you both. Almost done with CSS, I’ll check out codepen soon.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.