User Patrick McKenzie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:35:21Z http://stackoverflow.com/feeds/user/15046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925954/updating-a-select-box-based-on-another-ruby-on-rails/1926349#1926349 0 Answer by Patrick McKenzie for updating a select box based on another (Ruby on Rails) Patrick McKenzie 2009-12-18T04:51:22Z 2009-12-18T04:51:22Z <p>This is generally handled in Javascript. I don't particularly enjoy coding Javascript, so what I do for this in my application is to use a form_observer (a Rails helper which uses the Prototype Javascript library to watch your form for input changes) and have update a DIV in the HTML containing the second select box, based on the results of an AJAX call. Since AJAX talks to my server, I can write arbitrarily complex logic in Ruby to render the new HTML.</p> <p>Example code:</p> <pre><code>#goes in view &lt;%= Code to render the first list box. %&gt; &lt;%= render :partial =&gt; 'second_list_box_partial', :locals =&gt; {:selected = insert_magic_here } %&gt; &lt;%= observe_field(:first_list_box, :url =&gt; { :action =&gt; :second_box_ajax }), :frequency =&gt; 0.5, :update =&gt; :second_list_box_div, :with =&gt; %Q| 'value=' + $('first_list_box').value; | %&gt; #goes in controller def second_box_ajax first_box_value = params[:value] #magic goes here @selected = #more magic render :partial =&gt; 'second_list_box_partial', :locals =&gt; {:selected =&gt; @selected}, :layout =&gt; false end #goes in partial &lt;div id="second_list_box_div"&gt; Actual code to render list box goes here. &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1892395/constant-railsversionstring/1893060#1893060 7 Answer by Patrick McKenzie for Constant: Rails::VERSION::STRING Patrick McKenzie 2009-12-12T10:58:25Z 2009-12-12T10:58:25Z <p>Rails is a Module. :: Gives you access to a static member or method of a module, as compared to the dot operator, which calls methods on the module object. (All classes are objects in Ruby.) STRING is, similarly, a static member of VERSION. </p> <p>These act like global constants (they're constant and there is only one copy of them) but they aren't global constants in the usual meaning of that term in Ruby. They're static fields on the Rails module.</p> <p>They are scoped so locally to avoid polluting the global namespace. RUBY_VERSION is in the global namespace. Since it is a core language feature, nobody cares so much that they can't use that name for their own purposes, but other packages should avoid putting stuff there.</p> <p>'Rails.constants' will give you the other Rails constants.</p> http://stackoverflow.com/questions/1883346/rails-how-to-expire-a-directory/1886293#1886293 0 Answer by Patrick McKenzie for Rails how to expire a directory? Patrick McKenzie 2009-12-11T06:55:39Z 2009-12-11T06:55:39Z <p>You're doing page caching, right? Why not just delete the directory?</p> <pre><code>system("rm -rf #{RAILS_ROOT}/public/posts") #Or, in more Rubyish code FileUtils.rm_rf "#{RAILS_ROOT}/public/posts" </code></pre> http://stackoverflow.com/questions/1285183/retrieve-from-multiple-relations-ruby-on-rails/1285976#1285976 0 Answer by Patrick McKenzie for Retrieve from multiple relations, ruby on rails Patrick McKenzie 2009-08-17T02:51:23Z 2009-08-17T05:33:16Z <p>SQL magic: </p> <pre><code>class User def posts_with_comments_since_my_last_comment_in_that_post Post.find_by_sql([%Q| SELECT DISTINCT posts.* from posts INNER JOIN users on (posts.user_id = users.id) INNER JOIN comments on (comments.user_id = users.id AND comments.post_id = posts.id) WHERE (posts.updated_at &gt; comments.updated_at) AND (users.id = ?)|, id]) end def posts_with_comments_since_my_last_comment Post.find_by_sql([%Q| SELECT DISTINCT posts.* from posts INNER JOIN users on (posts.user_id = users.id) INNER JOIN comments on (comments.user_id = users.id AND comments.post_id = posts.id) WHERE (posts.updated_at &gt; user.updated_at) AND (users.id = ?)|, id]) end end </code></pre> <p>You can possibly avoid that via creative use of caching, but I wouldn't suggest it. <strong>Make sure your tables are indexed properly.</strong> This has the potential to go <strong>very, very wrong</strong> if you run a site with lots of comments.</p> http://stackoverflow.com/questions/495698/what-resources-are-there-for-a-b-split-testing-in-rails/1286014#1286014 2 Answer by Patrick McKenzie for What resources are there for A/B split-testing in Rails? Patrick McKenzie 2009-08-17T03:14:26Z 2009-08-17T03:14:26Z <p>I just released <a href="http://www.bingocardcreator.com/abingo/" rel="nofollow">A/Bingo</a>, an OSS Rails plugin to do this.</p> <p>You can see the <a href="http://www.bingocardcreator.com/abingo/compare" rel="nofollow">comparison with Seven Minute Abs</a> for details, but I think it is largely more easy to use.</p> <ul> <li>It supports tracking any event as a conversion. Seven Minute Abs only tracks clicks off the page you're currently viewing.</li> <li>It remembers what alternative a user saw, and only shows them that.</li> <li>It has lots of syntax sugar aimed at maximizing programmer productivity.</li> <li>It will do statistical significance tests for you.</li> </ul> http://stackoverflow.com/questions/1272888/ruby-on-rails-average-per-day/1276658#1276658 0 Answer by Patrick McKenzie for ruby on rails average per day Patrick McKenzie 2009-08-14T08:21:16Z 2009-08-14T08:21:16Z <p>As you've found out, Time is internally represented in a count of seconds, and a range of time produces a range of seconds. A range of dates, on the other hand, produces a range of dates.</p> <pre><code>(Date.today.beginning_of_month..Date.today).each do |date| #copy paste your code here end </code></pre> <p>You don't need to stringify dates for ActiveRecord -- Rails does that for you. For example, for a model with timestamps:</p> <pre><code>Model.find(:conditions =&gt; ["created_on &gt; ?", Date.today - 7.days]) </code></pre> <p>gets you objects created within the past week. Note that I make no pretense of converting data objects so that MySQL will like them -- that is ActiveRecord's job.</p> http://stackoverflow.com/questions/160954/rails-console-doesnt-automatically-load-models-for-2nd-db 1 Rails Console Doesn't Automatically Load Models For 2nd DB Patrick McKenzie 2008-10-02T05:06:06Z 2009-08-04T03:22:50Z <p>I have a Rails project which has a Postgres database for the actual application but which needs to pull a heck of a lot of data out of an Oracle database. </p> <p>database.yml looks like</p> <pre><code>development: adapter: postgresql database: blah blah ... oracle_db: adapter: oracle database: blah blah </code></pre> <p>My models which descend from data on the Oracle DB look something like </p> <pre><code>class LegacyDataClass &lt; ActiveRecord::Base establish_connection "oracle_db" set_primary_key :legacy_data_class_id has_one :other_legacy_class, :foreign key =&gt; :other_legacy_class_id_with_funny_column_name ... end </code></pre> <p>Now, by habit I often do a lot of my early development (and this is early development) by coding for a bit and then playing in the Rails console. For example, after defining all the associations for LegacyDataClass I'll start trying things like <code>a = LegacyDataClass.find(:first); puts a.some_association.name</code>. Unexpectedly, this dies with LegacyDataClass not being already loaded. </p> <p>I can then <code>require 'LegacyDataClass'</code> which fixes the problem until I either need to <code>reload!</code>, which won't actually reload it, or until I open a new instance of the console.</p> <p>Thus the questions:</p> <ul> <li><strong>Why</strong> does this happen? Clearly there is some Rails magic I am not understanding.</li> <li>What is the convenient Rails <strong>workaround</strong>?</li> </ul> http://stackoverflow.com/questions/1156719/retrieving-and-ordering-multiple-arrays-from-activerecord-join-table-ruby-on-ra/1157475#1157475 0 Answer by Patrick McKenzie for Retrieving and Ordering Multiple Arrays From ActiveRecord Join table - Ruby on Rails Patrick McKenzie 2009-07-21T05:50:10Z 2009-07-21T05:50:10Z <p>Here's the easiest way to find all the movies and books for a given tag.</p> <pre><code>#Tag.rb def books_and_movies books + movies end </code></pre> <p>The + operator concatenates arrays in Ruby.</p> <p>Optimize this with custom SQL if it turns out to actually be problematic in practice. I'm guessing that it won't be.</p> http://stackoverflow.com/questions/1113422/how-to-bypass-ssl-certificate-verification-in-open-uri/1117524#1117524 0 Answer by Patrick McKenzie for How to bypass SSL certificate verification in open-uri? Patrick McKenzie 2009-07-13T02:34:47Z 2009-07-13T02:34:47Z <p>Seems like a good candidate for inclusion in environment.rb, or if this hack is only necessary in particular environments, then in their individual config files.</p> http://stackoverflow.com/questions/1117503/whats-the-restful-way-to-implement-a-forgotten-password-feature/1117520#1117520 2 Answer by Patrick McKenzie for What's the restful way to implement a forgotten password feature? Patrick McKenzie 2009-07-13T02:32:27Z 2009-07-13T02:32:27Z <p>REST is not black magic. Figure out what your technical goals are for these pages, then pick the right verbs to go with them.</p> <p>I forgot my password page: essentially a static form, right? You want this to be cachable. GET on any URL you want.</p> <p>Send email: costly action which you don't want repeated and you DO want executed every time the user requests it: POST or PUT on any URL you want. Heck, you could make it the same as the above URL if you wanted to, but I don't see a particularly pressing need to.</p> <p>Reset password based on token: I'd consider implementing this as a login-via-token instead, but if you're going to do it your way, then it has server-side consequences and hence should probably be a POST or PUT. </p> http://stackoverflow.com/questions/939090/how-can-i-find-non-ascii-strings-in-an-array-of-strings-in-rails-2-0-ruby-1-8-6/939674#939674 2 Answer by Patrick McKenzie for How can I find non ascii strings in an array of strings, in Rails 2.0/ruby 1.8.6? Patrick McKenzie 2009-06-02T13:49:58Z 2009-06-02T13:49:58Z <p>You can abuse Ruby's built in regular expression character classes for this</p> <p>[:print:] contains all ASCII printable characters. It doesn't contain ASCII characters like beeps or, importantly, multibyte characters.</p> <p>Working on the assumption that your users are unlikely to have ASCII BEEP as a character in their password,</p> <pre><code>#reject if has non-ascii character valid_users = users.reject! {|user| user.login =~ /[^[:print:]]/} </code></pre> <p>should do it for you.</p> http://stackoverflow.com/questions/904022/cron-job-on-ubuntu-hardy-executing-but-not-deleting-files-as-expected 0 Cron Job on Ubuntu Hardy Executing But Not Deleting Files As Expected Patrick McKenzie 2009-05-24T15:43:30Z 2009-05-24T16:48:15Z <p>I have a bit of a pickle here and wonder if anyone can give me some pointers:</p> <p>I have a cron job which executes for a particular user daily and is supposed to sweep files in a particular directory. Technically, it is two jobs. I've turned on cron.log to verify they're actually executing, and they are:</p> <pre><code>May 24 11:03:01 AppNameGoesHere /USR/SBIN/CRON[11257]: (mongrel_AppNameGoesHere) CMD (rm -rf /var/www/apps/AppNameGoesHere/current/public/ {popular,index,purchasing,purchasing-alternate,support,about-us,guarantee,screenshots}.htm{,l}) May 24 11:04:01 AppNameGoesHere /USR/SBIN/CRON[11260]: (mongrel_AppNameGoesHere) CMD (rm -rf /var/www/apps/AppNameGoesHere/current/public/ {stats,popular,bcf,articles,expenses}) </code></pre> <p>I have removed the actual usernames and formatted it so that it is less ugly on StackOverflow.</p> <p>Now, my question: Despite the fact that I can see these deletions executing and apparently succeeding in the log, if I go to the specified directory, the files are still there. I initially suspected permission hijinx were going on, but I've verified that I can delete the files manually by su-ing into the mongrel_AppNameGoesHere user and issuing individual rm commands or by copy/pasting the cron job to the command line. Anything that I don't manually zap stays unzapped despite days of that cron job executing successfully.</p> <p>Any suggestions on to what might be happening? I was previously using Dapper Drake with these cron jobs in the /etc/crontab file directly, and when I upgraded to Hardy I moved them to user-specific crontabs (via <code>sudo crontab -e - u mongrel_AppNameGoesHere</code>), which was the point where they appear to have stopped working.)</p> http://stackoverflow.com/questions/805601/dry-rails-master-templates/806059#806059 0 Answer by Patrick McKenzie for DRY Rails Master Templates? Patrick McKenzie 2009-04-30T09:16:10Z 2009-04-30T09:16:10Z <p>/app/views/layouts/whatever.rhtml (or whichever extension your prefer to work with): </p> <pre><code>&lt;html&gt; ... &lt;%= yield %&gt; ... &lt;/html&gt; </code></pre> <p>/app/controllers/ApplicationController.rb:</p> <pre><code>layout "whatever" </code></pre> <p>(Edit: I can't remember off the top of my head whether calling the layout application.rhtml (or whatever) automatically makes it the default layout for any controller lacking specification or whether this bit of magic is incorporated into the default ApplicationController when you generate scaffolding, using the above syntax.)</p> http://stackoverflow.com/questions/788106/find-all-objects-with-no-associated-hasmany-objects/788462#788462 0 Answer by Patrick McKenzie for Find all objects with no associated has_many objects Patrick McKenzie 2009-04-25T07:38:27Z 2009-04-25T07:38:27Z <p>One option is to put a shipment_count on Order, where it will be automatically updated with the number of shipments you attach to it. Then you just</p> <pre><code>Order.all(:conditions =&gt; [:state =&gt; "authorized", :shipment_count =&gt; 0]) </code></pre> <p>Alternatively, you can get your hands dirty with some SQL:</p> <pre><code>Order.find_by_sql("SELECT * FROM (SELECT orders.*, count(shipments) AS shipment_count FROM orders LEFT JOIN shipments ON orders.id = shipments.order_id WHERE orders.status = 'authorized' GROUP BY orders.id) AS order WHERE shipment_count = 0") </code></pre> <p>Test that prior to using it, as SQL isn't exactly my bag, but I think it's close to right. I got it to work for similar arrangements of objects on my production DB, which is MySQL.</p> <p>Note that if you don't have an index on orders.status I'd strongly advise it!</p> <p>What the query does: the subquery grabs all the order counts for all orders which are in authorized status. The outer query filters that list down to only the ones which have shipment counts equal to zero.</p> <p>There's probably another way you could do it, a little counterintuitively:</p> <pre><code>"SELECT DISTINCT orders.* FROM orders LEFT JOIN shipments ON orders.id = shipments.order_id WHERE orders.status = 'authorized' AND shipments.id IS NULL" </code></pre> <p>Grab all orders which are authorized and don't have an entry in the shipments table ;)</p> http://stackoverflow.com/questions/700338/reversed-hasmany-in-rails/700497#700497 1 Answer by Patrick McKenzie for Reversed has_many in Rails Patrick McKenzie 2009-03-31T08:02:36Z 2009-03-31T08:02:36Z <p>The way which optimizes programmer time and readability, in my opinion:</p> <pre><code>#get all users who have items which are both red and black but no other colors candidate_users = User.all(:include =&gt; :items) candidate_users.reject! do |candidate| candidate.items.map {|item| item.color}.sort != ['black', 'red'] end </code></pre> <p>If you are expecting to be looping through a metric truckload of users there, then you'll need to SQL it up. Warning: SQL is not my bag, baby: test before use.</p> <pre><code>select users.*, items.* FROM users INNER JOIN items_users ON (items_users.user_id = users.id) INNER JOIN items ON (items_users.item_id = items.id) GROUP BY users.id HAVING COUNT(DISTINCT items.color) = 2 </code></pre> <p>What I think that evil mess does:</p> <p>1) Grabs every user/item combination 2) Winnows down to users who have items of exactly 2 distinct colors</p> <p>Which means you'll need to:</p> <pre><code>candidate_users.reject! do |candidate| candidate.items.map {|item| item.color}.sort != ['black', 'red'] end </code></pre> <p>You can probably eliminate the need for the ruby here totally but the SQL is going to get seven flavors of ugly. (Cross joins, oh my...)</p> http://stackoverflow.com/questions/280155/best-practices-for-new-rails-deployments-on-linux/282840#282840 0 Answer by Patrick McKenzie for Best practices for new Rails deployments on Linux? Patrick McKenzie 2008-11-12T02:38:53Z 2009-03-16T19:53:16Z <p>Capistrano + Deprec for actually setting up my stack on Ubuntu and physically managing the deployment.</p> <p>Nginx proxying to Mongrel clusers for the server architecture. It isn't the newest, bleeding edge technique but it works well, it is getting well-documented, and it is very, very high performance even when working on small VPSes. Assuming you haven't borked the application you can Slashdot a 128 MB Slicehost VPS and it just keeps coming back for more.</p> <p>Having said that: there were a <em>lot</em> of gotchas the first time around, until I figured out how Nginx actually worked. After that its amazing -- like a little Apachelet with a slight Russian accent.</p> http://stackoverflow.com/questions/565647/best-practices-for-a-web-app-staging-server-on-a-budget/568242#568242 4 Answer by Patrick McKenzie for Best Practices for a Web App Staging Server (on a budget) Patrick McKenzie 2009-02-20T04:04:44Z 2009-02-20T04:04:44Z <p><strong>Cheap and Easy answer:</strong></p> <p>1) Point staging.domainname.com at your VPS. </p> <p>2) Add in a virtual host for staging, pointing to the staging copy of the app.</p> <p>3) Add in a staging environment setting. (Did you know you could define new environments in Rails? Fun stuff!) I think this is as simple as copying production.rb to staging.rb and tweaking as necessary, plus updating database.yml.</p> <p>4) In ActionController, add in code similar to the following</p> <pre><code> if (ENV["RAILS_ENV"] == "staging") before_filter :verifies_admin end </code></pre> <p>Where <code>verifies_admin</code> can be anything you want. I suggest using HTTP basic authentication -- cheap and easy. </p> <pre><code>def verifies_admin authenticate_or_request_with_http_basic do |username, password| username == "foo" &amp;&amp; password == "bar" end end </code></pre> <p><strong>Note that this may bork your connection to that payment site if they are making inbound requests to you</strong>, although that is simple enough to fix (just turn off the before_filter for the appropriate controllers and/or actions.)</p> <p><strong>Better answer:</strong></p> <p>1) Buy a second VPS configured from the same image as your regular VPS, and/or configured from the same install-from-the-bare-metal script (I like Capistrano &amp; Deprec for this).</p> <p>2) Point staging.domainname.com at it.</p> <p>3) Otherwise its the same as the other option.</p> <p><strong>Things to think about:</strong></p> <p>1) Should I have a staging database as well? Probably, especially if you're going to be testing schema changes.</p> <p>2) Should I have some facility for moving data between the staging and production systems? </p> <p>3) Can catastrophic failure of my staging application take down the main application? Best hope the answer is no.</p> http://stackoverflow.com/questions/535141/how-to-disable-ajax-y-links-before-page-javascript-ready-to-handle-them 1 How to disable AJAX-y links before page Javascript ready to handle them? Patrick McKenzie 2009-02-11T01:57:20Z 2009-02-13T07:38:27Z <p>I am implementing a shopping cart for my website, using a pseudo-AJAX Lightbox-esque effect. (It doesn't actually call the server between requests -- everything is just Prototype magic to update the displayed values.)</p> <p>There is also semi-graceful fallback behavior for users without Javascript: if they click add to cart they get taken to an (offsite, less-desirable-interaction) cart. </p> <p>However, a user with Javascript enabled who loads the page and then immediately hits add to cart gets whisked away from the page, too. I'd like to have the Javascript just delay them for a while, then execute the show cart behavior once it is ready. In the alternative, just totally ignoring clicks before the Javascript is ready is probably viable too.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/544463/how-would-you-keep-secret-data-secret-in-an-iphone-application/544598#544598 6 Answer by Patrick McKenzie for How would you keep secret data secret in an iPhone application? Patrick McKenzie 2009-02-13T03:25:28Z 2009-02-13T03:25:28Z <p>The goal is, ultimately, restrict access of the web service to authorized users, right? Very easy if you control the web service (if you don't -- wrap it in a web service which you do control).</p> <p>1) Create a public/private key pair. The private key goes on the web service server, which is put in a dungeon and guarded by a dragon. The public key goes on the phone. If someone is able to read the public key, <strong>this is not a problem</strong>.</p> <p>2) Have each copy of the application generate a unique identifier. How you do this is up to you. For example, you could build it into the executable on download (is this possible for iPhone apps)? You could use the phone's GUID, assuming they have a way of calculating one. You could also redo this per session if you really wanted.</p> <p>3) Use the public key to encrypt "My unique identifier is $FOO and I approved this message". Submit that with every request to the web service.</p> <p>4) The web service decrypts each request, bouncing any which don't contain a valid identifier. You can do as much or as little work as you want here: keep a whitelist/blacklist, monitor usage on a per-identifier basis and investigate suspicious behavior, etc.</p> <p>5) Since the unique identifier now never gets sent over the wire, the only way to compromise it is to have physical access to the phone. <strong>If they have physical access to the phone, you lose control of any data anywhere on the phone</strong>. Always. Can't be helped. That is why we built the system such that compromising one phone never compromises more than one account.</p> <p>6) Build business processes to accommodate the need to a) remove access from a user who is abusing it and b) restore access to a user whose phone has been physically compromised (this is going to be very, very infrequent unless the user is the adversary).</p> http://stackoverflow.com/questions/293409/id-in-urls/301184#301184 0 Answer by Patrick McKenzie for :id in URLs Patrick McKenzie 2008-11-19T06:46:32Z 2008-11-19T06:46:32Z <p>Jon Smock's solution will work, too. I tend to prefer the following.</p> <pre><code>class Hamburger &lt;&lt; ActiveRecord::Base #this normally defaults to id def to_param name end end class SomeModelController &lt;&lt; ApplicationController def show @hamburger = Hamburger.find(params[:id]) #still default code end end #goes in some view This is the &lt;%= link_to "tastiest hamburger ever", url_for(@hamburger) %&gt;. </code></pre> <p>This is, loosely speaking, an SEO technique (beautiful URLs are also user-friendly and I suggest them to absolutely everyone even if you don't care about SEO, for example on pages behind a login). I have a more extended discussion of Rails SEO, which includes other tips like this, <a href="http://www.bingocardcreator.com/rails-seo-tips.htm" rel="nofollow">here</a>.</p> <p><strong>Important tip:</strong> You should consider, at design-time, what you are going to do if the <code>param</code> should change. For example, in my hamburger scenario, it is entirely possible that I might rename "Sinfully Delicious Cheeseburger" to "Triple Bypass". If that changes URLs, there are some possible implications, such as breakage of customer links to my website. Accordingly, for production use I usually give these models an immutable <code>permalink</code> attribute which I initialize to be human-meaningful <em>exactly once</em>. If the object later changes, oh well, the URL stays the same. (There are other solutions -- that is just the easiest one.)</p> http://stackoverflow.com/questions/286841/freezing-associated-objects/289629#289629 1 Answer by Patrick McKenzie for Freezing associated objects Patrick McKenzie 2008-11-14T09:41:11Z 2008-11-14T09:41:11Z <p>A few options:</p> <p>1) <strong>Add a version number to your model.</strong> At the day job we do course scheduling. A particular course might be updated occasionally but, for business rule reasons, its important to know what it looked like on the day you signed up. Add <code>:version_number</code> to model and <code>find_latest_course(course_id)</code>, alter code as appropriate, stir a bit. In this case you don't "edit" models so much as you do a new save of the new, updated version. (Then, obviously, your LineItems carry a <code>item_id</code> and an <code>item_version_number</code>.)</p> <p>This generic pattern can be extended to cover, shudder, audit trails.</p> <p>2) <strong>Copy data into <code>LineItem</code> objects at <code>LineItem</code> creation time</strong>. Just because you can slap <code>has_a</code> on anything, doesn't mean you should. If a 'LineItem' is supposed to hold a constant record of one item which appeared on an invoice, then make the <code>LineItem</code> hold a constant record of one item which appeared on an invoice. You can then update <code>InventoryItem#current_price</code> at will without affecting your previously saved <code>LineItems</code>.</p> <p>3) <strong>If you're lazy, just freeze the price on the order object.</strong> Not really much to recommend this but, hey, it works in a pinch. You're probably just delaying the day of reckoning though.</p> <p><em>"I ordered from you 6 months ago and now am doing my taxes. Why won't your bookstore show me half of the books I ordered? What do you mean their IDs were purged when you stopped selling them?! I need to know which I can get deductions for!"</em></p> http://stackoverflow.com/questions/283165/ways-to-hash-a-numeric-vector/283345#283345 1 Answer by Patrick McKenzie for Ways to hash a numeric vector? Patrick McKenzie 2008-11-12T08:42:23Z 2008-11-12T08:42:23Z <p>I did some (unpublished, practical) experiments with testing a variety of string hash algorithms. (It turns out that Java's default hash function for Strings sucks.) </p> <p>The easy experiment is to hash the English dictionary and compare how many collisions you have on algorithm A vs algorithm B.</p> <p>You can construct a similar experiment: randomly generate $BIG_NUMBER of possible vectors of length 7 or less. Hash them on algorithm A, hash them on algorithm B, then compare number and severity of collisions.</p> <p>After you're able to do that, you can use simulated annealing or similar techniques to find "magic numbers" which perform well for you. In my work, for given vocabularies of interest and a tightly limited hash size, we were able to make a generic algorithm work well for several human languages by varying the "magic numbers".</p> http://stackoverflow.com/questions/283239/should-i-avoid-nil-checking-in-rails-views/283319#283319 6 Answer by Patrick McKenzie for Should I avoid nil checking in Rails views? Patrick McKenzie 2008-11-12T08:33:27Z 2008-11-12T08:33:27Z <p>I tend to think you are doing things right if your problem is choosing whether to display, or not display, the results of a calculation. If it would make no sense to display any value, then nil is perfectly reasonable.</p> <p>If, however, your business logic is resulting in you getting into a state where much of the view will be habitually blank, then you probably should refactor such that your program loses its leaky abstractions.</p> <p>Consider, for example, an application which starts by tracking recipes for <code>Food</code>. Then, as requirements morph, we get the notion of pies needing to display different information than burgers. Rather than having a <code>calculate_deliciousness_of_pie_or_nil_for_burger</code> method, and then checking for nil in the view, I'd break that into a pie view for pies and a burger view for burgers. This might (probably would) require rethinking my object abstractions.</p> http://stackoverflow.com/questions/283205/what-was-the-most-dangerous-programming-mistake-you-have-made-in-c/283307#283307 1 Answer by Patrick McKenzie for What was the most dangerous programming mistake you have made in C? Patrick McKenzie 2008-11-12T08:26:52Z 2008-11-12T08:26:52Z <p>The most dangerous thing I ever did in C was trying to write code which managed my own memory. Effectively, this means the <strong>most dangerous thing I ever did in C was write C code</strong>. (I hear that you can get around it these days. Hip hip for sanity. Use those approaches whenever appropriate!)</p> <ul> <li>I don't write paging algorithms -- OS geeks do that for me.</li> <li>I don't write database caching schemes -- database geeks do that for me.</li> <li>I don't build L2 processor caches -- hardware geeks do that for me.</li> </ul> <p>And I do <em>not</em> manage memory. </p> <p>Someone else manages my memory for me -- someone who can design better than I can, and test better than I can, and code better than I can, and patch when they make critical security-compromising mistakes which only get noticed 10 years later because <strong>absolutely everyone</strong> who attempts to allocate memory fails some of the time.</p> http://stackoverflow.com/questions/279769/convert-to-from-datetime-and-time-in-ruby/280026#280026 1 Answer by Patrick McKenzie for Convert to/from DateTime and Time in Ruby Patrick McKenzie 2008-11-11T04:43:11Z 2008-11-11T04:43:11Z <p>This isn't really that hard.</p> <pre><code>require 'date' date_time = DateTime.now # #&lt;DateTime: blah&gt; date_time.to_time # #&lt;Time: blah&gt; time = Time.now # #&lt;Time: blah&gt; time.to_datetime # #&lt;DateTime: blah&gt; </code></pre> http://stackoverflow.com/questions/264832/how-to-keep-track-of-information-over-several-calls-to-render-partial 2 How to keep track of information over several calls to render :partial Patrick McKenzie 2008-11-05T10:57:11Z 2008-11-10T16:57:20Z <p>I am using attribute_fu to render a nice block of rows for a particular table.</p> <pre><code>&lt;%= f.render_associated_form(@foo.bars, :new =&gt; 5) %&gt; </code></pre> <p>I would like to have the <code>bar</code> partial have some notion of a bit of state. (Because the notion is specific to the view, I do not want to externalize this to the <code>Bar</code> model itself and calculate it in the controller.) For simplicity's sake, pretend it is the index of the <code>bar</code> in the <code>@foo.bars</code> list. </p> <p>(I am aware that if this was the case I could use the :collection => @foo.bars to enable bar_counter... this doesn't appear to function in my tests but I have seen docs for it.)</p> <p>My question -- how do I pass a variable into the partial such that I can keep and edit the state? Naively, I assumed that doing something like </p> <pre><code>&lt;% @tmp = {:index =&gt; 1} %&gt; %= f.render_associated_form(@foo.bars, :new =&gt; 5, :locals =&gt; {:tmp =&gt; @tmp}) %&gt; #goes in the view &lt;%= tmp[:index] += 1 %&gt; </code></pre> <p>would work. <code>tmp</code> gets passed appropriately but calling [] throws "Uh oh, you just called a method on nil". Surprisingly to me, I can do tmp.inspect, tmp.class, etc to look at the Hash, and these have the results I would expect. But tmp[:index] or tmp[:anything_I_want] cause it to blow up. </p> <p>Making <code>tmp</code> an array had similar results.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/264832/how-to-keep-track-of-information-over-several-calls-to-render-partial/271059#271059 1 Answer by Patrick McKenzie for How to keep track of information over several calls to render :partial Patrick McKenzie 2008-11-07T02:31:31Z 2008-11-07T02:31:31Z <p>I ended up solving this in a thoroughly Rails fashion -- patching :attribute_fu to meet my needs. Hopefully I'll be able to release my patches to the community fairly soon.</p> http://stackoverflow.com/questions/215885/using-the-aftersave-callback-to-modify-the-same-object-without-triggering-the-ca/216762#216762 1 Answer by Patrick McKenzie for Using the after_save callback to modify the same object without triggering the callback again (recursion) Patrick McKenzie 2008-10-19T18:16:16Z 2008-10-19T18:16:16Z <p>This code doesn't even attempt to address threading or concurrency issues, much like Rails proper. If you need that feature, take heed!</p> <p>Basically, the idea is to keep a count at what level of recursive calls of "save" you are, and only allow after_save when you are exiting the topmost level. You'll want to add in exception handling, too.</p> <pre><code>def before_save @attempted_save_level ||= 0 @attempted_save_level += 1 end def after_save if (@attempted_save_level == 1) #fill in logic here save #fires before_save, incrementing save_level to 2, then after_save, which returns without taking action #fill in logic here end @attempted_save_level -= 1 # reset the "prevent infinite recursion" flag end </code></pre> http://stackoverflow.com/questions/202974/what-is-your-version-control-and-deployment-workflow-with-rails/203496#203496 2 Answer by Patrick McKenzie for What is your version control and deployment workflow with Rails? Patrick McKenzie 2008-10-15T02:09:28Z 2008-10-15T02:09:28Z <p>Using Windows Vista and a fresh Ubuntu install at Slicehost.</p> <ol> <li>Create a new empty project in NetBeans.</li> <li>Fire deprec (<a href="http://www.deprec.org" rel="nofollow">http://www.deprec.org</a>) to install the Rails stack, including version control, on the target slice.</li> <li>Commit the empty project to Subversion.</li> <li>Using Capistrano, test deploy.</li> <li>Begin actual development after I've verified that I can access the Rails start page and, possibly, scaffolding. (This is really not necessary because I've done this several times and the software works like it says it does.)</li> </ol> <p>Deprec is seriously magic -- it takes the time it takes to clean-start a Rails project (including server configuration and all that jazz) from about a working day down to about an hour -- and that is an hour where you can be doing coding while everything installs.</p> http://stackoverflow.com/questions/186313/how-to-create-nestable-draggables-in-scriptaculous 1 How to create nestable draggables in Scriptaculous? Patrick McKenzie 2008-10-09T07:53:25Z 2008-10-13T04:08:25Z <p>I'm using the Scriptaculous library to slap an appealing UI on an application which helps an enduser build lists. Let's say its for pizza creation.</p> <p>To fill out an order, you drag a size of pizza from the pizza palette into the orders droppable. Once it is put in there, it gets replaced with a new div which is both draggable (because you can junk it by moving it back to the palette) and droppable (because you can add ingredients to it). </p> <p>You can then add ingredients from your ingredients palette to any of the pizzas you have sitting in the group of orders. </p> <p>I've successfully implemented these bits and everything works fine. The stickler: if I attempt to drag and drop the ingredient from a placed pizza, which is properly marked as draggable and which, for good measure, is z-positioned above the pizza, it instead grabs the pizza wholesale. This makes it impossible for me to undo ingredient selections, which is a key feature for this screen.</p> <p>Any suggestions on how I can get this to do what I want? Ideally I'd like to keep the simple drag-on, drag-off UI as it is <em>worlds</em> more intuitive than what we were using previously. (A multi-stage HTML form... shudder...)</p> http://stackoverflow.com/questions/1285183/retrieve-from-multiple-relations-ruby-on-rails/1285976#1285976 Comment by Patrick McKenzie on Retrieve from multiple relations, ruby on rails Patrick McKenzie 2009-08-17T05:32:43Z 2009-08-17T05:32:43Z My bad, wasn't thinking clearly about the DISTINCT issue. I've updated my query to make it not need the second get. Post:find(@post_ids) is probably not working because it should be Post.find(@post_ids). http://stackoverflow.com/questions/904022/cron-job-on-ubuntu-hardy-executing-but-not-deleting-files-as-expected/904161#904161 Comment by Patrick McKenzie on Cron Job on Ubuntu Hardy Executing But Not Deleting Files As Expected Patrick McKenzie 2009-05-24T17:01:40Z 2009-05-24T17:01:40Z I wish I could upvote you a million times. Thank you. http://stackoverflow.com/questions/700338/reversed-hasmany-in-rails/700483#700483 Comment by Patrick McKenzie on Reversed has_many in Rails Patrick McKenzie 2009-03-31T08:04:26Z 2009-03-31T08:04:26Z I think you will find that if the user has one green item and one red item that they will still be picked up by that query. Haven't tested it, though. http://stackoverflow.com/questions/543961/warm-up-cache-on-deployment Comment by Patrick McKenzie on "Warm Up Cache" on deployment Patrick McKenzie 2009-02-13T03:07:17Z 2009-02-13T03:07:17Z Brilliant idea. I've got nothing to add on how to implement it, but will take a stab at my site and if I get it working I'll release the code. http://stackoverflow.com/questions/279769/convert-to-from-datetime-and-time-in-ruby/280026#280026 Comment by Patrick McKenzie on Convert to/from DateTime and Time in Ruby Patrick McKenzie 2008-11-12T02:30:44Z 2008-11-12T02:30:44Z &quot;Works for me&quot;, ruby 1.9.0, revision 14709. http://stackoverflow.com/questions/186313/how-to-create-nestable-draggables-in-scriptaculous/196688#196688 Comment by Patrick McKenzie on How to create nestable draggables in Scriptaculous? Patrick McKenzie 2008-10-14T09:52:16Z 2008-10-14T09:52:16Z Its a PEBKAC-induced Rails problem ;) http://stackoverflow.com/questions/180290/what-are-the-limits-of-ruby-on-rails/181085#181085 Comment by Patrick McKenzie on What are the limits of ruby on rails? Patrick McKenzie 2008-10-08T06:08:25Z 2008-10-08T06:08:25Z Rails supports connections to DBs/multiple DB servers right out of the box these days. (On a per model or per request basis, your call.) I'm using it right now -- got one postgres running on localhost, and one Oracle DB running on the company BigFreakingOracleBox, no issues whatsoever. http://stackoverflow.com/questions/173309/what-does-a-db-table-created-by-the-rails-framework-look-like/173311#173311 Comment by Patrick McKenzie on What does a db table created by the Rails framework look like? Patrick McKenzie 2008-10-06T06:52:58Z 2008-10-06T06:52:58Z Ixion, you're probably thinking of the famous Blog in 15 Minutes video, which used Migrations to make changes in the database schema that were immediately reflected in the forms onscreen due to scaffolding being used. http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t/165201#165201 Comment by Patrick McKenzie on In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Patrick McKenzie 2008-10-03T01:41:58Z 2008-10-03T01:41:58Z If you provide them, yes. Rails' ActiveSupport supplies en_us localization. When I do apps for my Japanese coworkers, I use the localization support and add in Japan/Japanese behavior. (1日, 2日, etc) http://stackoverflow.com/questions/160954/rails-console-doesnt-automatically-load-models-for-2nd-db/160989#160989 Comment by Patrick McKenzie on Rails Console Doesn't Automatically Load Models For 2nd DB Patrick McKenzie 2008-10-02T05:37:24Z 2008-10-02T05:37:24Z Gaaaaaaaah, Can you tell who does too much Java for his own good? I didn't use the generators because I figured I didn't need the autogenerated migrations, and then I applied the Java &quot;filename = classname + extension&quot; convention without thinking about it. Thanks a million! http://stackoverflow.com/questions/151056/how-does-someone-elevate-themselves-from-good-to-great-in-development/151185#151185 Comment by Patrick McKenzie on How does someone elevate themselves from "good" to "great" in development Patrick McKenzie 2008-09-30T03:49:19Z 2008-09-30T03:49:19Z &gt;&gt; He spent as much time as he could, every day, mornings, during lunches, and evenings, to the greatest extent that he was able, building random things in our implementation language. He ate, breathed, and slept it. &gt;&gt; This does not sound like optimal use of one's time. (Heresy! I know, I know.) http://stackoverflow.com/questions/138496/generating-a-report-by-date-range-in-rails/138810#138810 Comment by Patrick McKenzie on Generating a report by date range in rails Patrick McKenzie 2008-09-26T16:44:20Z 2008-09-26T16:44:20Z I've taken the liberty of expanding my answer to be more helpful to you. http://stackoverflow.com/questions/125467/best-way-to-conditional-redirect/125988#125988 Comment by Patrick McKenzie on Best Way to Conditional Redirect? Patrick McKenzie 2008-09-25T04:23:02Z 2008-09-25T04:23:02Z If you need to persist something saved in the flash for another request (for example, to get it past an error correction step) then you can either choose to explicitly persist it (<code>flash[:foo] = flash[:foo]</code>) or, if it will cause you less pain overall, use session and explicitly clear it when done.