User scottru - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:01:51Z http://stackoverflow.com/feeds/user/8192 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1547634/rails-unit-testing-doesnt-load-fixtures/1591623#1591623 0 Answer by scottru for Rails unit testing doesn't load fixtures scottru 2009-10-19T23:05:29Z 2009-10-19T23:05:29Z <p>BTW, I'm stuck in the exact same spot. I'm trying to run an integration test, that test calls <code>fixtures :all</code>, and the fixtures never load. I looked in <code>environment.rb</code> and <code>environment/test.rb</code> to see if either of them were calling a plugin that seemed like it would depend on database data, but I didn't find anything. </p> <p>I'm basically stuck - if anybody has other ideas (or maybe a way of finding the errant plugin), it would be appreciated!</p> http://stackoverflow.com/questions/1464188/how-do-i-deploy-multiple-branches-to-different-directories-via-git-push 3 how do I deploy multiple branches to different directories via git push? scottru 2009-09-23T06:03:06Z 2009-09-24T08:06:14Z <p>In production, I maintain two sites - beta and release. Each points to a different directory via a soft link (e.g.)</p> <pre><code>beta_public_html -&gt; /home/scott/myapp/trunk/public public_html -&gt; /home/scott/myapp/branches/1.2.3/public </code></pre> <p>I'm a longtime svn user, moving to git. I'm used to deploying via svn update and changing the soft link on a new branch, things are pretty simple.</p> <p>Now I'm moving to git. I still need to have the two soft links (it's a Rails app using Passenger), though now I want them to point to two different git branches ("beta" and "release", say). And I want to be able to update them via git push (or git pull).</p> <p>Question Part 1: I'm not sure the best way to do this.</p> <p>The way I had started to do it was to just deploy to two different remotes, e.g.</p> <pre><code>git push ssh://scott@x.com/home/scott/myapp-beta beta git push ssh://scott@x.com/home/scott/myapp-release release </code></pre> <p>But this doesn't work because push doesn't update the working tree by default. </p> <p>So I go into the remote directories and run git reset --hard the first time, and it pulls the working tree. But I push again and I can't get the new push to show up - it just stays at the initial one.</p> <p>(BTW, note that I can't seem to push to "myapp-beta.git" - that fails, I have to push to the directory name. I am worried that this is part of the problem, but I don't know what I did wrong here.)</p> <p>So, if the answer to Question 1 is that my method is fine, Question Part 2: what's wrong with what I'm actually doing? If there are hooks I should be using, can someone point me to them?</p> <p>(An answer to Question 1 that says "run these seven manual steps" will not be a terribly useful answer, seeing as svn checkout + ln -s are two steps.)</p> <p>Thanks. I want to get back to writing code.</p> http://stackoverflow.com/questions/1310378/determining-image-file-size-dimensions-via-javascript 0 Determining image file size + dimensions via Javascript? scottru 2009-08-21T06:57:17Z 2009-08-21T16:36:23Z <p>(EDITED <i>changes in italics</i>) Goal: As part of a web app, <i>once images have been downloaded and rendered on a web page, I need to</i> determine an image's file size (kb) and resolution <i>within the browser context (so I could, for example, display that info on the page</i>. This needs to be done client-side, obviously. Must be able to be solved x-browser without an ActiveX control or Java applet (IE7+, FF3+, Safari 3+, IE6 nice to have), though it doesn't have to be the same solution per browser.</p> <p>Ideally this would be done using system Javascript, but if I absolutely need a JQuery or similar library (or a tiny subset of it), that could be done.</p> <p>Thanks!</p> http://stackoverflow.com/questions/154959/apache-rails-passenger-displaying-site-index/155652#155652 3 Answer by scottru for Apache/Rails/Passenger Displaying Site Index? scottru 2008-09-30T23:59:49Z 2008-09-30T23:59:49Z <p>Two questions: </p> <p>1) Is Rails running at all on the server? Passenger should start Rails automatically on first request - if you do a ps, do you see it running? </p> <p>2) Which directory are you seeing - is it your rails directory or the public/ directory? If it's the former, your symlink is likely pointing the wrong place (it should go to public/).</p> <p>(I've seen this problem before and am trying to remember how I debugged it... these are my first two thoughts.)</p> http://stackoverflow.com/questions/151555/how-do-i-execute-a-page-defined-javascript-function-from-a-firefox-extension/151786#151786 0 Answer by scottru for How do I execute a page-defined JavaScript function from a Firefox extension? scottru 2008-09-30T04:44:38Z 2008-09-30T04:44:38Z <p>You can do it, but you need to have control over the page and be able to raise the privilege level for the script. <a href="http://developer.mozilla.org/en/How_to_Build_an_XPCOM_Component_in_Javascript" rel="nofollow">Mozilla Documentation gives an example</a> - search for "Privilege" on the page.</p> http://stackoverflow.com/questions/151505/difference-between-a-class-and-a-module/151774#151774 2 Answer by scottru for Difference between a class and a module scottru 2008-09-30T04:38:39Z 2008-09-30T04:38:39Z <p>The first answer is good and gives some structural answers, but another approach is to think about what you're doing. Modules are about providing methods that you can use across multiple classes - think about them as "libraries" (as you would see in a Rails app). Classes are about objects; modules are about functions.</p> <p>For example, authentication and authorization systems are good examples of modules. Authentication systems work across multiple app-level classes (users are authenticated, sessions manage authentication, lots of other classes will act differently based on the auth state), so authentication systems act as shared APIs. </p> <p>You might also use a module when you have shared methods across multiple apps (again, the library model is good here). </p> http://stackoverflow.com/questions/146038/near-sorting-algorithms-when-to-use/146076#146076 0 Answer by scottru for Near Sorting Algorithms - When to use? scottru 2008-09-28T15:19:49Z 2008-09-28T15:19:49Z <p>I've never heard of anybody using this in a production environment: the most likely scenarios could be cases where you're trying to pull out the Top N from a gigantic data set, and you don't mind some errors (like a non-regulated online lottery). </p> <p>I think this is mostly an academic exercise, though, not a practical algorithm.</p> http://stackoverflow.com/questions/134202/whos-using-ruby-on-rails-in-production/137249#137249 1 Answer by scottru for Who's using Ruby on Rails in production? scottru 2008-09-26T01:25:24Z 2008-09-26T01:25:24Z <p>yellowpages.com (mentioned above) is probably the largest site of any of these in terms of traffic and page views/sec. They've done a nice job.</p> http://stackoverflow.com/questions/101012/customising-the-generic-rails-error-message/108743#108743 0 Answer by scottru for Customising the generic Rails error message scottru 2008-09-20T17:02:46Z 2008-09-20T17:02:46Z <p>It's not clear if you're trying to do inline error messaging or new page error messaging, but if you want to improve the text around inline error messaging, <a href="http://www.softiesonrails.com/2008/4/23/better-messages-for-activerecord-validation-errors" rel="nofollow">this post</a> provides good information.</p> http://stackoverflow.com/questions/87561/what-is-your-preferred-way-to-produce-charts-in-a-ruby-on-rails-web-application/108672#108672 0 Answer by scottru for What is your preferred way to produce charts in a Ruby on Rails web application? scottru 2008-09-20T16:37:51Z 2008-09-20T16:37:51Z <p>FWIW, I'm not a fan of using Google Charts when fit &amp; finish is important. I find that the variables for sizing, in particular, are unpredictable - the chart does its own thing.</p> <p>I haven't yet played with Gruff/Bluff/etc., but for a higher-profile project I won't use Google Charts.</p> http://stackoverflow.com/questions/102027/rails-state-of-the-art-for-spam-prevention/108613#108613 1 Answer by scottru for Rails state of the art for spam prevention scottru 2008-09-20T16:22:23Z 2008-09-20T16:22:23Z <p>I also recommend ReCAPTCHA, both because it's a highly-reliable service you don't have to manage, and because it serves two common goods - the OCR tasks described by the ReCAPTCHA team, and the progress towards teaching people how captchas work, reducing abandonment rates. </p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/63981#63981 1 Answer by scottru for Learning Ruby on Rails scottru 2008-09-15T15:32:15Z 2008-09-15T15:32:15Z <p>My suggestion is just to start - pick a small project that you would generally use to learn an MVC-style language (i.e. something with a database, maybe some basic workflow), and then as you need to learn a concept, use one (or both!) of</p> <p>Agile Web Development with Rails or The Rails Way</p> <p>to learn about how it works, and then try it.</p> <p>The problems with Agile Web Development are that it's outdated, and that the scenario runs on too long for you really to want to build it once; The Rails Way can be hard to follow as it bounces from reference to learning, but when it's good, it's better than Agile Web Development. </p> <p>But overall they're both good books, and they're both good for learning, but neither of them provide an "education" path that you'll want to follow. So I read a few chapters of the former (enough to get the basic concepts and learn how to bootstrap the first app - there are some online articles that help with this as well) and then just got started, and then every few days I read about something new or I use the books to understand something.</p> <p>One more thing: both books are much more Rails books than they are Ruby books, and if you're going to write clean code, it's worth spending a day learning Ruby syntax as early as possible. Why's Guide to Ruby is a good one, there are others as well. </p> http://stackoverflow.com/questions/1547634/rails-unit-testing-doesnt-load-fixtures/1591623#1591623 Comment by scottru on Rails unit testing doesn't load fixtures scottru 2009-10-20T22:17:20Z 2009-10-20T22:17:20Z Thanks, Joe - no error messages. The only gems that are loaded at startup (in environment.rb) are geokit, hpricot, will-paginate. Plugins in vendor/plugins (are those required on load as well? They aren't called out individually) are acts_as_list, acts_as_taggable_on_steroids, acts_as_tree, geokit_rails, hoptoad_notifier, mysql_bigint, rails-footnotes, records_sequence, restful_authentication http://stackoverflow.com/questions/1464188/how-do-i-deploy-multiple-branches-to-different-directories-via-git-push/1470337#1470337 Comment by scottru on how do I deploy multiple branches to different directories via git push? scottru 2009-10-01T20:07:32Z 2009-10-01T20:07:32Z just noting for future readers that this is a useful writeup - I ended up following the first response to this question, and really ended up just implementing the second option in this response with my own script - this is a great description of the options. Thanks! http://stackoverflow.com/questions/1464188/how-do-i-deploy-multiple-branches-to-different-directories-via-git-push/1464252#1464252 Comment by scottru on how do I deploy multiple branches to different directories via git push? scottru 2009-09-23T07:52:38Z 2009-09-23T07:52:38Z Second part: this basically worked - I had to switch the &quot;git reset --hard&quot; with &quot;git pull&quot;, but otherwise it's good to go. (Well, that and full pathing for git, just for posterity.) Thanks Von! I really appreciate the help. http://stackoverflow.com/questions/1464188/how-do-i-deploy-multiple-branches-to-different-directories-via-git-push/1464252#1464252 Comment by scottru on how do I deploy multiple branches to different directories via git push? scottru 2009-09-23T06:51:30Z 2009-09-23T06:51:30Z Thanks, Von. I read the article and understand the first solution, which really involves just a pull on the remote side (plus sometimes a reset). I will work through this one and see if I can figure out how it works. Do you have any pointers to versions of these hooks? http://stackoverflow.com/questions/1464188/how-do-i-deploy-multiple-branches-to-different-directories-via-git-push Comment by scottru on how do I deploy multiple branches to different directories via git push? scottru 2009-09-23T06:19:03Z 2009-09-23T06:19:03Z ok, I wasn't trying to start a conversation about the love of source control. Removing throwaway comment. http://stackoverflow.com/questions/1310378/determining-image-file-size-dimensions-via-javascript/1310399#1310399 Comment by scottru on Determining image file size + dimensions via Javascript? scottru 2009-08-21T16:07:09Z 2009-08-21T16:07:09Z Thanks. A few followups: 1) what kind of encoding would happen for jpgs that could increase the size? 2) If the image is resized in-browser, is there any way to get the original image dimensions? http://stackoverflow.com/questions/1310378/determining-image-file-size-dimensions-via-javascript Comment by scottru on Determining image file size + dimensions via Javascript? scottru 2009-08-21T07:11:55Z 2009-08-21T07:11:55Z Note that the first three answers are about the incorrect writeup I started with (where I said I was talking about image upload). My apologies to those folks. http://stackoverflow.com/questions/1191713/how-to-show-public-version-of-user-profile-in-rails/1191746#1191746 Comment by scottru on How to show public version of user profile in Rails? scottru 2009-08-21T07:00:50Z 2009-08-21T07:00:50Z I agree with Sam on this one, with the slight caveat that depending on the differences, it may make more sense to just make the changes inline. For example, on a site where I just want to enable quick-edit functionality for admins, that's a simple condition inside the view, but I don't want to punt out to partials when the differences will be so minor. http://stackoverflow.com/questions/154959/apache-rails-passenger-displaying-site-index/155652#155652 Comment by scottru on Apache/Rails/Passenger Displaying Site Index? scottru 2008-10-01T04:38:12Z 2008-10-01T04:38:12Z glad I could help!