User Cameron Booth - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T18:28:05Z http://stackoverflow.com/feeds/user/14873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe 16 New Facebook app - FBML or iFrame? Cameron Booth 2008-10-20T20:32:48Z 2009-08-06T12:11:00Z <p>We're starting a new facebook app (incidentally in Rails), and are faced with the decision to use FBML or to use IFrames. It seems like in the past the consensus generally was that FBML was the better way to go, as it made things more inherently Facebook looking, however it seems now like things on the iFrame side are starting to improve, with one of their main engineers saying we <a href="http://www.ccheever.com/blog/?p=10" rel="nofollow">should use iframes</a></p> <p>So I'm wondering what have people found to work best. What benefits and drawbacks have you seen with either the iFrame approach, or the FBML approach.</p> <p>Or, are people using a mix of both. I see there's a way you can override the setting in specific places.</p> <p>Thanks Stack Overflowers!</p> http://stackoverflow.com/questions/1035613/how-do-i-embed-a-flash-swf-file-and-get-around-the-ie-security-layer-without-usin 0 How do I embed a flash SWF file and get around the IE security layer without using swfobject (to keep down file size) Cameron Booth 2009-06-23T22:31:56Z 2009-06-25T12:17:26Z <p>I'm looking for a way to embed an SWF into a page and get around the Internet Explorer security issue (where it requires an extra click to "activate" the flash file). </p> <p>I've got my code working with swfobject, but I'm using this in an embedded widget context (eg a clickable banner ad) so I am really trying to keep my file size down, and swfobject adds about 10k worth of minified Javascript that just feels like more than I need</p> <p>I just need basic flash rendering, I'm not really that worried about Flash version detection (I'm using an old enough version of Flash for the SWF) though a fallback solution if flash is not available would be nice.</p> <p>Finally, this has to be something that can work entirely from a single Javascript file included somewhere in the BODY tag of the containing page. (The reason I say this is because I had some issues even with the swfobject version when I was document.write'ing a SCRIPT tag for the swfobject.js into the BODY of the page instead of the HEAD).</p> <p>I hope that makes sense, I can clarify if needed.</p> <p>Thanks in advance!!</p> http://stackoverflow.com/questions/1039000/how-do-i-redirect-multiple-actions-to-a-single-action-while-maintaining-dry/1039300#1039300 1 Answer by Cameron Booth for How do I redirect multiple actions to a single action while maintaining DRY? Cameron Booth 2009-06-24T16:01:01Z 2009-06-24T16:01:01Z <p>It's my understanding that after filters are run <em>after</em> the response is sent to the client, meaning after any render or redirects occur, which is why you're seeing that error. They are intended to let you do things like log data, or benchmark or close connections or any other type of cleanup you have </p> http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any 10 Is it possible to query a tree structure table in MySQL in a single query, to any depth? Cameron Booth 2008-10-04T05:42:04Z 2009-06-22T15:12:13Z <p>I'm thinking the answer is no, but I'd love it it anybody had any insight into how to crawl a tree structure to any depth in SQL (MySQL), but with a single query</p> <p>More specifically, given a tree structured table (id, data, data, parent_id), and one row in the table, is it possible to get <em>all</em> descendants (child/grandchild/etc), or for that matter all ancestors (parent/grandparent/etc) without knowing how far down or up it will go, using a single query?</p> <p>Or is using some kind of recursion require, where I keep querying deeper until there are no new results?</p> <p>Specifically, I'm using Ruby and Rails, but I'm guessing that's not very relevant.</p> <p>Thanks in advance for any advice!!</p> http://stackoverflow.com/questions/364162/rails-setting-multiple-layouts-for-a-multipart-email-with-mailer-templates 1 Rails - setting multiple layouts for a multipart email with mailer templates Cameron Booth 2008-12-12T21:13:21Z 2009-05-15T02:35:26Z <p>Hi there,</p> <p>So Rails 2.2 added mailer layouts, which is great, except that I can't figure out how to make them work when I'm sending a multipart email..it's wrapping my mail content with the same layout for both the text/plain version and the text/html version. What I want is to wrap my layout around either only the text/html version, or to be able to have a separate layout for each.</p> <p>Anybody encountered this? I haven't seen any mention of it elsewhere,</p> <p>Cameron</p> http://stackoverflow.com/questions/354139/detecting-divs-as-rendered-in-the-window-to-implement-google-reader-like-auto-mar/395933#395933 0 Answer by Cameron Booth for Detecting divs as rendered in the window to implement Google-Reader-like auto-mark-as-read? Cameron Booth 2008-12-28T06:53:12Z 2008-12-28T06:53:12Z <p>I just came across this as I need the same thing, and it looks super useful:</p> <p><a href="http://www.appelsiini.net/projects/viewport" rel="nofollow">http://www.appelsiini.net/projects/viewport</a></p> http://stackoverflow.com/questions/282178/how-do-you-run-a-do-block-in-a-rails-model-while-still-listing-a-dependent/283020#283020 -1 Answer by Cameron Booth for How do you run a "do" block in a Rails Model while still listing a :dependent? Cameron Booth 2008-11-12T04:17:11Z 2008-11-12T04:17:11Z <p>This should work just fine AFAIK:</p> <pre><code>has_many :posts, :dependent =&gt; :destroy do def recent find(:all, :order =&gt; 'created_at desc', :limit =&gt; 12) end end </code></pre> http://stackoverflow.com/questions/266819/where-is-the-best-place-to-add-methods-to-the-integer-class-in-rails/267325#267325 2 Answer by Cameron Booth for Where is the best place to add methods to the Integer class in Rails? Cameron Booth 2008-11-06T00:50:26Z 2008-11-06T00:50:26Z <p>Why not just:</p> <pre><code>class Feet def self.in_miles(feet) feet/5280 end end </code></pre> <p>usage:</p> <pre><code>Feet.in_miles 2313 </code></pre> <p>Or maybe look at it the other way:</p> <pre><code>class Miles def self.from_feet(feet) feet/5280 end end Miles.from_feet 2313 </code></pre> http://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application/267315#267315 11 Answer by Cameron Booth for Paypal Website Payments Standard with a Ruby/Rails application Cameron Booth 2008-11-06T00:44:10Z 2008-11-06T00:44:10Z <p>I would also check out <a href="http://www.activemerchant.org/" rel="nofollow" title="ActiveMerchant">ActiveMerchant</a>. Here's a bit more info <a href="http://www.codyfauser.com/2008/1/17/paypal-express-payments-with-activemerchant" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/260974#260974 2 Answer by Cameron Booth for What is the best way to run asynchronous jobs in a Rails application? Cameron Booth 2008-11-04T05:21:53Z 2008-11-04T05:21:53Z <p>I'll add DJ (Delayed Job) to the list - <a href="http://blog.leetsoft.com/2008/2/17/delayed-job-dj" rel="nofollow">http://blog.leetsoft.com/2008/2/17/delayed-job-dj</a></p> <p>The github guys recently gave it a great review: <a href="http://github.com/blog/197-the-new-queue" rel="nofollow">http://github.com/blog/197-the-new-queue</a></p> http://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line 3 Syntax for putting a block on a single line Cameron Booth 2008-11-01T16:04:21Z 2008-11-02T19:36:33Z <p>So I've got a Ruby method like this:</p> <pre><code>def something(variable, &amp;block) .... end </code></pre> <p>And I want to call it like this:</p> <pre><code>something 'hello' { do_it } </code></pre> <p>Except that isn't working for me, I'm getting a syntax error. If I do this instead, it works:</p> <pre><code>something 'hello' do do_it end </code></pre> <p>Except there I'm kind of missing the nice look of it being on one line.</p> <p>I can see why this is happening, as it could look like it's a hash being passed as a second variable, but without a comma in between the variables...but I assume that there must be a way to deal with this that I'm missing. Is there?</p> http://stackoverflow.com/questions/197164/how-do-i-test-rails-block-helpers-with-rspec/249295#249295 3 Answer by Cameron Booth for How do I test Rails block helpers with rSpec Cameron Booth 2008-10-30T04:43:15Z 2008-10-30T04:43:15Z <p>To add just a bit to what James said, I think something like this should work just fine:</p> <pre><code>describe SomeHelper do it 'should do something' do helper.some_block_helper { the_block_code }.should XXXX end end </code></pre> http://stackoverflow.com/questions/244779/sharing-code-in-respondto-blocks/244893#244893 3 Answer by Cameron Booth for Sharing code in respond_to blocks Cameron Booth 2008-10-28T21:14:20Z 2008-10-28T21:14:20Z <p>If I'm reading this right, it looks like <code>find_current_membership</code> is your <code>before_filter</code> method, is that right? eg:</p> <pre><code>class SomeController &lt; ApplicationController before_filter :find_current_membership ... </code></pre> <p>I think it's a bit non-standard to use <code>respond_to</code> inside a <code>before_filter</code>, they are meant to just do something and render on failure. It seems to me like you want something more like this</p> <pre><code> class SomeController &lt; ApplicationController before_filter :find_current_membership def some_action # stuff, or maybe nothing end private def find_current_membership @current_membership = @group.memberships.for(@current_user) unless request.format.rss? end end </code></pre> http://stackoverflow.com/questions/237405/how-to-interpret-the-memory-usage-figures/237528#237528 1 Answer by Cameron Booth for How to interpret the memory usage figures? Cameron Booth 2008-10-26T04:03:29Z 2008-10-26T04:03:29Z <p>by my reading of this, you have used almost all your memory, have 6 M free, and are going into about 10% of your swap. A more useful tools is to use top or perhaps ps to see how much each of your individual mongrels are using in RAM. Because you're going into swap, you're probably getting more slowdowns. you might find having only 2 mongrels rather than 3 might actually respond faster because it likely wouldn't go into swap memory.</p> <p>Page caching will for sure help a tonne on response time, so if your pages are cachable (eg, they don't have content that is unique to the individual user) I would say for sure check it out</p> http://stackoverflow.com/questions/227907/how-do-i-view-the-http-response-to-an-activeresource-request/228292#228292 0 Answer by Cameron Booth for How do I view the HTTP response to an ActiveResource request? Cameron Booth 2008-10-23T02:06:04Z 2008-10-23T02:06:04Z <p>Or my method of getting into things when I don't know the exact internals is literally just to throw in a "debugger" statement, start up the server using "script/server --debugger" and then step through the code until I'm at the place I want, then start some inspecting right there in IRB.....that might help (hey Luke btw)</p> http://stackoverflow.com/questions/144380/ruby-how-to-break-a-potentially-unicode-string-into-bytes/145994#145994 1 Answer by Cameron Booth for Ruby: How to break a potentially unicode string into bytes Cameron Booth 2008-09-28T14:48:28Z 2008-09-28T14:48:28Z <p>You could try including the <a href="http://api.rubyonrails.org/classes/ActiveSupport/CoreExtensions/String/Unicode.html" rel="nofollow">ActiveSupport::CoreExtensions::String::Unicode</a> module from the rails codebase. </p> http://stackoverflow.com/questions/137605/what-is-the-best-way-to-parse-a-web-page-in-ruby/144101#144101 0 Answer by Cameron Booth for What is the best way to parse a web page in Ruby? Cameron Booth 2008-09-27T17:33:29Z 2008-09-27T17:33:29Z <p>I always really like what Ilya Grigorik writes, and he <a href="http://www.igvita.com/2007/02/04/ruby-screen-scraper-in-60-seconds/" rel="nofollow">wrote up a nice post</a> about using hpricot.</p> <p>I also <a href="http://www.rubyrailways.com/data-extraction-for-web-20-screen-scraping-in-rubyrails" rel="nofollow">read this post</a> a while back and it looks like it would be useful for you.</p> <p>Haven't done either myself, so YMMV but these seem pretty useful.</p> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/144080#144080 2 Answer by Cameron Booth for How to incorporate Interactive Ruby into my development process? Cameron Booth 2008-09-27T17:25:28Z 2008-09-27T17:25:28Z <p>I don't tend to use irb directly that frequently, as I tend to be inside rails and so use script/console a bunch, but I do like using the ruby debugger (Ruby Debug gem). It lets you set a breakpoint basically and then step through your code line by line. </p> <p>Here's a screencast about it that I haven't actually watched, but a quick search pulled it up, and it could be useful:</p> <p><a href="http://brian.maybeyoureinsane.net/blog/2007/05/07/ruby-debug-basics-screencast/" rel="nofollow">http://brian.maybeyoureinsane.net/blog/2007/05/07/ruby-debug-basics-screencast/</a></p> http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec/144063#144063 7 Answer by Cameron Booth for How do you run a single test/spec file in RSpec? Cameron Booth 2008-09-27T17:20:10Z 2008-09-27T17:20:10Z <p>Or you can skip rake and use the 'spec' command:</p> <pre><code>spec path/to/spec/file.rb </code></pre> <p>In your case I think as long as your ./spec/db_spec.rb file includes the appropriate helpers, it should work fine. </p> http://stackoverflow.com/questions/124250/how-to-do-a-rolling-restart-of-a-cluster-of-mongrels 6 How to do a rolling restart of a cluster of mongrels Cameron Booth 2008-09-23T22:13:17Z 2008-09-24T03:51:00Z <p>Anybody know a nice way to restart a mongrel cluster via capistrano in a "rolling" style, eg, one mongrel at a time. Would be great to have a bit of wait time in there as well for each, to let the mongrel load the rails app up as well. </p> <p>I've done some searching, and haven't found too much, so looking for help before I dive into the mongrel_cluster gem myself.</p> <p>Thanks!</p> http://stackoverflow.com/questions/96615/git-is-it-pull-or-rebase-when-working-on-branches-with-other-people 11 Git - is it pull or rebase when working on branches with other people Cameron Booth 2008-09-18T20:33:27Z 2008-09-19T17:29:19Z <p>Hi everybody,</p> <p>So if I'm using branches that are remote (tracked) branches, and I want to get the lastest, I'm still unclear if I should be doing <code>git pull</code> or <code>git rebase</code>. I thought I had read that doing <code>git rebase</code> when working on a branch with other users, it can screw them up when they pull or rebase. Is that true? Should we all be using <code>git pull</code>?</p> <p>Thanks!</p> <p>Cameron</p> http://stackoverflow.com/questions/1035613/how-do-i-embed-a-flash-swf-file-and-get-around-the-ie-security-layer-without-usin/1035742#1035742 Comment by Cameron Booth on How do I embed a flash SWF file and get around the IE security layer without using swfobject (to keep down file size) Cameron Booth 2009-06-23T23:31:05Z 2009-06-23T23:31:05Z I had seen that, but in my test browsers (IE 6.0 and 7.0) it still seems to be an issue. Did they patch even older versions? I'm hesitant to update my browsers (they run in separate VMs), as I don't want to end up with IE8 or something. I'm a Microsoft nuby for sure http://stackoverflow.com/questions/554039/facebook-connect-application-inside-iframe-not-working-in-ie7 Comment by Cameron Booth on Facebook Connect application inside iframe not working in IE7 Cameron Booth 2009-04-23T05:05:28Z 2009-04-23T05:05:28Z I'm hitting a similar problem with a Facebook Connect application that runs inside an overlaid iframe on a third-party site, except I'm having the problem with Safari and Firefox too, if users have opted not to accept third party cookies. Did you see the same issues there, or am I missing something? http://stackoverflow.com/questions/255714/syntax-for-putting-a-block-on-a-single-line/255791#255791 Comment by Cameron Booth on Syntax for putting a block on a single line Cameron Booth 2008-11-01T17:28:41Z 2008-11-01T17:28:41Z yep, that does it!! Thanks. Sometimes it's the most obvious things you miss ;-) http://stackoverflow.com/questions/234233/why-is-rake-throwing-this-rails-migration-error/235621#235621 Comment by Cameron Booth on Why is rake throwing this Rails migration error? Cameron Booth 2008-10-25T04:36:17Z 2008-10-25T04:36:17Z yep, the schema_migrations table is your key, it probably isn't there or isn't populated or something on your production server http://stackoverflow.com/questions/133840/why-shouldnt-helpers-have-html-in-them/134147#134147 Comment by Cameron Booth on Why shouldn't Helpers have html in them? Cameron Booth 2008-09-27T17:38:30Z 2008-09-27T17:38:30Z I don't think I agree that helpers are for business logic. Any kind of helper that is view related is much more about view logic than business logic. I would think the core business logic of any application should be stored at the model layer, with perhaps some at the controller layer http://stackoverflow.com/questions/124250/how-to-do-a-rolling-restart-of-a-cluster-of-mongrels/125321#125321 Comment by Cameron Booth on How to do a rolling restart of a cluster of mongrels Cameron Booth 2008-09-25T05:07:14Z 2008-09-25T05:07:14Z Thanks matt, yep, I didn't think to mention it, but I would for sure err on the safe side and for almost any migration just do a more complete shutdown-migrate-startup