User Rufo Sanchez - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:02:22Z http://stackoverflow.com/feeds/user/140 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1278392/rails-routes-change-in-production/1278669#1278669 1 Answer by Rufo Sanchez for Rails routes change in production Rufo Sanchez 2009-08-14T15:53:27Z 2009-08-14T15:53:27Z <p>What happens if you run <code>rake routes</code> in both production and development modes?</p> <p>That might help you narrow it down to (as bensie mentioned) a hosting stack vs. framework/code issue.</p> http://stackoverflow.com/questions/1275250/is-there-an-easy-way-to-convert-html-with-multiple-br-tags-into-proper-surroun 1 Is there an easy way to convert HTML with multiple <br/> tags into proper surrounding <p> tags in Javascript? Rufo Sanchez 2009-08-13T23:31:02Z 2009-08-14T01:47:30Z <p>Let's say I have a bunch of HTML like below:</p> <pre><code>bla bla bla long paragraph here &lt;br/&gt; &lt;br/&gt; bla bla bla more paragraph text &lt;br/&gt; &lt;br/&gt; </code></pre> <p>Is there an easy way with Javascript to convert it to properly semantic <code>&lt;p&gt;</code> tags? E.g.:</p> <pre><code>&lt;p&gt; bla bla bla long paragraph here &lt;/p&gt; &lt;p&gt; bla bla bla more paragraph text &lt;/p&gt; </code></pre> <p>Output spacing is not important, ideally it will work with any input spacing.</p> <p>I'm thinking I might try to cook up a regex, but before I do that I wanted to make sure I was a) avoiding a world of hurt and b) there wasn't something else out there - I'd tried to do a google search but haven't yet come up with anything.</p> <p>Thanks for any advice!</p> http://stackoverflow.com/questions/878296/how-to-deploy-rails-2-3-2-app-with-capistrano-from-the-top-for-fastcgi/878389#878389 2 Answer by Rufo Sanchez for How to deploy Rails 2.3.2 app with Capistrano from the top (for FastCGI)? Rufo Sanchez 2009-05-18T15:45:29Z 2009-05-18T16:05:43Z <p>Updated my answer, see #3...</p> <p>I don't use FastCGI for deployment, but a few things that come to mind:</p> <ol> <li>The process scripts have been moved out of Rails core and into <a href="http://github.com/rails/irs%5Fprocess%5Fscripts/tree/master" rel="nofollow">a plugin</a>, which you can grab from GitHub.</li> <li><p>Looking at my deploy.rb file, you'll likely need to pass the RAILS_ENV environment variable into the script through the command line, similar to:</p> <p><code>run #{current_path}/script/process/reaper RAILS_ENV=#{rails_env} --dispatcher=dispatch.fcgi</code></p></li> <li>EDIT: Actually, it is slightly odd to have your tasks in the Capfile instead of deploy.rb - although looking at <a href="http://groups.google.com/group/capistrano/browse%5Fthread/thread/639aee77b3fbc7b0/6dbb553485434931" rel="nofollow">this thread on the Capistrano Google Group</a>, it's not completely frowned upon. Up to you/your team, I suppose.</li> </ol> <p>Hope this points you in the right direction.</p> http://stackoverflow.com/questions/878281/how-to-get-a-method-to-detect-remoteformfor-usage/878406#878406 1 Answer by Rufo Sanchez for How to get a method to detect 'remote_form_for' usage? Rufo Sanchez 2009-05-18T15:49:15Z 2009-05-18T15:49:15Z <p>Alternately, you can use a respond_to block:</p> <pre><code>def create # ... respond_to do |format| format.html # for standard requests format.js # for AJAX requests # other formats... end end </code></pre> http://stackoverflow.com/questions/220126/given-an-array-of-activerecord-objects-can-i-easily-collect-their-relationships 2 Given an array of ActiveRecord objects, can I easily collect their relationships through a method call? Rufo Sanchez 2008-10-20T22:11:02Z 2008-10-24T16:22:41Z <p>Let's say I have the following code:</p> <pre><code>@sites = Site.find(session[:sites]) # will be an array of Site ids @languages = Language.for_sites(@sites) </code></pre> <p>for_sites is a named_scope in the Language model that returns the languages associated with those sites, and languages are associated with sites using has_many through. The goal is for @languages to have a distinct array of the languages associated with the sites.</p> <p>Instead of calling the Language object on the second line, I'd ideally like to say </p> <pre><code>@sites.languages </code></pre> <p>and have the same list returned to me. Is there any way to do that cleanly in Rails 2.1 (or edge)? I know associations and named scopes can extend the array object to have attributes, but unless I'm missing something that doesn't apply here. Any plugins that do this would be welcome, it doesn't have to be in core.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/3788#3788 4 Answer by Rufo Sanchez for Keyboard for programmers Rufo Sanchez 2008-08-06T18:14:57Z 2008-08-06T18:14:57Z <blockquote> <p>A caveat: vintage IBM ps/2 keyboards aparently pull more current compared to modern keyboards and the vast majority of commonly available ps2 to USB adapters do not work with them. To get an old PS/2 one to work on new USB-only motherboards, you'll need a USB converter.</p> </blockquote> <p>I actually didn't have any problems with a cheap $10 adapter I picked up at Staples - I think it was a Belkin. (It did get a little funky on occasion when I switched my KVM switch, but it always came back if I unplugged/replugged the cable.</p> <p>Regardless, the Model Ms are great - the only reason I moved up to the Unicomp was because a Mac keyboard without Command keys is akin to cutting off your thumbs. :-)</p> http://stackoverflow.com/questions/2381/how-to-tab-between-buttons-on-an-osx-dialog-box/2395#2395 1 Answer by Rufo Sanchez for How to tab between buttons on an OSX dialog box Rufo Sanchez 2008-08-05T14:36:30Z 2008-08-05T14:36:30Z <p>Is there a specific dialog you're having trouble with? With "All controls" enabled I can tab around every control of every Mac OS X dialog I've tested just now.</p> http://stackoverflow.com/questions/2349/how-to-tab-focus-onto-a-dropdown-field-in-mac-osx/2361#2361 2 Answer by Rufo Sanchez for How to tab focus onto a dropdown field in Mac OSX Rufo Sanchez 2008-08-05T14:13:58Z 2008-08-05T14:13:58Z <p>Apple Menu &gt; System Preferences &gt; Keyboard &amp; Mouse &gt; Keyboard Shortcuts:</p> <p>Change the radio button at the bottom from "Text boxes and lists only" to "All controls."</p> <p>Edit: Dammit. We're a fast group around here aren't we? :-)</p> http://stackoverflow.com/questions/2232/calling-bash-commands-from-ruby/2334#2334 0 Answer by Rufo Sanchez for Calling Bash Commands From Ruby Rufo Sanchez 2008-08-05T13:57:47Z 2008-08-05T13:57:47Z <p>You can also use the backtick operators (`), similar to Perl:</p> <pre><code>directoryListing = `ls /`<br>puts directoryListing # prints the contents of the root directory<br></code></pre> <p>Handy if you need something simple.</p> <p>Which method you want to use depends on exactly what you're trying to accomplish; check the docs for more details about the different methods.</p> http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why/929#929 7 Answer by Rufo Sanchez for What JavaScript library would you choose for a new project and why? Rufo Sanchez 2008-08-04T00:46:07Z 2008-08-04T00:46:07Z <p>I started off with Prototype/Scriptaculous, but recently have moved onto jQuery, and have been really liking it so far - it's where my vote is placed.</p> <p>It's not that Prototype/Scriptaculous are bad, but jQuery feels more concise, more consistent, and more stable (in some extreme situations I had a few weird issues with Prototype that were cleared up with point releases - I don't recall what they were off-hand).</p> <p>From a technical standpoint, the key difference is that I believe Prototype actually modifies the .prototype of Javascript objects, augmenting and/or replacing the functionality of JavaScript's built-in objects (hence the name). In jQuery, if you want to use any of jQuery's functionality you have to acquire a jQuery object by running it through the $() function. The way Prototype works is generally not a problem, but I have run into problems when using some advanced ASP.NET AJAX controls in my past life, and it does make jQuery feel a little more like a finely tuned scalpel: only what's strictly necessary.</p> <p>Also, regarding Flubba's problem with the $() notation - you can call jQuery.noConflict() and jQuery will return the $() function to whatever you were running before (i.e. Prototype), so it does play nicely with other JS frameworks if you'd like.</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/793#793 2 Answer by Rufo Sanchez for Keyboard for programmers Rufo Sanchez 2008-08-03T19:00:28Z 2008-08-03T19:00:28Z <p>I've used the Microsoft Natural-series keyboards, and those are quite good if you're big on the ergonomics. Duncan has a link to the current 4000 model.</p> <p>Personally, I have a huge soft spot for buckling-spring keyboards like the original IBM Model M or (if you have an Apple background) the Apple Extended Keyboard I/II; there's a tremendous amount of tactile feel you miss out on with newer keyboards, and personally, I feel it really helps with my typing.</p> <p>If you like those, you'll love the <a href="http://pckeyboards.stores.yahoo.net/keyboards.html" rel="nofollow">Unicomp Customizer</a> series - I prefer the 104 since I work on a Mac and I need the Windows keys to act as Command keys, but they also have a 101-style if you prefer your keyboards without the new-style Microsoft keys.</p> <p>It might take some experimentation, but it's well worth it if you can get a keyboard that you can type on for hours without feeling any fatigue.</p> http://stackoverflow.com/questions/1511944/best-rails-ajax-effect-animation-library/1512715#1512715 Comment by Rufo Sanchez on Best Rails/Ajax Effect/Animation Library Rufo Sanchez 2009-10-04T19:39:37Z 2009-10-04T19:39:37Z Agreed - I've had no problems with its replacements for Rails' JavaScript helpers. http://stackoverflow.com/questions/1512701/showing-join-table-field/1513684#1513684 Comment by Rufo Sanchez on Showing join table field Rufo Sanchez 2009-10-04T19:37:43Z 2009-10-04T19:37:43Z Since .employments is defined as has_many, it's going to return an array of all employments - and .confirmed doesn't make sense on an array. You need to loop through the returned employments and display each one; that, or if a job will only ever have one employment, the relationship should be redefined as a has_one. http://stackoverflow.com/questions/1278083/coming-back-to-rails/1278224#1278224 Comment by Rufo Sanchez on Coming back to Rails Rufo Sanchez 2009-08-14T15:58:23Z 2009-08-14T15:58:23Z The latest version of Agile Web Development is really quite nice - the earlier versions felt a bit light on info but Sam Ruby did an excellent job. It's slightly older at this point, but Obie Fernandez' The Rails Way is a fantastic tome of knowledge as well. http://stackoverflow.com/questions/1275250/is-there-an-easy-way-to-convert-html-with-multiple-br-tags-into-proper-surroun Comment by Rufo Sanchez on Is there an easy way to convert HTML with multiple <br/> tags into proper surrounding <p> tags in Javascript? Rufo Sanchez 2009-08-14T06:09:10Z 2009-08-14T06:09:10Z Damn. Awesome stuff - I figured I'd get a couple of pointers in the right direction - I certainly wasn't expecting two separate coded solutions. It'll be a day or two before I need to implement this, but I'll be sure to report back with what I've wound up doing. http://stackoverflow.com/questions/687/keyboard-for-programmers/3959#3959 Comment by Rufo Sanchez on Keyboard for programmers Rufo Sanchez 2009-05-18T16:34:58Z 2009-05-18T16:34:58Z @Kev, I actually sought it out and bought one... it absolutely didn't come with any computer of mine. I've bought keyboards that were far more expensive and have a Model M that are currently collecting dust. @Simon E, yep, works fine with a PC. It has great tactile feedback and is rather quiet as well. http://stackoverflow.com/questions/220126/given-an-array-of-activerecord-objects-can-i-easily-collect-their-relationships/229990#229990 Comment by Rufo Sanchez on Given an array of ActiveRecord objects, can I easily collect their relationships through a method call? Rufo Sanchez 2008-10-23T23:12:25Z 2008-10-23T23:12:25Z Ah, so that's how the other methods do it... Thanks, this is definitely the closest, and even looks like it could be extracted out to be a module and/or plugin. http://stackoverflow.com/questions/220126/given-an-array-of-activerecord-objects-can-i-easily-collect-their-relationships/221487#221487 Comment by Rufo Sanchez on Given an array of ActiveRecord objects, can I easily collect their relationships through a method call? Rufo Sanchez 2008-10-21T15:56:40Z 2008-10-21T15:56:40Z Your second try is actually pretty close (just needs a .uniq call), but I was sort of hoping I could get some syntactic sugar for that nice Ruby Fresh feeling. Your Language ideas is basically exactly what I have right now, although slightly different as I have a site_language model. Thanks though! http://stackoverflow.com/questions/220126/given-an-array-of-activerecord-objects-can-i-easily-collect-their-relationships/220593#220593 Comment by Rufo Sanchez on Given an array of ActiveRecord objects, can I easily collect their relationships through a method call? Rufo Sanchez 2008-10-21T15:37:19Z 2008-10-21T15:37:19Z I know I can :include =&gt; languages, but that's not quite what I'm going for - I'm basically looking for a distinct list of languages given a collection of sites. And the find([array of ids]) already returns the sites, so I don't think that's much of a benefit for me... thanks for your answer though! http://stackoverflow.com/questions/220126/given-an-array-of-activerecord-objects-can-i-easily-collect-their-relationships/220504#220504 Comment by Rufo Sanchez on Given an array of ActiveRecord objects, can I easily collect their relationships through a method call? Rufo Sanchez 2008-10-21T15:35:05Z 2008-10-21T15:35:05Z Right, I know Rails does that in an extendable fashion for certain other objects (such as Arrays returned from has_many associations). I was hoping there would be something a bit cleaner. Thanks for your answer though!