vote up 42 vote down star
42

I'm what I think would be considered an 'advanced' programmer. I have years of experience doing reverse-engineering, kernel/compiler/emulation/game development, many programming languages under my belt, etc. Up until about two years ago I felt I was continually learning about coding, and I was a good coder but my overall development (documentation, management, organization, etc) skills were poor, so that became the focus of my learning. Now that I feel those have matured to the point where it's not worth complete focus, although obviously I still have a ton to learn, I now feel like my learning has largely stagnated. I had prided myself on learning new things constantly, but eventually there comes a time where the interesting things to learn are few and far between.

I've been trying to come up with little exercises to continue advancing my knowledge -- building a Tokyo Cabinet type DB being my latest idea to that end -- but I'm simply running out of places to go. It's having a definite effect on my morale as I move forward, feeling like I'm nearing the end of the road, so to speak, despite that I know there's far more out there I haven't even considered.

So my questions are these: How do you go beyond this point? What programming exercises, big or small, will expand my mind? Lastly, has anyone else out there hit this point, and how did you get over it?

Edit: I want to clarify a bit. I don't think I've learned everything there is to know about my fields, or anywhere even near it. I know there's a lot left for me to learn, but I simply don't know what that actually is, which is largely the point of the question. In addition, I've wanted new ways of expanding my skills as a tech person, not just as a coder, so thanks to everyone that's given such recommendations. There's a lot to take in here, but I think this will all help greatly.

flag
4  
Well, I'd go for that social life thing for a while, if I were you ;) – Hitchhiker Oct 8 '08 at 11:17
show 4 more comments

51 Answers

prev 1 2
vote up 1 vote down

You choose! Learn the Banjo or Accordion

link|flag
show 1 more comment
vote up 1 vote down

The act of coding is only one small part of what a real developer does in a day. The biggest thing is to have domain specific knowledge.

If you want to advance yourself and your skills, pick a different domain and learn the complexities of it.

link|flag
vote up 15 vote down

I don't want to hurt your feelings, but you the way you write about yourself shows that you, yourself, see you as the limiting factor to becoming a true master.

Note that even though with lots of practice most people can get good at what they are doing, only a few will be able to become a true master of their art.

A lot of answers here will get you thinking. Learning new things, piling up knowledge, going the way of "always more" might be not the way to true greatness.

Maybe you have known a lot of the things written here for a long time, but you did not want to decide on which way to go now.

You are at a junction right now, as long as you don't decide for yourself which way to go, you will not move (forward).

Might be a bit philosophical, but it is the best advice I can give you.

Good luck in finding your way.

To close with a Yoda comment: "Do, or do not. There is no try."

link|flag
show 1 more comment
vote up 7 vote down

I know this may sound sarcastic--but really I'm not being sarcastic. I'm quite serious.

Have you ever worked in an IT department and written code for an end-user? Writing a compiler or a driver or such like that, as hard as it is in its own right, is a different beast than dealing with constantly changing user requirements and actually interacting with the users of your products. It's not that one is harder than the other; they're just two different types of development and each has its own challenges and difficulties.


Edit:

Among some of the other challenges the IT department developer faces:

1.) Legacy code--maintaining and interfacing with.

2.) Unstable requirements

3.) Arbitrary and usually inflexible deadlines

4.) No choice of programming language (language is set for you by management or customer)

link|flag
show 4 more comments
vote up 32 vote down

You can reassess your proficiency by looking at this Programmer Comptency Matrix.

link|flag
show 5 more comments
vote up 0 vote down

You could try changing your main OS.

Switching to a different OS was an interesting experience for me it altered the problem solving domain I was used to, forcing me to adapt and learn new things.

link|flag
show 1 more comment
vote up 6 vote down

You are not at the end of the road. You are at a junction.

The different directions are:

  • Teach others.
  • Realize that project do not consist of 100% coding. Find out what the other ingredients are.
  • Read a book from Tom de Marco and look beyond being a programmer.
  • Try different fields of programming (functional programming, AI, model driven, ...)
  • ...
link|flag
vote up 4 vote down

Oh, so you are bored with the tactical level aspect (=coding) of software development? Well, maybe you can indulge in the world of software architectures or requirement engineering. That's one step up in scope. No worries, you will quickly find 10 textbook-like books to absorb.

Or you can go one step down in scope and indulge in computer science, complexity theory (how about the P=NP problem), quantum computing, language theory or genetic algorithms. These are distinct fields.

Or you can enter the Ivory Tower of Mathematics.

link|flag
show 1 more comment
vote up 15 vote down

Here are some suggestions:

  • Semantic Web technologies
  • try to program or design an effective massively concurrent system
    • distributed cellular automata based quantum mechanic simulations?
    • could you do this kind of thing with a series of GPUs?
  • artificial cognition
    • object recognition
    • natural language processing
  • life sciences
    • bioinformatics
    • a good genomic IDE + synthetic DNA compiler = $$$billions
  • design your own hardware
    • microchip architecture
    • robotics
  • security
    • hack into the Kraken botnet undetected and try to bring it down from the inside
    • peruse the source code for an mission-critical open source system and find vulnerabilities
link|flag
show 1 more comment
vote up 4 vote down

Here's a few:

Get involved with some open source projects that could benefit from your involvement. There are a world of good ideas out there that need traction to move forward.

Try something outside your normal area of expertise.

Try something tangential to software development.

Pick something you don't know anything about, go learn it inside and out and write a book about it.

link|flag
show 1 more comment
vote up 4 vote down

Do you mean coding or programming? Because to me there's a difference. I'm far from being in your situation, but if I were you, I would either try to create familiar things in new environments (another web app in Java if you're into .NET), or rather explore the creation of developer tools (MVC frameworks, IDEs, ORM tools for example). After all it all depends on what you like to do. If you're into architecture, find a very big project/framework to design. If you're into algorithms, then find something to optimize. If you're into programming languages, then learn one new each month (I'm sure you haven't worked with all of them).
Then the other option is to dive into something different than coding. Probably try to improve the development process in your organization, dive into management, or write a book. This is very subjective actually, I'm just listing all the options I would consider.

link|flag
vote up 6 vote down

Cody, I can highly recommend looking into Dunning Kruger. Consider its implications for your position and go from there.

link|flag
vote up 14 vote down

What programming exercises, big or small, will expand my mind?

  1. Register on Project Euler and SPOJ and solve as many problems as you can before you get bored.
  2. Read a book on algorithms and data structures. Implement all algorithms in a new language.
  3. Quit your job and do a PHD in Computer Science.
link|flag
show 2 more comments
vote up 4 vote down

Learn CUDA

link|flag
show 1 more comment
vote up 5 vote down

Try pushing yourself outside your comfort zone. For example, you mention that you know many programming languages, but if they're all they're all C variants (C++/Java/C# etc etc) then try exploring more esoteric ones like Lisp/Scheme/Haskell/Smalltalk. I've found that my doing this it gives you greater insight into the coding process and really helps you come up with alternative solutions to problems.

link|flag
show 2 more comments
vote up 13 vote down

Write a C compiler in PostScript.

On a less painful note; Try your hands at cutting edge technology and try to participate. Create an open source project for it if you need to.

Or you could try to design your own language.

link|flag
show 6 more comments
vote up 3 vote down

I am kind of person who too hate being static. So what i will usually do, find my interest in some other parallel field. Another challenge in another language, domain, project etc.Some time contribute to open source projects as well. As being a developer of almost each platform i feel this thing always give me courage to learn more and more.

link|flag
vote up 6 vote down

I don't see a mention of Functional Programming, or other paradigm shifts. While I haven't personally gone through the "Ah-ha!" that such a paradigm shift can give you, it makes sense that such a change in your style will give you a new perspective on programming in general.

link|flag
show 1 more comment
vote up 3 vote down

pick an unsolved problem and hack away until you've solved it

link|flag
vote up 15 vote down

I havent hit this point, so take my advice lightly. I think you need to take visit a few university websites and see what people are publishing in the fields your interested in. That might give you some inspiration.

link|flag
vote up 38 vote down

I feel your pain. It must be very tough being so good you know almost everything. How about spending time teaching others of lesser abililty? That might inspire you again.

link|flag
2  
Phil's answer might be unnecessarily sarcastic but he does have a point - the next logical step for you, in my view, is to do more mentoring/leading (not necessarily management). The world needs mentors... – Johan Oct 8 '08 at 11:24
1  
It is amazing the things you learn from mentoring other people. A different perspective on the same topic can do wonders. Plus you don't really know if you know a topic until you start fielding a ton of questions from others... – Dining Philanderer Nov 20 '08 at 16:13
show 7 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.