Following this question, what real life good habits has programming given you?
|
|
Well to be a successful developer, you have to think about the problem before you try to solve it. I've taken this approach to projects around the house, and have found that doing the proper research, you can learn how to do many tasks, that might have previously seemed daunting. I applied this lesson to carpentry, and have done some room additions, I wouldn't have thought possible. Programming also requires attention to detail, and that is also a good trait to carry over into other aspects of your life. |
|||
|
|
|
|
I no longer equate thinking I'm right about something with actually being right about it. It's now very easy for me to entertain the thought that I may be wrong even when I feel pretty strongly that I'm right. Even if I've been quite forceful about something I believe, I'm able to back down very quickly in the face of contradicting evidence. I have no embarrassment about admitting that I was wrong about something. That all came from decades of working in a discipline that mercilessly proves you to be mistaken a dozen times a day, but that also requires you to believe you're right if you're going to make any progress at all. |
|||
|
|
Solving problems in small steps and not in one maybe overwhelming attempt which never gets finished. |
|||
|
|
|
|
This is not a habit, however it's a real life example of practical implementation of computer theory (thanks, Don K, for the great books you've written :) Army service (there are countries where it is obligatory, you know), and I and a mate are faced with ~1200 soldier cards that must be sorted by yesterday by captain's orders. Thankfully, the key was a 6-digit number. The mate was worried how long it would take, but I had Vol.2 fresh in my mind :) So I made ten stacks for digits 0-9, and I divided the cards based on the last digit. Packed them, repeated for the second-to-last digit. And so on. The procedure took about 30 minutes with a steady pace, and then we sat and had a relaxed, calm time. Obviously (for everyone who's been in an army), when the captain dropped by about 4 hours later ready to start shouting, we said, "oh, we just finished." (Community wiki because even if you like it, I wouldn't deserve the rep) |
|||
|
|
i always take out the trash when i'm out of space ;-) |
|||
|
|
|
|
Breaking tasks into smaller, more manageable steps, scheduling those steps with possible concurrency in mind ("honey, can't you change the diapers while I'm preparing meal?"). Also, I've learned that all information storage and retrieval must be handy when needed, so there are notebooks in various parts of the house for all practical purposes (kitchen: "I should buy that", phone: "write down that number" etc), and the written pages are all gathered in a specific place where they can be found. |
|||
|
|
|
|
The ability to give instructions or present ideas in a clear, precise manner. It's pretty rare nowadays that I can't explain almost exactly what I mean. |
|||
|
|
There is one habit that programming teaches a person that many fields struggle to carry across. Friendliness!I am a useless programmer, still being fairly new to the whole thing. If it were not for the help of people on this website and all across the Internet I would struggle deeply with many of the scripts and programs I have written in my time. This is why I hate the latest trend on StackOverflow of users leaving rude and impolite comments for those looking for help on simple problems or for their homework. It is of no concern what their work is for, only that they need help and that if I were in their position I would really appreciate some guidance. |
|||
|
|
I tend to think, before acting. |
|||
|
|
|
|
Always search on Google if you can't find it. |
|||
|
|
|
|
Pragmatic Paranoia |
|||
|
|
|
|
I think the 2 biggest life skills I've developed are 1 - Problem solving When faced with a situaition/problem i analyze my options and the pros/cons that go along with each. In the end I select the options which work best for all parties involved in "The Plan" 2 - flexibility. The ability to change "The Plan" on the fly and without a fuss when a certain aspect of it fails. |
|||
|
|
|
|
I'd have to say that I think more carefully than I did before, it actually encourages me to see how things work in real life, whether it be programming, nature or sports! It opened my mind to these things and I think it is really paying off; in short programming has made me more curious, without a doubt. |
|||
|
|
|
|
I use merge sort whenever I got a big pile of stuff that needs to be sorted. |
|||
|
|
Tackle life's challenges in iterations. In other words, tackle problems one step at a time; doing something is always better than doing nothing. |
|||
|
|
|
|
Effective requirements gathering. |
|||
|
|
|
|
asking others (irritating) follow up questions. |
|||
|
|
|
|
Paying careful attention to details. |
|||
|
|
|
|
I have a comment about everything |
|||
|
|
Optimization! Try to find to cut the time spent on cleaning or laundry. |
|||
|
|
|
|
Prioritising problems. Programming can be an exercise in creating solutions to non-existent problems, but as I’m not much of a programmer I think I’ve got pretty good at spotting the problems that are worth solving. Unfortunately, they don’t always match up with the things that clients ask for :) |
|||
|
|
|
|
Introduced me to useful steps in solving any problem, using divide and conquer, abstraction, etc. They work in real life too! |
|||
|
|
|
|
Being a hero doesn't mean you succeed in saving the day. It just means you tried. |
|||
|
|
|
|
Learning about and having to write algorithms make me think about ways to do things more efficiently even in a non-programming context. |
|||
|
|
|
|
I tend to focus too much. I sometimes blank out, people have been unable to awake me. Then all of a sudden, I break out of it, having achieved what I want. |
|||
|
|
|
|
Logical and calm approach to real live problems. Also I tend to optimize things I do like shopping or even how I park my bike. Also I like to keep things in order so I don't waste time later on. |
|||
|
|
I now tend to think of everything as objects so now when my wife throws an exception I simply catch it and deal with it and move on. Sometimes though it's an exception I wasn't expecting which is the nature of exceptions after all. Life simply stops working until I go over the same ground again and again looking for the previous erroneous statement which the debugger (in this case my wife) is unable to accurately express. The replies I receieve often leads me up the garden path and around the trees until I spot my mistake and correct it and try again. |
|||
|
|
|
|
Coming up with ways around issues |
|||
|
|
|
|
Being practitioner. Learning through doing things. Learning most of things in practice. Reading theory won't give much knowdle as actually doing that thing in practice. In other areas of life this helps me much IMO. |
|||
|
|
|
|
Problem analysis has been a big one- breaking the big problem into smaller ones, eliminate variables wherever possible- I use all of this the whole time in my horsemanship and in pretty much every other facet of my life. Also I've become much more aware of the value of creating tools to support a project rather than just focussing on the project itself and the value of maybe paying for something that will make the work I need to do a lot easier. |
|||
|
|
