Tagged Questions
The overkill tag has no wiki summary.
11
votes
4answers
628 views
Is it bad to use reflection to simplify constructors, comparisons, etc?
I hate having a bunch of "left/right" methods. Every time a property is added or removed, I have to fix up each method. And the code itself just looks ... wrong.
public Foo(Foo other)
{
this.Bar ...
3
votes
2answers
102 views
OOP: how much program logic should be encapsulated within related objects/classes as methods?
I have a simple program which can have an admin user or just a normal user.
The program also has two classes: for UserAccount and AdminAccount.
The things an admin will need to do (use cases) include ...
3
votes
4answers
108 views
Splitting assemblies - finding the balance (avoiding overkill)
I'm writing a wide component infrastructure, to be used in my projects.
Since not all projects will require every component created, I've been thinking of splitting the component into discrete ...
3
votes
2answers
131 views
Ideas for designing a Secure, “Low Cost” method for confirming client-side game results
This is more a system design question/challenge, than a coding question.
Basically, I'm thinking of throwing together a Bejeweled-esque game on Facebook using just HTML, CSS, and javascript. This is ...
1
vote
2answers
80 views
Random Code Overkill?
I have some code I am using
function genCode ($entropy=1) {
$truCde = "";
$indx = 0;
$leng = 30*$entropy;
while ($indx < $leng) {
$code = "";
$length = ...
1
vote
2answers
79 views
php frameworks for simple tasks, an overkill?
Example:
I need to manage users in a website,'manage' means: register and allow them to send comments.
user registration will use: username, email, password and user_id
comments will have: date, link, ...
1
vote
8answers
212 views
Reasons not to overdesign a solution to a current problem
G'day,
While having a think about this question here about overdesigning for possible future changes it got me thinking.
What reasons against can you provide to people who insist on blowing out ...