Dear new developer, There's the concept of a JIT compiler. I was first introduced to it with the HotSpot Java compiler. The idea is that a compiler can look at code and find the code that executes often and optimize it, sometimes compiling it down to faster code, sometimes unrolling loops. I'm no compiler expert … Continue reading Be a Just in Time Learner, part I
Tag: text editor
Learn a text editor
Dear new developer, As I mentioned before, the raw "stuff" of software is primarily text files. Actually, the foundation of software is ideas and information, but unfortunately a computer can't yet run on those. So you will need to create text files. Learning a text editor will serve you well in building software. Why a … Continue reading Learn a text editor