User Terry Lorber - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:36:35Z http://stackoverflow.com/feeds/user/809 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1743077/visual-studio-plugins-for-c-environment/1743144#1743144 0 Answer by Terry Lorber for visual studio plugins for C++ environment Terry Lorber 2009-11-16T16:04:23Z 2009-11-16T16:04:23Z <p>For SVN:</p> <p><a href="http://www.visualsvn.com/" rel="nofollow">http://www.visualsvn.com/</a></p> <p><a href="http://ankhsvn.open.collab.net/" rel="nofollow">http://ankhsvn.open.collab.net/</a></p> http://stackoverflow.com/questions/1711171/what-does-the-asterisk-before-the-variable-mean-in-the-namedscope-argument-list 1 What does the asterisk before the variable mean in the named_scope argument list? Terry Lorber 2009-11-10T21:04:58Z 2009-11-10T21:35:59Z <p>I've got a named scope like this:</p> <pre><code>named_scope :by_items, lambda |*items| { :joins =&gt; :items, :conditions =&gt; ["items.id in (?)", items.map(&amp;::id)] } </code></pre> <p>What's the "*item" mean? When I call it with "Item.find(:first, ...)" it works fine. If I try to call using a collection, "Item.find(:all, ...)" it fails.</p> <p>From a different SO question, I know the signature is supposed to be:</p> <pre><code>Order.by_items(item0, item1, ...) </code></pre> <p>So, my question <em>really</em> is, how do I turn an Array into a comma separated argument list?</p> <p><strong>UPDATE0</strong></p> <p>From <a href="http://martinfowler.com/dslwip/LiteralMap.html" rel="nofollow">Martin Fowler</a> I've learned:</p> <blockquote> <p>(Using a "*" in the argument list helps in working with variable arguments in ruby. In the argument list <em>disks indicates a vararg. I can then refer to all the disks passed in as an array named "disks". If I call another function with "</em>disks" the elements of the disks array are passed in as separate arguments.)</p> </blockquote> <p><strong>UPDATE1</strong></p> <p>More on <a href="http://stackoverflow.com/questions/776462/where-is-it-legal-to-use-ruby-splat-operator">the "splat" operator</a>.</p> http://stackoverflow.com/questions/1452595/passing-instance-variable-from-one-form-to-the-a-different-controllers-action-in/1452632#1452632 0 Answer by Terry Lorber for Passing instance variable from one form to the a different controller's action in Rails Terry Lorber 2009-09-21T02:36:54Z 2009-09-24T05:19:12Z <p>You'll have two methods on your controller. One for each form (rendered by the associated template). The first form should post to the second action. The second action can then transfer the request parameters into instance variables, to be available within the second template.</p> <pre><code>class FooController def bar # setup instance variables and render first form end def baz @bar_values = params[:bar] # setup other instance variables and render second form end end </code></pre> <p><i>UPDATE0</i> Do it across two controllers using session.</p> <pre><code>class FooController def new_baz # setup instance variables and render the first form end def create_baz # respond to posting of form data session[:current_baz_values] = params redirect_to :action =&gt; "baq", :controller =&gt; "bar" end end class BarController def baq @baz_values = session[:current_baz_values] # setup other instance variables and render the second form end end </code></pre> http://stackoverflow.com/questions/1344234/site-wide-search-on-a-rails-application/1344508#1344508 1 Answer by Terry Lorber for Site wide search on a rails application Terry Lorber 2009-08-28T00:58:49Z 2009-08-28T00:58:49Z <p>I've never used <code>acts_as_ferret</code>. Here's something you could do. Create a table like so:</p> <pre><code>create_table(:indexed_models) do |t| t.column :name, :string t.column :model_id, :id t.column :index, :string end </code></pre> <p>For each model you want to search on, concatenate the values from the searchable columns to create an "index". Insert the results in to the indexed_models table. Where the name is the model's name, model_id is it's primary key, and index is the searchable content. Use observers to create and update the indexed_models table when the models you've designated as "searchable" change. </p> <p>Do a text search of the index field of indexed_models, then generate a container of models based on the return model name &amp; primary key.</p> <p>I've never used this approach either, but I've been meaning too.</p> http://stackoverflow.com/questions/1332193/rails-validating-existence-of-an-association/1332202#1332202 1 Answer by Terry Lorber for Rails: Validating existence of an association Terry Lorber 2009-08-26T03:39:20Z 2009-08-26T03:39:20Z <p><a href="http://blog.hasmanythrough.com/2007/7/14/validate-your-existence" rel="nofollow">http://blog.hasmanythrough.com/2007/7/14/validate-your-existence</a></p> <pre><code>class Post &lt; ActiveRecord::Base belongs_to :category validates_existence_of :category end </code></pre> http://stackoverflow.com/questions/1331367/rake-just-one-migration/1332123#1332123 0 Answer by Terry Lorber for Rake just one migration Terry Lorber 2009-08-26T02:54:57Z 2009-08-26T02:54:57Z <p>There's got to be a way to run the migration class via the console. I can't seem to get the migrations code to be recognizable.</p> <p>However, as the comments indicate, it's preferred to run the migrations in order. Use:</p> <pre><code>rake db:migrate VERSION=########## </code></pre> <p>Copy and paste your code in the migration to script/console?</p> http://stackoverflow.com/questions/1330563/finding-data-in-rails/1330609#1330609 5 Answer by Terry Lorber for Finding data in Rails Terry Lorber 2009-08-25T20:01:50Z 2009-08-25T20:12:14Z <pre><code>@posts = Post.find(:all, :include =&gt; [:comments], :conditions =&gt; ["posts.user_id &lt;&gt; ? and comments.user_id &lt;&gt; ?", user.id, user.id]) </code></pre> <p>Note that "user" here is not the associated user of the Post model. Look into using named_scopes to implement this behavior.</p> http://stackoverflow.com/questions/1306459/with-rails-2-x-how-do-i-handle-a-table-with-a-valid-column 0 With Rails 2.x, how do I handle a table with a "valid" column? Terry Lorber 2009-08-20T14:10:17Z 2009-08-20T20:12:14Z <p>I've got a table that includes a column named "valid". This has caused a problem after updating to Rails 2. ActiveRecord is expecting "def valid?" to do validation, not return a boolean value from the database.</p> <p>How do I work around this problem? Is renaming the column my only option?</p> http://stackoverflow.com/questions/1306459/with-rails-2-x-how-do-i-handle-a-table-with-a-valid-column/1306496#1306496 0 Answer by Terry Lorber for With Rails 2.x, how do I handle a table with a "valid" column? Terry Lorber 2009-08-20T14:15:00Z 2009-08-20T15:24:51Z <p>I can prevent the crash by adding the following to my model, but it's not entirely satisfactory:</p> <pre><code>class &lt;&lt; self def instance_method_already_implemented?(method_name) return true if method_name == 'valid?' super end end </code></pre> http://stackoverflow.com/questions/1156759/webrick-very-slow-when-accessing-applications-from-remote-desktop/1156787#1156787 1 Answer by Terry Lorber for Webrick Very Slow When Accessing Applications From Remote Desktop Terry Lorber 2009-07-21T00:58:19Z 2009-07-21T00:58:19Z <p>Use mongrel! Webrick is notoriously slow.</p> http://stackoverflow.com/questions/1156738/ruby-updating-a-hash/1156781#1156781 2 Answer by Terry Lorber for [Ruby] Updating a Hash Terry Lorber 2009-07-21T00:55:35Z 2009-07-21T00:55:35Z <p>Why doesn't this work when you've found a hit?</p> <pre><code>@catLists.each do |item| if (item.has_value?(thevendor)) hit = "yes" item[:price] = theprice item[:visits] = numvisits end end </code></pre> http://stackoverflow.com/questions/1110026/source-control-is-a-separate-branch-required-for-every-product/1110058#1110058 3 Answer by Terry Lorber for Source Control – Is a separate branch required for every product? Terry Lorber 2009-07-10T15:00:56Z 2009-07-10T15:11:24Z <p>I keep shared code in it's own product folder. Then use <a href="http://svnbook.red-bean.com/en/1.0/ch07s03.html" rel="nofollow">svn:externals</a> to share the code amongst the other products. It's slightly painful to handle branching and merging, but it's better than having four copies of the shared code in the repository. Something like this (replace trunk with /branches/RB-1.0.0 or /tags/REL-1.0.0 for release branches and tagged releases):</p> <pre><code>/core/trunk /product_a/trunk /core (svn:externals 'core /core/trunk') /product_b/trunk /core (svn:externals 'core /core/trunk') /product_c/trunk /core (svn:externals 'core /core/trunk') /product_d/trunk /core (svn:externals 'core /core/trunk') </code></pre> <p><em>UPDATE0</em>: Note that /product_a/tags/REL-1.0.0 might use /core/tags/REL-1.0.0 while /product_b/tags/REL-1.0.0 might use /core/tags/REL-1.1.0</p> http://stackoverflow.com/questions/1109838/recommend-portable-source-control-setup/1109860#1109860 6 Answer by Terry Lorber for Recommend portable source control setup? Terry Lorber 2009-07-10T14:26:04Z 2009-07-10T14:26:04Z <p>Sounds like a problem distributed source code control was designed for. Try git.</p> <p><a href="http://git-scm.com/" rel="nofollow">http://git-scm.com/</a></p> http://stackoverflow.com/questions/1105507/make-a-foreign-key-field-in-a-django-form-read-only-and-still-enable-the-form-to/1105758#1105758 1 Answer by Terry Lorber for Make a foreign key field in a django form read-only, and still enable the form to be submitted Terry Lorber 2009-07-09T18:39:44Z 2009-07-09T18:39:44Z <p>I don't know the Django or Python syntax, however, an input field of type="hidden" might be what you're looking for. If you wanted to still display the value using a disabled field, you could do that too, and rely on the hidden field for the actual value.</p> http://stackoverflow.com/questions/1087350/ruby-on-rails-editor-for-backend-of-the-web-application/1087900#1087900 0 Answer by Terry Lorber for Ruby on Rails: Editor for backend of the web application. Terry Lorber 2009-07-06T16:22:03Z 2009-07-06T16:22:03Z <p>Try Radiant CMS for a complete solution. </p> http://stackoverflow.com/questions/1085165/how-to-wean-oneself-from-ide-to-text-editor/1085300#1085300 1 Answer by Terry Lorber for How to wean oneself from IDE to text editor? Terry Lorber 2009-07-06T03:31:44Z 2009-07-06T03:31:44Z <p>Install emacs and don't look back.</p> http://stackoverflow.com/questions/1085287/hierarchical-data-in-mysql/1085296#1085296 0 Answer by Terry Lorber for Hierarchical Data in MySQL Terry Lorber 2009-07-06T03:30:10Z 2009-07-06T03:30:10Z <p>Assuming you know the id of the Toys category, and nothing is in the top-level Toys category:</p> <pre><code>SELECT * FROM items WHERE category_id IN (SELECT id FROM categories WHERE parent_id = 1) </code></pre> http://stackoverflow.com/questions/1084064/db-schema-quesion-maintaining-item-order/1084068#1084068 0 Answer by Terry Lorber for DB Schema Quesion: Maintaining Item Order Terry Lorber 2009-07-05T13:32:35Z 2009-07-05T13:32:35Z <p>If you're being asked to provide a method other than a Sort or Sequence field, how about a CreatedAt field? Sometimes a separate sort order table (ListItemSortOrder) is useful.</p> http://stackoverflow.com/questions/1065245/how-to-mark-some-code-that-must-be-removed-before-production/1065279#1065279 5 Answer by Terry Lorber for How to mark some code that must be removed before production? Terry Lorber 2009-06-30T18:40:01Z 2009-06-30T18:40:01Z <p>Add a unit test that fails if the block is present. Maybe the block sets a global variable <code>CODE_BLOCK_IS_NOT_DELETED = true;</code> that the unit test checks for.</p> <p>However, your bigger problem is that you test/develop with code that you don't need or use in production. That doesn't sound right.</p> http://stackoverflow.com/questions/1065174/items-page-and-willpaginate/1065207#1065207 0 Answer by Terry Lorber for Item's page and will_paginate Terry Lorber 2009-06-30T18:25:53Z 2009-06-30T18:25:53Z <p>The page number is highly dependent on the results of your search. Your search might have 1, 10, or 100 pages depending on the result set and the number of items per page.</p> <p>Any link to "show all photos" could contain the search and pagination information, using the GET parameters as you've described. Or store and retrieve via a cookie so that the search results persist until the users clears or selects a new search.</p> http://stackoverflow.com/questions/1064248/correct-way-to-initialize-an-object-with-exception-throwing-constructor/1065098#1065098 0 Answer by Terry Lorber for Correct way to initialize an object with exception throwing constructor Terry Lorber 2009-06-30T18:03:46Z 2009-06-30T18:19:17Z <p>Simple. Don't throw exceptions within a constructor. Not only do you have to wrap the constructor in the try block, you won't be able to handle memory very well in the event you catch an exception (do you call the destructor? how much of the class's memory needs to be deleted?)</p> <p><i>UPDATE0</i>: Although, I'm not sure if memory management is a problem if you're using an instance.</p> <p><i>UPDATE1</i>: Hmmm, maybe I'm thinking about exceptions in <em>destructors</em>.</p> <pre><code>int main2(int argc, char* argv[]) { MyClass class; class.doSomething(); } int main(int argc, char* argv[]) { int result = 0; try { main2(argc, argv); } catch (std::exception&amp; se) { // oh noes! result = 1; } return result; } </code></pre> http://stackoverflow.com/questions/861494/whats-the-best-way-to-collaborate-and-distribute-project-and-release-documentati 0 What's the best way to collaborate and distribute project and release documentation within an organization? Terry Lorber 2009-05-14T04:05:17Z 2009-05-14T04:10:13Z <p>It's a continual problem: allow collaboration (and versioning) among developers who are creating project plans, requirements, functional specs, design docs and test plans. Then, publish for others in the organization (IT, Customer Service, Technical Support) to use this information.</p> <p>What systems are people using to track project documentation? How do you roll up change information per release and present it to end users?</p> http://stackoverflow.com/questions/853662/railsenv-and-rails-2-3-2/853733#853733 0 Answer by Terry Lorber for RAILS_ENV and rails 2.3.2 Terry Lorber 2009-05-12T16:45:05Z 2009-05-12T16:45:05Z <p><code>RAILS_ENV=production rake db:migrate</code></p> <p>What exactly are you trying to run? The rails generator? A rake task? Mongrel? I'm not sure this is actually a Rails issue.</p> <p>Disclaimer: I haven't used 2.3.2, however.</p> http://stackoverflow.com/questions/850965/how-can-i-make-rails-helpers-more-object-oriented/850975#850975 0 Answer by Terry Lorber for How can I make rails helpers more object-oriented Terry Lorber 2009-05-12T02:56:52Z 2009-05-12T02:56:52Z <p>Make a model, TimeAgo or something similar. Implement following this idea here: <a href="http://codesnippets.joyent.com/posts/show/447" rel="nofollow">a code snippet for "wordifying" numbers</a></p> <p>Then, in your controller, create the instance variables using this class. Then, in your view, call <code>@from_time.in_words</code></p> http://stackoverflow.com/questions/789219/does-free-open-source-software-hurt-programming-jobs/789288#789288 1 Answer by Terry Lorber for Does free open source software hurt programming jobs? Terry Lorber 2009-04-25T16:41:01Z 2009-04-25T16:41:01Z <p>I'm downvoting the question since it's so leading.</p> <p>If the questioner already believes that a programmer can "reduc[e] the value of our overall pie of work by giving it away for free", then they aren't interested in Open Source software, or believe in any business model that includes Open Source.</p> <p>Open source and free software increase the pie. If you want to get paid to produce a software package, I can see where you might find a competing, open, package as a threat. However, the free package might be the basis of billable hours and service fees or an innovative consumer product or manufacturing process. </p> http://stackoverflow.com/questions/728415/how-do-i-use-a-rails-activerecord-migration-to-insert-a-primary-key-into-a-mysql 2 How do I use a Rails ActiveRecord migration to insert a primary key into a MySQL database? Terry Lorber 2009-04-08T03:24:27Z 2009-04-20T02:19:52Z <p>I need to create an AR migration for a table of image files. The images are being checked into the source tree, and should act like attachment_fu files. That being the case, I'm creating a hierarchy for them under /public/system.</p> <p>Because of the way attachment_fu generates links, I need to use the directory naming convention to insert primary key values. How do I override the auto-increment in MySQL as well as any Rails magic so that I can do something like this:</p> <pre><code>image = Image.create(:id =&gt; 42, :filename =&gt; "foo.jpg") image.id #=&gt; 42 </code></pre> http://stackoverflow.com/questions/728415/how-do-i-use-a-rails-activerecord-migration-to-insert-a-primary-key-into-a-mysql/728527#728527 0 Answer by Terry Lorber for How do I use a Rails ActiveRecord migration to insert a primary key into a MySQL database? Terry Lorber 2009-04-08T04:31:25Z 2009-04-08T04:31:25Z <p>Here's my kluge:</p> <pre><code>class AddImages &lt; ActiveRecord::Migration def self.up Image.destroy_all execute("ALTER TABLE images AUTO_INCREMENT = 1") image = Image.create(:filename =&gt; "foo.jpg") image.id #=&gt; 1 end def self.down end end </code></pre> http://stackoverflow.com/questions/708089/c-using-namespaces-to-avoid-long-paths/708204#708204 0 Answer by Terry Lorber for C++ Using Namespaces to Avoid Long Paths Terry Lorber 2009-04-02T03:45:56Z 2009-04-02T03:45:56Z <p>Don't be a "using namespace" abuser. Use those namespaces!</p> <pre><code>std::cout &lt;&lt; Test::A::foo() &lt;&lt; std::endl; </code></pre> http://stackoverflow.com/questions/496204/how-do-i-write-binary-data-for-7z-archive-format 1 How do I write binary data for 7z archive format? Terry Lorber 2009-01-30T16:40:43Z 2009-01-30T18:25:52Z <p>I've been pouring over the format description and source code for the 7z archive format, but I'm still having trouble writing a valid container. I assume I can create an empty container... anyway here's my start:</p> <pre><code>std::ofstream ofs(archivename.c_str(), std::ios::binary|std::ios::trunc); Byte signature[6] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; Byte major = 0; Byte minor = 3; ofs.write((const char*)signature, 6); ofs.write((const char*)major, 1); ofs.write((const char*)minor, 1); UInt64 offset = 0; UInt64 size = 0; UInt32 crc = 0; ofs.write((const char*)offset, 4); ofs.write((const char*)size, 8); ofs.write((const char*)crc, 8); ofs.write((const char*)CrcCalc(0, 0), 8); ofs.close(); </code></pre> <p>I think my main problem is a lack of understanding of std::ofstream::write(). Byte is an 'unsigned char', UInt64 &amp; UInt32 are both 'unsigned long'. </p> <p><strong>UPDATE0</strong>: As everyone points out, it'd be a problem if I ran this on a big-endian machine. That's not the case here. Per Fredrik Janssen, I should be casting the address of the non-arrays. I should also mention that CrcCalc() is a function in the LZMA SDK. Adding &amp; helps a bit, it's that first unsigned char[6] that's having some problems.</p> <p><strong>UPDATE1</strong>: Working code to get an empty archive file below.</p> <pre><code>static void SetUInt32(Byte *p, UInt32 d) { for (int i = 0; i &lt; 4; i++, d &gt;&gt;= 8) p[i] = (Byte)d; } static void SetUInt64(Byte *p, UInt64 d) { for (int i = 0; i &lt; 8; i++, d &gt;&gt;= 8) p[i] = (Byte)d; } void make_7z_archive() { CrcGenerateTable(); std::ofstream ofs(archivename.c_str(), std::ios::binary|std::ios::trunc); Byte signature[6] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; Byte major = 0; Byte minor = 3; ofs.write((const char*)signature, 6); ofs.write((const char*)&amp;major, 1); ofs.write((const char*)&amp;minor, 1); UInt64 offset = 0; UInt64 size = 0; UInt32 crc = 0; Byte buf[24]; SetUInt64(buf + 4, offset); SetUInt64(buf + 12, size); SetUInt32(buf + 20, crc); SetUInt32(buf, CrcCalc(buf + 4, 20)); ofs.write((const char*)buf, 24); ofs.close(); } </code></pre> <p>NOTE: CrcGenerateTable() and CrcCalc() are from the LZMA SDK.</p> http://stackoverflow.com/questions/496196/how-to-add-a-file-to-source-control-when-manually-editing-a-project-file/496213#496213 0 Answer by Terry Lorber for How to add a file to source control when manually editing a project file? Terry Lorber 2009-01-30T16:42:55Z 2009-01-30T16:42:55Z <p>Use <a href="http://cmake.org" rel="nofollow">CMake</a> instead of maintaining VStudio project/workspace/solution files. Track the CMakeLists.txt files, and then generate a valid build environment.</p> http://stackoverflow.com/questions/1814463/returning-a-structure-array-using-pointers/1814539#1814539 Comment by Terry Lorber on Returning a structure array using pointers Terry Lorber 2009-11-29T04:16:19Z 2009-11-29T04:16:19Z +1 nice answer. http://stackoverflow.com/questions/1741858/using-many-to-many-nested-models-in-rails/1742784#1742784 Comment by Terry Lorber on Using many-to-many nested models in Rails Terry Lorber 2009-11-16T16:00:36Z 2009-11-16T16:00:36Z +1 However, bad syntax? The first named scoped should be declared as <i>* :conditions =&gt; [&quot;location_types.name = 'work'&quot;] *</i> or does it not matter if work has single quotes or not? http://stackoverflow.com/questions/1741854/how-to-set-up-a-new-rails-program/1741962#1741962 Comment by Terry Lorber on how to set up a new rails program Terry Lorber 2009-11-16T15:35:45Z 2009-11-16T15:35:45Z +1 for the &quot;what is it and how does it work?&quot; But to completely answer the question, edit to include: 'rails &lt;application_name&gt;' http://stackoverflow.com/questions/1711171/what-does-the-asterisk-before-the-variable-mean-in-the-namedscope-argument-list/1711313#1711313 Comment by Terry Lorber on What does the asterisk before the variable mean in the named_scope argument list? Terry Lorber 2009-11-10T21:32:47Z 2009-11-10T21:32:47Z That's the magic! http://stackoverflow.com/questions/1567148/method-to-migrate-app-engine-models/1567156#1567156 Comment by Terry Lorber on Method to migrate App Engine models Terry Lorber 2009-10-18T03:48:36Z 2009-10-18T03:48:36Z +1 for Final Thoughts. It's Google, it's BigTable, use a new model name. Seems like the best solution. http://stackoverflow.com/questions/1452595/passing-instance-variable-from-one-form-to-the-a-different-controllers-action-in/1452632#1452632 Comment by Terry Lorber on Passing instance variable from one form to the a different controller's action in Rails Terry Lorber 2009-09-24T05:13:08Z 2009-09-24T05:13:08Z If you're going to use a redirect, then you'll need to store the parameters somewhere that will persist between requests. Use the session hash or a database table. http://stackoverflow.com/questions/1452622/is-this-efficient-coding-for-anti-spam/1452641#1452641 Comment by Terry Lorber on Is this efficient coding for anti-spam? Terry Lorber 2009-09-21T02:52:33Z 2009-09-21T02:52:33Z +1, but should it be mentioned that this a wildly naive way to go about preventing spam? http://stackoverflow.com/questions/1344548/rails-sti-style-inheritence-for-multiple-roles-per-user/1344618#1344618 Comment by Terry Lorber on Rails STI Style Inheritence for multiple roles per user Terry Lorber 2009-08-29T20:10:25Z 2009-08-29T20:10:25Z +1 STI is not the way to implement user roles. http://stackoverflow.com/questions/1344234/site-wide-search-on-a-rails-application/1344508#1344508 Comment by Terry Lorber on Site wide search on a rails application Terry Lorber 2009-08-28T17:45:45Z 2009-08-28T17:45:45Z @NeilS Good point, use STI (Single Table Inheritance) for all these searchable models. That way, the &quot;name&quot; column of create_table is not necessary. If you've already got models, or can't make STI work for these models, then it's a bit more work. http://stackoverflow.com/questions/1332193/rails-validating-existence-of-an-association/1332202#1332202 Comment by Terry Lorber on Rails: Validating existence of an association Terry Lorber 2009-08-26T16:10:23Z 2009-08-26T16:10:23Z @Homar Not sure about scoping, if the belongs_to association includes this restriction, I'd assume it would work. http://stackoverflow.com/questions/1330563/finding-data-in-rails/1330609#1330609 Comment by Terry Lorber on Finding data in Rails Terry Lorber 2009-08-26T16:08:32Z 2009-08-26T16:08:32Z @gkrdvl Posts with no comments should be returned, per your question. Maybe &quot;&lt;&gt;&quot; is not the proper syntax for your database. Try &quot;!=&quot;? http://stackoverflow.com/questions/1331367/rake-just-one-migration/1332145#1332145 Comment by Terry Lorber on Rake just one migration Terry Lorber 2009-08-26T03:07:06Z 2009-08-26T03:07:06Z Hmm, <a href="http://blog.stonean.com/2007/12/18/rake-dbmigrateredo/" rel="nofollow">blog.stonean.com/2007/12/&hellip;</a>, ::redo doesn't seem to take a VERSION argument. http://stackoverflow.com/questions/1330563/finding-data-in-rails/1330675#1330675 Comment by Terry Lorber on Finding data in Rails Terry Lorber 2009-08-26T02:24:19Z 2009-08-26T02:24:19Z This results in three separate DB queries, it would be more efficient to use the RDBMS to generate the desired result set. Not to mention that Post.find_all could be a very big collection. http://stackoverflow.com/questions/1330563/finding-data-in-rails/1330609#1330609 Comment by Terry Lorber on Finding data in Rails Terry Lorber 2009-08-26T02:21:54Z 2009-08-26T02:21:54Z The :include generates a LEFT OUTER JOIN, so posts without comments should be returned. http://stackoverflow.com/questions/1306459/with-rails-2-x-how-do-i-handle-a-table-with-a-valid-column/1308529#1308529 Comment by Terry Lorber on With Rails 2.x, how do I handle a table with a "valid" column? Terry Lorber 2009-08-21T06:20:51Z 2009-08-21T06:20:51Z I agree, power through convention. However, I'm using my hack until I can schedule a change with my dependents.