User Richard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T02:58:05Z http://stackoverflow.com/feeds/user/21512 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1751187/how-should-i-persist-order-data-over-time-without-tying-it-to-underlying-product 0 How should I persist order data over time without tying it to underlying product pricing data that is subject to change? Richard 2009-11-17T19:29:05Z 2009-11-17T19:35:28Z <p>I have an application that processes and stores orders. Each order is composed of line items that have various things like pricing, sizing, colors, etc. My question is how do I persist that data over time without tying it to underlying data that is subject to change. </p> <p>For example, someone orders something which is composed of 5 things that cost $1 each, for a total of $5. However, at some point in the future the costs for the individual things changes to $0.50. Now when I bring up the old order it's total cost is $2.50 instead of $5.</p> <p>Initially, I thought of just not allowing the children tables to be updated, however that is not really feasible as the pricing is based on huge pricing grids that the customer only wants to update and not create new ones every time a price changes in the slightest. Each pricing grid take hours to set up and the pricing changes every couple of days.</p> <p>Another thought is to serialize the entire order and work from that. However, that makes it hard to update the system and change anything. Old orders will no longer display properly and might even crash the system.</p> <p>This is a pretty general problem and I'm looking for a best practices viewpoint.</p> http://stackoverflow.com/questions/1721200/why-does-my-session-expire-when-using-performancetest-and-not-integrationtest 0 Why does my session expire when using PerformanceTest and not IntegrationTest? Richard 2009-11-12T10:03:58Z 2009-11-12T10:03:58Z <p>OK, I am writing performance tests and am having trouble getting my session to persist like it does in integration tests. As I understand it, PerformanceTest is a child of IntegrationTest and any integration tests should work with performance test. However, when I take a integration test and copy it over to performance, change the ActionController::IntegrationTest to ActionController::PerformanceTest and then run the test, it fails.</p> <p>I am using Authlogic and have not had a problem with the integration test sessions sticking around. With the performance tests though it looks like the session gets created properly but when I visit the "/reports" page (which is a protected page) it redirects me to the login page like there is no user session at all.</p> <pre><code>require 'performance_test_help' class SimpleTest &lt; ActionController::PerformanceTest setup :activate_authlogic test "login" do assert user_session = UserSession.create!(User.find_by_login("admin")) get "/reports" assert_response :success end end </code></pre> <p>What's going on here? I've tried multiple ways to get a user session (create, post, etc.) and nothing seems to work. This is the first time I've written performance tests so I'm probably doing something stupid...</p> <p>BTW: I am running Ruby 1.8.7, Rails 2.2.2 on Debian Squeeze.</p> http://stackoverflow.com/questions/1717992/mapping-a-polymorphic-relationship-onto-2-models-simultaneously 0 Mapping a polymorphic relationship onto 2 models simultaneously Richard 2009-11-11T20:53:27Z 2009-11-11T22:23:29Z <p>I need to relate a Comments model with two ids at the same time but can't figure out how. Here' my situation. I am building an <a href="http://github.com/rnhurt/gradesheet" rel="nofollow">on-line school grading system</a> and need to be able let the teacher make a comment on a particular student in a particular course for a particular term (grading period).</p> <pre><code>class Course has_many :course_terms has_many :enrollments end class CourseTerm belongs_to :course end class Student has_many :enrollments has_many :courses, :through =&gt; :enrollments end class Enrollment &lt; ActiveRecord::Base belongs_to :student belongs_to :course end class Comment &lt; ActiveRecord::Base belongs_to :commentable, :polymorphic =&gt; true end </code></pre> <p>I know it looks awfully complex but its pretty simple really. A course has many terms which a student can be enrolled in. I want to have comments for a CourseTerm + Student but I don't know if Polymorphic can handle multiple IDs in one comment. Can I do something like this:</p> <pre><code>class CourseTerm has_many :comments, :as =&gt; :commentable, :source =&gt; [:student, :course_term] end </code></pre> <p>Or do I have to forgo Polymorphics and go with a standard Comment table build with a CourseTerm.id and Student.id?</p> http://stackoverflow.com/questions/1370257/how-do-you-use-errors-addtobase-outside-of-the-validates-or-validate-model-me 0 How do you use errors.add_to_base outside of the validates_ or validate_ model methods? Richard 2009-09-02T21:34:02Z 2009-09-03T01:16:38Z <p>I have a Course class that has many WeightingScales and I am trying to get the WeightingScales validation to propagate through the system. The short of the problem is that the following code works except for the fact that the errors.add_to_base() call doesn't do anything (that I can see). The Course object saves just fine and the WeightingScale objects fail to save, but I don't ever see the error in the controller.</p> <pre><code> def weight_attributes=(weight_attributes) weighting_scales.each do |scale| scale.weight = weight_attributes.fetch(scale.id.to_s).fetch("weight") unless scale.save errors.add_to_base("The file is not in CSV format") end end end </code></pre> <p>My question is similar to this [1]: How can you add errors to a Model without being in a "validates" method?</p> <p><a href="http://www.ruby-forum.com/topic/61283" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/1267403/which-netbeans-projects-files-should-go-into-source-control/1327960#1327960 0 Answer by Richard for Which NetBeans projects files should go into source control? Richard 2009-08-25T12:26:52Z 2009-08-25T12:26:52Z <p>It turns out that both Thomas &amp; Petercardona are correct, in a way. NetBeans recommends that you only import source code and/or documentation. Oh and the <em>nbproject</em> folder but not the *nbproject/private** folders.</p> <p>From the <a href="http://www.netbeans.org/kb/docs/java/import-eclipse.html" rel="nofollow">NetBeans Knowledge Base article on importing Eclipse projects</a>:</p> <blockquote> <p><strong>Version Control Considerations</strong></p> <p>If the project is checked out of a version control system, the build (or nbbuild), dist (or nbdist), and the <em>nbproject/private</em> folders should not be checked into that version control system.</p> <p>If the project is under the CVS, Subversion, or Mercurial version control systems, the appropriate "ignore" files are created or updated for these directories when the project is imported.</p> <p>Though <em>nbproject/private</em> should be ignored, <em>nbproject</em> should be checked into the version control system. <em>nbproject</em> contains project metadata that enables others users to open the project in NetBeans without having to import the project first.</p> </blockquote> http://stackoverflow.com/questions/917665/what-is-the-best-way-to-duplicate-a-calculation-in-ruby-javascript 0 What is the best way to duplicate a calculation in Ruby & JavaScript? Richard 2009-05-27T19:46:58Z 2009-06-01T17:38:00Z <p>I have a Ruby on Rails application and I need to duplicate some computations in both Ruby and JavaScript. Ruby is used in the server side but I also need to compute a students grade on the browser using JavaScript.</p> <p>My first thought is to build up a JavaScript function using strings, convert it to JSON, ship it to the browser where it is decoded and used as a normal JavaScript function. Does this sound workable to you? I've tried something simple like</p> <pre> def letterGradeCalc "function calcLetterGrade(score) { if( score >= 90 ) { return 'A'; } else if( score >= 80 ) { return 'B'; } else if( score >= 0 ) { return 'F'; } else return ''; }".to_json end </pre> <p>but it is not a valid JavaScript function when the browser gets it. It kinda looks like one but it has double quotes around it.</p> <p>Am I barking up the wrong tree here? I get the feeling that there is some insanely easy way to do this and but I'm completely missing it. :)</p> http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/498711#498711 1 Answer by Richard for Tool for adding license headers to source files? Richard 2009-01-31T11:59:25Z 2009-01-31T11:59:25Z <p><a href="http://www.mail-archive.com/community@apache.org/msg04322.html" rel="nofollow">Here's one</a> I found on the Apache list. Its written in Ruby and seems easy enough to read. You should even be able to call it from rake for extra special niceness. :)</p> http://stackoverflow.com/questions/436915/what-is-the-best-way-to-display-spreadsheet-data-in-ruby-on-rails 1 What is the best way to display spreadsheet data in Ruby on Rails? Richard 2009-01-12T20:32:36Z 2009-01-14T14:52:02Z <p>I am looking for a way to edit data and have values dynamically calculated (i.e. totals, averages, etc.) My application is a web based gradebook system for teachers and one of the big challenges is allowing them to enter/update grades. The most natural solution for this type of data is a table or spreadsheet grid and my first thought was to write something myself, but I quickly got over that idea. :)</p> <p>The chief problem I'm having is being able to calculate things in real time. When a teacher changes a grade I need the table to update that students AVG % and possibly their letter grade. It doesn't have to feed these calculations back to the server (they are just for show) but the cell changes do have to be saved (via AJAX).</p> <p>I know this should probably be a FAQ and I found these two answers (<a href="http://stackoverflow.com/questions/271276/what-is-the-easiest-way-to-display-an-editable-listlike-a-spreadsheet-in-html">1</a>, <a href="http://stackoverflow.com/questions/158695/spreadsheet-like-functionality-in-webapp">2</a>) but my requirements are a bit different (I think). First of all I'm looking for something that integrates with RoR fairly well; this means using Prototype. It should also be pretty lightweight and clean; I don't need fancy things like pictures, sub-groups, etc. Lastly, since my project is under the GPL, it must be open source.</p> <p>Any hints? Right now I'm looking at <a href="http://www.millstream.com.au/view/code/tablekit" rel="nofollow">TableKit</a> &amp; <a href="http://openrico.org/" rel="nofollow">Rico LiveGrid</a> but I'm not sure they can do the row &amp; column calculations that I need.</p> http://stackoverflow.com/questions/436915/what-is-the-best-way-to-display-spreadsheet-data-in-ruby-on-rails/443233#443233 0 Answer by Richard for What is the best way to display spreadsheet data in Ruby on Rails? Richard 2009-01-14T14:52:02Z 2009-01-14T14:52:02Z <p>After searching for something lightweight and easy to use I have given up and am writing my own little bits of JavaScript to do my bidding for me. Its not perfect but it seems to work pretty well, and it satisfies my needs (for now).</p> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/433127#433127 6 Answer by Richard for In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Richard 2009-01-11T16:10:30Z 2009-01-11T16:10:30Z <p>Taking Patrick McKenzie's answer just a bit further, you could create a new file in your <code>config/initializers</code> directory called <code>date_format.rb</code> (or whatever you want) and put this in it:</p> <pre><code>ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!( :my_date =&gt; lambda { |time| time.strftime("%a, %b #{time.day.ordinalize}") } ) </code></pre> <p>Then in your view code you can format any date simply by assigning it your new date format:</p> <pre><code>My Date: &lt;%= h some_date.to_s(:my_date) %&gt; </code></pre> <p>It's simple, it works, and is easy to build on. Just add more format lines in the date_format.rb file for each of your different date formats. Here is a more fleshed out example.</p> <pre><code>ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!( :datetime_military =&gt; '%Y-%m-%d %H:%M', :datetime =&gt; '%Y-%m-%d %I:%M%P', :time =&gt; '%I:%M%P', :time_military =&gt; '%H:%M%P', :datetime_short =&gt; '%m/%d %I:%M', :due_date =&gt; lambda { |time| time.strftime("%a, %b #{time.day.ordinalize}") } ) </code></pre> http://stackoverflow.com/questions/364664/how-do-you-restrict-access-to-certain-paths-using-lighttpd 0 How do you restrict access to certain paths using Lighttpd? Richard 2008-12-13T01:55:12Z 2008-12-13T08:16:22Z <p>I would like to restrict access to my /admin URL to internal IP addresses only. Anyone on the open Internet should not be able to login to my web site. Since I'm using Lighttpd my first thought was to use mod_rewrite to redirect any outside request for the /admin URL back to my home page, but I don't know much about Lighty and the docs don't say much about detecting a 192.168.0.0 IP range. :/ Can anyone help me with this pretty simple request?</p> <pre><code>Thanx! Richard </code></pre> http://stackoverflow.com/questions/305805/whats-the-best-way-to-work-with-github-and-multiple-computers 4 Whats the best way to work with Github and multiple computers? Richard 2008-11-20T16:02:37Z 2008-11-21T13:57:26Z <p>I am developing some school grading software and decided to use Github to host the project. After building some code on my Ubuntu box I pushed it to Github and then cloned it down to my MacBook Pro. After editing the code on the MBP I pushed it back to Github. The next morning I tried to update my repo on the Ubuntu box with a <code>git pull</code> and it gave me all kinds of trouble.</p> <p>Whats the best way to work in this situation? I don't want to fork my own repo and I don't really want to send myself emails or pull requests. Why can't I just treat Github like a master and push/pull from it onto all of my personal repos on different computers?</p> <p>Thanx!</p> http://stackoverflow.com/questions/261490/whats-the-best-way-to-perform-system-tasks-from-ruby-on-rails 4 Whats the best way to perform system tasks from Ruby on Rails? Richard 2008-11-04T10:43:51Z 2008-11-05T15:52:02Z <p>I am building a small system administration web application (think Web-Min, but in RoR) and I need to be able to access system parameters from my Ruby code. For instance, I want to allow the user to change the hostname, time zone, or network config of the server. </p> <p>My current thoughts are to have a separate setuid script (Perl, Ruby, ??) so that I can call it from my RoR code and it will perform the actions. That is quite cumbersome and not very elegant. I'm a Ruby newbie and would like to know if there is a better way to accomplish this type of thing.</p> <p>Thanx!<br /> <em>Richard</em></p> http://stackoverflow.com/questions/261490/whats-the-best-way-to-perform-system-tasks-from-ruby-on-rails/261698#261698 0 Answer by Richard for Whats the best way to perform system tasks from Ruby on Rails? Richard 2008-11-04T12:18:42Z 2008-11-04T12:18:42Z <p>One person suggested using something like <code>result = %x[uptime]</code> and pointed me to this <a href="http://blog.jayfields.com/2006/06/ruby-kernel-system-exec-and-x.html" rel="nofollow">very helpful blog post</a>. I think this is workable by combining some sort of wrapper script that is called with sudo and has the appropriate permissions in sudoers.</p> http://stackoverflow.com/questions/150432/ruby-on-rails-content-management-systems/261507#261507 0 Answer by Richard for Ruby on Rails Content Management Systems? Richard 2008-11-04T10:49:50Z 2008-11-04T10:49:50Z <p>I have to agree with TimB. I implemented RadiantCMS when my company was first getting started and it worked great. However, it is focused on being simple to setup and use and is not a full featured CMS with workflow and such. </p> <p>We actually moved away from Radiant several months ago and are now very happy using <a href="http://www.silverstripe.com/" rel="nofollow">SilverStripe</a>. SS would do most if not all of what you requested, unfortunately it is based on PHP and not Ruby so I'm not sure how much help that is.</p> <p>Later...<br /> <em>Richard</em></p> http://stackoverflow.com/questions/1717992/mapping-a-polymorphic-relationship-onto-2-models-simultaneously/1718489#1718489 Comment by Richard on Mapping a polymorphic relationship onto 2 models simultaneously Richard 2009-11-12T09:39:15Z 2009-11-12T09:39:15Z Darn you and your logic. :) I was hoping that Rails might have some more <i>magic</i> in its pouch to make this all just work. Oh well, it looks like I have to do it the hard way. Thanx for the help! http://stackoverflow.com/questions/1370257/how-do-you-use-errors-addtobase-outside-of-the-validates-or-validate-model-me Comment by Richard on How do you use errors.add_to_base outside of the validates_ or validate_ model methods? Richard 2009-09-03T02:09:52Z 2009-09-03T02:09:52Z Yes, I want the Course model to show the errors when I try to save it. http://stackoverflow.com/questions/579450/load-testing-with-ab-fake-failed-requests-length/579466#579466 Comment by Richard on Load Testing with AB ... fake failed requests (length) Richard 2009-07-17T09:49:21Z 2009-07-17T09:49:21Z Hey, I just ran into the same &quot;problem&quot; and am glad this answer was here. Thanx! http://stackoverflow.com/questions/917665/what-is-the-best-way-to-duplicate-a-calculation-in-ruby-javascript Comment by Richard on What is the best way to duplicate a calculation in Ruby & JavaScript? Richard 2009-05-28T14:47:23Z 2009-05-28T14:47:23Z Ah ha, JavaScript eval works great. It turns out that you can use eval to not only return data but to build functions from strings. It's kinda clunky and not at all Rubyish but it works. Thanx! http://stackoverflow.com/questions/917665/what-is-the-best-way-to-duplicate-a-calculation-in-ruby-javascript/917775#917775 Comment by Richard on What is the best way to duplicate a calculation in Ruby & JavaScript? Richard 2009-05-28T14:37:02Z 2009-05-28T14:37:02Z Another good suggestion, but I really need the UI to update quickly. Since the user could be entering information pretty fast I think a call would overwhelm my system. http://stackoverflow.com/questions/917665/what-is-the-best-way-to-duplicate-a-calculation-in-ruby-javascript/917709#917709 Comment by Richard on What is the best way to duplicate a calculation in Ruby & JavaScript? Richard 2009-05-28T14:35:54Z 2009-05-28T14:35:54Z Good suggestion. The function is generally not complex (if..then) but it is built using user input. Therefor I don't think I can construct the function before hand. :( http://stackoverflow.com/questions/615015/best-practice-should-i-use-an-ar-model-or-a-global-hash-for-static-data/615224#615224 Comment by Richard on Best practice: should I use an AR Model or a global Hash for static data? Richard 2009-05-19T17:27:51Z 2009-05-19T17:27:51Z <a href="http://pastie.org/482993" rel="nofollow">pastie.org/482993</a> I've mocked up some code here. Does this look workable or am I traveling down the wrong road? http://stackoverflow.com/questions/615015/best-practice-should-i-use-an-ar-model-or-a-global-hash-for-static-data/615224#615224 Comment by Richard on Best practice: should I use an AR Model or a global Hash for static data? Richard 2009-05-19T17:23:04Z 2009-05-19T17:23:04Z I really like this idea but am having trouble coming up with code that works for me. In my site I want to allow the admin to change the name of the site (SITE_NAME) and store it in the DB. However, I think its overkill to retrieve SITE_NAME every time I need to display a page. Could you give a bit more detail on the &quot;Some logic methods...&quot; section of your answer? :) Thanx! Richard http://stackoverflow.com/questions/158851/what-are-some-good-pop-up-dialog-boxes-for-ruby-on-rails/169896#169896 Comment by Richard on What are some good pop-up dialog boxes for Ruby on Rails Richard 2009-03-25T10:34:32Z 2009-03-25T10:34:32Z Lytebox is no longer being developed. http://stackoverflow.com/questions/436915/what-is-the-best-way-to-display-spreadsheet-data-in-ruby-on-rails/441484#441484 Comment by Richard on What is the best way to display spreadsheet data in Ruby on Rails? Richard 2009-01-14T14:54:02Z 2009-01-14T14:54:02Z Yes, I thought about writing back to the DB but the grades are entered as fast as possible and I'm afraid that beating up my server with thousands of little hits and repainting my table would not be conducive to a good user experience. :) Thanks for the idea though. http://stackoverflow.com/questions/436915/what-is-the-best-way-to-display-spreadsheet-data-in-ruby-on-rails/437350#437350 Comment by Richard on What is the best way to display spreadsheet data in Ruby on Rails? Richard 2009-01-13T09:53:56Z 2009-01-13T09:53:56Z Thank you for the tip, but it looks like ExtJS is a rather large framework. I wonder if it can be striped down to just one or two components... http://stackoverflow.com/questions/364664/how-do-you-restrict-access-to-certain-paths-using-lighttpd/364991#364991 Comment by Richard on How do you restrict access to certain paths using Lighttpd? Richard 2008-12-16T15:55:57Z 2008-12-16T15:55:57Z How would I restrict just a single path (i.e. /admin) with this structure? http://stackoverflow.com/questions/305805/whats-the-best-way-to-work-with-github-and-multiple-computers/307742#307742 Comment by Richard on Whats the best way to work with Github and multiple computers? Richard 2008-11-21T14:24:21Z 2008-11-21T14:24:21Z This was exactly what I was looking for. I am using Ruby, but I am trying to learn my way around Git as well and I think that doing it the &quot;hard way&quot; is probably best right now. :) http://stackoverflow.com/questions/305805/whats-the-best-way-to-work-with-github-and-multiple-computers Comment by Richard on Whats the best way to work with Github and multiple computers? Richard 2008-11-20T17:52:51Z 2008-11-20T17:52:51Z I created the repo on my Ubuntu box and pushed it to Github. I don't think I have cloned it back down onto my Ubuntu box from Github. Is that necessary? And when I say all kinds of trouble, I mean that I got several error messages. I eventually used a 'commit -f' command and it worked. Sorta. http://stackoverflow.com/questions/261490/whats-the-best-way-to-perform-system-tasks-from-ruby-on-rails/261519#261519 Comment by Richard on Whats the best way to perform system tasks from Ruby on Rails? Richard 2008-11-04T12:07:28Z 2008-11-04T12:07:28Z This is great information but I'm not sure it solves my problem. These tasks are not long running and don't really need to be backgrounded. Also running a separate server just to handle renaming the host is a bit overkill.