DEV Community

Cover image for A laundry list of things I never heard of from bootcamp

A laundry list of things I never heard of from bootcamp

Jen Chan on May 02, 2019

These are not always necessarily useful on the job, but are somehow thrown around the industry. If you're someone who already knows HTML, CSS, and ...
Collapse
 
codemouse92 profile image
Jason C. McDonald • Edited

What's "fundamental" to a coding gig really depends on the gig. It's good to know algorithms, patterns, and data structures in a general, language-agnostic sense, and be capable of implementing them all in your language of choice. Big-O notation is pretty essential to that, anyhow. (Honestly, if your bootcamp didn't teach that much, they basically ripped you off.)

As to your programming paradigms (functional, object-oriented, etc.), that depends on your language(s) and platform(s). If you're working almost exclusively in C and C++, functional programming probably isn't going to matter. I always recommend developers to know at least ONE major paradigm very well, but which paradigm depends on what you're doing.

You should be familiar with VCS, especially Git, but I wouldn't consider any particular implementation to be a "must-have". I've seen organizations use GitHub, GitLab, Atlassian, Launchpad, Phabricator, or any of a dozen other VCS solutions. It's better to know the underlying concepts, so you can quickly learn whatever solution the organization is using. (It doesn't hurt to be familiar with Git alternatives, like Mercurial and Bazaar, while you're at it.)

Methodologies are, again, something that varies from one organization to the next. Testing is an essential skill, but don't assume it will take the form of TDD or Unit Testing; those are just two possible approaches, and they don't work for everything. Learn to test in the general sense, and you'll be able to adapt to whatever specific system is needed. The same goes for task management and style guides: get used to working with issues and having a consistent style, but be prepared to adapt to whatever specific system your future employer uses.

I can't speak to Javascript-specific "must haves," but I do feel I should point out that JS is an oversaturated market, characteristic of the fad-chasing our industry is so prone to. If you want to work with Javascript, by all means, seek to master it! Just don't put all your eggs in one basket. Learn multiple languages and platforms. Branch out. Explore. Versatility is how one stays employed in this industry; overspecialization is how one becomes obsolete.

On the note of design patterns, pick up Game Programming Patterns by Robert Nystrom (you can read it free on the book's website.)

Collapse
 
stwic profile image
Amir

Javascript isn't a fad. Or it's been a fad for half a decade and it's nowhere near passing.

Collapse
 
codemouse92 profile image
Jason C. McDonald

The language itself isn't. Its use as One Language To Rule Them All most certainly is.

This will explain better what I mean by "fad":

Thread Thread
 
jenc profile image
Jen Chan

I am seeking to understand it, but I'm not so confident to say I'll master it... I will improve my understanding; I don't know if I will master it by reading all the manuscripts I can find on it ("Secrets of the JS Ninja", "You Don't Know JS", "Eloquent JS")

I know I have to try and do this once and for all before (like some have told me) I throw in the towel for professional dev and admit that I just don't have talent.

But by then, hopefully, I will make better websites :p

Thread Thread
 
jenc profile image
Jen Chan

(sees blockchain)
(sneezes)

Thread Thread
 
codemouse92 profile image
Jason C. McDonald • Edited

Well, mastery comes with practice. You can read plenty, that always helps, but it doesn't stick until you Do Hard Things in the language.

Or to put that another way...you'll learn to build better websites by first building a whole lot of terrible websites. Mistakes are how we learn. If you don't blush slightly at code you wrote two years prior, you're not growing.

Mastery is also relative. In one sense, I can be considered to have "mastered" C++ and Python, but I will always have more to learn. It's taken me six years to get this far in C++, and nine in Python.

Collapse
 
jenc profile image
Jen Chan

It was good as a survey of the dev ecosystem in 2016. This was the rise of React vs Angular. They taught git, but I knew it already. They didn't mention git workflows though.

I didn't realize how important testing was til much later. It's still something I have to learn, and probably will result in me thinking why I didn't learn it sooner. It's way too easy to break some of the things I've done.
Thank you for the detailed comment!

Collapse
 
laurieontech profile image
Laurie

The best thing you can do when learning to code is learning how to learn. You don’t have to know everything all at once. In fact, many of the concepts you listed are popular as interview questions but less relevant as an employed developer. But feeling confident in your ability to identify patterns and apply them is key.

Collapse
 
jenc profile image
Jen Chan

re: "learning how to learn" I agree! and learning to be patient with a learning curve. It's impossible to know everything but the breadth of requirements is definitely frustrating.

Collapse
 
airbr profile image
Morgan Murrah • Edited

Interesting. Don't want to share a big rant but I related to a bunch of your comments about the bootcamp experience- there was so much more to learn, and it became hard to gauge what was important or not.

I've worked as a web developer for two years now and I have never had to understand or apply Big O notation or a bunch of things on that list. Ive looked at articles about Big O a bunch of times but I never have had to use it in any meaningful way. I've learned a bunch of other stuff not on this list.

Someone else said what is fundamental will really be whatever particular tools are being used on the job- I agree with this. As soon as you get to read the tech stack on the job posting talk/ research about how you will apply those tools.

Collapse
 
jenc profile image
Jen Chan • Edited
I've worked as a web developer for two years now and I have never had to understand or apply Big O notation or a bunch of things on that list. Ive looked at articles about Big O a bunch of times but I never have had to use it in any meaningful way. I've learned a bunch of other stuff not on this list.

SAME.

Collapse
 
jenc profile image
Jen Chan

@codemouse92 @joshhadik @airbr I guess as lament-y and laundry-like this post sounds, I realize I am at the juncture of "I-know-enough-to-get-a-job" but "I-don't-know-enough-to-keep-a-career", and the only thing that is get me better is study, practice, patience and taking it as it comes.

Collapse
 
joshhadik profile image
Josh Hadik

As long as you keep learning even after you get a job you should have everything you need to keep a career. Don’t make the same mistake I made after bootcamp (and am still recovering from lol) of trying to learn everything first. It’s good to have some idea of the skills you’re lacking and try to go over them in your off time, but real-world experience is way more important.

I wasted a lot of time trying to learn everything before applying for a job and realized that it's literally a never-ending process. For every one thing I learn I'm introduced to three or more new things I've never even heard of before.

Collapse
 
andrewbrown profile image
Andrew Brown 🇨🇦

Hey Jen,

There are many startups in Toronto who have middle managers that are Waterloo graduates and they use CompSci as their qualifier but on-the-job you would never utilize these skills.

Here is what I think is fundamental

❌ Binary Trees
❌ Sorting algorithms/methods
❌ Whiteboarding
❌ Big-O notation
❌ Gitlab and ✅ Git Flow
❌ BEM and modular CSS
🤷 Javascript patterns
❌ Functional Programming
❌ State management
✅ Unit Testing
✅ Test Driven Development
🤷 Style Guides
🤷 Virtual machines and containerization
🤷 Web sockets/Web hooks

I definitely could produce a list of what is missing with the Toronto Bootcamps and what the Toronto tech market really wants as fundamental skills

Collapse
 
jenc profile image
Jen Chan

Does the ❌ mean fundamental or nah?

I've done about a dozen interviews and had 2 entry level jobs... the bar is all over the place 🤷

It seems like having experience with OSS is also a good look.

But maybe first, I should pass the test.

Collapse
 
andrewbrown profile image
Andrew Brown 🇨🇦

❌ means you don't need it.

Collapse
 
joshhadik profile image
Josh Hadik • Edited

I think another “nice to have” skill would be a general understanding of how computers work under the hood. Things like how RAM stores information, how bits and bytes work, how the CPU processes data, what the heap and the stack are, etc.

This kind of knowledge definitely isn’t necessary to be a developer and most devs won’t ever need to worry about such low level concepts, but ever since starting to learn them (which I only started doing a few weeks ago), I’ve found a lot of the things I actually do work with on a daily basis make a lot more sense.

Collapse
 
jenc profile image
Jen Chan

I'm wondering what you mean by "low level" as opposed to "high level" as I hear of it used a lot.

Collapse
 
joshhadik profile image
Josh Hadik

Both terms are kind of relative, but basically it means the closer to the computer hardware you get the lower you go.

So when talking about languages, machine code (binary) is the lowest level language, assembly is a slightly “higher” but still extremely low, C is an even “higher” level language, but still relatively “low” compared to Ruby or Python which both take care of things like garbage collection and memory allocation for you.

I used it to refer to the actual hardware (RAM, CPU, etc.), which is about as “low” as you can get.

Also, like I mentioned above, it’s usually used as a relative term, which sometimes makes it hard to understand. Someone who works in Python might refer to C as a low level language, meanwhile someone who works in assembly might call C a high level language. What they really mean is that it’s a “higher” or “lower” level language than what they’re used to writing.

Thread Thread
 
jenc profile image
Jen Chan

Thank you for the detailed and comprehensive explanation! Term demystified :D

Maybe it's a bit of intergenerational tension but I for some reason think of C as "my dad's time" but of course people still use it. It's probably because my dad really hoped I would learn C when I was younger.

Collapse
 
jenc profile image
Jen Chan

lol is "replacing an iPhone screen" a CV bullet point? 🤔

Collapse
 
johncip profile image
jmc

There's a nice-looking book for gap-filling called The Imposter's Handbook. I haven't read it yet, but I did read something similar years ago called Theoretical Introduction to Programming (that Goodreads review is mine).

I think these topics mostly divide into: pure-CS, practical computer skills, and knowledge of specific tools.

IMO the best reason to learn CS is that it's awesome. Someone who's interested in it for its own sake will probably likely become a better and more versatile coder than the person who always asks "is this gonna be on the test?"

There's also the Blub problem, which I'll argue is real: once you need a thing, unless you've seen it before, you won't know what to look for. I've spent some time helping high schoolers learn how to do this work, and I see that play out often. We learn much faster when we already understand a related topic.

As a specific example -- my understanding of git went from murky to crystal clear the moment I read that git just traverses a directed acyclic graph. I'd coded up DAGs before, so that realization was all it took to end 6 months of fumbling. What's worse is that, if you'd asked me during that time, I would have said that I understood git.

Re: practical computer knowledge -- you need it, full stop. I worked as a sysadmin before programming and that comes in handy constantly. More than once, in my last web application job, knowing how to build from C source, for a specific architecture, including customizing the build, ended up making a difference in what I was able to accomplish. None of that is terribly difficult, but these days a large number of people have never even attempted it. Computer networking is very important too, assuming you deliver your product over a network.

The specific tools are what they are. It mostly comes down to reading the docs. But that combo of CS concepts and practical computer knowledge will give you a much better starting point for understanding what a particular tool does, and why.

Collapse
 
airbr profile image
Morgan Murrah • Edited

From the post it seems like git was likely used but not gitlab/gitflow, which are add-ons/services. I looked at gitlab once/ don't know what gitflow is.

I learned about the concept of TDD at my bootcamp circa 2016 but we wrote no tests/rely on manual testing and I've heard a bunch about testing but we don't do it at work either :/. Yeah that is not optimal but it's the reality for a lot of places.

Collapse
 
jenc profile image
Jen Chan

Yeah same they didn't have enough time to cover TDD in mine. I have learned of testing through the Koans learning methodology, though Jest/Mocha still isn't entirely clear to me.

The world truly is my oyster when everything is out there and I just have to sit down and do it.

Collapse
 
bugsysailor profile image
Bugsy Sailor

Can you explain this bootcamp a little more? #newb

Collapse
 
terabytetiger profile image
Tyler V. (he/him)

I only skimmed this, but it seems to do a good job explaining it: thefirehoseproject.com/developer-g...

Collapse
 
jenc profile image
Jen Chan

I almost don't want to, because I don't think it's a good learning model. But I am a fan of freecodecamp.

Collapse
 
bugsysailor profile image
Bugsy Sailor

I guess what I'm asking is, what makes a bootcamp and bootcamp in dev world?

Thread Thread
 
jenc profile image
Jen Chan • Edited

I really don't know. Something that tries to condense the survey of a web development ecosystem of the year (any particular stack. LAMP, Rails, MEAN, MERN, whatever) and shovel it to career-shifting desperate folks through lectures, peer programming and group projects in 7-12 weeks. Usually run by a private education company or sponsored by tech companies. I've heard different judgments around bootcamps from different folks working in tech, so initially opted to leave it off my resume when I applied for my first gigs.

Collapse
 
amorganpd profile image
amorganPD

I would say that it is more about being aware, unless the role you are performing requires that specific knowledge. Otherwise let your job teach you any long term knowledge in your field versus being expected to know all of those items, even if it's not needed in your current role.

As far as what you should know: problem solving and the process of problem solving in the context of designing and writing software.

This comes from practice and having a good foundation of how to approach problems.

For example: coderhood.com/5-problem-solving-sk...

Collapse
 
jenc profile image
Jen Chan

I do know of bootcamps that don't cover that kind of thing and only did JQuery and Wordpress. I definitely shopped for something I didn't already know, but there are only so many waking, productive hours even in 8-12 weeks. I didn't go from 0 to 1 and played with code quite a bit before that, and am astounded by those who walk in without knowing a lick of code coming out as pro devs. Good for them!

Collapse
 
gabrlucht profile image
Gabriel Luchtenberg

The most valuable skills as a developer are to get things done and measure time spent in issues x ( money achieve + refactoring and mantainment capability)

Collapse
 
jenc profile image
Jen Chan

Git was covered. Just not Git lab, or Git flow. I heard about those in my jobs ;)