It looks like none of my children will become programmers. Instead of letting
my fatherly advice to my new programmer son or daughter go to waste, I am going
to inflict it on you. If you are newly embarking on the journey that is becoming
a programmer, here is advice your father would tell you if he were a programmer.
These are things I had to learn the hard way.
Keep Learning: Read. Go to conferences. Subscribe to journals. Take
classes. Whatever it takes for you to keep learning, make it a priority. Learn
about every language you can find. Take time to learn about any new frameworks,
algorithms, techniques, models, paradigms, you can. Each gives you one more
tool in your tool chest. Each will help you more easily tackle your next
programming problem. Find a mentor, someone much better than you, and learn all
they can teach you. Never stop learning.
Learn To Communicate: I often joke that the most important skill you
can learn as a programmer is how to draw a rectangle on a white-board.
Communication is critical to the job of a programmer. Communicating with
customers, clients, users, co-workers, bosses, vice presidents, CEO's,
board-members, VC capitalists, all will become important at some point in your
career. Learn how to speak in public. Learn how to write in English. Learn to
effectively communicate in person. Learn how to persuade without shouting,
getting angry, or getting flustered. Learn how to speak without jargon. Help
people understand what you are doing. Learn to break things into simple,
understandable pieces. Learn to communicate by analogy and symbolism. Learn to
communicate.
Be Predictable: Learn how fast you can comfortably program. Wait to
predict how long it will take you to complete a task until you understand it.
Allow for the unexpected. Plan for vacations and time-off. Live with your
predictions. I don't believe I know a problem well enough to predict how long it
will take to complete until I can break that task down into sub-tasks that each
take no longer than 3 days (often less than one day). Live by this rule,
under-promise, over-deliver. It is better to deliver in 10 days what you
promised in 15 than to deliver in 10 days what you promised in 5. People depend,
schedule, and plan around your predictions. Make them the best you can and make
sure you can comfortably do them or you will be asked to live up to your
uncomfortable predictions. You will not be good at it at first; to compensate,
verify your predictions with someone more experienced. Learn to get better. Be
predictable; other depend on you.
Own Up To Your Mistakes: You will make mistakes. How you handle your
mistakes is how you will be judged. Learn how to say "I was wrong." If you
underestimated how long it will take you to do something, tell people as soon as
it is clear to you. If you broke the build, fix it. If you created a bug, fix
it. Don't deny the mistake, don't make excuses for the mistake, don't figure out
how to hide the mistake, don't blame others for the mistake, do something about
it. Take ownership of your mistake or you will repeat it.
Never Let Bad Code Off Your Desk: Your job as a programmer is to write
code that works, never let code off your desk you are not sure meets that
criteria. Not only does it reflect badly on you, it is much more expensive, and
much harder, to find a problem once it leaves your desk than before. Learn to
love unit tests. Learn to love code coverage. Learn to test your code better
than people who are paid to test it. Be embarrassed about bugs that are found
after you have checked-in. Be especially embarrassed when a customer finds the
bug. Don't rely on others to find your bugs for you, find them and fix them
yourself. Don't hope it will work. Test it. Don't assume it will work. Test it.
Don't whatever. Just test it. If you haven't tested it, it doesn't work; of this
you can be sure. But, even if you are diligent with testing, bugs will
get by you. You will make mistakes but try your best not to.
Programming is Fun But Shipping is Your Job: Programming is fun. It is
the joy of discovery. It is the joy of creation. It is the joy of accomplishment. It
is the joy of learning. It is fun to see your handiwork displaying on the
screen. It is fun to have your co-workers marvel at your code. It is fun to have
people use your work. It is fun have your product lauded in public, used by
neighbors, and discussed in the press. Programming should be fun and if it
isn't, figure out what is making it not fun and fix it. However, shipping isn't
fun. I often have said that shipping a product feels good, like when someone
stops hitting you. Your job is completing the product, fixing the bugs, and
shipping. If bugs need fixing, fix them. If documentation needs writing, write
it. If code needs testing, test it. All of this is part of shipping. You don't
get paid to program, you get paid to ship. Be good at your job.
Remember these simple statements,
- Never stop learning.
- Communication is critical.
- Under promise, over deliver.
- "I was wrong."
- If it is not tested it doesn't work.
- Programming isn't your job, shipping is.