How do you advance beyond being an 'advanced' programmer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T20:07:45Zhttp://stackoverflow.com/feeds/question/182105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer42How do you advance beyond being an 'advanced' programmer?Cody Brocious2008-10-08T10:49:55Z2009-04-17T07:17:54Z
<p>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.</p>
<p>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.</p>
<p>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?</p>
<p>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 <i>is</i>, 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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182117#18211738Answer by Phil Wright for How do you advance beyond being an 'advanced' programmer?Phil Wright2008-10-08T10:53:17Z2008-10-08T10:53:17Z<p>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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182121#18212115Answer by epicstruggle for How do you advance beyond being an 'advanced' programmer?epicstruggle2008-10-08T10:54:20Z2008-10-08T10:54:20Z<p>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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182132#1821323Answer by matpalm for How do you advance beyond being an 'advanced' programmer?matpalm2008-10-08T10:56:19Z2008-10-08T10:56:19Z<p>pick an unsolved problem and hack away until you've solved it</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182134#1821346Answer by Guvante for How do you advance beyond being an 'advanced' programmer?Guvante2008-10-08T10:57:37Z2008-10-08T10:57:37Z<p>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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182137#1821373Answer by Gripsoft for How do you advance beyond being an 'advanced' programmer?Gripsoft2008-10-08T10:57:50Z2008-10-08T10:57:50Z<p>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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182141#18214113Answer by Rik for How do you advance beyond being an 'advanced' programmer?Rik2008-10-08T10:59:22Z2008-10-08T14:56:19Z<p>Write a C compiler in PostScript.</p>
<p>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.</p>
<p>Or you could try to design your own language.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182142#1821425Answer by Sean for How do you advance beyond being an 'advanced' programmer?Sean2008-10-08T11:00:16Z2008-10-08T11:00:16Z<p>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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182144#1821444Answer by endian for How do you advance beyond being an 'advanced' programmer?endian2008-10-08T11:00:50Z2008-10-08T11:00:50Z<p>Learn CUDA</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182147#18214714Answer by Alexander Kojevnikov for How do you advance beyond being an 'advanced' programmer?Alexander Kojevnikov2008-10-08T11:01:59Z2008-10-08T11:01:59Z<blockquote>
<p>What programming exercises, big or
small, will expand my mind?</p>
</blockquote>
<ol>
<li>Register on <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> and <a href="http://www.spoj.pl/" rel="nofollow">SPOJ</a> and solve as many problems as you can before you get bored.</li>
<li>Read <a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">a book</a> on algorithms and data structures. Implement all algorithms in a new language.</li>
<li>Quit your job and do a PHD in Computer Science.</li>
</ol>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182150#1821506Answer by Mark Nold for How do you advance beyond being an 'advanced' programmer?Mark Nold2008-10-08T11:02:24Z2008-10-08T11:07:56Z<p>Cody, I can highly recommend looking into <a href="http://en.wikipedia.org/wiki/Dunning-Kruger_effect" rel="nofollow">Dunning Kruger</a>. Consider its implications for your position and go from there.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182158#1821584Answer by Slavo for How do you advance beyond being an 'advanced' programmer?Slavo2008-10-08T11:04:48Z2008-10-08T11:04:48Z<p>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).<br />
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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182174#1821744Answer by itsmatt for How do you advance beyond being an 'advanced' programmer?itsmatt2008-10-08T11:08:51Z2008-10-08T11:08:51Z<p>Here's a few:</p>
<p>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.</p>
<p>Try something outside your normal area of expertise.</p>
<p>Try something tangential to software development. </p>
<p>Pick something you don't know anything about, go learn it inside and out and write a book about it.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182196#18219615Answer by Mark Cidade for How do you advance beyond being an 'advanced' programmer?Mark Cidade2008-10-08T11:12:45Z2008-10-08T11:12:45Z<p>Here are some suggestions:</p>
<ul>
<li>Semantic Web technologies</li>
<li>try to program or design an effective massively concurrent system
<ul>
<li>distributed cellular automata based quantum mechanic simulations?</li>
<li>could you do this kind of thing with a series of GPUs?</li>
</ul></li>
<li>artificial cognition
<ul>
<li>object recognition</li>
<li>natural language processing</li>
</ul></li>
<li>life sciences
<ul>
<li>bioinformatics</li>
<li>a good genomic IDE + synthetic DNA compiler = $$$billions</li>
</ul></li>
<li>design your own hardware
<ul>
<li>microchip architecture</li>
<li>robotics</li>
</ul></li>
<li>security
<ul>
<li>hack into the <a href="http://en.wikipedia.org/wiki/Kraken_botnet" rel="nofollow">Kraken botnet</a> undetected and try to bring it down from the inside</li>
<li>peruse the source code for an mission-critical open source system and find vulnerabilities</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182201#1822014Answer by kineas for How do you advance beyond being an 'advanced' programmer?kineas2008-10-08T11:13:48Z2008-10-08T11:13:48Z<p>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.</p>
<p>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 <strong>fields</strong>.</p>
<p>Or you can enter the Ivory Tower of Mathematics.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182210#1822106Answer by Black for How do you advance beyond being an 'advanced' programmer?Black2008-10-08T11:17:19Z2008-10-08T11:53:53Z<p>You are not at the end of the road. You are at a junction.</p>
<p>The different directions are:</p>
<ul>
<li>Teach others.</li>
<li>Realize that project do not consist of 100% coding. Find out what the other ingredients are.</li>
<li>Read a book from Tom de Marco and look beyond being a programmer.</li>
<li>Try different fields of programming (functional programming, AI, model driven, ...)</li>
<li>...</li>
</ul>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182221#1822210Answer by diciu for How do you advance beyond being an 'advanced' programmer?diciu2008-10-08T11:20:49Z2008-10-08T11:20:49Z<p>You could try changing your main OS.</p>
<p>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.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182241#18224132Answer by mamama for How do you advance beyond being an 'advanced' programmer?mamama2008-10-08T11:27:48Z2008-10-08T14:57:28Z<p>You can reassess your proficiency by looking at this <a href="http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm" rel="nofollow">Programmer Comptency Matrix</a>.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182286#1822867Answer by Onorio Catenacci for How do you advance beyond being an 'advanced' programmer?Onorio Catenacci2008-10-08T11:39:52Z2008-10-08T11:39:52Z<p>I know this may sound sarcastic--but really I'm not being sarcastic. I'm quite serious.</p>
<p>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. </p>
<p><hr /></p>
<p>Edit:</p>
<p>Among some of the other challenges the IT department developer faces:</p>
<p>1.) Legacy code--maintaining and interfacing with.</p>
<p>2.) Unstable requirements</p>
<p>3.) Arbitrary and usually inflexible deadlines</p>
<p>4.) No choice of programming language (language is set for you by management or customer)</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182314#18231415Answer by HuibertGill for How do you advance beyond being an 'advanced' programmer?HuibertGill2008-10-08T11:46:51Z2008-10-08T11:51:59Z<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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).</p>
<p>Might be a bit philosophical, but it is the best advice I can give you.</p>
<p>Good luck in finding <em>your</em> way.</p>
<p>To close with a Yoda comment:
"Do, or do not. There is no try."</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182342#1823421Answer by Chris Lively for How do you advance beyond being an 'advanced' programmer?Chris Lively2008-10-08T11:54:52Z2008-10-08T11:54:52Z<p>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.</p>
<p>If you want to advance yourself and your skills, pick a different domain and learn the complexities of it. </p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182391#1823911Answer by Bob Herrmann for How do you advance beyond being an 'advanced' programmer?Bob Herrmann2008-10-08T12:05:41Z2008-10-08T12:05:41Z<p>You choose! Learn the Banjo or Accordion</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182395#1823953Answer by Doug L. for How do you advance beyond being an 'advanced' programmer?Doug L.2008-10-08T12:06:44Z2008-10-08T12:06:44Z<p>One option would be to find a business or industry that interests you. This does not necessarily mean a computer or technology industry. Just find something that you can get passionate about, you need to get into it pretty deep. Every company has room to imrove. The idea is to learn as much as possible about that business and its processes. Then design solutions that they need to solve their issues. You can approach this as an employee, consultant, independant software vendor, etc. whatever works for you.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182486#1824861Answer by dblack for How do you advance beyond being an 'advanced' programmer?dblack2008-10-08T12:28:58Z2008-10-08T12:28:58Z<p>I've had a similar problem... I know there's quite a bit more to CS than what I know, but pure CS is no longer interesting enough in itself.</p>
<p>I don't see embedded development in your list. The satisfaction for me of seeing a physical device move around under your control is much greater than pixel flipping on a screen. The challenge is also greater, in a way. When you can't trust your hardware or even your compiler things can get really interesting.</p>
<p>Plus, the average embedded developer is WAY behind, so you can really shine there. The scope and architecture of PC development dwarfs most any embedded project... so we're well practiced in a level of system complexity embedded developers can usually only dream (or have nightmares) about. If you can master the additional debugging and toolchain complexities in embedded development, you're way way ahead. </p>
<p>FPGA development is great for even more insane levels of control, speed, and complexity.</p>
<p>I've moved my contracts into about 1/3 embedded and FPGA development, and just about all of my hobby projects are now in these two areas. I plan on expanding that to between 1/2 and 2/3.</p>
<p>I'm generally much more motivated now. I have a long term goal again... learning any component parts required to build physical electronics products (being sure to have a lot of fun along the way).</p>
<p>Oh, by the way... in case it's not clear... there ARE significant challenges to embedded that WILL make your a significantly better programmer. So, if your only goal is to improve as a pure programmer, this is still a valid direction to go in.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182501#1825011Answer by Kibbee for How do you advance beyond being an 'advanced' programmer?Kibbee2008-10-08T12:33:43Z2008-10-08T12:33:43Z<p>Do some work with databases. Large databases. From looking at what you do have experience with (reverse-engineering, kernel/compiler/emulation/game development) it doesn't seem like you would have had a lot of exposure to working with very large dataset, or even using databases. Take a look at the web technologies. There is a lot to learn when you have a system that will be accessed by thousands of people at a time, with hundreds of gigabytes of data that they will be accessing.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182516#1825160Answer by tloach for How do you advance beyond being an 'advanced' programmer?tloach2008-10-08T12:37:41Z2008-10-08T12:37:41Z<p>You take everything you know. Find the most annoying problem that everyone has in some area you've worked. Solve it. Start a business to take money from people who need your solution. Works especially well if you really know the area you're selling to. Additionally running a business requires a whole new set of skills and will let you see your old positions from a new perspective.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182596#1825960Answer by sammyo for How do you advance beyond being an 'advanced' programmer?sammyo2008-10-08T12:58:48Z2008-10-08T13:30:09Z<p>Not to seem flip, but get used to the feeling. All the best people I've heard always are striving for a better problem, better tools and mastery of the tools. I've heard Donald Knuth speak and read a bit and he only seemed interested in the next problem. I'd add that getting some work into the open source world and listening carefully to all feedback will go a long way. </p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182743#1827434Answer by Greg Dean for How do you advance beyond being an 'advanced' programmer?Greg Dean2008-10-08T13:27:52Z2008-10-08T13:27:52Z<p>Write a new OS from the ground up. You can name it <strong>HUBRIS</strong></p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182807#18280710Answer by Kent Beck for How do you advance beyond being an 'advanced' programmer?Kent Beck2008-10-08T13:40:55Z2008-10-08T13:40:55Z<p>It sounds like your motivations are changing, which can feel disorienting when you've relied on the old set for many years. First, please be assured that there are plenty more technical challenges out there. If what you want to do is program, you can keep programming new and challenging things forever. </p>
<p>About five years ago I went through what seems like a similar crisis where I lost my old set of motivations. Two things helped get me out of it:</p>
<ul>
<li>I held a session at an open space-style conference called "Re-Lighting the Fire" where a bunch of us talked about similar experiences. This helped me understand that I wasn't alone.</li>
<li>I kept programming. Pretty soon I hit a project that, well, re-lit all the fires. This helped me remember that I'm a programmer who loves programming and that I should keep programming if I wanted to be happy.</li>
</ul>
<p>Something else that helped me was taking some time to understand why I was dissatisfied. One thing I found helpful was "morning pages", where I sit and hand write two pages in a notebook without ever letting the pen stop.</p>
<p>Even though what you are going through is hard, this is an opportunity for you to take your skills and apply them at the next level. I wish you success.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182997#1829971Answer by Abyss Knight for How do you advance beyond being an 'advanced' programmer?Abyss Knight2008-10-08T14:15:03Z2008-10-08T14:15:03Z<p>Do something new. Anything. Web development, desktop development, Flash. Get out of your rut and find something enjoyable to tinker with. We all get to this point, and honestly, that's when I left my last job. When I stop learning, I quit. Personal enrichment is great, but couple that with a working environment that promotes that amount of keeping current and you're gold. </p>
<p>It's also helpful to remember that <a href="http://www.codinghorror.com/blog/archives/000543.html" rel="nofollow">programming alone doesn't make you a better programmer</a>. And for the others who seem offended by the OPs questions, remember also that:</p>
<blockquote>
<p>[In the analysis of Coding War Games
results, 1977 - 1986, we found that]
people who had ten years of experience
did not outperform those with two
years of experience. There was no
correlation between experience and
performance except that those with
less than six months' experience with
the languages used in the exercise did
not do as well as the rest of the
sample. (Peopleware, p. 47)[2]</p>
</blockquote>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183015#1830150Answer by John Channing for How do you advance beyond being an 'advanced' programmer?John Channing2008-10-08T14:19:22Z2008-10-08T14:19:22Z<p>Try your hand at writing a risk management system for mortgage backed securities. You may find there are a few banks interested.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183049#18304915Answer by Steven A. Lowe for How do you advance beyond being an 'advanced' programmer?Steven A. Lowe2008-10-08T14:27:39Z2008-10-08T14:27:39Z<p>it sounds like you're on the edge of burnout; been there and back again a few times. here's some things to do to change your perspective, which might help you relax enough to find your next passion:</p>
<ol>
<li>turn off the computer and go outside. This is critical. I am not kidding. Remember to wear pants.</li>
<li>talk to a real person, face to face, about something other than computers; bonus points if it is a woman not related to you</li>
<li>take a few days off - or a month; travel; visit a museum (not a computer museum).</li>
<li>go hang out in the arts district of your town. Talk to some artists. Realize that some people live rich, fulfilling lives without ever using a computer for anything significant. Then get some chalk and draw on the sidewalk (no flowcharts!) until they run you off, or ask you to join their art colony.</li>
<li>etc. The point is to get your head out of bit-land for an extended period of time so your brain can de-saturate.</li>
</ol>
<p>when your head has cleared, then go to a good university library, pick up an ACM or IEEE Computer publication at random (any of them), and start skimming. The field of computer science is enormous, and growing/changing rapidly. There is far more to it than language X or database Y.</p>
<p>You have a great gift - how are you going to use it? Can you change the world? Should you?</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183052#1830520Answer by The Wicked Flea for How do you advance beyond being an 'advanced' programmer?The Wicked Flea2008-10-08T14:28:23Z2008-10-08T14:28:23Z<p>I'm nowhere near reaching this point, but why not champion an underutilized language you enjoy the style and strength of? If I were in your shoes, I'd try to revolutionize the language I <em>enjoy</em>, and find nifty in and of itself, and turn it into something better. For me this would be LISP, which I find highly attractive except for the lack of freeware non-SLIME based tools.</p>
<p>Certainly you could write your own programming language, but why not champion something in need that you happen to already enjoy?</p>
<p>Best of luck in continuing to learn, Cody. I hope you find something to apply yourself to, and enjoy doing it.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183070#1830700Answer by Andy Brice for How do you advance beyond being an 'advanced' programmer?Andy Brice2008-10-08T14:31:40Z2008-10-08T14:31:40Z<p>Start a microISV and sell a product. You will then learn a whole new world of skills in addition to programming, including:</p>
<ul>
<li><p>product management</p></li>
<li><p>usability</p></li>
<li><p>customer support</p></li>
<li><p>QA</p></li>
<li><p>documentation</p></li>
<li><p>marketing</p></li>
</ul>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183106#1831060Answer by Rob Sanders for How do you advance beyond being an 'advanced' programmer?Rob Sanders2008-10-08T14:40:49Z2008-10-08T14:40:49Z<p>Funny, I think I hit a similar state a few years ago. </p>
<p>I did exactly the same thing - went off "into the wilderness" and honed new business analysis and consulting skills (think: software development lifecycle) rather than development-specific skills.</p>
<p>Personally, I believe I add more value now because I can still apply technical experience (and mentoring), but also I can better communicate with business stakeholders and other team members.</p>
<p>The second thing I did was to align myself more with a specific set of products, e.g. MS SQL Server, rather than working as a broader IT generalist (as I had been doing). Now I have a deeper understanding (in a particular product line) and I get to do more intricate/detailed work.</p>
<p>Ultimately I think I'm probably a better IT Professional now, as opposed to being a good developer/software engineer.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183140#1831401Answer by Milan Babuškov for How do you advance beyond being an 'advanced' programmer?Milan Babuškov2008-10-08T14:45:16Z2008-10-08T14:45:16Z<p>Instead of looking into some specific area, you should try to get the chance to work together with 'expert' programmers ('expert' being 'more advanced than advanced'). Interaction with others and learning from their experience is invaluable, because you can ask a question about each little detail and learn WHY some stuff is better done some way, instead of just HOW.</p>
<p>A good way to get to work with top programmers is to join some open source project and contribute to it. People tend to be more polite when you're helping them for free ;)</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/183711#1837110Answer by pezi_pink_squirrel for How do you advance beyond being an 'advanced' programmer?pezi_pink_squirrel2008-10-08T16:38:29Z2008-10-08T16:38:29Z<p>Move yourself down a level, and learn embedded systems programming and electronics / robotics. You already know some ASMs so the learning curve will not be anywhere near as steep. Build your own ALU out of logic gates and you will learn a ton about computers! :)</p>
<p>Edit: Or, genreate a PAL/NTSC video signal using no external hardware and just a R2R ladder! :)</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/184205#1842050Answer by Eric Ness for How do you advance beyond being an 'advanced' programmer?Eric Ness2008-10-08T18:37:29Z2008-10-08T18:37:29Z<p>The best way to advance is to ask someone who you want to emulate what you can do to improve. You probably have some programmers / computer scientists that you look up to and think "I'd like to be like that some day." Ask one of them to be your mentor and accept their guidance in your development.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/184345#1843450Answer by Paul Nathan for How do you advance beyond being an 'advanced' programmer?Paul Nathan2008-10-08T19:02:49Z2008-10-08T19:02:49Z<p>My opinion is that you have several routes:<br>
1)Enhance your academic credentials. I'm guessing you would be looking at a PhD. That's a challenge. Can you do it? Do you want to? It would push you very hard.<br>
2)Move into engineering. Coding gets old after about 6 years or so. But can you engineer code? Design and develop systems? This is a very difficult thing(in my opinion).<br>
3)Move into business/management. Can you manage coders? Can you manage projects? This is a huge challenge for many people.</p>
<p>Just throwing thoughts out there. :-)</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/184400#1844000Answer by Arne Evertsson for How do you advance beyond being an 'advanced' programmer?Arne Evertsson2008-10-08T19:14:27Z2008-10-08T19:14:27Z<p>How about putting all that knowledge to work and create the next Google? That would certainly be an experience to learn from.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/185496#1854960Answer by comingstorm for How do you advance beyond being an 'advanced' programmer?comingstorm2008-10-09T00:35:51Z2008-10-09T00:35:51Z<p>You could try learning more math. (full disclosure: I'm a math guy 8^)</p>
<p>The idea being that at this point in your development, you've got "details are ephemeral, but fundamentals are forever" down pat, and math is the most fundamental thing out there. Another way to look at it: if you're running out of new things to program about, learning more math can give you that.</p>
<p>Exactly what math to learn depends on what catches your interest. Doubtless you have all the basic CS stuff down pat, but there's way more CS stuff out there than any one person can learn. If you can bring your honed development sense to some of the more arcane algorithms out there, you'll do us all a favor....</p>
<p>Alternately, there's the kind of quantitative stuff like in Numerical Methods, which is similarly endless. The flavor is very different from the discrete stuff you get in conventional CS, and doing it right requires broad comprehension, deep understanding, and close attention to detail.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/185538#1855381Answer by MrValdez for How do you advance beyond being an 'advanced' programmer?MrValdez2008-10-09T00:59:11Z2008-10-09T00:59:11Z<ul>
<li>Answer questions on Stack Overflow. This would help you gauge how advance you are or how far you are from your version of an "advanced" programmer.</li>
<li>Have a rival or someone to look up to. Try to outperform them. (But please be polite and don't mention that you've outperform them)</li>
<li>Lose your sanity. Have you met a programmer who is beyond advance that is sane? Neither have I.</li>
</ul>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/185689#1856891Answer by Daniel Auger for How do you advance beyond being an 'advanced' programmer?Daniel Auger2008-10-09T02:21:38Z2008-10-09T02:21:38Z<p>Since you are 20 years old, I hope that you will read this post and reply to it when you are 40. Frankly, I think two things are happening here. </p>
<p>1) you've lost some inspiration. There are tons of areas you know nothing about, but you do not feel drawn towards anything. I say continue to search and fine your inspirado.<br />
2) Technical knowledge is the easy part of becomming a programming guru. The only way to move from adept to guru is wisdom. Code wisdom is only gained from experience. </p>
<p>My advice: go work for or collaborate with someone who will school your arse. You know that there are better programmers out there than yourself. Search one out and let him/her teach you.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/185891#1858910Answer by Groxx for How do you advance beyond being an 'advanced' programmer?Groxx2008-10-09T04:02:14Z2008-10-09T04:02:14Z<p>I'd recommend reading up on different design patterns (as most people gloss over this area of programming), and then toying with some 'exotic' programming. Neural Networks. Adaptive algorithms. Compression logic (build a better .zip!). That sort of thing.</p>
<p>If in doubt, contribute to an open source project. There's a nigh-infinite realm of learning there, as it's being written more quickly than you can possibly read.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/185985#1859850Answer by Robert Gould for How do you advance beyond being an 'advanced' programmer?Robert Gould2008-10-09T05:12:37Z2008-10-09T05:12:37Z<p>Make a game. And put your skills and knowledge to the test on it.
Games have the advantage that not even the sky is the limit if your doing it for fun (as opposed to for work). You can just keep shooting higher and higher until you decide its enough.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/186031#1860310Answer by Doug for How do you advance beyond being an 'advanced' programmer?Doug2008-10-09T05:39:26Z2008-10-09T05:39:26Z<p><strong>Work somewhere you often feel like the dumbest person in the room.</strong></p>
<p>I can't really attest to this first hand, but I've often heard others extol the benefits of such an environment.</p>
<p>If you can't find such a place, maybe try getting in a position where you can often teach others what you know?</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/186040#1860400Answer by Al for How do you advance beyond being an 'advanced' programmer?Al2008-10-09T05:43:21Z2008-10-09T05:43:21Z<p>I know how you feel. It happened to me differently, but I got to a point where I said to myself "how many more problems of logic am I going to solve"? <em>Problems of logic were boring</em>.</p>
<p>So I left programming for a couple of years and did management, where I encountered something called "business strategy". This was not boring and I was good at it. I found that I was good at it because it was a problem of logic, but was about something else - called the "bigger picture".</p>
<p>When I got back to programming I realised that software architecture is much like business strategy and that there is something called "design". Not UML and model-view-controller models etc, but something more intuitive and holistic - ie the big picture. So I now create software architectures and in the process I write and manage code.</p>
<p>Now I am a developer and I run my own business and I'm not ever bored. Stressed, happy and sometimes very tired, but not bored.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/488944#4889442Answer by Filip Ekberg for How do you advance beyond being an 'advanced' programmer?Filip Ekberg2009-01-28T19:16:26Z2009-01-28T19:16:26Z<p>I don't feel that you are "less inspired" than you've been before, you want to expand your views and therefore you ask this question.</p>
<p>Something I've done to keep my knowledge at top edge is to teach others, as the top voter states, this helps you get inspired. But teaching doesn't only inspire it gives you a great, somewhat, new view of your programming.</p>
<p>You might not have had to do this before, but when others rely on your code being good, you really need to have it good.</p>
<p>So what you learn from teaching is:</p>
<ul>
<li>Keep your architecture good, simple, clean, explaining comments. Now this isnt something that you wouldn't normally do, but if you lack the knowledge of commenting when you work at Microsoft, well, tuff luck, people need to adapt, noone is really failing because your commenting is bad. BUT! When you Teach, your skills need to be 10 levels above the students and you really need to think about simple things, such as commenting and common structure.</li>
<li>The other thing is of course social skills, even though you somewhat teach here on SO, it's not the same as going into a classroom and start explaining how to do a C compiler in assmebly.</li>
</ul>
<p>Many people hate to teach and stand infront of people. And if you are one of those, surely you are not left to the wolves, Filip got another suggestion for you; Start a Blog. Now that might sounds somewhat stupid and retro, but think about it; How do you get readers? Well you write about common interests and you do it well. Meaning that you need to be speaking at a "teaching" level, having people to question your reasons but you will easily answer them!</p>
<p>So this takes you back to the start, what should you teach or blog about? Well you must have a programming hero or somewhat, we all do ( stupidly enough mine is Bill Gates, yes yes laugh all you want. ) and think of; how will you exceed this persons knowledge? Is it possible? ( If we talk about Jon Skeet, No, but don't quit, just because you can't become a God doesn't mean theres no chance for you ).</p>
<p>You must have some old code lying around, how about, taking that code, analyze it and just re-write it? What good will come from this? Well for starters you probably have a little bit more knowledge than you did when you wrote it, so <em>what</em> should you re-write? Sure there is no purpose in re-inventing the wheel? Of course not! Architeture is the fundamentals of life, what would we do without the pyramids or other such cool stuff from back in the days. Architecture in all manners are highly important and too this comes great responsability, take your code, analyze it, re write it, giving it a new, nice, architecture. I always programm as if 100 000 other programmers will use my "API" each day, so i need to keep it clean, commented and functional.</p>
<p>And when you do write code having the structure as a focus, you start to think about other parts aswell, how do i really test the functionallity the best way? what do others need and what do others think that this part actually does? This gives you; The mind of a teacher.</p>
<p>Im gonna end this, feeling endless, post with some project suggestions that might be interesting:</p>
<ul>
<li>Having your Cat send you an Email ( Read the book How to make things talk )</li>
<li>Create your own alarm system</li>
<li>Implement your own Smart Home</li>
<li>Take the two best applications on your computer, and write a merged version</li>
<li>Re-write facebook</li>
<li>Create a Jon Skeet Robot</li>
<li>Learn about Musical Programming</li>
<li>Human Readable Compilation ( A language for non programmers )</li>
</ul>
<p>I know this post has been fun to read because i put a lot of effort in making it such, there are however a lot of good information here and i hope you will get some insight in my views.</p>
<p>Good luck</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/489005#4890050Answer by Ball for How do you advance beyond being an 'advanced' programmer?Ball2009-01-28T19:36:40Z2009-01-28T19:36:40Z<p>I'm a novice programmer at best, but my recommendation would be to try and utilize what you have already learned. I too have a deep desire to learn, but my desire to create takes priority 99.99999% of the time. The whole reason I got into programming in the first place was to build, the skills needed to do so were an afterthought. But what do I know? </p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/489041#4890410Answer by Jules for How do you advance beyond being an 'advanced' programmer?Jules2009-01-28T19:48:47Z2009-01-28T19:48:47Z<p>Read <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">SICP</a>. It's an introduction to programming. I can assure you that most things you'll learn in this book are new to you if you haven't read it already (writing a compiler for Scheme for example).</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/759019#7590190Answer by Norman Ramsey for How do you advance beyond being an 'advanced' programmer?Norman Ramsey2009-04-17T04:26:15Z2009-04-17T04:26:15Z<p>Expand your mind with a new language that will make you think differently. <a href="http://www.haskell.org" rel="nofollow">Haskell</a>, Lisp, or <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a> will do.</p>
http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/759338#7593380Answer by Unknown for How do you advance beyond being an 'advanced' programmer?Unknown2009-04-17T07:17:54Z2009-04-17T07:17:54Z<p>I have taken the liberty of looking through your profile and website, and have assumed (possibly incorrectly) that you are an experimentalist engineer with a bias towards decompilation: as described by <a href="http://www.cs.purdue.edu/homes/dec/essay.criticize.html" rel="nofollow">this paper which breaks down computer scientists into two categories</a>. What you will want to do is start exploring the theorist side.</p>
<p>From what I have gathered, the things you have been doing have mostly been in exercise in conventions. I have dabbled in those areas you described yourself and in 90% of the time was spent learning conventions such as calling conventions, stack layout, OS API, syscalls, peculiarities, etc... There is one layer deeper than this, and that is to design a CPU (one with modern features like pipelines and parallel arithmetic) by yourself. This subject alone could keep you occupied for a lifetime and you will learn much about computers as I did.</p>
<p>But more on the theoretical side: there is much to do.</p>
<ul>
<li><p>Automated Art</p></li>
<li><p>AI</p>
<ul>
<li>Edge detection</li>
<li>Speech recognition/synthesis</li>
<li>Automated grammar production</li>
<li><a href="http://en.wikipedia.org/wiki/Audio%5Ftimescale-pitch%5Fmodification" rel="nofollow">Audio timescale-pitch modification</a> How do you lengthen or shorten a sound without changing the pitch? This is a nontrivial problem that suits your interests in music.</li>
</ul></li>
<li><p>Programming Aids</p>
<ul>
<li>Design a framework</li>
<li>Garbage Collection</li>
<li>Parallel Algorithms</li>
<li>Static analysis tools</li>
<li>WYSIWYG coding tools</li>
</ul></li>
<li><p>Hardware</p>
<ul>
<li>Design your own cpu.</li>
<li>Design a self-associating circuit akin to neurons.</li>
</ul></li>
<li><p>Information Theory</p>
<ul>
<li>Compression (both lossy and lossless)</li>
<li>Error Correction</li>
</ul></li>
<li><p>Reverse Engineering</p>
<ul>
<li>Assembly to high-level language diassembler.</li>
<li>Reverse someone's encryption algorithm in assembly (would not do again, I was really bored at the time)</li>
<li>Design your own encryption algorithm.</li>
</ul></li>
<li><p>Bioinformatics</p>
<ul>
<li>Yes I noticed someone else had this section, but as I have studied some of this field in college, I feel that it is infeasible for you to learn about this outside of an institution. Also "a good genomic IDE + synthetic DNA compiler" is really only within the realm of Craig Venter ( who happens to be working on that right now) and other cutting edge groups.</li>
</ul></li>
</ul>