Tagged Questions
The yagni tag has no wiki summary.
23
votes
12answers
824 views
How far do you go with YAGNI?
I am developing a new revolutionary web application for the enterprise market. Sure, many before me thought that their web app would be revolutionary only to find out it isn't. (Or it is, but the ...
19
votes
6answers
532 views
SOLID vs. YAGNI
One of the most frequent agruments I hear for not adhering to the SOLID principles in the class design is YAGNI (allthough the arguer often doesn't call it that):
"It is OK that I put both feature X ...
14
votes
6answers
885 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 most effective rules ...
12
votes
11answers
338 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 think of just to play ...
9
votes
10answers
279 views
Is internationalizing later really more expensive?
Most people would agree that internationalizing an existing app is more expensive than developing an internationalized app from scratch.
Is that really true? Or when you write an internationalized ...
8
votes
2answers
184 views
Did the authors of The Pragmatic Programmer forget about YAGNI?
The Pragmatic Programmer is highly recommended by many people. I've just finished reading it, and I can see why people recommend it, although I would point out that Code Complete covers almost all of ...
8
votes
8answers
471 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 any rule, no matter ...
7
votes
15answers
531 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.
"Well, this ...
6
votes
13answers
619 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 and simple:
struct ...
6
votes
25answers
886 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 times.
Or you ...
5
votes
8answers
276 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 YAGNI generally ...
5
votes
9answers
498 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 applications and it almost ...
4
votes
9answers
308 views
Are KISS and YAGNI at odds with the trends towards increasingly more sophisticated patterns and practices like SOA, DDD, IoC, MVC, POCO, MVVM? [closed]
It seems to me that Agile methodologies encourage us to keep things simple, and lean, and not add complexity and sophistication until its needed. But the pace and volume of technology change ...
3
votes
7answers
322 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 refactoring as I see the ...
3
votes
6answers
309 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 use an interface?
...
3
votes
3answers
185 views
Is there any hard data on the value of Inversion of Control or dependency 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 pluggable components, then yes, I see the ...
2
votes
2answers
69 views
YAGNI and database creation scripts
Right now, I have code which creates the database (just a few CREATE queries on a SQLite database) in my main database access class. This seems unnecessary as I have no intention of ever using the ...
2
votes
5answers
106 views
Is removing unused functionality a bad thing?
Is it possible for YAGNI to apply in the past tense? You created some functionality, it was used a little bit a while ago, but you aren't using it any more, and you don't want to maintain it, so you'd ...
2
votes
5answers
91 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 where it's later ...
2
votes
4answers
229 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?
1
vote
1answer
71 views
Premature abstraction versus YAGNI across multiple similar projects
I've recently started doing some hobby game programming. When I first started, I tended towards trying to design abstractions. Even though I had a certain game in mind, I would ask myself how each ...
1
vote
0answers
46 views
Is YAGNI always valid? [closed]
I recently read about the You Ain't Gonna Need It principle, and it seems pretty logical to me. Now that I think about it, I remember lots of occasions where applying it could have saved me some ...
1
vote
2answers
52 views
Zend_Validate good strategy to avoid repetition of code
I'm am currently building two custom validators that extends Zend_Validate_Abstract which are named respectively Lib_Validate_TimeAfter and Lib_Validate_TimeBetween. The names a pretty straight ...
1
vote
3answers
230 views
Substitute Enum switch with design pattern (IOC)
I've got an event handler which receives an eventargs object inside which is an enumerated value that further refines the information inside. It looks something like
public enum StatusCallbackType { ...
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 ...