Quantcast
Channel: The freeCodeCamp Forum - Top topics
Browsing latest articles
Browse All 91 View Live

I got a dev job after battling with mental health

I started my first job in engineering last week, and am writing to recap my journey, and to say thank you to the FCC community and Quincy. This community gave me a path to follow when I lost the only...

View Article



Image may be NSFW.
Clik here to view.

Our expanded curriculum is now live on beta.freecodecamp.com and we need your...

I’m thrilled to announce that our expanded curriculum is now live on https://beta.freecodecamp.com These challenges are still rough, and not all of them work properly yet. We are working to rapidly...

View Article

How To Get Help When You Are Stuck Coding

When you get stuck, remember: Read-Search-Ask. Read the documentation or error Search Google Ask your friends for help This is the most time-efficient way to handle being stuck, and it’s the most...

View Article

freeCodeCamp's new certificates - here's how we're rolling them out

If you’ve checked out beta.freecodecamp.com/map, you may have noticed that we now have 6 certificates instead of 3. We’ve put a ton of thought into these and how to roll them out in a way that’s fair...

View Article

Image may be NSFW.
Clik here to view.

Thanks FCC - I got my first job as a front-end developer!

Edit: Thank you all for the congratulations and encouraging responses! I went on vacation for a week and was totally overwhelmed by all the emails and PMs that resulted from this post when I returned....

View Article


33 yo, from no webdev experience to full-stack developer in 4 months thanks...

Hey everyone, I’m a 33 yo guy from southern Europe and I recently got hired as a full-stack developer for my first gig in the industry. I feel like I need to share my story here on freeCodeCamp: this...

View Article

Image may be NSFW.
Clik here to view.

30+ and got first developer job

First of all, sorry for my English, as English is my second language. I’m from Indonesia. I knew FCC last year, before that I was playing around with codecademy. I always consider myself as a geek, I...

View Article

I got a Web Developer job 1 month after finishing Free Code Camp

I am a 21 year old in the United States with no degree. A year and a half ago I wrote this article “How I Wasted 2 Years of My Life Trying to Learn Web Development Before Free Code Camp”. Now a year...

View Article


I got my first job (front end dev)

Added update in comments- finished 1st week at work! Thank you for all of the kind replies Another update, someone emailed me asking for extra advice, I have send them this so I hope that it might be...

View Article


FreeCodeCamp just got me my first programming job!

And I haven’t even finished the front end course! I never thought I’d be posting this so soon. I had hope that the projects and having a fleshed out portfolio would help me get a job in the future,...

View Article

Image may be NSFW.
Clik here to view.

10 major freeCodeCamp improvements that are live now

Our contributors have been hard at work on several major improvements to freeCodeCamp. And I’m thrilled to announce that all of the following improvements are now live on www.freecodecamp.org!...

View Article

I got the job! Here's what I've learned from the job hunt

I’ve been looking forward to writing a post like this for a long time. This Monday, I’ll be starting my new job as a Software Engineer! I have an outline for a detailed blog post about how I got to...

View Article

Image may be NSFW.
Clik here to view.

So I got my first job as a front-end web developer

It has been 6 month since i first got into web development (without any previous knowledge). Earlier today I’ve been on my first interview and a few hours later I’ve been told i was successful and got...

View Article


Image may be NSFW.
Clik here to view.

I got a job :-)

I started working last week as a full-stack web developer, and it’s been going good so far. So, here’s a quick outline of my path: Got a liberal arts degree worked at various non-programming office...

View Article

freeCodeCamp Challenge Guide: Build a Tribute Page

Build a Tribute Page This is a stub. Help the community by making a suggestion of a hint and/or solution. We may use your suggestions to update this stub. 1 post - 1 participant Read full topic

View Article


freeCodeCamp Challenge Guide: Return Largest Numbers in Arrays

Return Largest Numbers in Arrays Problem Explanation You will get an array that contains sub arrays of numbers and you need to return an array with the largest number from each of the sub arrays....

View Article

freeCodeCamp Challenge Guide: Use getters and setters to Control Access to an...

Use getters and setters to Control Access to an Object Problem Explanation Getters and setters are critical parts of a class/object. They allow you to control their attributes from the outside. They...

View Article


freeCodeCamp Challenge Guide: Record Collection

Record Collection Problem Explanation For the given id parameter, which is associated with the records object: * If the value parameter isn’t an empty string, update (or set) the value parameter for...

View Article

freeCodeCamp Challenge Guide: Restrict Possible Usernames

Restrict Possible Usernames Solutions Solution 1 (Click to Show/Hide) let username = "JackOfAllTrades"; let userCheck = /^[a-z][a-z]+\d*$|^[a-z]\d\d+$/i; let result = userCheck.test(username);...

View Article

freeCodeCamp Challenge Guide: Use Recursion to Create a Range of Numbers

Use Recursion to Create a Range of Numbers Solutions Solution 1 (Click to Show/Hide) function rangeOfNumbers(startNum, endNum) { if (endNum - startNum === 0) { return [startNum]; } else { var numbers...

View Article

freeCodeCamp Challenge Guide: Confirm the Ending

Confirm the Ending Solutions Solution 1 (Click to Show/Hide) (click for more details) Solution 2 (Click to Show/Hide) (click for more details) Solution 3 (Click to Show/Hide) (click for more details)...

View Article


freeCodeCamp Challenge Guide: Use Recursion to Create a Countdown

Use Recursion to Create a Countdown Solutions Solution 1 (Click to Show/Hide) (click for more details) Solution 2 (Click to Show/Hide) (click for more details) Solution 3 (Click to Show/Hide) (click...

View Article


freeCodeCamp Challenge Guide: Profile Lookup

Profile Lookup Problem Explanation Change the code below // Only change code below this line and up to // Only change code above this line. Ensure that you are editing the inside of the...

View Article

freeCodeCamp Challenge Guide: Title Case a Sentence

Title Case a Sentence Problem Explanation We have to return a sentence with title case. This means that the first letter will always be in uppercase and the rest will be in lowercase. Relevant Links...

View Article

freeCodeCamp Challenge Guide: Counting Cards

Counting Cards Hints Hint 1 Use a switch (or else if) statement to count the value of each card. Hint 2 Add/subtract the value of each card to variable count. If the card is worth 0, don’t do...

View Article


freeCodeCamp Challenge Guide: Where do I Belong

Where Do I Belong Problem Explanation This can be a tricky problem to understand. You need to find where in the array a number should be inserted by order, and return the index where it should go....

View Article

Responsive Web Design Updates

Hello everyone! We are very excited to announce that our new version of the Responsive Web Design curriculum is now out of beta! We have now fully released the new Responsive Web Design curriculum...

View Article

--- Article Not Found! ---

*** *** *** RSSing Note: Article is missing! We don't know where we put it!!. *** ***

View Article

freeCodeCamp Challenge Guide: Use the reduce Method to Analyze Data

Use the reduce Method to Analyze Data Solutions Solution 1 (Click to Show/Hide) (click for more details) Solution 2 (Click to Show/Hide) (click for more details) 1 post - 1 participant Read full topic

View Article



freeCodeCamp Challenge Guide: Find the Longest Word in a String

Find the Longest Word in a String Problem Explanation You have to go through each word and figure out which one is the longest and return the length of that word. Relevant Links JS String Length Hints...

View Article
Browsing latest articles
Browse All 91 View Live




Latest Images