vote up 8 vote down star
4

Some problems must have seemed repetitive before the days of huge standard libraries.

To prevent duplication, remember to look through answers first before replying.

flag

I am really curios because I just entered the Programming profession and I would be interested in what programmers do alot of the time. – jjnguy Oct 26 '08 at 4:16
Please discuss further before closing. – jjnguy Oct 26 '08 at 4:16
This is an interesting question. SO questions (understandably) tend to focus on how the tools are used, rather than on what the tools are used for. I think "best-practices" arguments could be better solved with an understanding of what programmers actually do day in and day out. – MusiGenesis Oct 26 '08 at 10:58

20 Answers

vote up 9 vote down check

Since more and more projects these days are in the form of web applications, I'm addressing those specifically in my response. I get a lot of calls from people who think they have the next "killer app" for the web, they are almost always terrible ideas or are already being done.

Anyway, the proposed projects almost always include a need for several of the following:

  • User Authentication
  • Email Generation
  • Content Management
  • Social Networking
  • File Upload
  • Rating System
  • Folksonomy/Tagging
  • Payment Processing
  • Charting/Reporting
  • Exporting Data (XLS/CSV/DOC/PDF)
  • Affiliate Marketing

Additionally, the proposal almost always expects me to shelf my current projects and put my entire team at work for months to implement their brilliant idea with no compensation except for the promise of a small chunk of profit sharing.

link|flag
Your last paragraph reminded of the infamous project tendered on Rent-a-Coder: "Build an OS from the ground up that does everything Windows XP does--but hacker-proof. For $1000 to $3000." I understand gems like this went up on a regular basis. – micahwittman Oct 26 '08 at 8:51
Never begin work without a down payment. The more of us that do that, the better we will do for ourselves. There are few attorneys that will work for nothing in HOPEs that they get paid later. Electricians, plumbers, etc. This is business. Get paid SOMETHING up front or move along is what I say! – Optimal Solutions Dec 3 '08 at 15:05
vote up 3 vote down

The most common task I get as a programmer in my small company:

"I can't send emails, can you help?"

link|flag
vote up 2 vote down

The most common that I see are integration related.

Integrate the data from some application into SharePoint for dashboard or automation purposes or parse data from an application so that it can be read and processed by another application.

A lot data moving and translation problems.

link|flag
vote up 3 vote down

its working on my machine!

link|flag
vote up 2 vote down

Database table access - "put it in a grid," they say (usually with customizable columns).

link|flag
This one is probably 99% of everything I've ever done as programmer. – MusiGenesis Oct 26 '08 at 11:00
vote up 17 vote down

"Could you please add this feature that I swore up and down I would never need when we were designing the application?"

link|flag
man, that one annoys me so much. when I'm doing the requirements, I ask specifically: "are you 100% sure that you will never need more than one X per Y?? If you change your mind in the future it will be a serious pain in the ass to change." and it's always "yeah, no worries.". S.I.G.H. – nickf Oct 26 '08 at 13:48
Alternate: Remember I gave you a bad performance review because you put that useless feature in and I had to tell you to take it out? Well I'll give you another bad performance review unless you put it back in. – Windows programmer Oct 27 '08 at 4:09
And the feature that we took out in order to reduce the cost. But now they demand it for free because "not having it is just plain ridiculous" – finnw Feb 22 at 22:19
vote up 2 vote down

Could you provide an estimate for feature X

link|flag
You spend more time estimating than actually doing? – MusiGenesis Oct 26 '08 at 10:56
During certain parts of the cycle I do a bit of estimating. Thankfully it's a very small portion but we do a lot of investigations. – JaredPar Oct 26 '08 at 18:58
vote up 6 vote down

Estimating how long something unfamiliar to me will take to implement—estimation and risk management are hard problems, and they make me solve them every morning during the stand-up.

link|flag
vote up 2 vote down

My most common task is creating Windows Mobile applications that allow access to legacy databases from handheld devices. Basic client/server architecture, with the caveats that everything has to fit on a tiny-ass screen and you can't count on the server's always being reachable.

link|flag
along with the extra caveat that they have no idea of a good heuristic on narrowing down what data the user might need to be loaded, but "everything would be nice"... by monday, cause you've already written it once for the desktop version – Steven Adams Oct 26 '08 at 12:08
@MusiGenesis - Have you used the newly released "Microsoft SQL Server Compact 3.5 Service Pack 1 and Synchronization Services for ADO.NET version 1.0 Service Pack 1 for Windows Desktop"? (What a mouthfull...) – Doug L. Oct 26 '08 at 23:45
@Doug - we mostly use Oracle Lite on our devices. SQL CE replication/synchronization (using RDA) has proven to be not 100% reliable in situations with erratic network connectivity. Synch Services may fix this problem, but I'd need to see proof. – MusiGenesis Oct 27 '08 at 0:54
vote up 2 vote down

Similar to the "integration" answer, I suppose, is design.

"We need a set of components that will all do a variant of X."

X can be web-based database access, manage different layers of a natural-language conversation, or run different parts of an embedded device. It doesn't really matter. On some level, they're all going to be similar: guessing which phonemes were heard, which words were heard, and what a logical response would be are all logic/probability/rule-based questions, but they have completely different semantic meaning in a larger project.

Or take the distinctions between login, customer verification, product display, and ordering. Yes, they're all database interactions. But they have different meanings, and they will each inevitably have contrasting business logic requirements.

As a designer, where do you draw the lines? What code can be made very general, and reused, and what really needs a separate function/file/module? Will code that's made too general be confusing? Will separate modules lead to code duplication, and its attendant horrors?

To get back to the question, huge standard libraries (or high-quality standard libraries--not quite the same thing) will only help with tasks that can be easily automated. Zeroth-level design patterns, if you like. But the big issues that undergird the professional practice of programming are largely library-proof.

link|flag
vote up 2 vote down

Actually, I think the most repetitive thing which I've come across is the notion that every business is doing something innovative with the same common business paradigms i.e. the way they view their customers/products, or their sales figures etc.

The reality is that probably 80% of work is with the same entities (customers, products etc), same data (e.g. a person's address, phone number etc) and all we do is implement it in a different way (or for a different platform).

Design considerations are almost always roughly the same - everyone wants high availability, scaleability and so forth. There's usually some degree of difference in each project or product, but invariably we end up working with something familiar.

We end up implementing security models, data access patterns and other considerations which feel similar, mostly because they are.

However, each time we get a chance to perfect our technique a little more. It just gets a little easier to estimate, a little easier to build, test and deliver (hopefully!).

link|flag
vote up 0 vote down

Perhaps this problem is specific only to company with multiple disciplines(PM, Dev and Testers like Microsoft). People have to argue "Who should own this task" every day.

link|flag
It was worse before TFS... – Rob Sanders Oct 26 '08 at 14:02
vote up 2 vote down

Working with raw data in ways that it can be useful: import into database, graph it, pivot table it, run reports about it, etc. Basically, taking their raw data (which they my purchase, already have in other systems - Excel, flat-files, legacy apps) and making that data more presentable, understandable and reliable for their day-to-day operations. This is 90% of what I am generally asked to perform.

link|flag
Me too. I always wonder if a framework for such tasks would be more or less work than to just script & code it myself. – christian studer Dec 3 '08 at 7:53
Generally the core generic functions (insert, update, delete, read) are present in each project. However, even within the same client the projects can vary greatly. A framework of some sort would need to be as simple and generic as possible, such that its portable. Would be nice! – Optimal Solutions Dec 3 '08 at 15:01
vote up 0 vote down

Explaining to management the difference between the design and reality. Whether that is before the development (i.e., what we can actually do) or after (i.e., what we actually accomplished).

link|flag
vote up 0 vote down

Programmer X broke it, can you fix it?

Seriously.

link|flag
vote up 2 vote down

Badly-specified ones.

link|flag
Hey -- you get specs ??? :-) – Adam Liss Nov 11 '08 at 2:51
vote up 1 vote down

Can you build a utility that will retrieve my lost password?"

There is only one correct answer to this: If I could, we'd be out of business.

link|flag
vote up 1 vote down
  1. Make it modular.

  2. "Cant you just use the code from our CRM-system in the cashier-application to handle customers?" No. "What? Didnt you built it modular?"

  3. Add multilanguage support. I know we told you to not build it, but you should allways "prepare" for such extentions.

  4. Dont put to much time on the "fluff" (error handling, user friendly GUI, data validation) this is only version 1, you can do that when all funtionality is in place. Then after release. "WHAT? There is no data validation!!"

link|flag
vote up 0 vote down

"Write some UI to help customers use part of the app/edit some data/whatever."

"It must expose the full array of configurability so all our customers can use it to do anything and everything they might want, including the one with five PhD's in rocket science. It must also be easy enough to use that all of the rest of them can use it intuitively, despite having never read the manual and having no idea what it's about."

Sure. No problem. That's what you asked for the last time as well...

link|flag
vote up 0 vote down

-- PHB: "This is the most important feature in the world."
-- Me: "But it will clutter the code and make everything less maintainable"
-- PHB: "Everybody will hate us if we don't do this."

A month later..

-- PHB: "Why the hell did we do that for? What were we thinking?"

link|flag

Your Answer

Get an OpenID
or

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