User Pesto - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:53:09Z http://stackoverflow.com/feeds/user/23921 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840488/ruby-operator-precedence-and/1840815#1840815 5 Answer by Pesto for Ruby - Operator precedence ? And/&& Pesto 2009-12-03T15:51:03Z 2009-12-03T15:51:03Z <p>The reason is simple: precedence. As you say, the order is:</p> <ol> <li>&amp;&amp;</li> <li>=</li> <li>and</li> </ol> <p>Since <code>&amp;&amp;</code> has precedence over <code>=</code>, the statement is evaluated like this:</p> <pre><code>if a = (f(2) &amp;&amp; (b = f(4))) then </code></pre> <p>Which results in:</p> <pre><code>if a = (2 &amp;&amp; 4) then </code></pre> <p>When <code>x</code> and <code>y</code> are integers, <code>x &amp;&amp; y</code> returns <code>y</code>. Thus <code>2 &amp;&amp; 4</code> results in <code>a = 4</code>.</p> <p>For comparison's sake, the first one is evaluated like this:</p> <pre><code>if (a = f(2)) and (b = f(4)) then </code></pre> http://stackoverflow.com/questions/1822039/using-and-clause-in-head-of-a-prolog-statement/1822211#1822211 1 Answer by Pesto for Using And clause in HEAD of a prolog statement. Pesto 2009-11-30T20:26:41Z 2009-11-30T20:26:41Z <p>You can't combine multiple heads. If you want <code>edu(X)</code> and <code>rich(X)</code> to be true when <code>member(X)</code> is true, you have to define them separately ("every member of this club is educationed" and "every member of this club is rich"):</p> <pre><code>edu(X) :- member(X). rich(X) :- member(X). </code></pre> <p>The tricky part is that your original statement is not well-formed. It says that some members may be rich but not educated or vice versa. This is problematic. For example, let's take the naive case that if a member isn't rich, he's educated, and the reverse:</p> <pre><code>edu(X) :- member(X), \+ rich(X). rich(X) :- member(X), \+ edu(X). </code></pre> <p>Now, according to these rules, nobody is automatically rich <em>and</em> educated. So long as we define every member as at least one of the two, this is fine. However, consider these facts:</p> <pre><code>member(alice). member(bob). member(charlie). member(dave). rich(alice). edu(bob). rich(charlie). edu(charlie). </code></pre> <p>In this case, <code>rich(alice)</code> works fine, because it's a fact. <code>edu(alice)</code> will result in <code>no</code>. The reverse is true for bob. With charlie, we've defined both as facts, so both are true. But what about dave? Both <code>edu(dave)</code> and <code>rich(dave)</code> refer back to the other, creating an infinite recursion. Without any further knowledge of what you're doing, the best we can do to resolve this is to default either <code>edu(X)</code> or <code>rich(X)</code> to true:</p> <pre><code>edu(X) :- member(X). rich(X) :- member(X), \+ edu(X). </code></pre> <p>Now everyone is assumed to be educated unless we explicitly declare otherwise. You could do the same thing defaulting to rich if you preferred. Short of additional information, this is the best you can do.</p> http://stackoverflow.com/questions/1792715/using-hash-tables-as-function-inputs/1792787#1792787 3 Answer by Pesto for Using Hash Tables as function inputs Pesto 2009-11-24T20:39:46Z 2009-11-24T20:39:46Z <p>First of all, you should chide them for using strings instead of symbols for hash keys.</p> <p>One issue with using a hash is that you then have to check that all the appropriate keys are in it. This makes it useful for optional parameters, but for mandatory one, why not use the built-in functionality of the language? For example, with their method, what happens if I do this: </p> <pre><code>Apple.new( {"commonName"=&gt;commonName, "volume"=&gt;volume} ) </code></pre> <p>Whereas, with <code>Apple.new(commonName, volume)</code>, you know you'll get an ArgumentError.</p> http://stackoverflow.com/questions/1761148/where-are-methods-defined-at-the-ruby-top-level/1766131#1766131 2 Answer by Pesto for Where are methods defined at the ruby top level? Pesto 2009-11-19T19:59:13Z 2009-11-20T15:02:49Z <p>First of all, this behavior and the underlying reasoning have always existed; it's nothing new to 1.9. The technical reason it happens is because <code>main</code> is special and treated differently than any other object. There's no fancy explanation available: it behaves that way because it was designed that way.</p> <p>Okay, but why? What's the reasoning for <code>main</code> to be magical? Because Ruby's designer Yukihiro Matsumoto thinks it <a href="http://groups.google.com/group/comp.lang.ruby/browse%5Fthread/thread/7bb7b451a8f3cca7/98c4c62127b9d945" rel="nofollow">makes the language better</a> to have this behavior:</p> <blockquote> <blockquote> <p>Is so, why are top-level methods not made singleton-methods on this object, instead of being pulled in as instance methods on the Object class itself (and hence into all other classes i.e. more namespace pollution than is usually intended). This would still allow top-level methods to call other top-level methods. And if the top-level object were referred to by some constant like Main, then those methods could be called from anywhere with Main.method(...).</p> </blockquote> <p>Do you really wish to type "Main.print" everywhere?</p> </blockquote> <p>Further on in the discussion, he explains that it behaves this way because he feels the "assumption is natural."</p> <h2>EDIT:</h2> <p>In response to your comment, your question is aimed at why main's eigenclass seems to report <code>hello</code> as a private instance method. The catch is that none of the top-level functions are actually added to <code>main</code>, but directly to <code>Object</code>. When working with eigenclasses, the <code>instance_methods</code> family of functions always behave as if the eigenclass is still the original class. That is, methods defined in the class are treated as being defined directly in the eigenclass. For example:</p> <pre><code>class Object private def foo "foo" end end self.send :foo # =&gt; "foo" Object.private_instance_methods(false).include? :foo # =&gt; true self.meta.private_instance_methods(false).include? :foo # =&gt; true class Bar private def bar "bar" end end bar = Bar.new bar.send :bar # =&gt; "bar" Bar.private_instance_methods(false).include? :bar # =&gt; true bar.meta.private_instance_methods(false).include? :bar # =&gt; true </code></pre> <p>We can add a method directly to <code>main</code>'s eigenclass, though. Compare your original example with this:</p> <pre><code>def self.hello; "hello world"; end Object.instance_methods.include? :hello # =&gt; false self.meta.instance_methods.include? :hello # =&gt; true </code></pre> <p>Okay, but what if we really want to know that a given function is defined on the eigenclass, not the original class?</p> <pre><code>def foo; "foo"; end #Remember, this defines it in Object, not on main def self.bar; "bar"; end #This is defined on main, not Object foo # =&gt; "foo" bar # =&gt; "bar" self.singleton_methods.include? :foo # =&gt; false self.singleton_methods.include? :bar # =&gt; true </code></pre> http://stackoverflow.com/questions/1722421/how-can-you-easily-test-hash-equality-in-ruby-when-you-only-care-about-intersecti/1722521#1722521 8 Answer by Pesto for How can you easily test hash equality in Ruby when you only care about intersecting keys? Pesto 2009-11-12T14:22:27Z 2009-11-12T14:22:27Z <pre><code>def compare_intersecting_keys(a, b) (a.keys &amp; b.keys).all? {|k| a[k] == b[k]} end </code></pre> <p>Use like this:</p> <pre><code>compare_intersecting_keys(hash_x, hash_y) # =&gt; true compare_intersecting_keys(hash_p, hash_q) # =&gt; false </code></pre> <p>If you want it monkey-patched:</p> <pre><code>class Hash def compare_intersection(other) (self.keys &amp; other.keys).all? {|k| self[k] == other[k]} end end </code></pre> http://stackoverflow.com/questions/1721865/array-to-nested-hash/1722460#1722460 1 Answer by Pesto for Array to nested hash Pesto 2009-11-12T14:12:40Z 2009-11-12T14:12:40Z <pre><code>def group(array, *levels) groups = {} last = levels.pop array.each do |obj| curr = groups levels.map {|level| obj.send(level) rescue nil }.each {|val| curr = (curr[val] ||= {}) } idx = obj.send(last) rescue nil (curr[idx] ||= []) &lt;&lt; obj end groups end </code></pre> http://stackoverflow.com/questions/1681745/share-global-logger-among-module-classes/1682053#1682053 1 Answer by Pesto for Share global logger among module/classes Pesto 2009-11-05T17:01:52Z 2009-11-05T17:01:52Z <p>Add a constant in the module:</p> <pre><code>module Foo Logger = Logger.new class A class B class C ... class Z end </code></pre> <p>Then you can do <code>Logger.log('blah')</code> in your classes. Since we're shadowing the global constant <code>Logger</code> with <code>Foo::Logger</code>, this means that if you want to refer to the <code>Logger</code> class within the <code>Foo</code> module, you have to use the scope resolution: <code>::Logger</code>.</p> http://stackoverflow.com/questions/1675021/out-of-four-stdvector-objects-select-the-one-with-the-most-elements/1675045#1675045 13 Answer by Pesto for Out of four std::vector objects select the one with the most elements Pesto 2009-11-04T16:37:55Z 2009-11-05T14:42:48Z <p>You're severely overthinking this. You've only got four vectors. You can determine the largest vector using 3 comparisons. Just do that:</p> <p><s></p> <pre><code>std::vector&lt;blah&gt;&amp; max = vector1; if (max.size() &lt; vector2.size()) max = vector2; if (max.size() &lt; vector3.size()) max = vector3; if (max.size() &lt; vector4.size()) max = vector4; </code></pre> <p></s></p> <h2>EDIT:</h2> <p>Now with pointers!</p> <p><s>EDIT (280Z28):</p> <p>Now with references! :)</s></p> <h2>EDIT:</h2> <p>The version with references won't work. Pavel Minaev explains it nicely in the comments:</p> <blockquote> <p>That's correct, the code use references. The first line, which declares max, doesn't cause a copy. However, all following lines do cause a copy, because when you write <code>max = vectorN</code>, if max is a reference, it doesn't cause the reference to refer to a different vector (a reference cannot be changed to refer to a different object once initialized). Instead, it is the same as <code>max.operator=(vectorN)</code>, which simply causes <code>vector1</code> to be cleared and replaced by elements contained in <code>vectorN</code>, copying them.</p> </blockquote> <p>The pointer version is likely your best bet: it's quick, low-cost, and simple.</p> <pre><code>std::vector&lt;blah&gt; * max = &amp;vector1; if (max-&gt;size() &lt; vector2.size()) max = &amp;vector2; if (max-&gt;size() &lt; vector3.size()) max = &amp;vector3; if (max-&gt;size() &lt; vector4.size()) max = &amp;vector4; </code></pre> http://stackoverflow.com/questions/1676200/listing-the-accessors-in-a-ruby-class/1676584#1676584 0 Answer by Pesto for Listing the Accessors in a Ruby Class Pesto 2009-11-04T21:00:39Z 2009-11-04T21:00:39Z <p>There's no built-in way to get such a list. The <code>attr_*</code> functions essentially just add methods, create an instance variable, and nothing else. You could write wrappers for them to do what you want, but that might be overkill. Depending on your particular circumstances, you might be able to make use of <a href="http://ruby-doc.org/core/classes/Object.html#M000369" rel="nofollow"><code>Object#instance_variable_defined?</code></a> and <a href="http://ruby-doc.org/core/classes/Module.html#M001644" rel="nofollow"><code>Module#public_method_defined?</code></a>.</p> <p>Also, avoid using eval when possible:</p> <pre><code>def initialize(opts) opts.delete_if{|opt,val| not the_list_of_readers.include?(opt)}.each do |opt,val| instance_variable_set "@#{opt}", val end end </code></pre> http://stackoverflow.com/questions/1675393/should-i-use-inheritance-for-a-ruby-project-involving-common-attributes-and-diffe/1675952#1675952 1 Answer by Pesto for Should I use inheritance for a Ruby project involving common attributes and differing methods? Pesto 2009-11-04T19:10:16Z 2009-11-04T19:10:16Z <p>If I understand your goal correctly, you want each object of type Foo to be able to implement different output formats? If so, I'd use a mixin like this:</p> <pre><code>module FooFormats attr_accessor :output_types def produce_output_a puts "FooA" end def produce_output_b puts "FooB" end def produce_output_c puts "FooC" end def produce_output @output_types.each do |output_type| begin send "produce_output_#{output_type.to_s.downcase}" rescue #An undefined output format end end end end class Foo include FooFormats def initialize(output_types = []) self.output_types = output_types end # Various other common methods. end # Example use case. f = Foo.new ['A', 'C'] f.produce_output </code></pre> http://stackoverflow.com/questions/1675374/problem-with-ruby-gem-and-sanitize/1675572#1675572 1 Answer by Pesto for Problem with Ruby Gem and Sanitize Pesto 2009-11-04T17:56:46Z 2009-11-04T17:56:46Z <p>rgrove-sanitize uses the <a href="http://docs.rubygems.org/read/chapter/16#page74" rel="nofollow">pessimistic operator</a>, which, in this case, means you need a Nokogiri version of 1.3.3 or greater, but less than 1.4 (which is what you have). You need to install the correct version of Nokogiri:</p> <pre><code>&gt;gem install --version "~&gt; 1.3.3" nokogiri </code></pre> http://stackoverflow.com/questions/1674739/compare-sequential-last-elements-in-ruby-array/1674893#1674893 1 Answer by Pesto for Compare sequential last elements in ruby array Pesto 2009-11-04T16:16:34Z 2009-11-04T16:16:34Z <pre><code>myArray = [3,5,6,2,1] i = 0 myArray.reverse.inject do |sum, cur| break if cur &lt; sum i -= 1 sum + cur end </code></pre> <p>The range to copy is <code>i..-1</code>.</p> http://stackoverflow.com/questions/1674397/checking-emptiness-of-an-element-in-hpricot/1674549#1674549 1 Answer by Pesto for Checking emptiness of an element in hpricot Pesto 2009-11-04T15:29:43Z 2009-11-04T15:29:43Z <p>If what you really want is the text inside location tags, you can find those easily with the right XPath:</p> <pre><code>doc.search('//location/text()') </code></pre> <p>If, for some reason, you actually need the location element itself, use this:</p> <pre><code>doc.search('//location/text()/..') </code></pre> http://stackoverflow.com/questions/1674205/how-to-concatenate-a-hash-to-url-parameters/1674366#1674366 0 Answer by Pesto for How to concatenate a Hash to URL parameters? Pesto 2009-11-04T15:04:00Z 2009-11-04T15:04:00Z <p>You can make it a little bit simpler using <a href="http://ruby-doc.org/core/classes/Enumerable.html#M003127" rel="nofollow"><code>collect</code></a>:</p> <pre><code>def do_it(params) params.collect do |key,val| "#{CGI.escape(key.to_s)}=#{CGI.escape(val)}" end.join('&amp;') end </code></pre> <p>I don't know how much more you can simplify it than that. Also, note that <code>CGI.escape</code> will converts spaces into <code>+</code>, not <code>%20</code>. If you really want <code>%20</code>, use <code>URI.escape</code> instead (you'll have to <code>require 'uri'</code>, obviously).</p> http://stackoverflow.com/questions/1643875/how-to-use-activerecord-in-a-ruby-script-outside-rails/1643938#1643938 10 Answer by Pesto for How to use ActiveRecord in a ruby script outside Rails? Pesto 2009-10-29T13:59:21Z 2009-10-29T14:17:14Z <pre><code>require "rubygems" require "activerecord" #Change this to reflect your database settings ActiveRecord::Base.establish_connection ( :adapter =&gt; "mysql", :host =&gt; "localhost", :username =&gt; "root", :password =&gt; "password", :database =&gt; "some_database") #Now define your classes from the database as always class SomeClass &lt; ActiveRecord::Base #blah, blah, blah end #Now do stuff with it some_class = SomeClass.new some_other_stuff = SomeClass.find :all </code></pre> http://stackoverflow.com/questions/1613759/sort-and-store-values-from-multidimensional-array-in-new-array-in-ruby/1613876#1613876 1 Answer by Pesto for Sort and store values from multidimensional array in new array in Ruby Pesto 2009-10-23T14:33:50Z 2009-10-23T14:33:50Z <p>Here's one that creates <code>candidate_votes</code> as a Hash. It's probably a little faster because you need to iterate <code>votes_array</code> only once:</p> <pre><code>candidate_votes = {} votes_array.each do |id, vote| candidate_votes[id] ||= {"id" =&gt; id, "votes" =&gt; []} candidate_votes[id]["votes"] &lt;&lt; [id, vote] end </code></pre> <p>This will give results like this:</p> <pre><code>candidate_votes = { "0" =&gt; {"votes" =&gt; [["0", "1"], ["0", "2"]], "id" =&gt; "0"}, ... etc ... } </code></pre> http://stackoverflow.com/questions/1601269/python-how-to-make-a-completely-unshared-copy-of-a-complicated-list-deep-copy/1601304#1601304 6 Answer by Pesto for Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough) Pesto 2009-10-21T14:42:59Z 2009-10-21T14:42:59Z <p>Depending on you situation, you might want to work against a <a href="http://docs.python.org/library/copy.html" rel="nofollow">deep copy</a> of this list.</p> http://stackoverflow.com/questions/1590865/how-to-do-the-following-in-ruby/1590888#1590888 6 Answer by Pesto for how to do the following in ruby ? Pesto 2009-10-19T20:20:16Z 2009-10-19T20:20:16Z <pre><code>x = "/html/body/a" x.split("/").last # =&gt; "a" </code></pre> http://stackoverflow.com/questions/1589253/jruby-limitations-when-working-with-java-classes/1589711#1589711 5 Answer by Pesto for JRuby limitations when working with Java Classes Pesto 2009-10-19T16:27:40Z 2009-10-19T16:27:40Z <ul> <li>can JRuby work with Java Annotations?</li> </ul> <p>No. Ruby doesn't have annotations. The <a href="http://kenai.com/projects/ruby2java/pages/Home" rel="nofollow">ruby2java</a> compiler will allow you to add annotations that are used when compiling to a class file, though.</p> <ul> <li>is it possible to use reflection from JRuby on Java class?</li> </ul> <p>Yes:</p> <pre><code>java.util.Vector.methods.include? '[]' # =&gt; true </code></pre> <ul> <li>is it possible to use reflection from Java on JRuby class?</li> </ul> <p>When embedding JRuby using BSF or JSR223? Only to the extent that those technologies allow it. When using ruby2java? Yes. It generates normal Java .class files.</p> <ul> <li>do I have executable classes in JRuby?</li> </ul> <p>I'm not exactly sure what you're asking.</p> <ul> <li>is it possible to redefine Java class inside of JRuby script? (the same way as I can redefine eg. Integer in C Ruby)</li> </ul> <p>Yes, you can monkey patch in JRuby, but the changes aren't visible from the Java side, just JRuby:</p> <pre><code>import java.util.Vector class Vector def foo "foo!" end end v = java.util.Vector.new v.foo # =&gt; "foo!" </code></pre> <ul> <li>are there any other limitations, that prevent using JRuby as part of any Java application?</li> </ul> <p>Plenty of <a href="http://kenai.com/projects/jruby/pages/CallingJavaFromJRuby" rel="nofollow">little gotchas</a> abound when using Java from JRuby. ruby2java is still in its infancy, and I'm not sure it's ready for a production environment yet. Other than that, the focus has been more on scripting with BSF and JSR223, which may or may not suit your purposes.</p> http://stackoverflow.com/questions/1587310/how-can-you-manipulate-an-html-page-parsed-via-nokogiri/1588829#1588829 1 Answer by Pesto for how can you manipulate an html page parsed via Nokogiri? Pesto 2009-10-19T13:59:07Z 2009-10-19T13:59:07Z <p>This is a flaw in the way <code>wrap</code> works. Here is the source:</p> <pre><code># File lib/nokogiri/xml/node_set.rb, line 212 def wrap(html, &amp;blk) each do |j| new_parent = Nokogiri.make(html, &amp;blk) j.parent.add_child(new_parent) new_parent.add_child(j) end self end </code></pre> <p>As you can see, instead of replacing <code>j</code> with <code>new_parent</code>, it adds <code>new_parent</code> to the end of <code>j</code>'s siblings. You can do what you want like this:</p> <pre><code>doc.search('//a').each do |j| new_parent = Nokogiri::XML::Node.new('b',doc) j.replace new_parent new_parent &lt;&lt; j end </code></pre> http://stackoverflow.com/questions/1573029/getting-all-combinations-of-pairs-from-a-list-in-ruby/1573102#1573102 8 Answer by Pesto for Getting all combinations of pairs from a list in Ruby Pesto 2009-10-15T15:25:28Z 2009-10-15T15:25:28Z <p>In Ruby 1.8.6, you can use <a href="http://facets.rubyforge.org" rel="nofollow">Facets</a>:</p> <pre><code>require 'facets/array/combination' i1 = [1,2,3,4,5] i2 = [] i1.combination(2).to_a # =&gt; [[1, 2], [1, 3], [1, 4], [1, 5], [2, 3], [2, 4], [2, 5], [3, 4], [3, 5], [4, 5]] </code></pre> <p>In 1.8.7 and later, <code>combination</code> is built-in:</p> <pre><code>i1 = [1,2,3,4,5] i2 = i1.combination(2).to_a </code></pre> http://stackoverflow.com/questions/1572686/question-about-object-oriented-design-with-ruby/1572903#1572903 6 Answer by Pesto for Question about object oriented design with Ruby Pesto 2009-10-15T14:52:26Z 2009-10-15T14:52:26Z <p>You're on the right track, but you've gone too far, which is a common beginner's mistake with OOP. Every property should <em>not</em> be a separate class; they should all be instances of the Property class. I'd do classes with attributes along these lines:</p> <h2>Space</h2> <ul> <li>Name</li> <li>Which pieces are on it</li> <li>Which space is next (and maybe previous?)</li> <li>Any special actions which take place when landing on it</li> </ul> <h2>Property (extends Space)</h2> <ul> <li>Who owns it</li> <li>How many houses/hotels are on it</li> <li>Property value</li> <li>Property monopoly group</li> <li>Rent rates</li> <li>Whether it is mortgaged</li> </ul> <p>So, for example, Boardwalk would be an object of type Property, with specific values that apply to it, such as belonging to the dark blue monopoly group.</p> http://stackoverflow.com/questions/1566589/easy-way-to-determine-leap-year-in-ruby/1566652#1566652 0 Answer by Pesto for Easy way to determine leap year in ruby ? Pesto 2009-10-14T14:28:05Z 2009-10-14T14:28:05Z <pre><code>is_leap_year = year % 4 == 0 &amp;&amp; year % 100 != 0 || year % 400 == 0 </code></pre> http://stackoverflow.com/questions/1560572/ruby-delete-multiple-hash-keys/1560627#1560627 2 Answer by Pesto for Ruby: delete multiple hash keys Pesto 2009-10-13T14:35:23Z 2009-10-13T14:35:23Z <p>I don't know what you think is wrong with your proposed solution. I suppose you want a <code>delete_all</code> method on Hash or something? If so, <a href="http://stackoverflow.com/questions/1560572/ruby-delete-multiple-hash-keys/1560611#1560611">tadman's answer</a> provides the solution. But frankly, for a one-off, I think your solution is extremely easy to follow. If you're using this frequently, you might want to wrap it up in a helper method.</p> http://stackoverflow.com/questions/1543614/combination-of-a-two-array-ruby/1543801#1543801 2 Answer by Pesto for combination of a two array (ruby) Pesto 2009-10-09T13:37:04Z 2009-10-09T13:37:04Z <p>Facets has <a href="http://facets.rubyforge.org/apidoc/api/core/classes/Array.html#M000053" rel="nofollow"><code>Array#product</code></a> which will give you the cross product of arrays. It is also aliased as the <a href="http://facets.rubyforge.org/apidoc/api/core/classes/Array.html#M000054" rel="nofollow"><code>** operator</code></a> for the two-array case. Using that, it would look like this:</p> <pre><code>require 'facets/array' a = [1,2] b = [3,4] (a.product(b)).collect {|x, y| f(x, y)} </code></pre> <p>If you are using Ruby 1.9, <a href="http://ruby-doc.org/ruby-1.9/classes/Array.html#M000760" rel="nofollow"><code>product</code></a> is a built-in Array function.</p> http://stackoverflow.com/questions/1509915/converting-camel-case-to-underscore-case-in-ruby/1509957#1509957 2 Answer by Pesto for Converting camel case to underscore case in ruby Pesto 2009-10-02T14:44:16Z 2009-10-02T14:44:16Z <p>Here's how <a href="http://rails.rubyonrails.org/classes/Inflector.html#M001631" rel="nofollow">Rails does it</a>:</p> <pre><code> def underscore(camel_cased_word) camel_cased_word.to_s.gsub(/::/, '/'). gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2'). gsub(/([a-z\d])([A-Z])/,'\1_\2'). tr("-", "_"). downcase end </code></pre> http://stackoverflow.com/questions/1501366/building-an-xml-tree-from-an-array-of-strings-that-are-paths-in-ruby/1501712#1501712 3 Answer by Pesto for Building an XML tree from an Array of "strings/that/are/paths" (in Ruby) Pesto 2009-10-01T03:13:15Z 2009-10-01T13:28:54Z <p>This is very similar to <a href="http://stackoverflow.com/questions/760233/generate-a-file-list-based-on-an-array">this question</a>. Here's a modified version based upon <a href="http://stackoverflow.com/questions/760233/generate-a-file-list-based-on-an-array/760328#760328">sris's answer</a>:</p> <pre><code>paths = [ "nodeA1", "nodeA1/nodeB1/nodeC1", "nodeA1/nodeB1/nodeC1/nodeD1/nodeE1", "nodeA1/nodeB1/nodeC2", "nodeA1/nodeB2/nodeC2", "nodeA3/nodeB2/nodeC3" ] tree = {} paths.each do |path| current = tree path.split("/").inject("") do |sub_path,dir| sub_path = File.join(sub_path, dir) current[sub_path] ||= {} current = current[sub_path] sub_path end end def make_tree(prefix, node) tree = "" node.each_pair do |path, subtree| tree += "#{prefix}&lt;#{File.basename(path)}" if subtree.empty? tree += "/&gt;\n" else tree += "&gt;\n" tree += make_tree(prefix + "\t", subtree) unless subtree.empty? tree += "#{prefix}&lt;/#{File.basename(path)}&gt;\n" end end tree end xml = make_tree "", tree print xml </code></pre> <p><hr /></p> <h2>Edit:</h2> <p>Here is a modified version that builds an actual XML document using Nokogiri. I think it's actually easier to follow than the string version. I also removed the use of <code>File</code>, because you don't actually need it to meet your needs:</p> <pre><code>require 'nokogiri' paths = [ "nodeA1", "nodeA1/nodeB1/nodeC1", "nodeA1/nodeB1/nodeC1/nodeD1/nodeE1", "nodeA1/nodeB1/nodeC2", "nodeA1/nodeB2/nodeC2", "nodeA3/nodeB2/nodeC3" ] tree = {} paths.each do |path| current = tree path.split("/").each do |name| current[name] ||= {} current = current[name] end end def make_tree(node, curr = nil, doc = Nokogiri::XML::Document.new) #You need a root node for the XML. Feel free to rename it. curr ||= doc.root = Nokogiri::XML::Node.new('root', doc) node.each_pair do |name, subtree| child = curr &lt;&lt; Nokogiri::XML::Node.new(name, doc) make_tree(subtree, child, doc) unless subtree.empty? end doc end xml = make_tree tree print xml </code></pre> <p><hr /></p> <h2>Edit 2:</h2> <p>Yes, it is true that in Ruby 1.8 hashes aren't guaranteed to maintain insertion order. If that's an issue, there are ways to work around it. Here's a solution that retains order but doesn't bother with recursion and is much simpler for it:</p> <pre><code>require 'nokogiri' paths = [ "nodeA1", "nodeA1/nodeB1/nodeC1", "nodeA1/nodeB1/nodeC1/nodeD1/nodeE1", "nodeA1/nodeB1/nodeC2", "nodeA1/nodeB2/nodeC2", "nodeA3/nodeB2/nodeC3" ] doc = Nokogiri::XML::Document.new doc.root = Nokogiri::XML::Node.new('root', doc) paths.each do |path| curr = doc.root path.split("/").each do |name| curr = curr.xpath(name).first || curr &lt;&lt; Nokogiri::XML::Node.new(name, doc) end end print doc </code></pre> http://stackoverflow.com/questions/1497450/strip-text-from-html-document-using-ruby/1498322#1498322 0 Answer by Pesto for Strip text from HTML document using Ruby Pesto 2009-09-30T14:03:59Z 2009-09-30T14:03:59Z <p>To grab everything not in a tag, you can use nokogiri like this:</p> <pre><code>doc.search('//text()').text </code></pre> <p>Of course, that will grab stuff like the contents of <code>&lt;script&gt;</code> or <code>&lt;style&gt;</code> tags, so you could also remove blacklisted tags:</p> <pre><code>blacklist = ['title', 'script', 'style'] nodelist = doc.search('//text()') blacklist.each do |tag| nodelist -= doc.search('//' + tag + '/text()') end nodelist.text </code></pre> <p>You could also whitelist if you preferred, but that's probably going to be more time-intensive:</p> <pre><code>whitelist = ['p', 'span', 'strong', 'i', 'b'] #The list goes on and on... nodelist = Nokogiri::XML::NodeSet.new(doc) whitelist.each do |tag| nodelist += doc.search('//' + tag + '/text()') end nodelist.text </code></pre> <p>You could also just build a huge XPath expression and do one search. I honestly don't know which way is faster, or if there is even an appreciable difference.</p> http://stackoverflow.com/questions/1494248/is-there-a-way-to-have-a-windows-shell-script-execute-everything-relative-to-its/1494333#1494333 3 Answer by Pesto for Is there a way to have a Windows shell script execute everything relative to its location rather than the location it was invoked from? Pesto 2009-09-29T18:59:24Z 2009-09-29T18:59:24Z <p>Use <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/pushd.mspx" rel="nofollow">pushd</a> and <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/popd.mspx" rel="nofollow">popd</a>. Add the line</p> <pre><code>@pushd %~dp0 </code></pre> <p>to the beginning of the batch script. This will change the working directory to the base directory of the batch file. For the sake of completeness (and in case the batch file is going to be used by other batch files), you should add</p> <pre><code>@popd </code></pre> <p>at the end.</p> http://stackoverflow.com/questions/1493979/what-does-the-title-batch-script-command-do/1493998#1493998 9 Answer by Pesto for What does the @title batch script command do? Pesto 2009-09-29T17:42:38Z 2009-09-29T17:42:38Z <p>Not surprisingly, it <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/title.mspx?mfr=true" rel="nofollow">sets the title</a> of the command prompt window the batch is running in. The leading <code>@</code> keeps the line from being echo'd to the prompt.</p> http://stackoverflow.com/questions/1793020/what-is-the-best-tool-for-creating-user-guides-with-screenshots-on-a-mac Comment by Pesto on What is the best tool for creating user guides with screenshots on a Mac? Pesto 2009-11-24T21:28:26Z 2009-11-24T21:28:26Z This question belongs on SuperUser. The original question just happens to predate it. http://stackoverflow.com/questions/1790695/why-does-this-use-of-java-generics-not-compile/1790715#1790715 Comment by Pesto on Why does this use of Java Generics not compile? Pesto 2009-11-24T15:22:29Z 2009-11-24T15:22:29Z Explained here: <a href="http://java.sun.com/docs/books/tutorial/extra/generics/wildcards.html" rel="nofollow">java.sun.com/docs/books/&hellip;</a> http://stackoverflow.com/questions/1790695/why-does-this-use-of-java-generics-not-compile Comment by Pesto on Why does this use of Java Generics not compile? Pesto 2009-11-24T15:21:42Z 2009-11-24T15:21:42Z Contrary to what you think, <code>? extends Number</code> will allow Number objects. The <code>? extends X</code> bounded wildcard means &quot;X or a subclass of X&quot;. http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-characters Comment by Pesto on Why does Twitter limit the message length to 140 characters? Pesto 2009-11-23T20:08:15Z 2009-11-23T20:08:15Z @RichB: ur msg 2 long. plz write less http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-characters Comment by Pesto on Why does Twitter limit the message length to 140 characters? Pesto 2009-11-23T20:03:45Z 2009-11-23T20:03:45Z @vaibhav: <i>facepalm</i> http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-characters/1785564#1785564 Comment by Pesto on Why does Twitter limit the message length to 140 characters? Pesto 2009-11-23T20:00:45Z 2009-11-23T20:00:45Z Actually, it isn't. The character limit for SMS is 160. http://stackoverflow.com/questions/1756631/is-it-possible-to-navigate-though-workspaces-just-like-mac-using-mouse-gestures-i Comment by Pesto on is it possible to navigate though workspaces just like mac using mouse gestures in ubuntu? Pesto 2009-11-18T15:07:05Z 2009-11-18T15:07:05Z This is a question for SU, not SO. http://stackoverflow.com/questions/1751186/impressing-ruby-example/1751226#1751226 Comment by Pesto on Impressing Ruby example Pesto 2009-11-17T20:23:55Z 2009-11-17T20:23:55Z @Julet: Clearly you've only read tutorials written or inspire by _why. http://stackoverflow.com/questions/1750635/is-there-a-better-ruby-framework-than-rails Comment by Pesto on Is there a better Ruby framework than Rails? Pesto 2009-11-17T17:56:05Z 2009-11-17T17:56:05Z That's an extremely subjective question. How about some quantifiable basis for comparison? http://stackoverflow.com/questions/1744400/complexity-with-array-min/1744524#1744524 Comment by Pesto on Complexity with Array.min Pesto 2009-11-17T14:01:02Z 2009-11-17T14:01:02Z +1: This process is faster than going through the array, generating a new array, and then finding the min on that array as proposed in the accepted answer. http://stackoverflow.com/questions/1722421/how-can-you-easily-test-hash-equality-in-ruby-when-you-only-care-about-intersecti/1722521#1722521 Comment by Pesto on How can you easily test hash equality in Ruby when you only care about intersecting keys? Pesto 2009-11-12T15:27:06Z 2009-11-12T15:27:06Z @Teflon Ted: You know what's better than just stating that you have some edge cases? Posting them so they can be provided for. The two examples you give take if from being a simple one-liner to something more complex. http://stackoverflow.com/questions/1676702/what-is-the-magic-behind-the-search-engines Comment by Pesto on What Is The "Magic" Behind The Search Engines Pesto 2009-11-04T21:27:18Z 2009-11-04T21:27:18Z Historically, the magic has been pixies. Google achieved a major breakthrough by integrating elves into the process, although the pixie:elf ratio is a closely-guarded traded secret. http://stackoverflow.com/questions/1675021/out-of-four-stdvector-objects-select-the-one-with-the-most-elements/1675045#1675045 Comment by Pesto on Out of four std::vector objects select the one with the most elements Pesto 2009-11-04T16:47:36Z 2009-11-04T16:47:36Z There, are you people happy now?! http://stackoverflow.com/questions/1675021/out-of-four-stdvector-objects-select-the-one-with-the-most-elements/1675045#1675045 Comment by Pesto on Out of four std::vector objects select the one with the most elements Pesto 2009-11-04T16:44:29Z 2009-11-04T16:44:29Z @Konrad: I didn't know the specifics of his situation, so I provided a basic example. Tailoring it to use pointers is left as an exercise to the reader. http://stackoverflow.com/questions/1674567/have-you-ever-written-a-virus-or-trojan-or-anything-with-a-nefarious-purpose Comment by Pesto on Have you ever written a virus or trojan or anything with a nefarious purpose? Pesto 2009-11-04T15:36:22Z 2009-11-04T15:36:22Z Have you ever written an obvious dupe? <a href="http://stackoverflow.com/questions/458507/have-you-ever-written-a-computer-virus-or-at-least-tried" rel="nofollow" title="have you ever written a computer virus or at least tried">stackoverflow.com/questions/458507/&hellip;</a>