We just put up a new article; it''s the first in a two part series on rethinking searching on the web. The companion article will be next week. http://unspace.ca/discover/livefilter/ Ryan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
On Sep 5, 2006, at 1:27 PM, Ryan McMinn wrote:> > We just put up a new article; it''s the first in a two part series on > rethinking searching on the web. The companion article will be next > week. > > http://unspace.ca/discover/livefilter/ > > Ryan >Very nice article. -Ezra --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Great article Ryan. I submitted the link to Digg: http://digg.com/programming/Live_Filter_Re_inventing_Search --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
If anyone has ever used Acquisition on osx you''ll see a small example of this type of searching. It really is quite intuitive once you get used to it. On 9/5/06, John Philip Green <heyjohngreen-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Great article Ryan. > > I submitted the link to Digg: > http://digg.com/programming/Live_Filter_Re_inventing_Search > > > > >-- Ross Riley riley.ross-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
I encounter this rake error today: (in /home/long/rails/myapp) rake aborted! Don''t know how to build task ''db:schema:dump'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1287:in `[]'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:300:in `[]'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1719:in `run'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1719:in `each'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1719:in `run'' /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/bin/rake:7 /usr/local/bin/rake:18:in `load'' /usr/local/bin/rake:18 This is strange since previously (a week or 2 ago) I was able to create a schema.rb using this command. I have not made any change to my server/ruby/rails in terms of software updates. What gives? A second question is table schema for schema_info. Where can I find column info? It seems ''version int'' is one of the columns needed. Are there others? Thanks for pointers, Long --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Never mind...I figured it out using rake --tasks. It list known tasks like db_schema_dump, duh!, so why do I see many references to db:schema:dump on the net? Still looking for an answer to the schema_info question though... Long ----- Original Message ----- From: "Long"> > I encounter this rake error today: > > (in /home/long/rails/myapp) > rake aborted! > Don''t know how to build task ''db:schema:dump'' > /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1287:in `[]'' > /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:300:in `[]'' > /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1719:in `run'' > /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1719:in `each'' > /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/lib/rake.rb:1719:in `run'' > /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.0/bin/rake:7 > /usr/local/bin/rake:18:in `load'' > /usr/local/bin/rake:18 > > This is strange since previously (a week or 2 ago) I was able to create a schema.rb > using this command. I have not made any change to my server/ruby/rails in terms > of software updates. What gives? > > A second question is table schema for schema_info. Where can I find column > info? It seems ''version int'' is one of the columns needed. Are there others? > > Thanks for pointers, > > Long--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---