30k?! You are honestly better off taking two yeas of night courses at a community college, and it will probably cost you half of that for more classroom time. Bootcamp programs are really crap. Even in a traditional classroom setting, you only get out of it what you put in. I know CompSci majors who graduated only knowing Java and who were totally lost if they had to replace a ram chip in a computer. I knew others wh…
> I know CompSci majors who graduated only knowing Java and who were totally lost if they had to replace a ram chip in a computer. The rest of your post notwithstanding, I don't see why a CompSci major should need to know how to replace a stick of ram.
The high cost of a free coding bootcamp
21–30 of 36 posts
Re: The high cost of a free coding bootcamp
#2230k?! You are honestly better off taking two yeas of night courses at a community college, and it will probably cost you half of that for more classroom time. Bootcamp programs are really crap. Even in a traditional classroom setting, you only get out of it what you put in. I know CompSci majors who graduated only knowing Java and who were totally lost if they had to replace a ram chip in a computer. I knew others wh…
> I know CompSci majors who graduated only knowing Java and who were totally lost if they had to replace a ram chip in a computer. The rest of your post notwithstanding, I don't see why a CompSci major should need to know how to replace a stick of ram.
Re: The high cost of a free coding bootcamp
#23Re: The high cost of a free coding bootcamp
#24Earlier quoted context omitted.
> I know CompSci majors who graduated only knowing Java and who were totally lost if they had to replace a ram chip in a computer. The rest of your post notwithstanding, I don't see why a CompSci major should need to know how to replace a stick of ram.
They don't need to. As astronomer doesn't need to know how to repair his or her own personal telescope either. But if you're into the field, it's nice to know how your tools work.
Re: The high cost of a free coding bootcamp
#25Re: The high cost of a free coding bootcamp
#26I am not going to hire anybody from a free coding bootcamp or a coding bootcamp for that matter. Seems like they turn out people who know how to hack things together based on shallow knowledge.
There will be some filtering required.
Re: The high cost of a free coding bootcamp
#27> Once, a student asked about the difference between JavaScript array methods, like push versus concat or forEach versus map, the team lead said they were interchangeable. (They are not.) Technically, push and concat can be augmented to achieve the same thing. Same with forEach and map. Might not be the best fitted screwdriver but it’ll still kinda work.
Re: The high cost of a free coding bootcamp
#28> Once, a student asked about the difference between JavaScript array methods, like push versus concat or forEach versus map, the team lead said they were interchangeable. (They are not.) Technically, push and concat can be augmented to achieve the same thing. Same with forEach and map. Might not be the best fitted screwdriver but it’ll still kinda work.
Except that push mutates the array in question and concat returns a deep copy. And forEach returns undefined, while map returns an array. If someone claimed they were the same in an interview I doubt they would get hired.
Developers were able to map from one list to another list using for loops before functional-style map-like functions. Map is just semantically more concise about what it’s doing, rather than how.
As for mutation versus immutable copy behavior, that’s for convenience. Developers can also clone collections themselves.
A more charitable means of evaluating the class lead’s comment is that the core of an algorithm is not affected by these things.
One could argue multiplication is just repeated addition.
Re: The high cost of a free coding bootcamp
#29I am not going to hire anybody from a free coding bootcamp or a coding bootcamp for that matter. Seems like they turn out people who know how to hack things together based on shallow knowledge.
Maybe it's an opportunity for people who wouldn't otherwise get the chance. I've met lots of young bright folks stuck in mcjobs, sort of at the mercy of circumstance. Maybe trying a coding camp will turn on a lightbulb. There will be some filtering required.
Re: The high cost of a free coding bootcamp
#30> Once, a student asked about the difference between JavaScript array methods, like push versus concat or forEach versus map, the team lead said they were interchangeable. (They are not.) Technically, push and concat can be augmented to achieve the same thing. Same with forEach and map. Might not be the best fitted screwdriver but it’ll still kinda work.
Except that push mutates the array in question and concat returns a deep copy. And forEach returns undefined, while map returns an array. If someone claimed they were the same in an interview I doubt they would get hired.