User MattMcKnight - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:47:23Z http://stackoverflow.com/feeds/user/8136 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1901467/unique-key-issue-in-solr/1901600#1901600 1 Answer by MattMcKnight for unique key issue in solr MattMcKnight 2009-12-14T15:34:15Z 2009-12-14T15:34:15Z <p>You could prepend the table name to the key value (thread.1 , tag.1) </p> http://stackoverflow.com/questions/1896014/rails-how-can-i-access-the-parent-model-of-a-new-records-nested-associations/1898893#1898893 0 Answer by MattMcKnight for Rails: How can I access the parent model of a new record's nested associations? MattMcKnight 2009-12-14T04:18:35Z 2009-12-14T04:18:35Z <p>I don't think you can do this. On the other hand, your validations shouldn't be failing, as the order of the transaction will create the post record before saving the comment.</p> http://stackoverflow.com/questions/1897099/ruby-on-rails-page-header-going-as-text-javascript-when-it-is-not-supposed-to/1898874#1898874 2 Answer by MattMcKnight for (Ruby on Rails) Page header going as text/javascript, when it is not supposed to MattMcKnight 2009-12-14T04:12:17Z 2009-12-14T04:12:17Z <p>I always put the format.html first. That way when IE sends a weird accepts header, like '<em>/</em>', it will render the first one it hits. In your case, IE said it's looking for anything, so you're sending it js. Put your format.html block first and you will be golden.</p> <p>(See <a href="http://stackoverflow.com/questions/1820234/rails-routing-is-being-wonky-with-ie/1820354#1820354">my answer here</a> for some more details)</p> http://stackoverflow.com/questions/1898737/pass-parameter-by-linkto-ruby-on-rails/1898851#1898851 1 Answer by MattMcKnight for pass parameter by link_to ruby on rails MattMcKnight 2009-12-14T04:06:31Z 2009-12-14T04:06:31Z <p>Maybe try this:</p> <pre><code>&lt;%= link_to "Add to cart", :controller =&gt; "car", :action =&gt; "add_to_cart", :car =&gt; car.attributes %&gt; </code></pre> <p>But I'd really like to see where the car object is getting setup for this page (i.e., the rest of the view).</p> http://stackoverflow.com/questions/1898313/rails-foreign-key-is-nil-in-nested-form/1898828#1898828 1 Answer by MattMcKnight for Rails foreign key is nil in nested form MattMcKnight 2009-12-14T03:57:48Z 2009-12-14T03:57:48Z <p>Do you have a hidden field for the user_id in the server form? </p> <pre><code>&lt;%= f.hidden_field :user_id %&gt; </code></pre> <p>If not, the value is not getting passed back, even if you managed to properly set it. The line you have commented out would have worked, if you add a hidden field to the form.</p> <pre><code>@site.servers.build(:user_id =&gt; current_user.id) if @site.servers.empty? </code></pre> <p>I actually like the idea of setting the user id in the create method better, because otherwise you introduce the possibility of someone crafting up their own form submission and creating things under other people's user ids. I don't know if security is a big deal in your app, but I never trust a user id that is sent from a form.</p> http://stackoverflow.com/questions/1846592/prototyping-neural-networks/1892377#1892377 1 Answer by MattMcKnight for Prototyping neural networks MattMcKnight 2009-12-12T05:09:26Z 2009-12-12T05:09:26Z <p>The implementations in Matlab are sophisticated and complete. I have found it to be sufficient for evaluating different types of networks. It is also very programmable using external interfaces.</p> <p>However, since the implementations of the algorithms are not open source, it is sometimes more difficult when you need to move a particular piece of code into an application outside of Matlab, as my hand coded implementations of different neural network types produced different results.</p> http://stackoverflow.com/questions/1892219/rails-test-fixtures-vs-uniqueness/1892361#1892361 0 Answer by MattMcKnight for Rails test fixtures vs uniqueness MattMcKnight 2009-12-12T05:01:31Z 2009-12-12T05:01:31Z <p>Are you saying you want to build a test to check the rails "validates_uniqueness_of" operator or that you want to test the logic of your own unique record? In the first case, I wouldn't bother, the Rails tests cover that. In the second case, I would create a test that creates a record that is the same as one in the fixtures. </p> <p>In the broader sense of putting multiple saves into a single transaction, you can create your objects and then:</p> <pre><code>MyModel.transaction do model1.save model2.save end </code></pre> <p>but I don't think this is the way to accomplish either of the things it seems that you want to do.</p> http://stackoverflow.com/questions/1892035/rails-user-model-hasmany-activities-observer-but-should-also-be-observed/1892309#1892309 1 Answer by MattMcKnight for Rails User model has_many activities (observer) but should also be observed MattMcKnight 2009-12-12T04:37:23Z 2009-12-12T04:37:23Z <p>When you changed </p> <pre><code>class User &lt; ActiveRecord::Base has_many :activities end </code></pre> <p>to</p> <pre><code>class User &lt; ActiveRecord::Base has_many :activities, :as =&gt; :item end </code></pre> <p>it is now looking at the <code>item_id</code> field in the activities table where the type field is User to pull back activities where <code>item_id = users.id</code>. Before it was looking at the <code>user_id</code> field in activities. Since the <code>item_id</code> field and type field cannot have two values, you made it so that an activity points at either a user or a comment. It can't be both.</p> http://stackoverflow.com/questions/1793249/create-virtual-methods-using-xsd-exe 1 Create virtual methods using xsd.exe MattMcKnight 2009-11-24T22:02:54Z 2009-12-12T00:16:07Z <p>I am using classes that were generated from an XML schema using the xsd.exe tool. It currently generates a huge (32k line) .cs file. I then serialize and deserialize parts of the of model using XMLSerializer. I need to override properties in these classes, so I have partial classes in separate files that override some of these generated methods. However, this means going in and marking hundreds of methods as virtual every time the schema changes. Is there a way to get the xsd.exe tool to mark methods as virtual when they are generated?</p> http://stackoverflow.com/questions/1890226/should-i-give-up-on-deploying-rails-under-windows/1890636#1890636 0 Answer by MattMcKnight for Should I give up on deploying Rails under Windows? MattMcKnight 2009-12-11T20:22:24Z 2009-12-11T20:22:24Z <p>Don't give up. Mongrel is still fine on Windows and Windows is still a good development environment for Rails. Looking through the linked problem you mentioned, the guy solved his problem by uninstalling the mongrel_service gem. If you don't need to run mongrel as a service, and I guess you wouldn't on your development box, you should be fine. I don't know what version of mongrel_service you are running, but it would be worth seeing if you can upgrade.</p> http://stackoverflow.com/questions/1888082/rails-association-for-two-foreign-keys-for-the-same-table-in-one-table/1888149#1888149 2 Answer by MattMcKnight for Rails association for two foreign keys for the same table in one table MattMcKnight 2009-12-11T13:41:44Z 2009-12-11T20:03:13Z <p>Most of Rails' <em>magic</em> comes from convention over configuration. By naming things according to guidelines Rails can guess at most of the configuration options. ActiveRecord::Associations are no exceptions.</p> <p>The first argument of any ActiveRecord Association is the name that will be used within the model. This is usually the name of another model, that's the convention. By default class name is the singular of association name in camelcase. The default foreign key in the association is the association name postfixed with "_id". If your association name doesn't match a class name or a foreign key by these patterns you will need to supply them as options.</p> <p>This will do what you want:</p> <pre><code>class NewModel belongs_to :base1, :class_name =&gt; "BaseModel" belongs_to :base2, :class_name =&gt; "BaseModel" end </code></pre> <p>Personally I would give the associations more descriptive names that base1 and base2. Something like this:</p> <p>Ratings table: id, rater_id, rated_id, rating</p> <pre><code>class Rating belongs_to :rater, :class_name =&gt; "User" belongs_to :rated_user, :class_name =&gt; "User", :foreign_key =&gt; "rated_id" end </code></pre> <p>A different example could have been used, but this was chosen to highlight when the foreign key option is necessary.</p> http://stackoverflow.com/questions/1889021/rails-xml-builder-how-do-i-in-explicitly-construct-xml-elements/1889342#1889342 1 Answer by MattMcKnight for Rails XML Builder: How do I in-explicitly construct XML elements? MattMcKnight 2009-12-11T16:51:49Z 2009-12-11T16:51:49Z <pre><code>xml.tag!(col.to_s_upcase, self[col]) </code></pre> http://stackoverflow.com/questions/1885418/rails-build-assocs-in-object-while-rendering-a-partial/1885938#1885938 0 Answer by MattMcKnight for Rails: build assoc's in :object while rendering a partial. MattMcKnight 2009-12-11T05:21:04Z 2009-12-11T16:37:37Z <p>In response to your changed question--</p> <pre><code>#order.rb def default_line_items self.line_items.build(:title =&gt; "editor") self.line_items.build(:title =&gt; "photographer") self.line_items.build(:title =&gt; "video_editor") return self.line_items end #call to partial render (:partial =&gt; "line_item", :collection =&gt; order.default_line_items) </code></pre> http://stackoverflow.com/questions/1887948/i-feel-like-this-needs-to-be-refactored-any-help-ruby-modeling/1888229#1888229 1 Answer by MattMcKnight for I feel like this needs to be refactored - any help? Ruby modeling MattMcKnight 2009-12-11T13:56:32Z 2009-12-11T14:12:37Z <p>I don't think line_items should belong to a make, they should only belong to a model. And a model should have many line items. A make could have many line items through a model. You are missing a couple of methods to have your fields appear.</p> <pre><code>class LineItem belongs_to :model after_save :connect_model_and_make def model_title self.model.title end def model_title=(value) self.model = Model.find_or_create_by_title(value) end def make_title self.model.make.title end def make_title=(value) @make = Make.find_or_create_by_title(value) end def connect_model_and_make self.model.make = @make end end class Model has_many :line_items belongs_to :make end class Make has_many :models has_many :line_items, :through =&gt; :models end </code></pre> <p>It's really not that bad, there's just not super easy way to do it. I hope you put an autocomplete on those text fields at some point.</p> http://stackoverflow.com/questions/1888024/virtual-column-for-drop-down-in-the-ruby-on-rails/1888206#1888206 0 Answer by MattMcKnight for virtual column for drop down in the ruby on rails. MattMcKnight 2009-12-11T13:53:10Z 2009-12-11T13:53:10Z <pre><code>class Product belongs_to :product_price end class ProductPrice #assume a field called "price" has_many :products end &lt;% form_for @product do |f| -%&gt; &lt;%= f.select("product_price_id", ProdcuctPrice.all.collect {|p| [ p.price, p.id ] }) &lt;% end -%&gt; </code></pre> http://stackoverflow.com/questions/1885044/willpaginatecollection-missing-the-totalentries-property/1886047#1886047 1 Answer by MattMcKnight for Will_Paginate::Collection missing the total_entries property MattMcKnight 2009-12-11T05:47:50Z 2009-12-11T05:47:50Z <p>You have to do the count manually if you use new to create it, from the API docs:</p> <blockquote> <p>new (page, per_page, total = nil)</p> <p>Arguments to the constructor are the current page number, per-page limit and the total number of entries. The last argument is optional because it is best to do lazy counting; in other words, count conditionally after populating the collection using the replace method.</p> </blockquote> http://stackoverflow.com/questions/1875837/nested-layout-for-nested-resources-in-rails/1886000#1886000 0 Answer by MattMcKnight for Nested Layout for Nested Resources in Rails MattMcKnight 2009-12-11T05:36:15Z 2009-12-11T05:36:15Z <p>"<em>I'm even less thrilled about specifying the layout template in the controllers themselves</em>"</p> <p>There's no reason to worry about this. This is simply what you do. It's one line of DSL code, specifically created for this purpose. Not clunky.</p> <pre><code>class ArticlesController &lt; ActionController::Base layout :news end </code></pre> http://stackoverflow.com/questions/1884367/how-to-fix-getting-invalid-gem-format-for-every-gem/1885972#1885972 0 Answer by MattMcKnight for how to fix getting 'invalid gem format' for every gem MattMcKnight 2009-12-11T05:28:27Z 2009-12-11T05:28:27Z <p>Can you install gem files locally (i.e., from a .gem file?) If you can, the problem is your network connection.</p> <p>I don't understand what you mean by behind a firewall. Do you mean a proxy server? You may need to use the -p option on gem to point to your proxy server.</p> http://stackoverflow.com/questions/1883614/polymorphic-associations-in-rails/1883810#1883810 0 Answer by MattMcKnight for Polymorphic Associations in Rails MattMcKnight 2009-12-10T20:31:06Z 2009-12-10T20:31:06Z <p>I have done this in the past and I didn't bother with a complex object model for it. For example, in a job application form, I had a "how did you hear of us question?" If you filled in the box, I took that as a filled in answer. So, I had a "belongs_to" that pointed to the normal choices, but just a text field on the model for a custom one. </p> <p>Your suggestions table is going to look weird when there are multiple people with the same suggestion. In general, I question when something is modeled as a "has_one". </p> http://stackoverflow.com/questions/1881320/how-to-test-file-manipulation/1881381#1881381 1 Answer by MattMcKnight for How to test file manipulation MattMcKnight 2009-12-10T14:34:12Z 2009-12-10T14:34:12Z <p>Accessing a database is not "wrong in testing". How else will you test the integration of your code with the database?</p> <p>The key to repeatable testing is a consistent environment. So long as you start from the same file system or database contents for your tests, you should are not wrong. This is usually handled via a cleanup process at the start of the test suite.</p> http://stackoverflow.com/questions/1879344/how-to-show-the-content-of-the-form-just-entered-in-the-confirm-option-on-r/1881321#1881321 1 Answer by MattMcKnight for How to show the content of the form just entered in the ":confirm =>" option on Ruby on Rails MattMcKnight 2009-12-10T14:26:01Z 2009-12-10T14:26:01Z <p>I'd just throw my <a href="http://www.shiningstar.net/articles/articles/javascript/confirmsubmit.asp?shoeid=shoes&amp;ID=AW" rel="nofollow">js into an onclick handler</a>. That's all Rails does.</p> <pre><code>&lt;%= f.submit 'Create', :onclick =&gt; "confirm('Name is ' + $F('entry_name'));" %&gt; </code></pre> <p>(note, didn't test that, but it looks close. confirm is a core js function, not part of any lib)</p> http://stackoverflow.com/questions/1878659/one-table-or-three-for-three-separate-objects-that-have-identical-data-attributes/1878916#1878916 3 Answer by MattMcKnight for One Table Or Three For Three Separate Objects That Have Identical Data Attributes? MattMcKnight 2009-12-10T06:04:30Z 2009-12-10T06:04:30Z <p>I would recommend adding a column to indicate the type. If you call it type this will allow you to move to Single Table Inheritance (<a href="http://martinfowler.com/eaaCatalog/singleTableInheritance.html" rel="nofollow">also here</a>), even if the models begin to diverge slightly. You would then end up with...</p> <pre><code>class Post &lt; ActiveRecord::Base class Article &lt; Post class Blog &lt; Post class Review &lt; Post </code></pre> <p>You can use Post in most cases, and a single Controller, but then use inheritance to handle special behaviors such as validations.</p> http://stackoverflow.com/questions/1878812/repopulating-page-with-previous-values-in-rails/1878885#1878885 3 Answer by MattMcKnight for Repopulating page with previous values in rails MattMcKnight 2009-12-10T05:56:09Z 2009-12-10T05:56:09Z <p>This is the basic way all Rails controllers and scaffolds work. Perhaps you should try generating scaffolds?</p> <pre><code>def create @banner_ad = BannerAd.new(params[:banner_ad]) if @banner_ad.save flash[:notice] = 'BannerAd was successfully created.' redirect_to :action =&gt; "show", :id =&gt; @banner_ad else render :action =&gt; "new" end end end </code></pre> <p>I populate a <code>@banner_ad</code> here, attempt to save it, if it fails, I return to the form and the @banner_ad object is available to me. I then need to have a form that uses the Rails form helpers to populate the values from the object.</p> http://stackoverflow.com/questions/1878811/how-are-data-access-objects-usually-designed/1878861#1878861 1 Answer by MattMcKnight for How are Data Access Objects usually designed ? MattMcKnight 2009-12-10T05:49:36Z 2009-12-10T05:49:36Z <p>I recommend reading Fowler's <a href="http://martinfowler.com/books.html#eaa" rel="nofollow">Patterns of Enterprise Application Architecture</a>. For example, you can use a Table Data Gateway, Row Data Gateway, Active Record, or Data Mapper.</p> <p>Most projects out there are using an ORM like Hibernate or IBatis, which adapt to the domain model as opposed to using transaction scripts.</p> http://stackoverflow.com/questions/1878758/filters-in-lucene/1878779#1878779 2 Answer by MattMcKnight for Filters in Lucene MattMcKnight 2009-12-10T05:22:38Z 2009-12-10T05:22:38Z <p>First, you need to ensure that the user id is being added to the document in the index in a field when you index, let's call it user_id.</p> <p>In a pinch, you can add a field to the query string entered by the user behind the scenes before you send it to the query parser. So, take whatever query was entered and add " AND user_id:4" (where 4 is the value of the variable containing the current user id) onto the end of it. </p> http://stackoverflow.com/questions/1878558/jump-over-parent-constructor-to-call-grandparents/1878765#1878765 1 Answer by MattMcKnight for Jump over parent constructor to call grandparent's MattMcKnight 2009-12-10T05:16:27Z 2009-12-10T05:16:27Z <p>Easy (but why?):</p> <pre><code>class AbstractClass { AbstractClass(){ /* useful implementation */ } } class ConcreteClass1 extends AbstractClass { ConcreteClass1(){ super(); /* useful implementation */ } ConcreteClass1(boolean skip){ super(); } } class CustomizedClass1 extends ConcreteClass1 { CustomizedCLass1(){ super(true); /* useful implementation */ } } </code></pre> http://stackoverflow.com/questions/1877190/how-do-i-download-a-file-over-http-using-ruby/1877212#1877212 3 Answer by MattMcKnight for How do I download a file over HTTP using Ruby? MattMcKnight 2009-12-09T21:59:18Z 2009-12-09T21:59:18Z <pre><code>require 'net/http' #part of base library Net::HTTP.start("your.webhost.com") { |http| resp = http.get("/yourfile.xml") open("yourfile.xml", "wb") { |file| file.write(resp.body) } } </code></pre> http://stackoverflow.com/questions/1876159/at-what-level-of-abstraction-does-single-responsibility-principle-srp-no-longer/1876250#1876250 0 Answer by MattMcKnight for At what level of abstraction does Single Responsibility Principle (SRP) no longer make sense? MattMcKnight 2009-12-09T19:31:59Z 2009-12-09T19:31:59Z <p>I think you are probably right, but can't use this principle to solve your dispute. Robert Martin defines responsibility as "reason to change". If the structure of foo changes (e.g., a field is added) you would the changes to be reflected in this class. In your colleagues approach, all of the classes would have to change. This is where the principle must be applied within the context of an application layer, because it would change display code as well, which obviously shouldn't be in the same class. If the storage mechanism changes (e.g., using a different database driver) I would expect this to be handled externally, via persistence configuration, so just keep other reasons to change out of your class, and everyone can be happy.</p> http://stackoverflow.com/questions/1875765/how-to-define-persons-names-in-text-java/1875791#1875791 1 Answer by MattMcKnight for How to define person's names in text (Java) MattMcKnight 2009-12-09T18:20:33Z 2009-12-09T19:01:01Z <p>I'd look into LingPipe. Check out <a href="http://lingpipe-demos.com:8080/lingpipe-demos/ne%5Fen%5Fnews%5Fmuc6/textInput.html" rel="nofollow">this demo</a>. By the way, what you are trying to do is called "<a href="http://en.wikipedia.org/wiki/Named%5Fentity%5Frecognition" rel="nofollow">named entity recognition</a>". It's a difficult CS problem to get right. </p> http://stackoverflow.com/questions/1872453/which-oss-can-extract-a-synopsis-from-a-text/1875829#1875829 1 Answer by MattMcKnight for Which OSS can extract a synopsis from a text? MattMcKnight 2009-12-09T18:27:05Z 2009-12-09T18:27:05Z <p>I checked the comprehensive list <a href="http://alias-i.com/lingpipe/web/competition.html" rel="nofollow">here</a>, and the <a href="http://dragon.ischool.drexel.edu/default.asp" rel="nofollow">Dragon Toolkit</a> looked like one of the few to offer <a href="http://dragon.ischool.drexel.edu/textsum.asp" rel="nofollow">this feature</a>. My experience is mainly with the commercial tools in this area.</p> http://stackoverflow.com/questions/1896014/rails-how-can-i-access-the-parent-model-of-a-new-records-nested-associations/1898947#1898947 Comment by MattMcKnight on Rails: How can I access the parent model of a new record's nested associations? MattMcKnight 2009-12-14T04:40:20Z 2009-12-14T04:40:20Z How would it do it? You don't want to set the parent_id column, so you'd have to add some hidden properties on the child? http://stackoverflow.com/questions/1895954/simple-ruby-on-rails-tutorial/1895961#1895961 Comment by MattMcKnight on Simple Ruby on Rails tutorial MattMcKnight 2009-12-14T04:38:32Z 2009-12-14T04:38:32Z If this becomes the top ranked page for &quot;Ruby on Rails hello world&quot; we could might also want to include a lesson on recursion here. http://stackoverflow.com/questions/1897099/ruby-on-rails-page-header-going-as-text-javascript-when-it-is-not-supposed-to/1897111#1897111 Comment by MattMcKnight on (Ruby on Rails) Page header going as text/javascript, when it is not supposed to MattMcKnight 2009-12-14T04:13:29Z 2009-12-14T04:13:29Z True, but this is not the root cause. IE is basically saying- give me anything, so Rails sends the first thing that matches. See my answer for more. http://stackoverflow.com/questions/1885418/rails-build-assocs-in-object-while-rendering-a-partial/1885938#1885938 Comment by MattMcKnight on Rails: build assoc's in :object while rendering a partial. MattMcKnight 2009-12-12T16:59:22Z 2009-12-12T16:59:22Z Well, I'd probably want to pull this list from the database so it's not hard coded anyway, but seriously...not knowing how much Ruby a questioner asks, it's best to use the most explicit explanation so there's less confusion, at least in my experience training people in Rails. http://stackoverflow.com/questions/1885418/rails-build-assocs-in-object-while-rendering-a-partial/1885938#1885938 Comment by MattMcKnight on Rails: build assoc's in :object while rendering a partial. MattMcKnight 2009-12-12T04:39:21Z 2009-12-12T04:39:21Z No need to make a one liner and not use an explicit return keyword when you are trying to explain something and make it clear. http://stackoverflow.com/questions/1875837/nested-layout-for-nested-resources-in-rails/1886000#1886000 Comment by MattMcKnight on Nested Layout for Nested Resources in Rails MattMcKnight 2009-12-12T04:27:17Z 2009-12-12T04:27:17Z That's exactly what this would do... http://stackoverflow.com/questions/1884367/how-to-fix-getting-invalid-gem-format-for-every-gem/1885972#1885972 Comment by MattMcKnight on how to fix getting 'invalid gem format' for every gem MattMcKnight 2009-12-12T04:24:46Z 2009-12-12T04:24:46Z So you can't browse to gemcutter.org? That's a problem... You'll have to remove any gem sources that aren't valid from your location. Assuming you didn't remove the old version of Rails, you should be able to roll back by changing the rails version value in environment.rb. http://stackoverflow.com/questions/1885418/rails-build-assocs-in-object-while-rendering-a-partial/1885970#1885970 Comment by MattMcKnight on Rails: build assoc's in :object while rendering a partial. MattMcKnight 2009-12-11T18:33:38Z 2009-12-11T18:33:38Z Steve, First off, you said &quot;the view layer should no direct interaction with the Model layer whatsoever.&quot; That's clearly wrong. Second, the point of MVC (see Fowler, etc.), is dependencies. The model should not be dependent on the view. The view is dependent on the model. Calling Order.new to get a new order is not putting business logic into the view or causing the model to be dependent on the view. MVC compliant. http://stackoverflow.com/questions/1885418/rails-build-assocs-in-object-while-rendering-a-partial/1885970#1885970 Comment by MattMcKnight on Rails: build assoc's in :object while rendering a partial. MattMcKnight 2009-12-11T16:25:02Z 2009-12-11T16:25:02Z That's not true at all and is a serious misunderstanding of MVC. If you call @model.property, you are interacting with the model. http://stackoverflow.com/questions/1878558/jump-over-parent-constructor-to-call-grandparents/1878571#1878571 Comment by MattMcKnight on Jump over parent constructor to call grandparent's MattMcKnight 2009-12-10T19:20:52Z 2009-12-10T19:20:52Z I think the point this is missing is that the Mammal constructor is not necessarily idempotent and you don't always want to invoke the same constructor from a subclass. You still must invoke at least one constructor, but not everyone needs the same constructor. http://stackoverflow.com/questions/1878558/jump-over-parent-constructor-to-call-grandparents/1878765#1878765 Comment by MattMcKnight on Jump over parent constructor to call grandparent's MattMcKnight 2009-12-10T19:15:24Z 2009-12-10T19:15:24Z @KenLiu Simply because it has different initialization process you would recommend creating another class that has no behavior? I can think of lots of cases where this is the desired behavior. http://stackoverflow.com/questions/1879594/how-should-i-start-to-learn-javascript-jquery-etc-my-programming-knowledge-is-z Comment by MattMcKnight on How should i start to learn javascript/jquery etc.? My programming knowledge is zero? MattMcKnight 2009-12-10T18:02:41Z 2009-12-10T18:02:41Z I would recommend an introduction to programming as well. Are you considering courses or just books? http://stackoverflow.com/questions/1829161/ruby-datamapper-table-inheritance-with-associations Comment by MattMcKnight on Ruby Datamapper table inheritance with associations MattMcKnight 2009-12-10T14:41:22Z 2009-12-10T14:41:22Z In that case, I think it could be done with ActiveRecord. http://stackoverflow.com/questions/1872453/which-oss-can-extract-a-synopsis-from-a-text/1875829#1875829 Comment by MattMcKnight on Which OSS can extract a synopsis from a text? MattMcKnight 2009-12-10T14:02:53Z 2009-12-10T14:02:53Z It's more of an area of research and tends to be limited to specific document types. I find it unlikely that it would work on novels. http://stackoverflow.com/questions/1878558/jump-over-parent-constructor-to-call-grandparents/1878847#1878847 Comment by MattMcKnight on Jump over parent constructor to call grandparent's MattMcKnight 2009-12-10T06:14:35Z 2009-12-10T06:14:35Z All we're talking about here is skipping whatever initialization in being done in the constructor, not &quot;some (but not all) of the functionality&quot;. That would be a LSP violation. :-)