Tagged Questions
The leaky-abstraction tag has no wiki summary.
9
votes
1answer
613 views
Does MVC Contrib fulfill its promise of increasing productivity in ASP.NET MVC
I am knee deep in starting a new ASP.NET MVC project. Several tutorials have recommended the use of MVC Contrib. I wanted to get the opinion of the Stack Overflow community if it fulfilled its promise ...
8
votes
7answers
334 views
Meaning of Leaky Abstraction?
What does the term "Leaky Abstraction" mean? (Please explain with examples. I often have a hard time grokking a mere theory.)
8
votes
9answers
771 views
Fluent interfaces and leaky abstractions
What is a fluent interface? I can't find a good definition of this, but all I get are long code examples in a language I am not very familiar with (e.g. C++).
Also, what is a leaky abstraction?
...
6
votes
4answers
368 views
jQuery subtleties
Community wiki. At least I think it's worthy of that. I've always been interested in some of the inner workings of jQuery, and a great question prompted this.
I'm not talking about cool stuff you ...
3
votes
4answers
353 views
Python: an iteration over a non-empty list with no if-clause comes up empty. Why?
How can an iterator over a non-empty sequence, with no filtering and no aggregation (sum(), etc.), yield nothing?
Consider a simple example:
sequence = ['a', 'b', 'c']
list((el, ord(el)) for el in ...
2
votes
3answers
66 views
Should I use integer ID or pointers for my opaque objects?
I'm writing an abstraction layer on top of some graphics API (DirectX9 and DirectX11) and I would like your opinion.
Traditionally I would create a base class for each concept I want to abstract.
So ...
2
votes
2answers
216 views
N-layered database application without using an ORM, how does the UI specify what it needs of data to display?
I'm looking for pointers and information here, I'll make this CW since I suspect it has no single one correct answer. This is for C#, hence I'll make some references to Linq below. I also apologize ...
1
vote
4answers
115 views
Design issue: RMI needs explicit exporting of objects
I have two applications communicating via RMI, a slave server (of which there will be multiple) and a master server.
Following good abstract design, I'd like to implement the slave in a way that it ...