19
votes
4answers
455 views
How to model interpretations of rap music
I just started working on a website that will help people understand what rappers are talking about. Users will see the lyrics to a rap song and they'll be able to click certain lyrics to see an …
10
votes
15answers
901 views
Programming against interfaces: Do you write interfaces for all your domain classes?
Hi,
I agree, that programming against interfaces is a good practice. In most cases in Java "interface" in this sense means the language construct interface, so that you write an interface and an …
9
votes
6answers
1k views
MVC: Data Models and View Models
I've read some MVC advice in the past regarding models stating that you should not reuse the same model objects for the domain and the view; but I haven't been able to find anyone willing to discuss …
8
votes
4answers
828 views
Fat models, skinny controllers and the MVC design pattern
I just read a [blog post][1] that explains MVC with a banking analogy. I have a few months of experience with web application development with an MVC framework (CakePHP), so I get the basics, but I …
7
votes
5answers
2k views
Django: Model limit_choices_to={’user’: user}
I went to all the documentation, also I went to the IRC channel (BTW a great community) and they told me that is not possible to create a model and limit choices in a field where the 'current user' is …
7
votes
2answers
540 views
How to protect a Rails model attribute?
My Invoice model has an address_id attribute, and I don't want this address_id to change FOREVER. So I don't want this to happen outside the class:
invoice.address_id = 1
invoice.address = …
6
votes
9answers
882 views
Are there human 3D models/libraries?
I'm a dance teacher and I was thinking of writing some code to produce 3D animations of dance moves from choreography stored in a database. The dancing to data model representation I could write but I …
6
votes
3answers
346 views
Scaling a rich domain model
Domain Driven Design encourages you to use a rich domain model. This means all the domain logic is located in the domain model, and that the domain model is supreme. Persistence becomes an external …
5
votes
5answers
331 views
Delphi: Good pattern/strategy for view <-> model synchronization
There's a lot of talk about model-view-controller, model-view-viewmodel, model-view-presenter and so on these days.
What do you see as the best pattern for use with delphi and non-data aware …
5
votes
6answers
179 views
Am I breaking my aggregate boundaries?
I'm modeling a very basic ASP.NET MVC app using NHibernate and I seem to be stuck on my design. Here's a sketch of my model:
As you can see this is VERY basic but I have some concerns about it. …
5
votes
4answers
329 views
Python Memory Model
I have a very large list
Suppose I do that (yeah, I know the code is very unpythonic, but for the example's sake..):
n = (2**32)**2
for i in xrange(10**7)
li[i] = n
works fine. however:
for i in …
5
votes
5answers
212 views
Repository in Controller or Model?
I've been working through the NerdDinner Tutorial and most of it makes sense. What I'm not sure about is why the Repository is used directly in the Controller and not the Model objects. For instance, …
5
votes
4answers
386 views
Is a Repository still a Repository without Unit of Work?
If you create a repository class that encapsulates all of your persistence logic for a given entity, such as PersonRepository, but your repository class does not implement the Unit of Work pattern or …
5
votes
6answers
569 views
Using ActiveRecord, is there a way to get the old values of a record during after_update
Hey everyone,
Setup using a simple example: I've got 1 table (Totals) that holds the sum of the 'amount' column of each record in a second table (Things).
When a thing.amount gets updated, I'd like …
5
votes
1answer
2k views
Django set default form values
I have a Model as follows
class TankJournal(models.Model):
user = models.ForeignKey(User)
tank = models.ForeignKey(TankProfile)
ts = models.IntegerField(max_length=15)
title = …
