When you learn to code, there is a moment when everything begins to change
At theFirehoseProject we like to call this the Inflection Point of Coding. After this phase, the way you operate as a developer will be dramatically different. Itâs the process of becoming self-sufficient in programming to the point where you no longer need any hand-holding. It can be a frustrating experience, but once itâs behind you it is incredibly empowering.
At theFirehoseProject, our goal isnât just to teach you ruby, how to build web applications, or how to write tests.  Although we do teach these skills, our primary goal is to accelerate students past the inflection point so they are able to solve any problem they encounter, regardless of what it is.  We believe that this process of teaching how to problem-solve on your own is an invaluable skill that will take you much further than simply learning how to build some apps.
The Tutorial Phase (3-8 weeks of serious coding)
When you start out, thereâs a lot of information that you donât know yet.  This information is called Domain Specific Knowledge.  An example would be how to write a loop in ruby or how to extract something from a database using Ruby on Rails. Domain Specific Knowledge encompasses the specific protocols in a certain programming environment.
The first step to becoming a self-sufficient developer is learning how to do specific tasks. Â Once you master how to do certain tasks, the broad strokes of how the pieces fit together start to become apparent. Â Over time youâll start to recognize patterns, and eventually things that initially seemed confusing and foreign will become second nature.
For students starting out, the most important skill to acquire is paying close attention to detail.
Attention to detail is important when going through materials such as documentation or tutorials. Typos and misspellings typically will result in error messages or bugs. Seeing error messages is an experience that is frustrating at first, but is a crucial step in the learning process. Â Having error messages and problems in this phase teaches you one of the most important skills of programming in a safe environment: being detail-oriented.
Debugging error messages is incredibly important. Â The fact of the matter is that error messages are just a part of programming: they are seen by both very inexperienced and very experienced developers. Â The more experience you have dealing with error messages, the less time youâll need to spend trying to fix them. Â Hereâs why:
- You will learn how to read error messages and extract the relevant details of the problem quickly.  The first time you see an error message, it will take you a while to decode what it actually means.  After youâve seen hundreds of error messages (and you will see hundreds!), you will be able to pinpoint the problemâs location and the relevant details you need in order to fix it.
- You should learn from each error message that you resolve.  Donât just fix the error; understand what was wrong with the code you had before.  By making the mistake and learning from it, the next time you make the same mistake, youâll be able to fix it much faster.
- Initially you will probably start by asking for help on each error message you see. Â Over time youâll learn how to ask for help less frequently by double checking your code and conducting smart Google searches.
In the tutorial phase, you will follow instruction. Â At first youâll find following instruction quite difficult and error messages will happen frequently. Â Over time youâll develop the skill of debugging errors and have a better attention to small details and youâll be able to make progress quite quickly. Â As youâre wrapping up the tutorial phase youâll be able to write code at a rapid pace.
At this point some people feel confident, like theyâre ready to ditch the training wheels and start building things without structured guidance and will happily dive into the deep end. Other students will reach to more tutorials, trying to obtain more domain specific knowledge to gain a âfull understandingâ. Â Unfortunately, tutorials will only take you so far, and true confidence isnât found in tutorials, or guides. Â Itâs found from struggling with a problem you have no idea how to solve and discovering a solution on your own.
The dirty little secret of programming is thatâŚ
When you learn to code, you will never know everything you need to solve all your problems. Â Going into the journey, you probably thought that you wanted to learn everything you needed and then be squared away. Â This moment will never happen.
Programming is a life-long learning experience. Â Experienced software engineers seek out to solve problems they havenât yet because it gives them an opportunity to learn more. Â If youâre waiting for the moment you realize you know everything there is to know about coding, you should be aware: the day youâre waiting for will never come. Â And this is a wonderful thing.
You will be ready to jump into the next phase of your journey when:
- Youâve seen enough error messages that they no longer startle you. Instead you know how to decipher what it means and where to look for the problems in your code.
- Youâre a pro at Googling and finding solutions. Â When youâre looking to add a feature, or see an error message you know what to search for and how to find it.
- Youâre able to reference code youâve written in other parts of your application and follow patterns within them, rather than step-by-step instructions.
The Inflection Point (2-4 weeks with the right mentality)
The inflection point stage is one of the most frustrating stages in learning to code, but in many ways itâs the only stage that matters. Â Itâs the point where you will phase off of using tutorials and start solving problems where someone else hasnât lined up solutions for you.
At some points you will feel like you arenât ready to tackle this phase and want to return to building something that was outlined exactly how to do. Â Donât fall prey to this mentality. Â The reason youâll feel frustrated is:
During the inflection phase you will be coding 10-20 times SLOWER than in the previous phase.
You may start questioning yourself and if you actually are capable of becoming a programmer. Â Feelings of insecurity and doubt here are common.
Despite the fact that youâll feel like youâre learning, and accomplishing things at a much slower rate, you are achieving the things that matter the most. Â While your domain specific knowledge screeches to a putter, everything youâre learning is about procedural knowledge.
Procedural knowledge is how to teach yourself what you donât know along the way. Â When you need to implement a new feature, what type of a Google search should you do? Â At this point in time youâll feel like youâre âin the darkâ when it comes to many of the things you want to accomplish. Â Learning how to find the light on your own is critical because you will never know everything about programming, so you need to learn how to teach yourself how to solve the problem at hand.
Most people do not realize that in order to learn to code, you need to learn both aspects: domain specific and procedural knowledge.
The rest of your lifeâŚgo outside your limits every single day
Some software engineers stay inside their comfort-zone after they gain their footing. Â These types of programmers are known as maintenance programmers, and itâs something you shouldnât strive to be. Â You should strive to go outside your limits every single day. The most common reason programmers quit their jobs is because âitâs not challenging any more since Iâve already solved all the interesting problemsâ.
Rather than seeking to pull coding projects into your comfort-zone, you should be seeking out problems that are outside your current skill-set. This will enable you to expand your skills.
In words of a student of theFirehoseProject who moved passed his inflection point:
I still feel like Iâm in the deep end! Iâm just getting more comfortable knowing thatâs where Iâve got to be! Â
In web development there are actually two inflection points that will come together.
The Web Development Inflection Point is the point where you are capable of building any database driven application that you want.  This means you can build a web application with any pages, that stores and retrieves information from a simple database.  Web Developers call this: âMastering CRUDâ.  At this phase you should also be able to integrate with any 3rd party library (a ruby gem for example) simply by following the documentation on GitHub or a blog post.
The Algorithm & Data Structures Inflection Point is a less superficial inflection point, but it is actually more important.  Someone who has conquered this point will have mastered the programming language theyâre working in, in addition to mastering programming fundamentals and having a depth of knowledge when solving complex coding challenges.
People who have conquered algorithm and data structures inflection point will be able to:
- Write sorting algorithms
- Implement and Reverse Linked Lists
- Understand and write programs leveraging stacks, queues, trees
- Write computer programs using recursive or iterative solutions
In short, once you pass this inflection point you will have mastered manipulating data and will understand performance implications of code decisions. Traditional computer science degrees focus exclusively on getting students passed the algorithm and data structure inflection point. Â Many universities teach this with programming languages that are generally unused in the industry, like Scheme, Racket, or LISP.
Most technical interviews will start with the assumption that youâve passed the web development inflection point, since itâs easier to do, and focus their questions to see a candidateâs skill in algorithms and data structures. These questions will generally focus on questions like we mentioned above (sorting algorithms, reversing linked lists, using stacks, queues, and trees).
Once someone has passed both the web development inflection point and the algorithm inflection point they hold the keys to the kingdom.
Those people will be able to solve challenges that intersect the two: complex algorithmic challenges that need to be built in the context of web applications. Â This is the heart of what all professional web developers do every single day.
Consequences of the Inflection Point
The biggest consequence of the inflection point is a bit counter-intuitive when you first hear it. Â Take a deep breath in:
Yup. Â Iâm not joking; it really doesnât matter that much at all. Â Once you pass the inflection point the concepts that really matter will fluidly translate with just a week or two of tutorials, maybe only days!
What really matters is:
- You have a solid grasp of a web development framework
- You have a solid grasp on writing algorithmically complex code in any programming language
Hiring managers want solid web development and algorithm skills
While I was working at PayPal my team hired a Senior Rails Developer, who had no experience in Rails; he had been coding a lot in python, lisp and perl. Within a couple of days he was already making a big impact.  And within weeks: a huge impact.  He quickly rose to become the technical team lead, and was one of the best hiring decisions Iâve been directly involved in.
Donât sweat the stack.  Many people will say that âAngularJS is hot these daysâ, âJavaScript is on the riseâ, or âthe latest fad isâŚ.â.  My response to that is: âso?â.  When you start learning how to program your singular goal should be to find the inflection-point and annihilate it.  Once you do learning that new, sexy fad wonât be a hard task at all.
Become self-reliant. Â By being able to learn new skills about coding without structured guidance, you no longer need to wait for anyone to help you out. Â This means that for most things you need to learn, you can by searching the Internet and reading many different posts you can learn everything you need to.
This doesnât mean you immediately âknowâ everything, but now everything is âfigure-out-able,â so you are unstoppable.
The Skills You Will Develop During the Inflection Point
As a software developer, the worldâs best reference material is similar code that you have already written. When you fully understand the code youâve written, you donât need to commit all the details to memory . This means that the first question you should ask yourself when building a new feature is: âHave I built something similar before?â  If the answer is yes, revisit the code, walk through the code line-by-line in your head.  Re-explain to yourself what itâs doing and ask yourself, âcould I use the same approach here?â.
Videos suck for explaining domain specific details, because they take so darned long to watch.  If you want to integrate with the Google Maps API and you already had, once you get experience, it can take less than a minute to open the code up on GitHub, copy the code, and paste it into your new project.  Videos on the other-hand will often take 10-30 minutes to re-watch.
Strategies to Pass the Inflection Point as Efficiently As Possible
Since passing the inflection point is the most important part of learning to code, you should set yourself up to have the process go as smoothly as possible. Â This means you should start preparing while youâre going through tutorials and maintain the right mind-set during this period of time.
During the tutorial phase, take breaks from going over the structured material and give yourself challenge problems along the way.
- Every handful of lessons try to do something that is outside the scope of the tutorial youâre going through.  If the tutorials youâre going through provide âChallengesâ or âSelf-Directedâ problems, solve all of them. Solving unguided challenges will give you the important experience of doing things without structured guidance.
- Try to use the tutorials as little as possible.  At the FirehoseProject, we often walk students through how to integrate certain gems, or do things based upon the documentation that we link to on GitHub, or ruby documentation.  Rather than going through the instructions explained in the tutorials, geared towards people starting out, many students will follow the documentation and use the tutorials as a back-up.  The documentation will always treat you like a developer who has passed the inflection point.  By getting comfortable reading and following documentation on GitHub you will have a leg up when youâre on your own.
- Focus on the essentials and use repetition to do the same thing a number of times. Â Learn how to do things common things like spinning-up an application from scratch, pushing a new app to GitHub and Heroku, building a database migration early on.
Pushing through the inflection point can be challenging. Â Here are some pointers to get you through it:
- Understand this is a difficult process and go easy on yourself.  Also set realistic expectations.  You canât compare your âsupermanâ level speed going through tutorials to the âsnailâ speed of learning things on your own.  Keep in mind youâre learning plenty of things, but they are not âdomain knowledgeâ, because at this phase youâre learning how to figure out new things.
- If youâre feeling problems with your self-confidence, know that it is completely normal.  Keep working.  If youâre struggling, talk to someone who has just recently passed the inflection point: they will certainly be able to relate and will assure you went through the same experience not too long ago. Work consistently, but donât overwork yourself.  At this phase of the game, know that you can be productive for around 6 hours a day maximum.  Working in an exhausted state will only prolong the time you spend passing the inflection point.
The best way to gain confidence in this stage is to power through doubts you have. Â Your emotions may start to feel like a roller-coaster. Â At first youâll feel like youâre on fire, but after 15 hours of struggling on the same problem itâs common to feel the opposite.
It can be frustrating to have no idea if something will take you 5 minutes, or 5 hours, but every time you power-through and implement the feature the rush of confidence will be everything you need. Â After solving a handful of hard problems without any help, youâll be addicted to the feeling of building something outside your comfort-zone.
How to know when youâve passed the inflection point
The final stage of the inflection point process is acceptance. Â Acceptance that software development is a process of continual learning. Â Acceptance that when you feel like youâve learned everything that you need to, it means you should start thinking about solving more complicated problems.
Have you experienced the inflection point yet? Share this post and start a conversation with your friends; you will be surprised with how many people have reached this moment.