2 years, 8 months ago - Hey everyone! As I've mentioned to a few students, we are neck-deep in some really cool updates to our Live Syllabus platform. In case you don't know, Live Syllabus is the unique Learning Managemen... Read more...
3 years, 2 months ago - The Errors Here are three code snippets that produce three very similar error messages in three different languages: In Python The Code person.register() The Error AttributeError: 'NoneType... Read more...
3 years, 4 months ago - I posted recently about the release of the desktop version of our Debug Trainer debugging practice app. Today I thought I’d talk a bit about a tool we used to write that desktop application using m... Read more...
3 years, 5 months ago - Introducing Debug Trainer: Desktop Edition Note: If you want to skip all the explanation and go straight to trying out the app, here’s the latest release page. Grab the .dmg file if you’re a Mac u... Read more...
4 years ago - Is a bootcamp education worth the cost? Chances are you’ve asked yourself this question at least once if you’ve ever thought about pursuing a coding bootcamp education. Many cost exorbitant amounts... Read more...
4 years, 1 month ago - You did it! You got an interview invitation. Now it’s time to start thinking about preparation, especially what questions you’re going to ask. Interviewing is not only an opportunity for you to sha... Read more...
4 years, 1 month ago - Have you been working with one JavaScript framework for a while, and started feeling ready for learning something new? This is the guide for you! Learning a new framework or library can be an excit... Read more...
4 years, 2 months ago - Last week we announced our adaptation of the ReactJS.org website to use all React Hooks examples and explanations. This week I thought I would write a bit more about what it was like to make that c... Read more...
4 years, 2 months ago - When we decided to convert our React curriculum to React Hooks, one of the biggest stumbling blocks we ran into was that almost all of the guides, tutorials, and blog posts about React Hooks are wr... Read more...
4 years, 3 months ago - Several months ago we started talking about whether or not to update our React curriculum to use the new React Hooks syntax over the old class-based syntax. It was a challenging decision. In addit... Read more...
4 years, 3 months ago - The Problem It’s possible to build some pretty nifty applications without having a good understanding of how the code is working. You copy and paste some online examples here, you try random things... Read more...
4 years, 3 months ago - A student recently asked me for some thoughts on how and where to write tests. In response, I tried to distill my answer down to the most basic principles of how I decide what to test, what not to ... Read more...
4 years, 4 months ago - My goal when designing things is usually to get to a place where the design feels simple. If it’s a choice between a site looking fancy and looking simple, I’d go simple every time. In the same sen... Read more...
4 years, 4 months ago - 1. Print everything. No, really, everything. Print something at the beginning or end of a method or function to know if it’s being called. Print what your variables are. Print what your variables’ ... Read more...