您的位置:首页 > 编程语言 > Go语言

Going to the next level

2006-10-24 21:49 344 查看
Keep in mind that "next level" doesn't always mean more elegant code. In corporate settings, "next level" means becoming a better developer as opposed to a better programmer.

If you choose this path, you're basically striving to get better at predicting how long it will take to write code, at designing large chunks up front, at avoiding common errors and more thoroughly testing code, at structuring it so that it's much easier to maintain and most importantly (in my opinion), defeating all of the "accidental difficulties" that prevent you from getting into a groove.

The best programmer on our staff spends about 2/3rds of the day staring out the window, thinking about what he's going to code. What impresses me is when he figures out what he'll do, he then spins around in his chair, puts his hands on the keyboard - and without touching the mouse - writes out the code, the comments and the test cases, compiles it, runs the test cases, checks it into the source code repository and queues up the daily build.

In all fairness, he does admit it took him years of tweaking and experimenting and learning how to get into that zen-like state.

I think it's worth becoming a Java/C++ guru at some point, but right now, efficient developers are prized more than gurus in Corporate America.

======================================================

Personally, I put the next step at understanding the problem domain and knowing your customer. There is only so far you can go with patterns and architecture. Being able to predict what your customer is going to want in a certain situation (which require domain knowledge and customer preference knowledge) is a valuable skill because it prevents you from having to break your flow to go and ask them a simple question. I am not saying don't consult your customers, in fact, I am saying the oppposite, consult your customers so much that you know them, their problems and their solutions. Then write the code that gets them where they want to go.

Reading the Pragmatic Programmer is a good start in general on taking the next step also. Learning a scripting language also helps because it gives you a different perspective from Java/VB/C#/C++.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐