User Pesto - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:53:09Zhttp://stackoverflow.com/feeds/user/23921http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1840488/ruby-operator-precedence-and/1840815#18408155Answer by Pesto for Ruby - Operator precedence ? And/&&Pesto2009-12-03T15:51:03Z2009-12-03T15:51:03Z<p>The reason is simple: precedence. As you say, the order is:</p>
<ol>
<li>&&</li>
<li>=</li>
<li>and</li>
</ol>
<p>Since <code>&&</code> has precedence over <code>=</code>, the statement is evaluated like this:</p>
<pre><code>if a = (f(2) && (b = f(4))) then
</code></pre>
<p>Which results in:</p>
<pre><code>if a = (2 && 4) then
</code></pre>
<p>When <code>x</code> and <code>y</code> are integers, <code>x && y</code> returns <code>y</code>. Thus <code>2 && 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#18222111Answer by Pesto for Using And clause in HEAD of a prolog statement.Pesto2009-11-30T20:26:41Z2009-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#17927873Answer by Pesto for Using Hash Tables as function inputsPesto2009-11-24T20:39:46Z2009-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"=>commonName, "volume"=>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#17661312Answer by Pesto for Where are methods defined at the ruby top level?Pesto2009-11-19T19:59:13Z2009-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 # => "foo"
Object.private_instance_methods(false).include? :foo # => true
self.meta.private_instance_methods(false).include? :foo # => true
class Bar
private
def bar
"bar"
end
end
bar = Bar.new
bar.send :bar # => "bar"
Bar.private_instance_methods(false).include? :bar # => true
bar.meta.private_instance_methods(false).include? :bar # => 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 # => false
self.meta.instance_methods.include? :hello # => 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 # => "foo"
bar # => "bar"
self.singleton_methods.include? :foo # => false
self.singleton_methods.include? :bar # => true
</code></pre>
http://stackoverflow.com/questions/1722421/how-can-you-easily-test-hash-equality-in-ruby-when-you-only-care-about-intersecti/1722521#17225218Answer by Pesto for How can you easily test hash equality in Ruby when you only care about intersecting keys?Pesto2009-11-12T14:22:27Z2009-11-12T14:22:27Z<pre><code>def compare_intersecting_keys(a, b)
(a.keys & 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) # => true
compare_intersecting_keys(hash_p, hash_q) # => false
</code></pre>
<p>If you want it monkey-patched:</p>
<pre><code>class Hash
def compare_intersection(other)
(self.keys & other.keys).all? {|k| self[k] == other[k]}
end
end
</code></pre>
http://stackoverflow.com/questions/1721865/array-to-nested-hash/1722460#17224601Answer by Pesto for Array to nested hashPesto2009-11-12T14:12:40Z2009-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] ||= []) << obj
end
groups
end
</code></pre>
http://stackoverflow.com/questions/1681745/share-global-logger-among-module-classes/1682053#16820531Answer by Pesto for Share global logger among module/classesPesto2009-11-05T17:01:52Z2009-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#167504513Answer by Pesto for Out of four std::vector objects select the one with the most elementsPesto2009-11-04T16:37:55Z2009-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<blah>& max = vector1;
if (max.size() < vector2.size()) max = vector2;
if (max.size() < vector3.size()) max = vector3;
if (max.size() < 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<blah> * max = &vector1;
if (max->size() < vector2.size()) max = &vector2;
if (max->size() < vector3.size()) max = &vector3;
if (max->size() < vector4.size()) max = &vector4;
</code></pre>
http://stackoverflow.com/questions/1676200/listing-the-accessors-in-a-ruby-class/1676584#16765840Answer by Pesto for Listing the Accessors in a Ruby ClassPesto2009-11-04T21:00:39Z2009-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#16759521Answer by Pesto for Should I use inheritance for a Ruby project involving common attributes and differing methods?Pesto2009-11-04T19:10:16Z2009-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#16755721Answer by Pesto for Problem with Ruby Gem and SanitizePesto2009-11-04T17:56:46Z2009-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>>gem install --version "~> 1.3.3" nokogiri
</code></pre>
http://stackoverflow.com/questions/1674739/compare-sequential-last-elements-in-ruby-array/1674893#16748931Answer by Pesto for Compare sequential last elements in ruby arrayPesto2009-11-04T16:16:34Z2009-11-04T16:16:34Z<pre><code>myArray = [3,5,6,2,1]
i = 0
myArray.reverse.inject do |sum, cur|
break if cur < 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#16745491Answer by Pesto for Checking emptiness of an element in hpricotPesto2009-11-04T15:29:43Z2009-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#16743660Answer by Pesto for How to concatenate a Hash to URL parameters?Pesto2009-11-04T15:04:00Z2009-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('&')
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#164393810Answer by Pesto for How to use ActiveRecord in a ruby script outside Rails?Pesto2009-10-29T13:59:21Z2009-10-29T14:17:14Z<pre><code>require "rubygems"
require "activerecord"
#Change this to reflect your database settings
ActiveRecord::Base.establish_connection (
:adapter => "mysql",
:host => "localhost",
:username => "root",
:password => "password",
:database => "some_database")
#Now define your classes from the database as always
class SomeClass < 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#16138761Answer by Pesto for Sort and store values from multidimensional array in new array in RubyPesto2009-10-23T14:33:50Z2009-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" => id, "votes" => []}
candidate_votes[id]["votes"] << [id, vote]
end
</code></pre>
<p>This will give results like this:</p>
<pre><code>candidate_votes = {
"0" => {"votes" => [["0", "1"], ["0", "2"]], "id" => "0"},
... etc ...
}
</code></pre>
http://stackoverflow.com/questions/1601269/python-how-to-make-a-completely-unshared-copy-of-a-complicated-list-deep-copy/1601304#16013046Answer by Pesto for Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)Pesto2009-10-21T14:42:59Z2009-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#15908886Answer by Pesto for how to do the following in ruby ?Pesto2009-10-19T20:20:16Z2009-10-19T20:20:16Z<pre><code>x = "/html/body/a"
x.split("/").last # => "a"
</code></pre>
http://stackoverflow.com/questions/1589253/jruby-limitations-when-working-with-java-classes/1589711#15897115Answer by Pesto for JRuby limitations when working with Java ClassesPesto2009-10-19T16:27:40Z2009-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? '[]' # => 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 # => "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#15888291Answer by Pesto for how can you manipulate an html page parsed via Nokogiri?Pesto2009-10-19T13:59:07Z2009-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, &blk)
each do |j|
new_parent = Nokogiri.make(html, &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 << j
end
</code></pre>
http://stackoverflow.com/questions/1573029/getting-all-combinations-of-pairs-from-a-list-in-ruby/1573102#15731028Answer by Pesto for Getting all combinations of pairs from a list in RubyPesto2009-10-15T15:25:28Z2009-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 # => [[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#15729036Answer by Pesto for Question about object oriented design with RubyPesto2009-10-15T14:52:26Z2009-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#15666520Answer by Pesto for Easy way to determine leap year in ruby ?Pesto2009-10-14T14:28:05Z2009-10-14T14:28:05Z<pre><code>is_leap_year = year % 4 == 0 && year % 100 != 0 || year % 400 == 0
</code></pre>
http://stackoverflow.com/questions/1560572/ruby-delete-multiple-hash-keys/1560627#15606272Answer by Pesto for Ruby: delete multiple hash keysPesto2009-10-13T14:35:23Z2009-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#15438012Answer by Pesto for combination of a two array (ruby)Pesto2009-10-09T13:37:04Z2009-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#15099572Answer by Pesto for Converting camel case to underscore case in rubyPesto2009-10-02T14:44:16Z2009-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#15017123Answer by Pesto for Building an XML tree from an Array of "strings/that/are/paths" (in Ruby)Pesto2009-10-01T03:13:15Z2009-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}<#{File.basename(path)}"
if subtree.empty?
tree += "/>\n"
else
tree += ">\n"
tree += make_tree(prefix + "\t", subtree) unless subtree.empty?
tree += "#{prefix}</#{File.basename(path)}>\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 << 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 << 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#14983220Answer by Pesto for Strip text from HTML document using RubyPesto2009-09-30T14:03:59Z2009-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><script></code> or <code><style></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#14943333Answer 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?Pesto2009-09-29T18:59:24Z2009-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#14939989Answer by Pesto for What does the @title batch script command do?Pesto2009-09-29T17:42:38Z2009-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-macComment by Pesto on What is the best tool for creating user guides with screenshots on a Mac?Pesto2009-11-24T21:28:26Z2009-11-24T21:28:26ZThis 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#1790715Comment by Pesto on Why does this use of Java Generics not compile?Pesto2009-11-24T15:22:29Z2009-11-24T15:22:29ZExplained here: <a href="http://java.sun.com/docs/books/tutorial/extra/generics/wildcards.html" rel="nofollow">java.sun.com/docs/books/…</a>http://stackoverflow.com/questions/1790695/why-does-this-use-of-java-generics-not-compileComment by Pesto on Why does this use of Java Generics not compile?Pesto2009-11-24T15:21:42Z2009-11-24T15:21:42ZContrary to what you think, <code>? extends Number</code> will allow Number objects. The <code>? extends X</code> bounded wildcard means "X or a subclass of X".http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-charactersComment by Pesto on Why does Twitter limit the message length to 140 characters?Pesto2009-11-23T20:08:15Z2009-11-23T20:08:15Z@RichB: ur msg 2 long. plz write lesshttp://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-charactersComment by Pesto on Why does Twitter limit the message length to 140 characters?Pesto2009-11-23T20:03:45Z2009-11-23T20:03:45Z@vaibhav: <i>facepalm</i>http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-characters/1785564#1785564Comment by Pesto on Why does Twitter limit the message length to 140 characters?Pesto2009-11-23T20:00:45Z2009-11-23T20:00:45ZActually, 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-iComment by Pesto on is it possible to navigate though workspaces just like mac using mouse gestures in ubuntu?Pesto2009-11-18T15:07:05Z2009-11-18T15:07:05ZThis is a question for SU, not SO.http://stackoverflow.com/questions/1751186/impressing-ruby-example/1751226#1751226Comment by Pesto on Impressing Ruby examplePesto2009-11-17T20:23:55Z2009-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-railsComment by Pesto on Is there a better Ruby framework than Rails?Pesto2009-11-17T17:56:05Z2009-11-17T17:56:05ZThat's an extremely subjective question. How about some quantifiable basis for comparison?http://stackoverflow.com/questions/1744400/complexity-with-array-min/1744524#1744524Comment by Pesto on Complexity with Array.minPesto2009-11-17T14:01:02Z2009-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#1722521Comment by Pesto on How can you easily test hash equality in Ruby when you only care about intersecting keys?Pesto2009-11-12T15:27:06Z2009-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-enginesComment by Pesto on What Is The "Magic" Behind The Search EnginesPesto2009-11-04T21:27:18Z2009-11-04T21:27:18ZHistorically, 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#1675045Comment by Pesto on Out of four std::vector objects select the one with the most elementsPesto2009-11-04T16:47:36Z2009-11-04T16:47:36ZThere, are you people happy now?!http://stackoverflow.com/questions/1675021/out-of-four-stdvector-objects-select-the-one-with-the-most-elements/1675045#1675045Comment by Pesto on Out of four std::vector objects select the one with the most elementsPesto2009-11-04T16:44:29Z2009-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-purposeComment by Pesto on Have you ever written a virus or trojan or anything with a nefarious purpose? Pesto2009-11-04T15:36:22Z2009-11-04T15:36:22ZHave 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/…</a>