While solving any programming problem, what is your modus operandi? How do you fix a problem?
Write everything you can about the observable behaviors of the bug or problem?
Take me through the mental checklist of actions you take.
|
9
|
While solving any programming problem, what is your modus operandi? How do you fix a problem? Take me through the mental checklist of actions you take. |
||||||||||||
|
|
|
Step away from the computer and grab some paper and a pen or pencil if you prefer. If I'm around the computer then I try to program a solution right then and there and it normally doesn't work right or it's just crap. Pen and paper force me to think a little more. |
||||||||||||||
|
|
|
Logic. Break the problem down, use your own brain and knowledge of each component of the system to determine exactly what is happening and why; then on the basis of this you will discover where the problem isn't, and hence determine where it must be. |
|||
|
|
|
|
Every problem I've ever had to solve on a computer has had something to do with solving a task in the real world. Therefore, I've learned to look at how I would accomplish something in the real world and map that to the computer problem. Example: I need to keep track of my student's grades and come up with a final grade that is an average of all the grades throughout the year? Well, I'd save the grades in a log (database) and I'd have a page for every student (Field StudentID) and so on... |
|||
|
|
|
|
First, I go to one bicycle shop; or another. Once I figure nobody invented that particular bicycle,
|
||||||||||||||||||||
|
|
|
Pencil, paper and a whiteboard. If you need more organization, use a tool like MindManager. |
|||
|
|
|
Andy Hunt's Pragmatic Thinking and Learning has a lot to say on this question. |
|||
|
|
|
|
Related question that may be useful: Helpful points of view, concepts or ways to think about problems every newbie should know |
|||
|
|
|
|
This algorithm has never failed me:
As an adjunct to step 3, as a last resort, I often employ the binary search method of finding wayward code. Simply comment half the code and see if the problem disappears. If it does then it must be in that half (and vice versa). Half the remaining code and continue. |
||||
|
|
|
Question: How do you eat an elephant? Answer: One bite at a time. |
||||||||||||||
|
|
|
One technique I like using for really big projects is to get into a room with a whiteboard and a pile of square Post-it Notes. Write your tasks on the Post-it Notes then start sticking them on the whiteboard. As you go, you can replace tasks that are too big with multiple notes. You can shift notes around to change the order that the tasks happen in. Use different colours to indicate different information; I sometimes use a different colour to indicate stuff that we need to do more research on. This is a great technique for working with a team. Everybody can see the big picture and can contribute in a highly interactive way. |
|||
|
|
|
|
I always take a problem to a blog first. Stackoverflow would be a good place to start. Why waste your time re-inventing the wheel when someone else may have already solved a similar problem in the past? If anything you will get some good ideas to solve it yourself. |
|||
|
|
|
|
|
||||
|
|
|
I stop working on it until tomorrow. I usually solve my problem in the shower the next day. I find stepping away from the issue, and allowing my brain to clear, allows a fresh perspective on the issue. |
|||
|
|
|
|
I use the scientific method:
This directed way of find the problem is much more effective than changing things at random, observe what happens and try to (inappropriately) use statistics. |
|||
|
|
|
|
I'm interpreting this as fixing a bug, not a design problem. Isolate the problem. Does it always occur? Does it occur only the first time run on a set of new data? Does it occur with specific values, but not with others? Is the system generating any error message that appear related to the problem? Verify that the error messages are not generated when the problem does not occur. Has anything been changed recently? Those are likely places to start looking. Identify the gap between what I know is working (e.g. I can start up the app and attempt to do a query) and what I know is not working (e.g. it gives me an error instead of the expected results). Find an intermediate point in the code where it seems possible to look for a problem (does this contain valid data at this point?). This allows me to isolate the problem on one side or the other of the point I looked. Read the stack traces. If you have a stack trace, find the first line that mentions in-house code. The problem is not in your libraries. Maybe it will turn out to be, but just forget about that possibly first. The error is in your code. It's not a bug in java, it's not a bug in apache commons HTTP client, it's in code written in your organization. Think. Come up with something the system could be doing that can cause the symptoms you see. Find a way to validate whether that is what the system is doing. No possibility the bug is in your code? Google for anything you can think of related. Maybe it is a bug in the library, or poor documentation leading you to use it wrong. |
|||
|
|
|
|
My method, something analytic-sinthetic:
|
|||
|
|
|
Probably a gross oversimplification:
But really, this holds 100% true. CONCEIVE What are you without an idea? You may have a problem, but first you must define it more explicitly. You have a frozen pizza that you want to eat. You need to cook that pizza! In programming, this is usually your brainstorming session for coming up with a solution from the hip. Here you decide what your approach is. PLAN Well, of course you need to cook that pizza! But HOW! Will you use the oven? No. Too easy. You want to build a solar cooker, so you can eat that frozen pizza anywhere that the sun grants you power to do so. This is your design phase. This is your pencil and paper phase. This is where you start to form a cohesive, step-by-step method to implementation. EXECUTE Well, you are going to build a solar oven to cook your frozen pizza; you've decided. NOW DO IT. Write code. Test. Commit. Refactor. Commit. |
||||
|
|
|
Answer these three questions in this order: Q1: What is the desired output? |
|||
|
|
|
|
|
|||
|
|
|
|
||||
|
|
|
One of my ex-colleagues had a unique Modus Operandi. Whenever faced with a hard programming problem (e.g. Knapsack problem or some kind of non-standard optimization problem) he would get stoned on weed, claiming his ability to visualize complex state (such as that of recursive function doing operations on set passed on the stack) was greatly improved. The only difficulty, the next day he could not understand his own code. So eventually I showed him TDD and he has quit smoking... |
|||
|
|