User Terry Lorber - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T10:36:35Zhttp://stackoverflow.com/feeds/user/809http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1743077/visual-studio-plugins-for-c-environment/1743144#17431440Answer by Terry Lorber for visual studio plugins for C++ environmentTerry Lorber2009-11-16T16:04:23Z2009-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-list1What does the asterisk before the variable mean in the named_scope argument list?Terry Lorber2009-11-10T21:04:58Z2009-11-10T21:35:59Z
<p>I've got a named scope like this:</p>
<pre><code>named_scope :by_items, lambda |*items| {
:joins => :items,
:conditions => ["items.id in (?)", items.map(&::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#14526320Answer by Terry Lorber for Passing instance variable from one form to the a different controller's action in RailsTerry Lorber2009-09-21T02:36:54Z2009-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 => "baq", :controller => "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#13445081Answer by Terry Lorber for Site wide search on a rails applicationTerry Lorber2009-08-28T00:58:49Z2009-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 & 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#13322021Answer by Terry Lorber for Rails: Validating existence of an associationTerry Lorber2009-08-26T03:39:20Z2009-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 < ActiveRecord::Base
belongs_to :category
validates_existence_of :category
end
</code></pre>
http://stackoverflow.com/questions/1331367/rake-just-one-migration/1332123#13321230Answer by Terry Lorber for Rake just one migrationTerry Lorber2009-08-26T02:54:57Z2009-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#13306095Answer by Terry Lorber for Finding data in RailsTerry Lorber2009-08-25T20:01:50Z2009-08-25T20:12:14Z<pre><code>@posts = Post.find(:all,
:include => [:comments],
:conditions => ["posts.user_id <> ? and comments.user_id <> ?",
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-column0With Rails 2.x, how do I handle a table with a "valid" column?Terry Lorber2009-08-20T14:10:17Z2009-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#13064960Answer by Terry Lorber for With Rails 2.x, how do I handle a table with a "valid" column?Terry Lorber2009-08-20T14:15:00Z2009-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 << 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#11567871Answer by Terry Lorber for Webrick Very Slow When Accessing Applications From Remote Desktop Terry Lorber2009-07-21T00:58:19Z2009-07-21T00:58:19Z<p>Use mongrel! Webrick is notoriously slow.</p>
http://stackoverflow.com/questions/1156738/ruby-updating-a-hash/1156781#11567812Answer by Terry Lorber for [Ruby] Updating a HashTerry Lorber2009-07-21T00:55:35Z2009-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#11100583Answer by Terry Lorber for Source Control – Is a separate branch required for every product?Terry Lorber2009-07-10T15:00:56Z2009-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#11098606Answer by Terry Lorber for Recommend portable source control setup?Terry Lorber2009-07-10T14:26:04Z2009-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#11057581Answer by Terry Lorber for Make a foreign key field in a django form read-only, and still enable the form to be submittedTerry Lorber2009-07-09T18:39:44Z2009-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#10879000Answer by Terry Lorber for Ruby on Rails: Editor for backend of the web application.Terry Lorber2009-07-06T16:22:03Z2009-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#10853001Answer by Terry Lorber for How to wean oneself from IDE to text editor?Terry Lorber2009-07-06T03:31:44Z2009-07-06T03:31:44Z<p>Install emacs and don't look back.</p>
http://stackoverflow.com/questions/1085287/hierarchical-data-in-mysql/1085296#10852960Answer by Terry Lorber for Hierarchical Data in MySQLTerry Lorber2009-07-06T03:30:10Z2009-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#10840680Answer by Terry Lorber for DB Schema Quesion: Maintaining Item OrderTerry Lorber2009-07-05T13:32:35Z2009-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#10652795Answer by Terry Lorber for How to mark some code that must be removed before production?Terry Lorber2009-06-30T18:40:01Z2009-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#10652070Answer by Terry Lorber for Item's page and will_paginateTerry Lorber2009-06-30T18:25:53Z2009-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#10650980Answer by Terry Lorber for Correct way to initialize an object with exception throwing constructorTerry Lorber2009-06-30T18:03:46Z2009-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& 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-documentati0What's the best way to collaborate and distribute project and release documentation within an organization?Terry Lorber2009-05-14T04:05:17Z2009-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#8537330Answer by Terry Lorber for RAILS_ENV and rails 2.3.2Terry Lorber2009-05-12T16:45:05Z2009-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#8509750Answer by Terry Lorber for How can I make rails helpers more object-orientedTerry Lorber2009-05-12T02:56:52Z2009-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#7892881Answer by Terry Lorber for Does free open source software hurt programming jobs?Terry Lorber2009-04-25T16:41:01Z2009-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-mysql2How do I use a Rails ActiveRecord migration to insert a primary key into a MySQL database?Terry Lorber2009-04-08T03:24:27Z2009-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 => 42, :filename => "foo.jpg")
image.id #=> 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#7285270Answer by Terry Lorber for How do I use a Rails ActiveRecord migration to insert a primary key into a MySQL database?Terry Lorber2009-04-08T04:31:25Z2009-04-08T04:31:25Z<p>Here's my kluge:</p>
<pre><code>class AddImages < ActiveRecord::Migration
def self.up
Image.destroy_all
execute("ALTER TABLE images AUTO_INCREMENT = 1")
image = Image.create(:filename => "foo.jpg")
image.id #=> 1
end
def self.down
end
end
</code></pre>
http://stackoverflow.com/questions/708089/c-using-namespaces-to-avoid-long-paths/708204#7082040Answer by Terry Lorber for C++ Using Namespaces to Avoid Long PathsTerry Lorber2009-04-02T03:45:56Z2009-04-02T03:45:56Z<p>Don't be a "using namespace" abuser. Use those namespaces!</p>
<pre><code>std::cout << Test::A::foo() << std::endl;
</code></pre>
http://stackoverflow.com/questions/496204/how-do-i-write-binary-data-for-7z-archive-format1How do I write binary data for 7z archive format?Terry Lorber2009-01-30T16:40:43Z2009-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 & 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 & 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 < 4; i++, d >>= 8)
p[i] = (Byte)d;
}
static void SetUInt64(Byte *p, UInt64 d)
{
for (int i = 0; i < 8; i++, d >>= 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*)&major, 1);
ofs.write((const char*)&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#4962130Answer by Terry Lorber for How to add a file to source control when manually editing a project file?Terry Lorber2009-01-30T16:42:55Z2009-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#1814539Comment by Terry Lorber on Returning a structure array using pointersTerry Lorber2009-11-29T04:16:19Z2009-11-29T04:16:19Z+1 nice answer.http://stackoverflow.com/questions/1741858/using-many-to-many-nested-models-in-rails/1742784#1742784Comment by Terry Lorber on Using many-to-many nested models in RailsTerry Lorber2009-11-16T16:00:36Z2009-11-16T16:00:36Z+1 However, bad syntax? The first named scoped should be declared as <i>* :conditions => ["location_types.name = 'work'"] *</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#1741962Comment by Terry Lorber on how to set up a new rails programTerry Lorber2009-11-16T15:35:45Z2009-11-16T15:35:45Z+1 for the "what is it and how does it work?" But to completely answer the question, edit to include:
'rails <application_name>'http://stackoverflow.com/questions/1711171/what-does-the-asterisk-before-the-variable-mean-in-the-namedscope-argument-list/1711313#1711313Comment by Terry Lorber on What does the asterisk before the variable mean in the named_scope argument list?Terry Lorber2009-11-10T21:32:47Z2009-11-10T21:32:47ZThat's the magic!http://stackoverflow.com/questions/1567148/method-to-migrate-app-engine-models/1567156#1567156Comment by Terry Lorber on Method to migrate App Engine modelsTerry Lorber2009-10-18T03:48:36Z2009-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#1452632Comment by Terry Lorber on Passing instance variable from one form to the a different controller's action in RailsTerry Lorber2009-09-24T05:13:08Z2009-09-24T05:13:08ZIf 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#1452641Comment by Terry Lorber on Is this efficient coding for anti-spam?Terry Lorber2009-09-21T02:52:33Z2009-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#1344618Comment by Terry Lorber on Rails STI Style Inheritence for multiple roles per userTerry Lorber2009-08-29T20:10:25Z2009-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#1344508Comment by Terry Lorber on Site wide search on a rails applicationTerry Lorber2009-08-28T17:45:45Z2009-08-28T17:45:45Z@NeilS Good point, use STI (Single Table Inheritance) for all these searchable models. That way, the "name" 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#1332202Comment by Terry Lorber on Rails: Validating existence of an associationTerry Lorber2009-08-26T16:10:23Z2009-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#1330609Comment by Terry Lorber on Finding data in RailsTerry Lorber2009-08-26T16:08:32Z2009-08-26T16:08:32Z@gkrdvl Posts with no comments should be returned, per your question. Maybe "<>" is not the proper syntax for your database. Try "!="?
http://stackoverflow.com/questions/1331367/rake-just-one-migration/1332145#1332145Comment by Terry Lorber on Rake just one migrationTerry Lorber2009-08-26T03:07:06Z2009-08-26T03:07:06ZHmm, <a href="http://blog.stonean.com/2007/12/18/rake-dbmigrateredo/" rel="nofollow">blog.stonean.com/2007/12/…</a>, ::redo doesn't seem to take a VERSION argument.http://stackoverflow.com/questions/1330563/finding-data-in-rails/1330675#1330675Comment by Terry Lorber on Finding data in RailsTerry Lorber2009-08-26T02:24:19Z2009-08-26T02:24:19ZThis 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#1330609Comment by Terry Lorber on Finding data in RailsTerry Lorber2009-08-26T02:21:54Z2009-08-26T02:21:54ZThe :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#1308529Comment by Terry Lorber on With Rails 2.x, how do I handle a table with a "valid" column?Terry Lorber2009-08-21T06:20:51Z2009-08-21T06:20:51ZI agree, power through convention. However, I'm using my hack until I can schedule a change with my dependents.