User Tim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T06:14:29Z http://stackoverflow.com/feeds/user/23665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378629/dci-data-context-and-interaction-successor-to-mvc/669592#669592 1 Answer by Tim for DCI - Data, Context and Interaction (Successor to MVC?) Tim 2009-03-21T17:01:58Z 2009-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#151690 8 Answer by Tim for Tool for adding license headers to source files? Tim 2008-09-30T03:48:48Z 2008-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 &gt;$i.new &amp;&amp; mv $i.new $i fi done </code></pre>