User John Topley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T18:36:46Zhttp://stackoverflow.com/feeds/user/1450http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1946621/rails-habtm-relation/1946682#19466821Answer by John Topley for rails habtm relationJohn Topley2009-12-22T14:27:31Z2009-12-22T14:27:31Z<p>To get the names of the categories associated with your first <code>Template</code> instance, you can do:</p>
<pre><code>Template.first.categories.collect(&:name)
</code></pre>
<p>—This uses the <code>Symbol#to_proc</code> support that Rails adds. More information in <a href="http://railscasts.com/episodes/6-shortcut-blocks-with-symbol-to-proc" rel="nofollow">this Railscast</a>.</p>
http://stackoverflow.com/questions/1945954/error-div-classfieldwitherrors-workaround/1946021#19460210Answer by John Topley for error (div class="fieldWithErrors") workaround?John Topley2009-12-22T12:16:05Z2009-12-22T13:29:57Z<p>Create a new initializer, for example, <strong>/config/initializers/field_error.rb</strong>:</p>
<pre><code>ActionView::Base.field_error_proc = Proc.new do |html_tag, instance_tag|
if html_tag =~ /<(input|textarea|select)[^>]+class=/
class_attribute = html_tag =~ /class=['"]/
html_tag.insert(class_attribute + 7, "fieldWithErrors ")
elsif html_tag =~ /<(input|textarea|select)/
first_whitespace = html_tag =~ /\s/
html_tag[first_whitespace] = " class='fieldWithErrors' "
end
html_tag
end
</code></pre>
<ul>
<li>Ryan Bates covered this in <a href="http://railscasts.com/episodes/39-customize-field-error" rel="nofollow">Railscast episode 39</a></li>
</ul>
http://stackoverflow.com/questions/952886/editing-large-files-on-mac-os-x3Editing large files on Mac OS XJohn Topley2009-06-04T20:23:55Z2009-12-21T02:58:05Z
<p>Does anyone have any recommendations for a programmer's editor that can cope with large files on Mac OS X? By large I mean hundreds of megabytes. TextMate doesn't cut it.</p>
http://stackoverflow.com/questions/1929442/move-this-logic-into-the-find-method/1929469#19294692Answer by John Topley for Move this logic into the find method?John Topley2009-12-18T16:55:26Z2009-12-18T16:55:26Z<p>You could create some named scopes such as <code>by_size</code>, <code>by_colour</code> and <code>by_brand</code> on your <code>Shoe</code> model for these queries. Then you can chain them together in various permutations.</p>
<p>This <a href="http://railscasts.com/episodes/108-named-scope" rel="nofollow">Railscast</a> should give you the idea.</p>
http://stackoverflow.com/questions/1922304/what-is-ruby-on-rails-orm-in-laymans-terms-please-explain/1922450#19224507Answer by John Topley for What is Ruby on Rails ORM in layman's terms? Please explainJohn Topley2009-12-17T15:20:38Z2009-12-17T16:56:23Z<p>ORM in Rails is an implementation of the <a href="http://en.wikipedia.org/wiki/Active%5Frecord%5Fpattern" rel="nofollow"><strong>Active Record</strong></a> pattern from Martin Fowler's <em>Patterns of Enterprise Application Architecture</em> book. Accordingly, the Rails ORM framework is named ActiveRecord.</p>
<p>The basic idea is that a database table is wrapped into a class and an instance of an object corresponds to a single row in that table. So creating a new instance adds a row to the table, updating the object updates the row etc. The wrapper class implements properties for each column in the table. In Rails' ActiveRecord, these properties are made available automatically using Ruby metaprogramming based on the database schema. You can override these properties if required if you need to introduce additional logic. You can also add so-called <em>virtual attributes</em>, which have no corresponding column in the underlying database table.</p>
<p>Rails is a <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow"><strong>Model-View-Controller</strong></a> (MVC) framework, so a Rails model is the <strong>M</strong> in MVC. As well as being the ActiveRecord wrapper class described above it contains business logic, including validation logic implemented by ActiveRecord's Validation module.</p>
<h3>Further Reading</h3>
<ul>
<li><a href="http://guides.rubyonrails.org/migrations.html" rel="nofollow">Rails Database Migrations guide</a></li>
<li><a href="http://guides.rubyonrails.org/activerecord%5Fvalidations%5Fcallbacks.html" rel="nofollow">Rails Active Record Validations and Callbacks guide</a></li>
<li><a href="http://guides.rubyonrails.org/association%5Fbasics.html" rel="nofollow">Active Record Associations guide</a></li>
<li><a href="http://guides.rubyonrails.org/active%5Frecord%5Fquerying.html" rel="nofollow">Active Record Query Interface guide</a></li>
<li><a href="http://api.rubyonrails.org/classes/ActiveRecord/Base.html" rel="nofollow">Active Record API documentation</a></li>
</ul>
http://stackoverflow.com/questions/1922506/authentication-ruby-on-rails/1922579#19225792Answer by John Topley for Authentication Ruby on Rails...John Topley2009-12-17T15:36:35Z2009-12-17T15:36:35Z<p>These (free) <a href="http://railscasts.com/episodes?search=authlogic" rel="nofollow">Railscasts</a> should give you some food for thought. There are lots of great RubyGems/plugins out there for this sort of thing.</p>
http://stackoverflow.com/questions/1915798/what-programmer-specific-function-can-the-old-esc-do/1915894#19158941Answer by John Topley for What programmer-specific function can the old Esc do?John Topley2009-12-16T16:34:16Z2009-12-16T16:34:16Z<p>How about mapping it to go to Stack Overflow?</p>
http://stackoverflow.com/questions/1914128/how-to-write-rails-controller-to-simulate-update-twitter-api-like/1915518#19155180Answer by John Topley for How to write rails Controller to simulate update twitter-API like ?John Topley2009-12-16T15:49:17Z2009-12-16T15:49:17Z<p>Take a look at John Nunemaker's <a href="http://github.com/jnunemaker/twitter/" rel="nofollow">Twitter RubyGem</a>. It includes a <a href="http://github.com/jnunemaker/twitter/blob/31341b3593868ef34935e19a366b839bba63446d/examples/update.rb" rel="nofollow">status update example</a>.</p>
http://stackoverflow.com/questions/1913696/rails-send-emails-through-an-exchange-server/1915497#19154970Answer by John Topley for Rails - Send emails through an exchange serverJohn Topley2009-12-16T15:46:43Z2009-12-16T15:46:43Z<p>(Disclaimer: I know next to nothing about Microsoft Exchange.)</p>
<p>If you can use Exchange as an SMTP server then it should just be a question of configuring ActionMailer's SMTP settings appropriately. See <a href="http://guides.rubyonrails.org/action%5Fmailer%5Fbasics.html#action-mailer-configuration" rel="nofollow">http://guides.rubyonrails.org/action%5Fmailer%5Fbasics.html#action-mailer-configuration</a></p>
http://stackoverflow.com/questions/1912700/rails-snow-leopard-mysql-64-bit-question/1915174#19151741Answer by John Topley for Rails / Snow Leopard Mysql 64-bit questionJohn Topley2009-12-16T14:59:23Z2009-12-16T15:12:12Z<p>I installed it from source following <a href="http://hivelogic.com/articles/compiling-mysql-on-snow-leopard" rel="nofollow">these instructions on Hivelogic</a> and it works great. Then I installed the MySQL RubyGem using:</p>
<p><code>sudo gem install mysql -- --with-mysql-dir=/usr/local/mysql</code></p>
http://stackoverflow.com/questions/1907354/how-to-force-fragment-cache-on-rails-from-cron-schedule/1908446#19084460Answer by John Topley for How to force fragment cache on rails from cron schedule?John Topley2009-12-15T16:01:57Z2009-12-15T16:01:57Z<p>It's a primitive solution but you could always have cron fire off a curl request to the URL of your page(s).</p>
http://stackoverflow.com/questions/1907954/rails-activerecord-relationships-has-many-and-belongs-to-associations/1908045#19080452Answer by John Topley for Rails ActiveRecord relationships - has many and belongs to associationsJohn Topley2009-12-15T15:03:32Z2009-12-15T15:03:32Z<p>It depends whether you want a join model or not. A join model lets you hold extra information against the association between two other models. For example, perhaps you want to record a timestamp of when the article was tagged. That information would be recorded against the join model.</p>
<p>If you don't want a join model, then you could use a simple <code>has_and_belongs_to_many</code> association:</p>
<pre><code>class Article < ActiveRecord::Base
has_and_belongs_to_many :tags
end
class Tag < ActiveRecord::Base
has_and_belongs_to_many :articles
end
</code></pre>
<p>With a <code>Tagging</code> join model (which is a better name than <code>ArticleTag</code>), it would look like this:</p>
<pre><code>class Article < ActiveRecord::Base
has_many :taggings
has_many :tags, :through => :taggings
end
class Tag < ActiveRecord::Base
has_many :taggings
has_many :articles, :through => :taggings
end
class Tagging < ActiveRecord::Base
belongs_to :article
belongs_to :tag
end
</code></pre>
<ul>
<li><a href="http://guides.rubyonrails.org/association%5Fbasics.html#the-has-many-through-association" rel="nofollow">A Guide to Active Record Associations</a></li>
</ul>
http://stackoverflow.com/questions/1907482/call-a-servlet-on-click-of-hyperlink/1907507#19075078Answer by John Topley for Call a servlet on click of hyperlinkJohn Topley2009-12-15T13:35:23Z2009-12-15T13:49:49Z<p>Make the hyperlink have a URL that you have a servlet mapping defined for in the <code>web.xml</code> file.</p>
<p>The <code>servlet-mapping</code> element defines a mapping between a servlet and a URL pattern. The example below maps the servlet named <code>myservlet</code> to any URL that starts with <code>/foo</code>:</p>
<pre><code><servlet>
<servlet-name>myservlet</servlet-name>
<servlet-class>com.stackoverflow.examples.MyServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>myservlet</servlet-name>
<url-pattern>/foo/*</url-pattern>
</servlet-mapping>
</code></pre>
<ul>
<li>For this example, a hyperlink such as <code><a href="/foo/test.html">Click Me</a></code> would invoke the servlet.</li>
</ul>
http://stackoverflow.com/questions/1901051/do-pointers-in-java-actually-exist/1901054#19010542Answer by John Topley for Do pointers in java actually exist?John Topley2009-12-14T13:37:30Z2009-12-14T14:01:07Z<p><strike>This question should be migrated to Stack Overflow.</strike> The fact that Java has a <code>NullPointerException</code> class should give you a strong hint as to whether Java uses pointers behing the scenes.</p>
http://stackoverflow.com/questions/1896777/cascade-delete-in-ruby-activerecord-models/1896818#18968181Answer by John Topley for Cascade delete in Ruby ActiveRecord models?John Topley2009-12-13T15:28:36Z2009-12-13T15:34:40Z<p>Yes. On a Rails' model association you can specify the <code>:dependent</code> option, which can take one of the following three forms:</p>
<ul>
<li><code>:destroy/:destroy_all</code> The associated objects are destroyed alongside this object by calling their <code>destroy</code> method</li>
<li><code>:delete/:delete_all</code> All associated objects are destroyed immediately without calling their <code>:destroy</code> method</li>
<li><code>:nullify</code> All associated objects' foreign keys are set to <code>NULL</code> without calling their <code>save</code> callbacks</li>
</ul>
<p>Note that the <code>:dependent</code> option is ignored if you have a <code>:has_many X, :through => Y</code> association set up.</p>
<p>So for your example you might choose to have a post delete all its associated comments when the post itself is deleted, without calling each comment's <code>destroy</code> method. That would look like this:</p>
<pre><code>class Post < ActiveRecord::Base
validates_presence_of :body, :title
has_many :comments, :dependent => :delete_all
end
</code></pre>
http://stackoverflow.com/questions/1888082/rails-association-for-two-foreign-keys-for-the-same-table-in-one-table/1888156#18881560Answer by John Topley for Rails association for two foreign keys for the same table in one tableJohn Topley2009-12-11T13:43:22Z2009-12-11T13:43:22Z<p>The symbol passed to the <code>belongs_to</code> method needs to be the singular name of the other model. So for your example, it would be:</p>
<pre><code>class NewModel < ActiveRecord::Base
belongs_to :base_model
end
</code></pre>
<ul>
<li>See the <a href="http://guides.rubyonrails.org/association%5Fbasics.html" rel="nofollow">Active Record Associations Rails guide</a> for further details.</li>
</ul>
http://stackoverflow.com/questions/1887471/is-there-any-other-tool-better-than-firebug-on-any-other-browsers/1887592#18875924Answer by John Topley for Is there any other tool better than Firebug on any other browsers?John Topley2009-12-11T11:55:18Z2009-12-11T11:55:18Z<ul>
<li><p><a href="http://ajax.dynatrace.com/" rel="nofollow">dynaTrace AJAX Edition</a> is amazing for AJAX debugging. <a href="http://stackoverflow.com/users/6524/john-resig">John Resig</a> (author of jQuery) loves it. It's IE-only at the moment, but they're working on a Firefox version</p></li>
<li><p>The WebKit Web Inspector just got <a href="http://webkit.org/blog/829/web-inspector-updates/" rel="nofollow">a slew of useful updates</a> in the nightly builds</p></li>
</ul>
http://stackoverflow.com/questions/1887162/am-i-missing-something-by-not-installing-ri-and-rdoc-for-gems/1887176#18871761Answer by John Topley for Am I missing something by not installing ri and rdoc for gems?John Topley2009-12-11T10:28:08Z2009-12-11T10:28:08Z<p>Install it if you want locally available documentation for the gem.</p>
http://stackoverflow.com/questions/1883872/activemodel-timestamp-fields-where-does-the-timestamp-come-from/1884184#18841846Answer by John Topley for ActiveModel timestamp fields: where does the timestamp come from?John Topley2009-12-10T21:31:56Z2009-12-10T21:31:56Z<p>A quick Ack of the <a href="http://github.com/rails/rails/blob/master/activerecord/lib/active%5Frecord/timestamp.rb#L44" rel="nofollow">Rails source</a> reveals it to be the Rails server time, as returned by Ruby's <code>Time.now</code> method:</p>
<pre><code>private
def create_with_timestamps #:nodoc:
if record_timestamps
current_time = current_time_from_proper_timezone
write_attribute('created_at', current_time) if respond_to?(:created_at) && created_at.nil?
write_attribute('created_on', current_time) if respond_to?(:created_on) && created_on.nil?
write_attribute('updated_at', current_time) if respond_to?(:updated_at) && updated_at.nil?
write_attribute('updated_on', current_time) if respond_to?(:updated_on) && updated_on.nil?
end
create_without_timestamps
end
def update_with_timestamps(*args) #:nodoc:
if record_timestamps && (!partial_updates? || changed?)
current_time = current_time_from_proper_timezone
write_attribute('updated_at', current_time) if respond_to?(:updated_at)
write_attribute('updated_on', current_time) if respond_to?(:updated_on)
end
update_without_timestamps(*args)
end
def current_time_from_proper_timezone
self.class.default_timezone == :utc ? Time.now.utc : Time.now
end
</code></pre>
http://stackoverflow.com/questions/1881649/null-pointer-error-again/1881710#18817101Answer by John Topley for Null Pointer Error AgainJohn Topley2009-12-10T15:23:34Z2009-12-10T15:23:34Z<p>If you're getting NullPointerExceptions then it's because <code>theInfo</code> and <code>varInfo</code> are null in your examples.</p>
http://stackoverflow.com/questions/1876843/is-it-better-to-use-routes-or-modrewrite-to-forward-old-urls/1877092#18770922Answer by John Topley for Is it better to use routes or mod_rewrite to forward old URLs?John Topley2009-12-09T21:39:46Z2009-12-09T21:39:46Z<p>Using <code>mod_rewrite</code> will undoubtedly give the best performance because the request won't even touch Rails. However, there is a third way if you find <code>mod_rewrite</code> to be a bit of a pain to get working—as I do—and a maintenance burden.</p>
<p><a href="http://github.com/pivotal/refraction" rel="nofollow"><strong>Refraction</strong></a> is Rack middleware designed to replace <code>mod_rewrite</code>. It lets you write your rewrite rules using good old readable Ruby code and it's still faster than using Rails itself for the task.</p>
http://stackoverflow.com/questions/1867543/drying-up-my-rails-models/1867586#18675862Answer by John Topley for Drying up my rails modelsJohn Topley2009-12-08T15:09:47Z2009-12-08T15:09:47Z<p>You should use inheritance only if the models are <a href="http://en.wikipedia.org/wiki/Liskov%5Fsubstitution%5Fprinciple" rel="nofollow">true subtypes</a> of some parent type, rather than as a convenient way to share code. Unlike some languages, Ruby has the module mechanism for the latter.</p>
http://stackoverflow.com/questions/1866686/best-practice-of-installing-ruby-and-rails-on-snow-leopard/1866968#18669683Answer by John Topley for Best practice of installing Ruby and Rails on Snow Leopard?John Topley2009-12-08T13:26:32Z2009-12-08T13:26:32Z<p>I don't know about best practice, but Dan Benjamin's instructions over at Hivelogic worked great for me on Snow Leopard:</p>
<ul>
<li><a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard/" rel="nofollow">Installing Ruby, RubyGems and Rails on Snow Leopard</a></li>
<li><a href="http://hivelogic.com/articles/compiling-mysql-on-snow-leopard/" rel="nofollow">Installing MySQL on Snow Leopard</a></li>
</ul>
<p>—These instructions compile everything from source and install to <code>/usr/local</code></p>
http://stackoverflow.com/questions/1862610/why-doesnt-mymodel-all-eachm-m-destroy-work-as-expected/1862625#18626254Answer by John Topley for Why doesn't MyModel.all.each{|m| m.destroy} work as expected ?John Topley2009-12-07T20:20:47Z2009-12-07T20:20:47Z<p>Use <code>MyModel.destroy_all</code> to delete all the records for your model.</p>
http://stackoverflow.com/questions/1862494/how-to-disable-default-asset-timestamps-for-some-assets-in-rails/1862574#18625741Answer by John Topley for How to disable default asset timestamps for some assets in rails?John Topley2009-12-07T20:12:19Z2009-12-07T20:12:19Z<p>Why not just use the regular HTML <code><img></code> element for those images? It'll be marginally faster than going through the Rails' helper too.</p>
http://stackoverflow.com/questions/1852729/hows-the-latest-ruby-on-rails-code/1852904#18529042Answer by John Topley for How's the latest Ruby on Rails code?John Topley2009-12-05T17:52:54Z2009-12-05T17:52:54Z<p>Twitter switched some parts of their architecture from Ruby to Scala because when they started they used the wrong tool for the job. They were using Ruby on Rails—which is highly optimised for building green field CRUD Web applications—to try to build a messaging system. AFAIK, they're still using Rails for the CRUD parts of Twitter e.g. creating a new user account, but have moved the messaging components to more suitable technologies.</p>
http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of42What's your first program that you were proud of?John Topley2008-11-05T20:38:15Z2009-12-03T16:38:11Z
<p>What's the first program you ever wrote that you were proud of and why?</p>
<p>For me it was probably a <a href="http://web.archive.org/web/20000304093937/ds.dial.pipex.com/john.topley/frames/memmon.html" rel="nofollow">Delphi 2 program</a> I wrote that simply monitored Windows' memory usage and displayed a bar graph in the shell notification area like the Task Manager CPU graph, but in blue!</p>
<p>It was a big deal because I had a friend who was a better programmer than me and we were engaged in a silly race to find out who could be the first to figure out how to display something in the system tray (this would have been when the system tray was still quite new and exciting). I discovered the <a href="http://msdn.microsoft.com/en-us/library/bb762159(VS.85).aspx" rel="nofollow">Shell_NotifyIcon</a> API, worked out how to call it from Object Pascal and beat him to it. Granted, it doesn't seem a big deal now, but I hadn't been programming the PC or Windows for long at the time and it was a real breakthrough when the Windows API Gods deigned to display my icon next to the clock!</p>
http://stackoverflow.com/questions/1835299/does-grit-have-to-be-on-the-same-server-as-the-repositories/1835881#18358811Answer by John Topley for Does grit have to be on the same server as the repositories?John Topley2009-12-02T21:15:02Z2009-12-02T21:15:02Z<p>It has to be on the same server. If you look at <a href="http://grit.rubyforge.org/classes/Grit/Repo.html#M000207" rel="nofollow">the documentation</a> then you'll see that the <code>Repo</code> constructor accepts a local file path:</p>
<pre><code>repo = Repo.new("/Users/tom/dev/grit")
</code></pre>
http://stackoverflow.com/questions/1830599/generate-multiple-xml-files-based-on-database/1832340#18323401Answer by John Topley for Generate multiple XML files based on databaseJohn Topley2009-12-02T11:26:26Z2009-12-02T17:26:06Z<p>I'm not entirely sure what you're trying to achieve, but you could have another method in your controller that returns the last ride:</p>
<pre><code>def last
respond_to do |format|
format.xml { @last_ride = Rides.last }
end
end
</code></pre>
<p>And then in the view template <code>last.xml.builder</code> you could have something like:</p>
<pre><code>xml.instruct!
xml.rides do
xml.item("togive" => @last_ride.togive, "totake" => @last_ride.totake etc...)
end
</code></pre>
<p>If you went with this approach then you'd need to modify your <code>config/routes.rb</code> file to add a new <a href="http://guides.rubyonrails.org/routing.html#adding-more-restful-actions" rel="nofollow">collection route</a> for the <code>list</code> action:</p>
<pre><code>map.resources :rides, :collection => { :last => :get }
</code></pre>
<ul>
<li>This would then let you access the route using <a href="http://localhost:3000/rides/last.xml" rel="nofollow">http://localhost:3000/rides/last.xml</a></li>
</ul>
<p>Alternatively you could simply make the <code>find</code> call within the controller's <code>index</code> method conditional so that it fetches all rides or the last ride as appropriate. In this case you should be able to re-use the existing <code>index.xml.builder</code> view template because it will just output a collection that happens to only ever contain one ride.</p>
http://stackoverflow.com/questions/1834159/overriding-a-rails-defaultscope/1834279#18342791Answer by John Topley for Overriding a Rails default_scopeJohn Topley2009-12-02T16:54:29Z2009-12-02T16:54:29Z<p>You can override a default scope using the <code>with_exclusive_scope</code> method. So:</p>
<pre><code>foos = Foo.with_exclusive_scope { :conditions => ["baz = ?", baz] }
</code></pre>
<ul>
<li><a href="http://api.rubyonrails.org/classes/ActiveRecord/Base.html#M002312" rel="nofollow"><code>with_exclusive_scope</code></a> documentation</li>
</ul>
http://stackoverflow.com/questions/1946621/rails-habtm-relation/1946682#1946682Comment by John Topley on rails habtm relationJohn Topley2009-12-22T16:01:34Z2009-12-22T16:01:34ZTry this: <a href="http://pastie.org/753210" rel="nofollow">pastie.org/753210</a>http://stackoverflow.com/questions/1946621/rails-habtm-relation/1946664#1946664Comment by John Topley on rails habtm relationJohn Topley2009-12-22T14:29:22Z2009-12-22T14:29:22ZThat only gets you the name of the first category associated with the template. I believe the OP wants the name of all the categories.http://stackoverflow.com/questions/1945954/error-div-classfieldwitherrors-workaround/1946021#1946021Comment by John Topley on error (div class="fieldWithErrors") workaround?John Topley2009-12-22T13:30:15Z2009-12-22T13:30:15ZYou're right, I've updated the example.http://stackoverflow.com/questions/1946010/must-have-tools-for-a-ruby-on-rails-developerComment by John Topley on Must have Tools for a Ruby on Rails Developer?John Topley2009-12-22T12:19:07Z2009-12-22T12:19:07ZImran, you'll get more responses if you start accepting answers.http://stackoverflow.com/questions/1929475/dynamic-select-population-based-on-result-from-another-selecttagComment by John Topley on dynamic select population based on result from another select_tagJohn Topley2009-12-18T17:00:47Z2009-12-18T17:00:47ZDuplicates: <a href="http://stackoverflow.com/questions/1925954/" rel="nofollow">stackoverflow.com/questions/1925954</a> & <a href="http://stackoverflow.com/questions/1925275/" rel="nofollow">stackoverflow.com/questions/1925275</a>
http://stackoverflow.com/questions/1927917/retrieve-data-from-web-site-databasehow-toComment by John Topley on Retrieve data from web-site database+how toJohn Topley2009-12-18T12:20:44Z2009-12-18T12:20:44ZDo you really think that tagging your question with the words "retrieve" and "from" is going to help anyone?http://stackoverflow.com/questions/1912700/rails-snow-leopard-mysql-64-bit-question/1915174#1915174Comment by John Topley on Rails / Snow Leopard Mysql 64-bit questionJohn Topley2009-12-16T16:21:28Z2009-12-16T16:21:28ZSo did you actually follow the instructions I linked to for compiling and installing 64-bit MySQL from source?http://stackoverflow.com/questions/1912700/rails-snow-leopard-mysql-64-bit-question/1915174#1915174Comment by John Topley on Rails / Snow Leopard Mysql 64-bit questionJohn Topley2009-12-16T15:43:00Z2009-12-16T15:43:00ZI didn't need the ARCHFLAGS or config directive.http://stackoverflow.com/questions/1912663/ruby-on-rails-question-how-can-i-measure-response-time-from-when-request-first/1912891#1912891Comment by John Topley on Ruby on Rails question - how can I measure response time from when request first hits app?? (e.g. using 'benchmark') John Topley2009-12-16T13:40:47Z2009-12-16T13:40:47ZNew Relic RPM Lite is free for production use.http://stackoverflow.com/questions/1913361/rails-html-encoding/1913583#1913583Comment by John Topley on Rails html encodingJohn Topley2009-12-16T10:28:22Z2009-12-16T10:28:22ZWhy would you monkey patch Rails to do something that isn't required?http://stackoverflow.com/questions/1913361/rails-html-encoding/1913396#1913396Comment by John Topley on Rails html encodingJohn Topley2009-12-16T09:43:17Z2009-12-16T09:43:17ZDarin is telling you that no further action is required.http://stackoverflow.com/questions/1908626/modifying-rails-load-paths-in-the-railsconfiguration-blockComment by John Topley on modifying Rails load paths in the Rails::Configuration blockJohn Topley2009-12-15T16:32:56Z2009-12-15T16:32:56ZI don't know if it's possible but it sounds like you're in for a world of pain trying to do that. Why do you want to, out of interest?http://stackoverflow.com/questions/1901051/do-pointers-in-java-actually-exist/1901054#1901054Comment by John Topley on Do pointers in java actually exist?John Topley2009-12-14T16:34:16Z2009-12-14T16:34:16ZI agree that it's inconsistent naming by Sun. However, you'd be pretty hard pressed to implement Java without the concept of variables that refer to memory addresses (i.e. pointers) under the hood.http://stackoverflow.com/questions/1892395/constant-railsversionstringComment by John Topley on Constant: Rails::VERSION::STRINGJohn Topley2009-12-12T09:45:44Z2009-12-12T09:45:44ZYou can also get the Rails version using <code>Rails.version</code>.http://stackoverflow.com/questions/1885215/what-kind-of-protocol-is-being-used-here-to-communicate-with-paypal/1885223#1885223Comment by John Topley on What kind of protocol is being used here to communicate with PayPal?John Topley2009-12-11T10:31:50Z2009-12-11T10:31:50ZActually HTTP is the World Wide Web protocol (hence "HyperText"). The Internet protocol is TCP/IP.