User Tim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T06:14:29Zhttp://stackoverflow.com/feeds/user/23665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/378629/dci-data-context-and-interaction-successor-to-mvc/669592#6695921Answer by Tim for DCI - Data, Context and Interaction (Successor to MVC?)Tim2009-03-21T17:01:58Z2009-03-21T17:01:58Z<p>The impression I got is that it's not a <em>successor</em> to MVC so much as a <em>complement</em>, for example figure 5 in <a href="http://www.artima.com/articles/dci%5Fvision.html" rel="nofollow">the artima article on DCI</a> has both. I think it's supposed to help make the distinction between model and controller more sane, or maybe between different part of the controller or different parts of the model.</p>
<p>The basic idea seems to be to split logic for particular actions our of your data classes and move it to traits/mixins/whatever, one per (user) action. You'll have many small pieces of code, instead of a few large pieces. Also, it sounds like adding new mixins is supposed to be "better" than adding functionality to your base classes. The code for individual actions will probably (I think?) be more spread out, but code for different actions should be more clearly and obviously separated.</p>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/151690#1516908Answer by Tim for Tool for adding license headers to source files?Tim2008-09-30T03:48:48Z2008-09-30T03:48:48Z<pre><code>for i in *.cc # or whatever other pattern...
do
if ! grep -q Copyright $i
then
cat copyright.txt $i >$i.new && mv $i.new $i
fi
done
</code></pre>