Tagged Questions

4
votes
24answers
539 views

Tech Books you have but never read

Let's be honest. Many of us have books that were bought thinking "I might need this some day". That day has never come. Or maybe you spent $50+ on the book but only used it a few …
2
votes
5answers
67 views

How to avoid debugger-only variables?

I commonly place into variables values that are only used once after assignment. I do this to make debugging more convenient later, as I'm able to hover the value on the one line …
2
votes
13answers
319 views

Isn’t there a point where encapsulation gets ridiculous?

For my software development programming class we were supposed to make a "Feed Manager" type program for RSS feeds. Here is how I handled the implementation of FeedItems. Nice an …
4
votes
15answers
362 views

Why is it so hard to enforce YAGNI?

I find myself breaking this pattern all the time. YAGNI - You Ain't Gonna Need It I am only a Junior Developer, but I find even Senior level developers doing the same thing …
6
votes
8answers
358 views

When to violate YAGNI?

The YAGNI "principle" states that you shouldn't focus on providing functionality before you needed as "you ain't gonna need it" anyway. I usually tend to use common sense above an …
3
votes
7answers
204 views

YAGNI and junior developers

When writing code for a new system I don't want to introduce unnecessary complexity in the design that I might never have any need for. So I'm following YAGNI here, and rather refa …
1
vote
8answers
124 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 …
13
votes
6answers
567 views

YAGNI - The Agile practice that must not be named?

As I've increasingly absorbed Agile thinking into the way I work, yagni ("you aren't going to need it") seems to become more and more important. It seems to me to be one of the mos …
10
votes
11answers
274 views

Does YAGNI also apply when writing tests?

When I write code I only write the functions I need as I need them. Does this approach also apply to writing tests? Should I write a test in advance for every use-case I can thi …
3
votes
9answers
252 views

Decoupling vs YAGNI

Do they contradict? Decoupling is something great and quite hard to achieve. However in most of the applications we don't really need it, so I can design highly coupled applicatio …
5
votes
8answers
229 views

Does YAGNI apply to database design?

In code, it's generally pretty easy to add new classes to provide additional functionality and such. I have a fairly good understanding of refactoring code and what's involved so …
2
votes
6answers
227 views

Should you create an interface when there (currently) is only going to be one class that implements it?

Should you always create an interface if there's a possibility that there might be something else that could use it, or wait until there's an actual need for it then refactor to us …
3
votes
3answers
120 views

Is there any hard data on the value of Inversion of control or dependancy injection?

I've read a lot about IoC and DI, but I'm not really convinced that you gain a lot by using them in most situations. If you are writing code that needs plugable components, then y …
2
votes
4answers
175 views

Language Wizards considered harmful?

Wizards can kick-start features. They can also obfuscate your code, and are anti-YAGNI. On balance, do you think Wizards are more useful or more harmful?