I'm a new programmer in college and was wondering if there are any bad habits to watch out for early on. Anything that you wish you knew to avoid when starting. Thanks.
|
55
|
|||||||||||||
|
|
|
Not using source control. There are a few instances where it is feasable to skip the source control. If you can count the number of characters in the source file on one hand, It's probably ok to skip the source control. Otherwise, you need it. |
||||||||||||
|
|
|
Jumping straight into writing code without thinking about what you're trying to achieve and how you're gonna do it usually leads to inconsistent code that needs to be re-written again and again. Also, don't get too attached to a particular paradigm. There are many ways to approach a certain task and one of the most important things you can learn is to choose the right tool for the job. Don't be afraid to step outside your box. |
|||
|
|
|
|
Believing (without question) what you've been told, or "common wisdom". What others tell you may be true, but often it is just an attractive idea that started somewhere and keeps traveling, like a virus. Your brain is yours. Use it. Think for yourself. |
|||
|
|
|
|
|
|||
|
|
|
|
While it's true that thinking about a problem before approaching it is very important, if you're not a seasoned programmer, sometimes you just need to start writing code. You can't foresee everything, and going over concepts in your head only gets you so far. If you're anything like me, you'll find out that the code evolves and validates in your mind as you write it. Sometimes something that made sense on paper will turn out to be a terrible idea as soon as you write a function implementing it. If you don't want to risk breaking existing code, start a Test project and try out the ideas and concepts for solutions there. It's sort of like TDD, but for people who like to experiment first, and then plan. |
|||
|
|
Quick list (in no particular order, but make sure you read about Occam's Razor) 1)stressing out is the worst thing you can possibly do, read up on the neuroscience here: Stress makes programmers dumber and the original series The Programmers' Stone 2)just keep doing and learning iteratively. Don't get too discouraged early on. Make time to look for prepackaged solutions that you can easily understand (try not to reinvent whenever possible). 3)don't blindly copy (cut & paste) "Copy and paste programming is probably one of the worst habits that one can develop while starting to learn programming. Learning how to program is best achieved by writing code and understanding other people's code. If you copy/paste code without understanding what's going on, you are doing yourself more harm than good." (from tvanfossen 4)Always set enough time aside for testing each piece of code that your write or connect to ("unit testing") codetoglory 5)look for common pitfalls in logic (antipatterns from deviant) 6)use appropriate named variables, whether long or short hypoxide 7)great one, don't optimize code before you have to, unless you know for sure the inner most loop call and the code isn't IO/memory limited originally from rob-kam. 8)catch error states. Die gracefully when you need to, pass back an error state otherwise (my personal far out web design top 10 designed them thinking about web content, but all are applicable to coding) |
|||
|
|
|
|
|
|||
|
|
|
|
If you run into something not working the way you expect, it is possible that it is the framework's fault, but not in your (or my) case, check, double check, and triple check your code, then sleep on it and then check your code again... see it was your code and not the framework :) |
|||
|
|
|
|
Be careful about charging ahead in your own direction when five minutes talking to somebody might save you a day of effort. It's usually worth just asking somebody. |
|||
|
|
|
|
Using the debugger (and ONLY the debugger) to fix bugs or code. It's really handy and easy to do this sometimes that you end up spending more time with the debugger than thinking about the design or logic. |
|||
|
|
Shotgun programming. That's where bugs are fixed by randomly changing things here and there hoping one of them will solve the problem. Shotgun programming takes many forms:
But never, never actually analyze your code. That takes too much effort. Just make changes and re-compile! |
|||
|
|
|
|
Code first, think later. |
|||
|
|
|
|
If you start a new programming task don't jump directly into the code. Great programming starts on paper (or in the UML-editor if you wish). Think before you code - it will save you a lot of time by not having to throw away solutions that didn't work out. |
|||
|
|
|
|||
|
|
The number 1 thing I wish had been emphasized in school was design patterns. The std. Design patterns have given me a new perspective on OOP and I wish my college had presented it. I've also started to try to invent my own design patterns based on rules the book outlined (mentioned below). That book is (I think it is great): http://oreilly.com/catalog/9780596007126/
Also, take a look at: http://en.wikipedia.org/wiki/Design_pattern_(computer_science) |
|||
|
|
|
|
|
||||||||
|
|
|
The one thing that has always been painful is failing to spend time designing the program before writing any code. I've regretted it every single time. |
|||
|
|
|
|
No matter what approach you take to writing a program, it will likely take longer than you originally anticipate, especially when you are new to it. Learn to budget your time. |
|||
|
|
|
|
I agree with many of the above, but I would like to add three more; the first from "Unix Principles" that were compiled back in the early days of computing which are amazingly pertinent to today. That is create each program to
Look at such things as grep or awk. Many programs today try to be all things to all people and they are difficult to figure out and probably horrible to debug. This does not mean that you have to apply it to the top level application, but apply it in functions, methods etc. The second thing is
The reason for this is that you will tend to think of modifications to the basic design as you are writing the code. This means that you have to step back and re-design some of the code that you have already written. A little design brainstorming will make the whole process go better.
The third thing is: **
** If you are using a random access record file of say 10 or 100 or even 10,000 records of some simple structure that doesn't need to cross reference another database just "roll your own" random access file or use xml and then access the data through your own code. I have had to install database programs of different types just to handle some insignificant amount of data. Databases are great for businesses that have millions of customers and a lot of tables are involved that have to access one another. But they are bloat for a few thousand or less simple records of say "Name, Address, City, State, Zip code" |
|||
|
|
|
|
Not getting an agreed requirements/specification document (or similar), signed off before writing any code. It will kill your enthusiasm for coding rapidly when you discover that you have not hit the objective and have to re-write everything. |
|||
|
|
|
|
Things to avoid to me :
Things I encourage :
This is my first tought on it, I might add some stuff later ;) Hope this help you ;) |
|||
|
|
Realizing that as a developer, you're going to have expectations placed on you to solve problems that you have no clue of how to fix. You'll never stop learning new things. Runner up: Model-View-Controller (MVC). Also-- get used to having weeks and even months worth of dedicated hard work completely thrown away by your manager b/c she decided to change direction on a project just before its deadline. |
|||
|
|
|
|
Make sure that you get your code reviewed from your peers. It always helps! |
|||
|
|
|
|
Writing code that's hard to read and needs lots of comments is a bad habit to avoid. Instead, you should write code that documents itself and doesn't need comments. Here's an (artificial) example: BAD:
BETTER:
|
|||
|
|
|
|
Not programming deliberatly. Many programmers don't know what they are doing, they don't know why their code is working, and hence they don't understand when it suddenly doesn't work. Read "Pragmatic programmer" by Andy Hunt, it's full of good programming habits. This habit is from that book. |
|||
|
|
|
|
Coding firstThis may sound obvious, but coding before thinking through a task/problem beforehand is still more common than you'd think. It may even be behind the lack of useful comments in code - they're harder to add later, except maybe throughversion control. I've itched this scratch and suffered occasionally from it with logic errors that cost more time debugging since the code give results but solves the wrong problem or in the wrong way. I'm not saying you should contemplate universal implications or have a formal definition of things, . But, a simple diagram or checklist helps provide a mental model to revisit and confirm. Mind mapping tools can help for many projects, for design as well as collaboration and documentation. In programming exercises for beginner students, I usually recommend that they transcribe or paraphrase the homework problem text to serve as comments for their code. This reminds me of recommendations for checklists in operating rooms because they significantly reduce surgical errors and patient mortality. |
|||
|
|
|
|
|
|||
|
|
|
|
Not writing unit tests for your code is a horrible habit to get into. Learn a unit testing framework for your language of choice and try out Test Driven Development for a couple of weeks you'll never go back. The tests help you design better APIs and actually change and improve your code without fear of breaking things. |
|||
|
|
|
|
Also, trying not to blatantly repeat the many good ideas above Avoid global variables. Write every with reuse in mind. Identify common patterns and implement them as parameterized routines. |
|||
|
|
|
|
One terrible habit I still encounter in the companies I work for is the lack of will to extend their knowledge. Most programmers learn a specific technology and stay there. Don't evolve. Others think that the company should pay them to take a course to recycle their knowledge. I don't think that's the way to go. We, personally, must have a conscience that we need to continuous learn. The bad habit is: don't ever stop learning! |
|||
|
|

