If you could go back and give yourself one piece of advice at the start of your programming life/career to help you on your way what would it be ?
|
60
|
|
|
|
|
|
Don't watch too much star trek, it's good to have something to talk about to people other than other coders :) |
|||
|
|
|
|
It's easier for your backup strategy if you have in mind
|
|||
|
|
|
|
Learn to embrace outsourcing. |
|||
|
|
|
|
If you are behind on a deadline, talk to your boss politely before doing free overtime. Quite often your boss will extend the deadline, reduce the requirements, give some of the work to someone else or give you paid overtime instead. If he doesn’t it is a good sign that you need to find a new boss. |
|||
|
|
|
|
Using other people's code is like wearing someone else's underwear. Get used to it - it feels funny at first, but it is ultimately a time-saver. As a corollary, learning to write in other people's style is a benefit for keeping the feel of their code. Also, don't bitch too much about other people's code. You have to work with other people. He/she may be the idiot today, but it will be you tomorrow. |
|||
|
|
|
|
If you can't use the new technology you want to use at work, either get a job where you can, or create a side project to get experience with it. |
|||
|
|
|
|
Find a mentor and don't be afraid to ask questions. |
|||
|
|
|
|
Find a Mentor in your early career, i realized many of my assumptions where not correct. if i had channelized my energy in my initial career, it would have been better. and also Mentor some one you know who is in need. |
|||
|
|
|
|
Patience, Perseverance, and Practice - These three things will help you survive the hours of debugging |
|||
|
|
|
|
Pursue your own interest first, work as much as necessary to pay the bills, and pursue the technologies you are passionate about. If you can't find a work related projects in those technologies to get experience in, create your own project. |
|||
|
|
|
|
If I could give one piece of advice to the 13-year-old me toying around with Turbo Pascal back in the day - it would be this: Whenever you find yourself writing code and it's starting to feel really exciting and challenging.... That's when you're doing it wrong. Go back, re-read the API, grab a coke, relax - you're doing it wrong. In my experience, great code is hardly ever what I call 'challenging'. Don't get me wrong; writing great code can be a thrill when you're in the zone, and it can be hair-pullingly frustrating when you're not, sure -- but the code itself is rarely 'interesting'. It's not full of cool hacks to make some parameter pseudo-overloaded in some special case; it's not riddled with exotic heuristic functions or nested ifs or magic GOTOs or completely obfuscated bit juggling. Even the most amazingly optimized algorithms follow sound, simple, elegant principles to accomplish what they do. So the very instant you feel a tingle in that heavy-duty problem-solving part of your brain -- STOP! Because you're doing it wrong. I am not the best coder in the world, and I don't work on the hardest problems known to man, so if I'm finding nifty solutions to hard problems, it's usually because I've created those problems for myself. With a little bit of refactoring, the problem goes away, and the code turns out far more readable. Either that, or it's simply that I didn't check the API well enough, and the framework (or the language!!) provides a function just for that purpose, and one that was written by a much better coder than me. I can't even begin to tell you how many 'nifty' classes and algorithms I've built and then scrapped because I discovered there was an optimized language construct for exactly that purpose, sometimes even with the same method name! Anyway, for better or worse - that would be my advice. Most of the time, great code is elegant, readable, uses practical, sound design patterns and best practices anywhere it can. And once you start to get it, that kind will tingle too. |
|||
|
|
Comment your code where necessary |
|||
|
|
|
|
You're not as smart as you think you are. Shut up, listen and learn. I pissed away a great many learning opportunities because I was too busy trying to be too clever by far. Having mentored/managed a number of young developers since then, let me say, I was by no means unique. |
|||
|
|
|
|
Work hard to reach your dreams while you're young! Find a way to couple all those abstract concepts together into an integrated solution. |
|||
|
|
|
|
Be patient until you have completed your code and keep on improving it till u are statisfied with it |
|||
|
|
|
|
Start using a trackball earlier. I do so now but still live in mortal fear of RSI. |
|||
|
|
|
|
Oh. skim the books, but the best sites are... sites like these :) /mp |
|||
|
|
|
|
Register stackoverflow.com and register crackoverflow.com |
|||
|
|
|
|
Don't do prototypes! |
|||
|
|
|
|
Never work for a company that doesn't score at least a ten on the [Joel Test] (http://www.joelonsoftware.com/articles/fog0000000043.html "Joel Test") |
|||
|
|
|
|
Buy Google stock! |
|||
|
|
|
|
Write Unit Tests You know that test code that you write in your main methods as you go along, to make sure the code does what you think it should, then delete and replace when you move on to the next item? Don't delete it. Find a way to keep it all and build it into an effective unit test/regression suite. Oh - and find out what those are at the same time. They are much easier to do than you might think. You'll thank yourself in the long term. Oh yes, and don't forget to coin the term Test Driven Development for it. Then it'll be your name that everyone remembers! |
|||
|
|
|
|
|
|||
|
|
|
|
Optimize, optimize, optimize! Try to optimize everything that you do,no matter you do it once in your life or do it every day. |
|||
