vote up 8 vote down star
5

I have not been on hiatus. I currently make a good living implementing an ERP product. The problem is that the most complicated algorithm we ever have to work on is adding up a bunch of columns.

I'm not saying there are no challenges involved, it's just that the challenges are no longer interesting to me. I graduated with a computer science degree, and we worked on cool algorithms. I built a compiler. Programming was fun. Now, programming is boring. I have to keep myself interested by focusing on other facets of the job.

Lately, I've been dabbling in a lot of side work off hours - iPhone apps, blogging platforms, checking out open source projects, etc. Is it possible to make the switch to doing some of this stuff that looks like more fun to me? Is it really more fun? Is there some way to combine my interests with my occupation?

flag

75% accept rate
Are you reading my mind? I feel like I wrote this myself. – Kristopher Johnson Jan 28 at 21:41

10 Answers

vote up 6 vote down check

Perhaps a simple change of pace is all that's needed. While some would tell you to quit and do something you enjoy, I find that having a boring day job that pays well is pretty conducive to having a neat hobby at night.

Join yourself to an open source project or two, or do your iPhone dabbling after hours. If they pay off then great, but in the meantime you're scratching that itch, keeping your mind fresh and open, and enjoying what your work allows you to do in your free time.

As far as fun - I recommend looking into programming embedded systems and electronics. One of the reasons you had fun in college and you have fun with the iPhone is that the concepts and ideas were new and challenging. You will find that expanding into an unknown area will provide more than enough challenge and experience than simply going into slightly different areas.

-Adam

link|flag
vote up 16 vote down

I've been enjoying doing Project Euler problems recently. To make it even more challenging, I'm doing them in a programming language for which I've developed my own compiler.

Sure takes the edge off the ordinary work day.

link|flag
1  
+1 for "I'm doing them in a programming language for which I've developed my own compiler." I'll no longer think I'm cool when I use pencil and paper. – Bill the Lizard Jan 28 at 19:25
+1 for using your own compiler. I was content just doing the problems... – Austin Salonen Jan 28 at 19:34
Did it to learn Ruby. – pmlarocque Jan 28 at 20:07
I checked out the website...the problems remind me of the good old days. Did you design your own language too, or did you implement something that already exists? – Anthony Jan 28 at 23:45
@Anthony: I'm implementing a dialect of Scheme: hewgill.com/journal/entries/… – Greg Hewgill Jan 28 at 23:59
show 1 more comment
vote up 6 vote down

If you're bored with your job, it's time to move on.

There are all kinds of practical reasons not to, obviously. But, if you're going to stay for practical reasons, make sure you're not just delaying the inevitable. A good salary, good benefits, and a friendly work environment only stay that way until you become too bored to remain professional.

It sounds like you're fresh out of college. As a general piece of advice (not knowing your specific situation,) I would recommend changing jobs every 1-3 years until you feel like you've arrived in terms of salary and responsibility. Sticking with an entry-level job when you've moved past entry-level skills in the single most damaging thing developers do to their own careers.

link|flag
vote up 1 vote down

There are a few answers to this...it's definitely "possible". If you're interested in it, and have an aptitude for it, it's doable.

It will be difficult to find a new job in this economy, but there's certainly no harm in throwing your hat into the ring. You'll go on some interviews, and see what's out there...and probably get a much clearer idea if it's the right thing for you or not.

I would definitely encourage you to give it a shot...I hate to see someone wasting their time in a mindless job when they could (and desire to) do more.

Something to keep in mind: think about what would make programming fun, and seek a job where that's really going to happen. Just trading jobs for the sake of trading won't help much long term. (But keep your mind open...you can often find interesting challenges in unexpected places!)

link|flag
vote up 1 vote down

iPhone apps aren't really just for side projects. Think about it. Apple doesn't get into a market they don't intend on staying in for a decade or more. The phones will get better, be more prevalent, and have faster networks. In 4 or 5 years your sticking with the iPhone platform could be a huge competitive advantage.

Android may have some traction by then as well. Time will certainly tell.

Good luck!

link|flag
Seems like you have never heard of the Apple Newton. – Simucal Jan 28 at 20:08
vote up 1 vote down

I originally posted this answer here, but it applies for this question aswell, so I'll duplicate it.

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.

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.

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.

So what you learn from teaching is:

  • 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.
  • 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.

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!

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 ).

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 what 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.

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.

Im gonna end this, feeling endless, post with some project suggestions that might be interesting:

  • Having your Cat send you an Email ( Read the book How to make things talk )
  • Create your own alarm system
  • Implement your own Smart Home
  • Take the two best applications on your computer, and write a merged version
  • Re-write facebook
  • Create a Jon Skeet Robot
  • Learn about Musical Programming
  • Human Readable Compilation ( A language for non programmers )

I know this post has been fun to read because i put a lot of effort in m

link|flag
vote up 0 vote down

You can always develop an open-source project as a hobby. It will surely be challenging in a different way.

Regarding the type of open-source project, choose whatever your boreout state wants you to.

You don't need to go for open-source, though. You can develop a new proprietary application and then maybe even start your own company. It depends on your preferences.

link|flag
vote up 1 vote down

Why not come up with and pitch an innovative feature/platform/direction for your ERP software to your current management?

Does your ERP integrate with Salesforce.com or Basecamp? Can your customers' executives run sales reports from anywhere in the world on their Blackberries? Are your customers tied to one database platform on the backend or can they plug in their own storage mechanism? Does your software have a read/write RESTful API that allows customers and VARs to write their own modules?

Speaking as an IT manager who's highly dissatisfied with the ERP that my company purchased, I could go on all day about exciting directions to take an ERP.

link|flag
vote up 0 vote down

Thanks for all the answers, everyone. Lots of food for thought here. Oh, and this being my first question on here...I have to say that this website rocks it.

link|flag
Since you're new, don't forget to mark the most helpful answer as "accepted" (click on the check mark on the left). Welcome! – Greg Hewgill Jan 29 at 0:42
Thanks. All the answers have been good, but I've been holding out for the perfect one. Can I "accept" more than one? – Anthony Jan 29 at 1:36
vote up 0 vote down

TopCoder.com has tons of fun algorithm puzzles. There's an online judge and also competitions.

link|flag

Your Answer

Get an OpenID
or

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