User chrismear - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:58:43Z http://stackoverflow.com/feeds/user/6471 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/908520/rails-dashboard-design-one-controller-action-per-div/910596#910596 0 Answer by chrismear for Rails dashboard design: one controller action per div chrismear 2009-05-26T13:11:12Z 2009-08-13T12:53:20Z <p>I'm not aware of any special Rails tricks for achieving this without using AJAX in the way you've outlined.</p> <p>The simplest way to get the modularity you seek is to put those portions of controller code into separate methods (e.g. <code>set_up_graph1_data</code>, <code>set_up_graph2_data</code>, etc.), which you simply call from your <code>index</code> action to set up the variables for the view.</p> <p>You can put these methods into <code>ApplicationController</code> if you want them available to multiple controllers.</p> <p>As a side note, early on, Rails <em>did</em> used to have a feature called 'components' which would allow you to do exactly what you're asking for here, without having to use AJAX. From your view, you could just render another controller action, inline. However, this feature was removed for performance and design philosophy reasons.</p> http://stackoverflow.com/questions/916457/how-can-i-develop-a-css-based-layout-that-is-100-browser-compatible/916496#916496 0 Answer by chrismear for How can I develop a CSS based layout that is 100% browser compatible? chrismear 2009-05-27T15:44:12Z 2009-05-27T15:44:12Z <p>A common approach these days is to write your CSS so that it works for Firefox (and other modern non-IE browsers), and then add IE-specific fixes using <a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">IE conditional comments</a>.</p> <p>Unfortunately, any page layout that isn't trivially simple is going to run into bugs in IE 6 and IE 7 that can only be solved by giving those browsers slightly different CSS.</p> <p>And at the end of the day, you have to test your HTML/CSS in all the browsers you're targeting; there really is no substitute for this.</p> http://stackoverflow.com/questions/916067/how-do-i-easily-parse-a-url-with-parameters-in-a-rails-test/916389#916389 3 Answer by chrismear for How do I easily parse a URL with parameters in a Rails test? chrismear 2009-05-27T15:25:40Z 2009-05-27T15:25:40Z <p><code>CGI::parse(querystring)</code> will parse a querystring into a hash. Then, <code>CGI::unescape(string)</code> will undo any URL-encoding in the value.</p> <p>Alternatively, you can use <code>Rack::Utils.parse_query</code> and <code>Rack::Utils.unescape</code> if you're on a recent Rack-based version of Rails, and want to be super-modern.</p> <p>I'm not aware of any Rails-specific helper methods that wrap these utility functions, but they're pretty simple to use, and CGI or Rack is already loaded in the Rails environment anyway.</p> http://stackoverflow.com/questions/909785/iphone-memory-management/909904#909904 0 Answer by chrismear for iphone memory management chrismear 2009-05-26T10:03:32Z 2009-05-26T10:03:32Z <p>You're right, <code>autorelease</code> is the standard idiom to use in a situation like this.</p> <p>UIKit actually creates an autorelease pool at the start of each event cycle and releases it at the end, so your autoreleased objects will get cleared up then; they won't be hanging around forever.</p> <p>If you had a loop that was calling this method many times within a single event cycle, you might want to create your own autorelease pool inside that loop so that these objects get released at the end of each iteration, rather than building up loads of objects to be released at the end of the current event cycle.</p> <p>But unless you're doing something like that, or you are encountering another specific out-of-memory situation, UIKit's standard autorelease pools should handle it fine.</p> http://stackoverflow.com/questions/599334/facebook-connect-wont-validate/897870#897870 0 Answer by chrismear for Facebook Connect Won't Validate chrismear 2009-05-22T13:32:09Z 2009-05-22T13:32:09Z <p>As already mentioned, the namespace URL is a red-herring. It's the DTD (as specified in the DOCTYPE) that is validated against.</p> <p>If you really want to validate your pages that use XFBML, you will need to validate against a custom DTD. And, as far as I'm aware, Facebook don't publish a DTD for XFBML themselves, so you'll have to write one yourself (probably only for the elements/attributes that you're actually using).</p> <p>It's not actually as tricky as it sounds; <a href="http://www.alistapart.com/articles/customdtd/" rel="nofollow">here's an <strong>A List Apart</strong> article on how to validate against a custom DTD</a>.</p> <p>Note also that messing around with your DOCTYPE declaration may do funny things with regards to knocking (older) browsers into quirks mode.</p> <p>So you can get it to validate; it's just up to you whether it's worth the hassle.</p> http://stackoverflow.com/questions/851599/where-can-i-find-the-facebook-php-class-reference/897747#897747 1 Answer by chrismear for Where can I find the facebook php class reference? chrismear 2009-05-22T13:08:43Z 2009-05-22T13:08:43Z <p>The Developers wiki basically only documents the raw API. The official PHP library is a thin(-nish) wrapper around this API, and includes some minimal phpdoc documentation in its comments.</p> <p>If you want to generate documentation for the library, you need a copy of <a href="http://www.phpdoc.org/" rel="nofollow">phpDocumentor</a> (and the CLI version of PHP installed). Then you can run:</p> <pre><code>./phpdoc -t /path/to/write/documentation -o HTML:default:default -d /path/to/facebook-platform/php/ </code></pre> <p>or in Windows:</p> <pre><code>php.exe "C:\Path\To\phpdoc" -t C:\Path\For\Documentation -o HTML:default:default -d C:\Path\To\facebook-platform\php </code></pre> <p>to generate some local HTML documentation. But like I say, it's pretty minimal, and there's not much benefit over just reading the documentation inline with the code.</p> http://stackoverflow.com/questions/826691/how-to-consume-json-formatting-with-rubys-activeresource/897674#897674 1 Answer by chrismear for How to consume JSON formatting with ruby's ActiveResource? chrismear 2009-05-22T12:49:13Z 2009-05-22T12:49:13Z <p>Yeah, ActiveResource is currently a bit inflexible when it comes to its data formats.</p> <p>In principle, the idea is you could write yourself a custom format module (e.g. <code>JsonWithRootFormat</code>), based on the <a href="http://github.com/rails/rails/blob/4f291fa528e5faad03def69ae7ac98224ab859db/activeresource/lib/active%5Fresource/formats/json%5Fformat.rb" rel="nofollow"><code>ActiveResource::Formats::JsonFormat</code></a> module, and then specify that as your format in your model:</p> <pre><code>self.format = :json_with_root </code></pre> <p>However, <code>ActiveResource::Base</code> isn't very format-agnostic -- it currently <a href="http://github.com/rails/rails/blob/4f291fa528e5faad03def69ae7ac98224ab859db/activeresource/lib/active%5Fresource/base.rb#L905" rel="nofollow">does a check</a> to see whether you're using <code>XmlFormat</code>, and only passes the root node through if you are.</p> <p>So you could get what you wanted by making your own format module, <em>and</em> monkey-patching <code>ActiveResource::Base</code>, but it's hardly ideal. I'm sure a patch to make <code>Base</code> a bit more format-agnostic would be welcomed, though.</p> http://stackoverflow.com/questions/892942/facebook-connect-dialog-doesnt-auto-close/892996#892996 0 Answer by chrismear for Facebook Connect Dialog Doesn't Auto Close chrismear 2009-05-21T13:44:54Z 2009-05-21T13:44:54Z <p>Is your xd_receiver.html file present and in the right place, as specified in the FB.init call? I think I remember having weird problems like this when I had the relative URL to the xd_receiver.html file wrong, and so it wasn't being found by the browser.</p> http://stackoverflow.com/questions/410623/convert-an-array-into-an-index-hash-in-ruby/411031#411031 2 Answer by chrismear for Convert an array into an index hash in Ruby chrismear 2009-01-04T14:16:18Z 2009-01-04T14:16:18Z <p>I'm fairly certain that there isn't a one-shot clever way to construct this hash. My inclination would be to just be explicit and state what I'm doing:</p> <pre><code>hash = {} array.each{|x| hash[x] = nil} </code></pre> <p>It doesn't look particularly elegant, but it's clear, and does the job.</p> <p>FWIW, your original suggestion (under Ruby 1.8.6 at least) doesn't seem to work. I get an "ArgumentError: odd number of arguments for Hash" error. Hash.[] expects a literal, even-lengthed list of values:</p> <pre><code>Hash[a, 1, b, 2] # =&gt; {a =&gt; 1, b =&gt; 2} </code></pre> <p>so I tried changing your code to:</p> <pre><code>hash = Hash[*array.map {|x| [x, nil]}.flatten] </code></pre> <p>but the performance is dire:</p> <pre><code>#!/usr/bin/ruby -w require 'benchmark' array = (1..100_000).to_a Benchmark.bm(15) do |x| x.report("assignment loop") {hash = {}; array.each{|e| hash[e] = nil}} x.report("hash constructor") {hash = Hash[*array.map {|e| [e, nil]}.flatten]} end </code></pre> <p>gives</p> <pre><code> user system total real assignment loop 0.440000 0.200000 0.640000 ( 0.657287) hash constructor 4.440000 0.250000 4.690000 ( 4.758663) </code></pre> <p>Unless I'm missing something here, a simple assignment loop seems the clearest and most efficient way to construct this hash.</p>