Tagged Questions
3
votes
3answers
177 views
Does this Rails 3 Controller method make me look fat?
This is a new application, and I have an index method on a Search controller. This also serves as the home page for the application, and I'm trying to decide if I am headed down the wrong path from a ...
7
votes
4answers
547 views
Approaching refactoring
I have a very data-centric application, written in Python / PyQt. I'm planning
to do some refactoring to really separate the UI from the core, mainly because
there aren't any real tests in place yet, ...
1
vote
3answers
229 views
Taking baby-steps in applying a better design
In wanting to get some hands-on experience of good OO design I've decided to try to apply separation of concerns on a legacy app.
I decided that I wasn't comfortable with these calls being scattered ...
3
votes
5answers
276 views
Performance implications with 'clean code'
At my workplace we're planning a major refactor on our core product, a web application with several 'modules'. I quoted that because that's one of our main concerns: modules are not really modules, ...
2
votes
1answer
473 views
Where can I find information on Authentication and Authorization in the context of Domain Driven Design?
I'm trying to do things the DDD (domain driven design) way. And boy do I struggle. In all books I read, Authentication is of no concern and not mentioned!
I've written my own Authentication and ...