|
|
|
|
|
by edanm
5779 days ago
|
|
After a few years of teaching new recruits how to program, this still amazes me: so many people will go a day without compiling once! I mean, I've been programming professionally for 7 years, and much more before. But whenever I need to do something that I haven't done in the last week or so, I still always start with a tiny function to make sure I still remember how to do even the basic stuff, and build from there. E.g., every time I write some new js code, I start with a function that only prints something to the console; then, does the basic functionality, printing results to console; then and only then, start doing more complex things. It always surprises me that people will spend a day or more working without checking even the most basic check that what they're doing works the way they expect. |
|
I can go a long time without compiling but that's because I use IDE tools that show me instantly if I have compiler errors, etc. :)