User James A. Rosen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:47:25Z http://stackoverflow.com/feeds/user/1190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1836012/how-do-i-delay-a-jquery-animation-until-after-others-finish 1 How do I delay a jQuery animation until after others finish? James A. Rosen 2009-12-02T21:41:21Z 2009-12-03T01:24:09Z <p>I have a function that does some fairly extensive DOM manipulation, and I want to show a "Loading..." spinner while the function runs:</p> <pre><code>function showFoos() { $('#spinner').show(); bigHairyDOMManipulation(); $('#spinner').hide(); } function bigHairyDOMManipulation() { for (var i=0; i &lt; arrayOfFoos.length; i++){ buildFooBox(arrayOfFoos[i], i); } } function buildFooBox(foo, index) { $('#foos').append( $('&lt;li /&gt;').append(...) .append(...) ... ); } </code></pre> <p>Unfortunately, all of the <code>append()</code> calls return quickly, so even though the view isn't ready, the function is done and the spinner hides.</p> <p>I can't think of a good way of chaining all of those appends together into one chain, so I can't just tack the <code>show()</code> on the front and the <code>hide()</code> on the end.</p> <p>Is there another way to force the <code>hide()</code> call to wait for all the other manipulation to occur?</p> http://stackoverflow.com/questions/1836000/how-to-validate-a-models-date-attribute-against-a-specific-range-evaluated-at-r/1836795#1836795 0 Answer by James A. Rosen for How to validate a model's date attribute against a specific range (evaluated at run time) James A. Rosen 2009-12-03T00:06:23Z 2009-12-03T00:06:23Z <p>A different solution is to rely on the fact that <code>validates_inclusion_of</code> only requires an <code>:in</code> object that responds to <code>include?</code>. Build a delayed-evaluated range as follows:</p> <pre><code>class DelayedEvalRange def initialize(&amp;range_block) @range_block = range_block end def include?(x) @range_block.call.include?(x) end end class FirstModel validates_inclusion_of :dated_on, :in =&gt; (DelayedEvalRange.new() { ((5.years.ago)..(5.years.from_now)) }) end </code></pre> http://stackoverflow.com/questions/1836000/how-to-validate-a-models-date-attribute-against-a-specific-range-evaluated-at-r/1836107#1836107 1 Answer by James A. Rosen for How to validate a model's date attribute against a specific range (evaluated at run time) James A. Rosen 2009-12-02T21:57:01Z 2009-12-03T00:01:43Z <p>If the validation is the same for each class, the answer is fairly simple: put a validation method in a module and mix it in to each model, then use <code>validate</code> to add the validation:</p> <pre><code># in lib/validates_dated_on_around_now module ValidatesDatedOnAroundNow protected def validate_dated_around_now # make sure dated_on isn't more than five years in the past or future self.errors.add(:dated_on, "is not valid") unless ((5.years.ago)..(5.years.from_now)).include?(self.dated_on) end end class FirstModel include ValidatesDatedOnAroundNow validate :validate_dated_around_now end class SecondModel include ValidatesDatedOnAroundNow validate :validate_dated_around_now end </code></pre> <p>If you want different ranges for each model, you probably want something more like this:</p> <pre><code>module ValidatesDateOnWithin def validates_dated_on_within(&amp;range_lambda) validates_each :dated_on do |record, attr, value| range = range_lambda.call record.errors.add(attr_name, :inclusion, :value =&gt; value) unless range.include?(value) end end end class FirstModel extend ValidatesDatedOnWithin validates_dated_on_within { ((5.years.ago)..(5.years.from_now)) } end class SecondModel extend ValidatesDatedOnWithin validates_dated_on_within { ((2.years.ago)..(2.years.from_now)) } end </code></pre> http://stackoverflow.com/questions/1835915/array-to-hash-of-key-value-pairs-in-ruby/1836073#1836073 4 Answer by James A. Rosen for Array to hash of key value pairs in ruby James A. Rosen 2009-12-02T21:52:27Z 2009-12-02T21:52:27Z <p>You can do it in one line with <code>inject</code>:</p> <pre><code>a = [{:id =&gt; 1, :name =&gt; 'first'}, {:id =&gt; 2, :name =&gt; 'second'}, {:id =&gt; 3, :name =&gt; 'third'}] a.inject({}) { |sum, h| sum.merge({ h[:name] =&gt; h[:id]}) } # =&gt; {"third" =&gt; 3, "second" =&gt; 2, "first" =&gt; 1} </code></pre> http://stackoverflow.com/questions/1828228/why-does-jquery-insist-my-plain-text-is-not-well-formed 1 Why does jQuery insist my plain text is not "well-formed"? James A. Rosen 2009-12-01T19:12:35Z 2009-12-01T19:43:57Z <p>I'm making an AJAX call to retrieve some plain text:</p> <pre><code>$.ajax({ url: "programData.txt", type: "GET", dataType: "text", cache: false, success: processData }); </code></pre> <p>When I make the request, though, I get the following error:</p> <blockquote> <p>Error: not well-formed Source File: file:///projects/foo/programData.txt?_=1259694590361 Line: 1, Column: 2</p> </blockquote> <p>Why is jQuery trying to process my plain text and how do I get it to stop?</p> http://stackoverflow.com/questions/1826713/how-do-i-fix-phonegap-build-errors 0 How do I fix PhoneGap build errors? James A. Rosen 2009-12-01T14:56:13Z 2009-12-01T16:17:59Z <p>I am trying to build a <a href="http://phonegap.com/" rel="nofollow">PhoneGap</a>-based iPhone application, but I keep getting the following two errors:</p> <pre><code>./build-phonegap.sh: line 6: ./configure: No such file or directory cp: lib/iphone/phonegap-min.js: No such file or directory </code></pre> <p>I built and installed the latest version of PhoneGap from the source on GitHub. I have checked to make sure that the <code>PHONEGAPLIB</code> variable is indeed set in XCode.</p> <p>Where do I get the files listed? Where do I put them (to what are those paths relative)? And why aren't they already there?</p> <p><strong>Later</strong></p> <p>It seems the problem was that the project had been created with one version of PhoneGap (one that doesn't reference an external <code>lib</code> directory), but I was trying to run it with a newer one. Recreating the project with my latest version and copying over the <code>www</code> directory fixed the problem.</p> http://stackoverflow.com/questions/1791639/regular-expression-in-ruby-to-convert-uppercase-title-into-lowercase/1791922#1791922 2 Answer by James A. Rosen for Regular expression in Ruby to convert uppercase title into lowercase James A. Rosen 2009-11-24T18:15:36Z 2009-11-24T18:15:36Z <p>If you're using Rails (really all you need is ActiveSupport, which is part of Rails), you can use <code>titleize</code>:</p> <pre><code>"MY STRING HERE".titlize # =&gt; "My String Here" </code></pre> http://stackoverflow.com/questions/1781322/how-do-i-render-all-comments-in-a-rails-view/1791039#1791039 0 Answer by James A. Rosen for How do I render all Comments in a Rails view? James A. Rosen 2009-11-24T16:02:44Z 2009-11-24T16:02:44Z <p>I tend to use a helper for this:</p> <pre><code># in app/helpers/application_helper.rb: def sidebar_comments(force_refresh = false) @sidebar_comments = nil if force_refresh @sidebar_comments ||= Comment.find(:all, :order =&gt; 'created_at DESC', :limit =&gt; 10) # or ||= Comment.recent.limited(10) if you are using nifty named scopes end # in app/views/layouts/application.html.erb: &lt;div id='sidebar'&gt; &lt;ul id='recent_comments'&gt; &lt;% sidebar_comments.each do |c| %&gt; &lt;li class='comment'&gt; &lt;blockquote cite="&lt;%= comment_path(c) -%&gt;"&gt;&lt;%= c.text -%&gt;&lt;/blockquote&gt; &lt;/li&gt; &lt;% end %&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby/1790635#1790635 1 Answer by James A. Rosen for Why can't I call javac using the Backquotes/Backticks approach in Ruby? James A. Rosen 2009-11-24T15:01:08Z 2009-11-24T15:01:08Z <p>It seems that Ruby on Windows doesn't like the</p> <pre><code>`command -with-args` </code></pre> <p>syntax. You might try</p> <pre><code>%x[javac -help] </code></pre> <p>or</p> <pre><code>%x[javac #{source_file}] </code></pre> http://stackoverflow.com/questions/352646/how-can-i-set-globals-to-jslint-to-ignore-for-a-whole-set-of-files 0 How can I set globals to JSLint to ignore for a whole set of files? James A. Rosen 2008-12-09T13:04:48Z 2009-11-23T13:42:34Z <p>I'd like to run JSLint4Java as part of my build process. I have about 1000 JS files in a library, and don't really want to add a</p> <pre><code>/*globals foo, bar, baz */ </code></pre> <p>header to each of them -- especially since many of them are from an external library (Dojo). If I don't add the header, though, JSLint complains about the same five globals on nearly every single file. Is there a way to tell JSLint to ignore them? Some things I've thought of so far:</p> <ol> <li><p>Some sort of AntFileMap task that creates a virtual directory hierarchy that's an exact copy of another hierarchy, but has a filter applied to each file (in this case, prepend with a <code>/*globals */</code> header).</p></li> <li><p>Hack JSLint4Java to accept a set of <code>globals</code> which it prepends as a comment to the beginning of every file it processes.</p></li> </ol> <p>I've never seen anything like (1). (2) seems relatively easy, but I'd prefer to use original tools if possible. Any better suggestions?</p> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming 125 What's the most egregious pop culture perversion of programming? James A. Rosen 2008-10-06T16:35:35Z 2009-11-19T08:15:39Z <p>I'm thinking along the lines of the virtual world representation in <a href="http://www.imdb.com/title/tt0113243/" rel="nofollow">Hackers</a>.</p> http://stackoverflow.com/questions/727537/how-do-i-automate-a-last-modified-text-field-in-an-rsm-diagram 0 How do I automate a "last modified" text field in an RSM diagram? James A. Rosen 2009-04-07T20:51:19Z 2009-11-18T04:42:43Z <p>My team is using Rational Software Modeler to build some UML diagrams. Each diagram has a little text box stating a human-readable title, the last-modified date, and some other information about the diagram.</p> <p>Is there a way to automatically keep the last-modified date up to date? A macro, perhaps? Or some sort of plugin to Eclipse?</p> http://stackoverflow.com/questions/1742030/how-do-i-do-distributed-uml-development-ala-foss 0 How do I do distributed UML development (à la FOSS)? James A. Rosen 2009-11-16T12:54:01Z 2009-11-18T04:15:51Z <p>I have a UML project (built in IBM's Rational System Architect/Modeler, so stored in their XML format) that has grown quite large. Additionally, it now contains several pieces that other groups would like to re-use. I come from a software development (especially FOSS) background, and am trying to understand how to use that as an analogy here. The problem I am grappling with is similar to the <a href="http://en.wikipedia.org/wiki/Fragile%5Fbase%5Fclass" rel="nofollow">Fragile Base Class</a> problem.</p> <p>Let me start with how it works in an object-oriented (say, Java or Ruby) FOSS ecosystem:</p> <ol> <li>Group 1 publishes some "core" package, say "<code>net/smtp</code> version 1.0"</li> <li>Group 2 includes Group 1's <code>net/smtp</code> 1.0 package in the vendor library of their software project</li> <li>At some point, Group 1 creates a new 2.0 branch of <code>net/smtp</code> that breaks backwards compatibility (say, it removes an old class or method, or moves a class from one package to another). They tell users of the 1.0 version that it will be deprecated in one year.</li> <li>Group 2, when they have the time, updates to <code>net/smtp</code> 2.0. When they drop in the new package, their compiler (or test suite, for Ruby) tells them about the incompatibility. They do have to make some manual changes, but all of the changes are in the code, in plain text, a medium with which they are quite familiar. Plus, they can often use their IDE's (or text editor's) "global-search-and-replace" function once they figure out what the fixes are.</li> </ol> <p>When we try to apply this model to UML in RSA, we run into some problems. RSA supports some fairly powerful refactorings, but they seem to only work if you have write access to <em>all</em> of the pieces. If I rename a class in one package, RSA can rename the references, but only at the same time. It's very difficult to look at the underlying source (the XML) and figure out what's broken. To fix such a problem in the RSA editor itself means tons of clicking on things -- there is no good equivalent of "global-search-and-replace," at least not after an incomplete refactor.</p> <p>They real sticking point seems to be that RSA assumes that you want to do all your editing using their GUI, but that makes certain operations prohibitively difficult.</p> <p>Does anyone have examples of open-source UML projects that have overcome this problem? What strategies do they use for communicating changes?</p> http://stackoverflow.com/questions/1489083/how-do-i-prevent-a-builder-template-from-escaping-a-url-in-an-attribute-value 0 How do I prevent a Builder template from escaping a URL in an attribute value? James A. Rosen 2009-09-28T20:04:56Z 2009-11-11T11:00:05Z <p>I have a Rails Builder template:</p> <pre><code># in app/views/foos/index.xml.builder: xml.Module do |mod| ... mod.Content :type =&gt; 'url', :href =&gt; foos_url(:bar =&gt; 'baz', :yoo =&gt; 'hoo') end </code></pre> <p>(It creates the XML for an OpenSocial Module file, but that's not important.)</p> <p>The problem is that the rendered XML looks like this:</p> <pre><code>&lt;Module&gt; ... &lt;Content type="url" href="http://myapp.com/foos?bar=baz&amp;amp;amp;yoo=hoo"/&gt; &lt;/Module&gt; </code></pre> <p>That URL suffix should be "<code>bar=baz&amp;yoo=hoo</code>." How do I keep Builder from escaping the amerpsand?</p> <p><strong>Later</strong></p> <p>Perhaps the URL suffix should be "<code>bar=baz&amp;amp;yoo=hoo</code>" in the source for XML-validity rules, but certainly it shouldn't be <em>double</em>-escaped, should it?</p> http://stackoverflow.com/questions/1709314/rails-ruby-how-to-rescue-actionviewtemplateerror/1711774#1711774 1 Answer by James A. Rosen for rails/ruby - how to rescue ActionView::TemplateError James A. Rosen 2009-11-10T22:42:29Z 2009-11-10T22:42:29Z <p>Along the lines of <a href="http://stackoverflow.com/questions/1709314/rails-ruby-how-to-rescue-actionviewtemplateerror/1709377#1709377">flyfishr64's answer</a>, there's also the lovely <a href="http://getexceptional.com/" rel="nofollow">Exceptional</a></p> http://stackoverflow.com/questions/1180474/what-is-the-maximum-value-for-a-compound-couchdb-key 2 What is the maximum value for a compound CouchDB key? James A. Rosen 2009-07-24T22:25:19Z 2009-11-10T18:45:24Z <p>I'm using what seems to be a common trick for creating a join view:</p> <pre><code>// a Customer has many Orders; show them together in one view: function(doc) { if (doc.Type == "customer") { emit([doc._id, 0], doc); } else if (doc.Type == "order") { emit([doc.customer_id, 1], doc); } } </code></pre> <p>I know I can use the following query to get a single <code>customer</code> and all related <code>Order</code>s:</p> <pre><code>?startkey=["some_customer_id"]&amp;endkey=["some_customer_id", 2] </code></pre> <p>But now I've tied my query <em>very</em> closely to my view code. Is there a value I can put where I put my "<code>2</code>" to more clearly say, "I want <em>everything</em> tied to this Customer"? I think I've seen</p> <pre><code>?startkey=["some_customer_id"]&amp;endkey=["some_customer_id", {}] </code></pre> <p>But I'm not sure that <code>{}</code> is <em>certain</em> to sort <em>after</em> everything else.</p> <p>Credit to <a href="http://www.cmlenz.net/archives/2007/10/couchdb-joins" rel="nofollow">cmlenz</a> for the join method.</p> <p>Further clarification from the <a href="http://wiki.apache.org/couchdb/View%5Fcollation" rel="nofollow">CouchDB wiki page on collation</a>:</p> <blockquote> <p>The query <code>startkey=["foo"]&amp;endkey=["foo",{}]</code> will match most array keys with "foo" in the first element, such as <code>["foo","bar"]</code> and <code>["foo",["bar","baz"]]</code>. However it will not match <code>["foo",{"an":"object"}]</code></p> </blockquote> <p>So <code>{}</code> is <em>late</em> in the sort order, but definitely not <em>last</em>.</p> http://stackoverflow.com/questions/1704018/why-would-the-netldap-gem-prevent-tests-from-running/1705031#1705031 1 Answer by James A. Rosen for Why would the Net::LDAP gem prevent tests from running? James A. Rosen 2009-11-10T01:03:01Z 2009-11-10T01:03:01Z <p>Is <code>rake</code> running in the same Ruby environment as <code>gem</code>? Did you specify the correct <code>lib</code> directory?</p> <pre><code>config.gem 'ruby-net-ldap', :version =&gt; '0.0.4', :lib =&gt; 'net/ldap' </code></pre> http://stackoverflow.com/questions/1645007/how-can-i-encrypt-coredata-contents-on-an-iphone 1 How can I encrypt CoreData contents on an iPhone James A. Rosen 2009-10-29T16:39:17Z 2009-11-09T01:17:09Z <p>I have some information I'd like to store statically encrypted on an iPhone application. I'm new to iPhone development, some I'm not terribly familiar with CoreData and how it integrates with the views. I have the data as JSON, though I can easily put it into a SQLITE3 database or any other backing data format. I'll take whatever is easiest (a) to encrypt and (b) to integrate with the iPhone view layer.</p> <p>The user will need to enter the password to decrypt the data each time the app is launched. The purpose of the encryption is to keep the data from being accessible if the user loses the phone.</p> <p>For speed reasons, I would prefer to encrypt and decrypt the entire file at once rather than encrypting each individual field in each row of the database.</p> <p>Note: this <em>isn't</em> the same idea as <a href="http://stackoverflow.com/questions/929744/encrypting-sqlite-database-file-in-iphone-os">Question 929744</a>, in which the purpose is to keep the user from messing with or seeing the data. The data should be perfectly transparent when in use.</p> <p>Also note: I'm willing to use <a href="http://www.mobileorchard.com/tutorial-iphone-sqlite-encryption-with-sqlcipher/" rel="nofollow">SQLCipher</a> to store the data, but would prefer to use things that already exist on the iPhone/CoreData framework rather than go through the lengthy build/integration process involved.</p> http://stackoverflow.com/questions/1689111/how-do-i-combine-font-face-and-media-declarations 1 How do I combine @font-face and @media declarations? James A. Rosen 2009-11-06T17:33:23Z 2009-11-06T18:20:00Z <p>I'd like to build a common typography stylesheet with a very small number of selectors. As such, I'd far prefer to use <code>@media</code> sections for the various versions rather than create different files, each with only a few lines of content.</p> <p>I'd also like to add some <code>@font-face</code> declarations, but I'd prefer not to force mobile users to download the fonts given their limited bandwidth.</p> <p>Can I put the <code>@font-face</code> declaration within the <code>@media</code> block or do they have to both be top-level? If the latter, how can I tell the mobile browsers they don't need to bother downloading the font?</p> http://stackoverflow.com/questions/1687236/how-to-use-common-namedscope-for-all-activerecord-models/1688058#1688058 1 Answer by James A. Rosen for How to use common named_scope for all ActiveRecord models James A. Rosen 2009-11-06T14:47:07Z 2009-11-06T14:47:07Z <p>There's also <a href="http://github.com/thoughtbot/pacecar" rel="nofollow">Thoughtbot's Pacecar</a>, which adds a bunch of very common named scopes to every model. It might come with what you're looking for. If you need something custom, though, <a href="http://stackoverflow.com/questions/1687236/how-to-use-common-namedscope-for-all-models/1687438#1687438">Casper Fabricius</a> has the right idea.</p> http://stackoverflow.com/questions/1684023/how-do-i-install-a-development-iphone-app-on-my-phone-for-testing 0 How do I install a development iPhone app on my phone for testing? James A. Rosen 2009-11-05T22:15:25Z 2009-11-06T00:02:08Z <p>I have an iPhone application built as an <code>.ipa</code> file. I also have my device registered on my Apple Developer Connection account. I downloaded the <code>.mobileprovision</code> and dragged both it and the <code>.ipa</code> into iTunes. The app shows up fine in iTunes. When I try to sync, though, I get</p> <blockquote> <p>The application "FUBAR" was not installed on the iPhone "My Phone" because the application signature is not valid.</p> </blockquote> <p>What am I missing?</p> http://stackoverflow.com/questions/1646789/how-do-i-do-a-view-transition-in-an-iphone-app-without-allowing-back 0 How do I do a View Transition in an iPhone app without allowing back? James A. Rosen 2009-10-29T21:49:34Z 2009-10-29T22:31:12Z <p>This is a <strong>total noob question</strong>.</p> <p>I have a starting view -- it's very simple: just some text and a button. When the user clicks the button, I want to go to the real "meat" of the application, which is a Navigation/Table View. How do I connect the button on the <code>IntroViewController</code> to a transition to the <code>RootViewController</code>? I don't want to make the <code>IntroViewController</code> a full Navigation controller and <code>push</code> the new view because that lets the user go back. I'm looking for some combination of code snippets and Interface Builder instructions.</p> http://stackoverflow.com/questions/243701/how-can-i-see-the-sql-activerecord-generates 7 How can I see the SQL ActiveRecord generates? James A. Rosen 2008-10-28T15:18:57Z 2009-10-27T23:24:48Z <p>I'd like to check a few queries generated by ActiveRecord, but I don't need to actually run them. Is there a way to get at the query before it returns its result?</p> http://stackoverflow.com/questions/1623628/does-it-make-sense-to-create-a-ruby-gem-that-consists-of-only-rails-template-part/1627706#1627706 0 Answer by James A. Rosen for Does it make sense to create a Ruby gem that consists of only Rails template partials? James A. Rosen 2009-10-26T22:31:29Z 2009-10-26T22:31:29Z <p>You <em>can</em> easily add partials and other HAML, Builder, or ERB views. The following structure should work:</p> <pre><code># in my_gem/rails/init.rb ActionController::Base.append_view_path(File.expand_path(File.join(File.dirname(__FILE__), '..', 'views'))) # in my_gem/views/my_gem/_some_partial.html.erb This is a partial from MyGem! # in your_rails_app/views/some_controller/some_view.html.erb: &lt;%= render :partial =&gt; '/my_gem/some_partial' -%&gt; </code></pre> <p>That doesn't directly answer your question about static files, though. Often the best bet is a generator that copies the CSS, JS, and other files to your public directory. Alternatively, you could use a <code>StaticFilesController</code> and put the static files in that views directory.</p> http://stackoverflow.com/questions/829904/whats-the-difference-between-a-stereotype-and-a-class-inheritance-in-uml 2 What's the difference between a stereotype and a class inheritance in UML? James A. Rosen 2009-05-06T14:32:53Z 2009-10-24T13:13:15Z <p>I'm confused about the difference between something being a "stereotype" and being a "superclass" in UML.</p> <p>Let's say I want to create a diagram involving a "<code>WidgetMaker</code>." <code>WidgetMaker</code> is clearly an <code>Actor</code> so the UML standard is to stereotype it actor:</p> <pre><code>&lt;&lt;Actor&gt;&gt; WidgetMaker </code></pre> <p>But I grew up programming in the Java/Ruby/C++ world. In that world, the relationship is:</p> <pre><code>class Actor end class WidgetMaker &lt; Actor end </code></pre> <p>That looks like this in UML:</p> <pre><code> Actor ^ | WidgetMaker </code></pre> <p>So my question is: why does UML have stereotypes at all when you can just as easily model those concepts using class inheritance, which it <em>also</em> has.</p> <p>Once we have more "kinds" of actors, the question becomes even murkier:</p> <pre><code> Actor ^ | ------------------------ | | | Person Robot Group ^ | WidgetMaker </code></pre> <p>versus</p> <pre><code>&lt;&lt;Actor&gt;&gt; &lt;&lt;Person&gt;&gt; WidgetMaker </code></pre> http://stackoverflow.com/questions/1610331/paperclip-gravatar/1614665#1614665 0 Answer by James A. Rosen for paperclip + gravatar James A. Rosen 2009-10-23T16:49:37Z 2009-10-23T16:49:37Z <p>If you continue to have trouble, you could try the <a href="http://github.com/gcnovus/avatar" rel="nofollow">Avatar</a> gem, which supports a chain of different Avatar methods, including both Paperclip and Gravatar.</p> <p>NB: this is a bit of a shameless plug, since I wrote the thing.</p> http://stackoverflow.com/questions/350753/how-can-i-limit-git-log-or-svn-log-to-revisions-that-regard-one-particular-file 1 How can I limit git log (or svn log) to revisions that regard one particular file? James A. Rosen 2008-12-08T20:21:27Z 2009-10-22T15:35:47Z <p>I'd like to see a series of diffs for a file. I'd settle for simply the log listing restricted to only those entries that modified the file.</p> http://stackoverflow.com/questions/929952/how-do-i-tell-libxml-ruby-about-external-entity-files 1 How do I tell libxml-ruby about external entity files? James A. Rosen 2009-05-30T15:33:24Z 2009-10-19T22:00:02Z <p>I'm trying to validate using <a href="http://libxml.rubyforge.org/rdoc/classes/LibXML/XML/Dtd.html" rel="nofollow">libxml-ruby's <code>DTD#validate</code></a>, but I keep getting the following warnings:</p> <pre><code>Warning: failed to load external entity "xhtml-lat1.ent" at :29. Warning: failed to load external entity "xhtml-symbol.ent" at :34. Warning: failed to load external entity "xhtml-special.ent" at :39. </code></pre> <p>I wouldn't mind, except I use things like <code>&amp;hellip;</code>, which are defined in those, causing my XHTML to appear to be invalid.</p> <p>How do I tell the DTD about those extra files? I tried running from a directory containing the <code>.dtd</code> file and all of the <code>.ent</code>s, but that doesn't help.</p> http://stackoverflow.com/questions/1575358/class-variables-in-rails-views/1576035#1576035 0 Answer by James A. Rosen for Class variables in rails views? James A. Rosen 2009-10-16T01:34:55Z 2009-10-16T01:34:55Z <p>The more common approach is to wrap the class variable in a helper method:</p> <pre><code># in /app/controllers/foo_controller.rb: class FooController &lt; ApplicationController @@bar = 'baz' def my_action end helper_method :bar def bar @@bar end end # in /app/views/foo/my_action.html.erb: It might be a class variable, or it might not, but bar is "&lt;%= bar -%&gt;." </code></pre> http://stackoverflow.com/questions/1555006/how-do-i-tell-rubys-openssl-library-to-ignore-a-self-signed-certificate-error 0 How do I tell Ruby's OpenSSL library to ignore a self-signed certificate error? James A. Rosen 2009-10-12T14:48:09Z 2009-10-16T01:12:31Z <p>I'm trying to use Ruby's SOAP support as follows:</p> <pre><code>SERVICE_URL = 'https://...' ... def create_driver ::SOAP::WSDLDriverFactory.new(SERVICE_URL).create_rpc_driver driver.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE driver.options['protocol.http.ssl_config.client_cert'] = @certificate_path driver end </code></pre> <p>but the call to <code>new(SERVICE_URL)</code> blows up with "<code>OpenSSL::SSL::SSLError: certificate verify failed</code>." How do I do the equivalent of <code>driver.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE</code> for the first call to retrieve the WSDL itself?</p> http://stackoverflow.com/questions/1836000/how-to-validate-a-models-date-attribute-against-a-specific-range-evaluated-at-r/1836107#1836107 Comment by James A. Rosen on How to validate a model's date attribute against a specific range (evaluated at run time) James A. Rosen 2009-12-03T00:07:07Z 2009-12-03T00:07:07Z I updated this solution to match the updated use case more closely, but I far prefer my other solution. http://stackoverflow.com/questions/1836012/how-do-i-delay-a-jquery-animation-until-after-others-finish/1836051#1836051 Comment by James A. Rosen on How do I delay a jQuery animation until after others finish? James A. Rosen 2009-12-02T22:10:40Z 2009-12-02T22:10:40Z This is a nasty hack, but it's ingenious! I'll use it if nothing else works. http://stackoverflow.com/questions/1836012/how-do-i-delay-a-jquery-animation-until-after-others-finish Comment by James A. Rosen on How do I delay a jQuery animation until after others finish? James A. Rosen 2009-12-02T22:09:24Z 2009-12-02T22:09:24Z @Crescent Fresh: The <code>show()</code> and <code>hide()</code> calls are animations, are they not? http://stackoverflow.com/questions/1835915/array-to-hash-of-key-value-pairs-in-ruby Comment by James A. Rosen on Array to hash of key value pairs in ruby James A. Rosen 2009-12-02T21:52:44Z 2009-12-02T21:52:44Z You sure can; see my answer using <code>inject</code>. http://stackoverflow.com/questions/1828228/why-does-jquery-insist-my-plain-text-is-not-well-formed/1828248#1828248 Comment by James A. Rosen on Why does jQuery insist my plain text is not "well-formed"? James A. Rosen 2009-12-01T19:23:41Z 2009-12-01T19:23:41Z Indeed, I was trying it over <code>file:&#47;&#47;</code> access. Moving to Apache fixed the problem. http://stackoverflow.com/questions/1826713/how-do-i-fix-phonegap-build-errors Comment by James A. Rosen on How do I fix PhoneGap build errors? James A. Rosen 2009-12-01T15:50:22Z 2009-12-01T15:50:22Z there is no <code>lib</code> directory in my project or in the folder that <code>PHONEGAPLIB</code> points to. Where should it be? And where would it come from? http://stackoverflow.com/questions/1789865/why-cant-i-call-javac-using-the-backquotes-backticks-approach-in-ruby Comment by James A. Rosen on Why can't I call javac using the Backquotes/Backticks approach in Ruby? James A. Rosen 2009-11-27T04:06:49Z 2009-11-27T04:06:49Z what happens when you get the <code>PATH</code> from a Ruby <code>Kernel</code> <code>exec</code> call? As in <code>%x[echo %PATH%]</code>. How does that compare to running the same command directly in your command shell? http://stackoverflow.com/questions/1742030/how-do-i-do-distributed-uml-development-ala-foss/1753590#1753590 Comment by James A. Rosen on How do I do distributed UML development (à la FOSS)? James A. Rosen 2009-11-20T21:08:44Z 2009-11-20T21:08:44Z I have no problem importing a project as an external <code>emx</code> file. The problem is one of maintenance: if your project has a class, say &quot;Twitter::Client,&quot; that I inherit from, and then you rename that class to &quot;MyCompany::Twitter::Client,&quot; I have to click on each of my subclasses (which in my current project could number hundreds) and fix their parent relationship. http://stackoverflow.com/questions/1726404/transliteration-in-ruby Comment by James A. Rosen on Transliteration in ruby James A. Rosen 2009-11-13T15:52:10Z 2009-11-13T15:52:10Z This seems to be an exact duplicate of my earlier question: <a href="http://stackoverflow.com/questions/225471/how-do-i-replace-accented-latin-characters-in-ruby" rel="nofollow" title="how do i replace accented latin characters in ruby">stackoverflow.com/questions/225471/&hellip;</a> http://stackoverflow.com/questions/1718745/need-to-know-how-hash-key-are-handled-in-ruby Comment by James A. Rosen on Need to know how hash key are handled in ruby James A. Rosen 2009-11-12T16:57:40Z 2009-11-12T16:57:40Z I particularly like this in your question: &quot;I know using User class is a bad practice. My question is can someone explain to me when User class is used as key then internally how ruby stores the key.&quot; It shows how an accident lead to a quest for deeper understanding, and it also helps responders stay on-topic (rather than simply saying, &quot;don't use User as a key.&quot;) Very well asked, Roger. http://stackoverflow.com/questions/1180474/what-is-the-maximum-value-for-a-compound-couchdb-key/1707022#1707022 Comment by James A. Rosen on What is the maximum value for a compound CouchDB key? James A. Rosen 2009-11-10T12:58:37Z 2009-11-10T12:58:37Z I don't think so. The article you linked to says that all strings come before all arrays, which in turn come before all Hashes. So [&quot;some_customer_id&quot;, &quot;\uFFFF&quot;] is 'less than' [&quot;some_customer_id&quot;, {}]. http://stackoverflow.com/questions/1689111/how-do-i-combine-font-face-and-media-declarations/1689156#1689156 Comment by James A. Rosen on How do I combine @font-face and @media declarations? James A. Rosen 2009-11-06T17:49:09Z 2009-11-06T17:49:09Z I'm planning on supporting <i>all</i> the media types, so one for each would be hard to maintain. But a separate one for mobile might not be so bad. http://stackoverflow.com/questions/1684023/how-do-i-install-a-development-iphone-app-on-my-phone-for-testing/1684156#1684156 Comment by James A. Rosen on How do I install a development iPhone app on my phone for testing? James A. Rosen 2009-11-05T22:41:28Z 2009-11-05T22:41:28Z That thread definitely got rid of the ad-hoc version, but alas -- still the same error message. At least it eliminates some possibilities. http://stackoverflow.com/questions/1684023/how-do-i-install-a-development-iphone-app-on-my-phone-for-testing/1684066#1684066 Comment by James A. Rosen on How do I install a development iPhone app on my phone for testing? James A. Rosen 2009-11-05T22:32:59Z 2009-11-05T22:32:59Z I did actually drop in an ad-hoc version of the mobileprofile before I tried the one customized for my device. How can I get it out of there? http://stackoverflow.com/questions/1646789/how-do-i-do-a-view-transition-in-an-iphone-app-without-allowing-back/1646802#1646802 Comment by James A. Rosen on How do I do a View Transition in an iPhone app without allowing back? James A. Rosen 2009-10-29T22:15:41Z 2009-10-29T22:15:41Z So how do I set the <code>IntroViewController</code> as the starting view for the <code>RootViewController</code>? Is it done in Interface Builder or in code?