2
votes
2answers
67 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. …
5
votes
1answer
145 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 f …
4
votes
4answers
186 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 ab …
5
votes
9answers
361 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 leak …
1
vote
4answers
235 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, …
