Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
28answers
2k views

Ways to prevent over-engineering?

When developing software I usually find myself continually questioning "Is this the best way?", "Is there better technology for the job?" and as a result I put more effort into actually investigating ...
8
votes
12answers
917 views

When is an API overengineered?

I despise working with overengineered APIs that don't make simple things simple. Nonetheless, I'm working on designing an API for an open-source library and I'm starting to feel that I'm falling into ...
7
votes
6answers
319 views

Is this design over-engineering?

Would you consider using an interface and polymorphism to extend this design to be over-engineering? Pros Extensible Encapsulated Auto-magical Cons Lots more code A little bulky to use (you ...
5
votes
7answers
302 views

Motivation for Overengineered APIs?

It seems like there's a decent amount of dislike around here for horribly overengineered APIs that are designed to be infinitely flexible and thus don't make simple things simple. Nonetheless, it ...
2
votes
2answers
78 views

Am I over-engineering (jumping the shark, so to speak) this app?

I have been tasked with starting from scratch on the CMS/engine and admin/backend for website for the company I work for. What we do would be classed as 'quite unique' (though, isn't everyone's ...
2
votes
15answers
494 views

Does anyone else have the feeling that solutions for simple projects are often overengineered?

Somehow I've got the feeling that many projects become heavily overengineered so every possible change-request can be tackled with the effect that the change-requests that occured are very hard to ...
1
vote
0answers
39 views

What happened here? [closed]

During an interview for a C++ programmer position at ACME, two candidates are asked to create a program that takes asks the user to type in two integers, and then prints out their sum. The first ...
0
votes
5answers
177 views

Should I switch to a language other than Java when programming for web?

I have a crawler-like software that populates tables after reading and parsing particular web pages. I have written it in Java (using Hibernate). I already have entities and other logic. I want to ...
0
votes
5answers
268 views

Example of Spring missuse

Our software shop does a big enterprisey system and one of its part is a sophisticated monitoring and log viewer tool. Recently one of our teems rewrote it, since previous version was really lacking ...
-4
votes
0answers
34 views

what's been called overengineering but NOT, in Java world [closed]

EJB2 is over-engineered, so a lot engineers turned to springframework or the like. I want to know the opposite: what been called over-engineered but they actually worth the effort? So we can avoid ...