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 ?
|
59
|
|
|
|
|
|
I agree about the source control..very important. Continue to learn other languages. Don't rely only on the language you program in at work. You never know when Microsoft is going to stop supporting it... |
|||
|
|
|
|
Learning how to do stuff in practice can be even more fun then learning to do stuff in theory. Start with coding horror, read proggit (ok, so that wasn't available till I graduated college). Find blogs that interest you. Its scary at first but you'll understand it all soon. Who knows, one day I might even figure out what Steve Yegge is talking about. |
|||
|
|
|
|
Drink more beer |
|||
|
|
|
|
Decide what your core competency is and adjust your career to exploit that competency. “You can’t get a gold nugget from a horse turd no mater how hard you polish it.” |
|||
|
|
|
|
Based solely on the extremely limited experience that I've had, it would be: "You don't know half as much as you think you do." (Apply repeatedly.) If I had a second it would be that "sometimes removing semi-colons is more useful than adding them." |
|||
|
|
|
|
|
|||
|
|
|
|
when coding, always disconnect your Internet connection. |
|||
|
|
|
|
Know what you want the code to do (framed in the form of a test, which needn't be automated). And the code isn't done till it's passed that test. |
|||
|
|
|
|
Do the risky items first. In other words, work out what the greatest risk is to your project. The first task should be to do whatever it takes to drive out that risk, or kill the project early. Repeat until your funding source is willing to wear the remaining risks. This piece of advice subsumes "Specify first", "Write a disposable prototype first", "Write unit tests first", "Write the user stories first", "Write the project plan first", "Learn your tools first". They are all just special cases, for some projects, of the general rule. |
|||
|
|
You learn to write good code the same way you learn to write good prose: practice and constructive criticism. If your organization doesn't do code reviews already, get them to do so. You'll be amazed at how much you learn by reviewing others' code and having others review your code. |
|||
|
|
|
|
Beware the myth of the perfect code... it doesn't exist and never shall exist. I'd also add that design patterns are something I should have picked up sooner than I did. JB |
|||
|
|
|
|
640k is not enough for everyone... Oh, and impersonating Bill Gates is not cool. I wish I knew that a sentence ago. |
|||
|
|
|
|
Assume NOTHING! |
|||
|
|
|
|
1) Read (good) code to get ideas 2) If you're writing anything that will take you longer than 3 hours to complete, more of your time will be better spent designing it (off the keyboard, on paper or a whiteboard) than you think. Don't just jump into writing code! 3) Learn about design patterns and good code practices -- you don't want to be that guy (gal) with everything in one giant class and try to debug your 3 page long function. |
|||
|
|
|
|
That cobol you are learning might just come in useful after all, Not every programming job will require you to know the ins and outs of inheritance.... |
|||
|
|
|
|
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! |
|||
|
|
|
|
Practise your communication skills as much as possible, especially with non-technical people. They're most likely to be your customers. |
|||
|
|
|
|
Keep in touch with the good programmers/technicians/managers you work with; one day you'll want to hire them. |
|||
|
|
|
|
Don't try to finish solving a problem just because you start working on it. Instead, maintain a list of your most important projects and make sure you work a little on all of them on a regular basis (weekly, at least). This will enable you to deliver more than most of your peers, and sometimes with higher quality of the solutions. |
|||
|
|
|
|
Your life is about happiness, balance study and work with social skills and be active. Living healthy is way more important than knowing how code better than your peers. Also, social skills is way harder to learn than programming anyway... there's no set syntax or mathematics in life, so spend as much time with your friends/partner(s) as you can! |
|||
|
|
|
|
Be prepared to throw the first one away. |
|||
|
|
|
|
Always write code with the assumption that the person who'll maintain it is a schizophrenic killer who knows where you live. |
|||
|
|
|
|
Get some sleep. Your brain needs it, and it will pay off double: No time spent on writing psychedelic, sleep depraved code, and no time spent on correcting your psychedelic, sleep depraved code from last night. |
|||
|
|
|
|
Get the higher degrees before you get a job. It won't happen because of time and expenses otherwise. |
|||
|
|
|
|
Start contributing to an open source project earlier (it took me nearly 10 years to get around to it) and check into a version control system much more regularly :) |
|||
|
|
|
|
|
|||
|
|
|
|
You're a software engineer, so think like an engineer. Understand the reasons for things. Leave religion out of it. |
|||
|
|
|
|
Remember Hofstadter's Law: double that estimate. |
|||
|
|
|
|
Backup database then run sql command |
|||
|
|
|
|
Don't watch too much star trek, it's good to have something to talk about to people other than other coders :) |
|||
|
|
