User manveru - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:01:07Z http://stackoverflow.com/feeds/user/8367 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1095546/thin-crashes-hard-with-ramaze/1095979#1095979 3 Answer by manveru for Thin Crashes Hard with Ramaze manveru 2009-07-08T03:17:44Z 2009-07-08T03:17:44Z <p>It means your eventmachine was compiled with Ruby 1.8 but runs with Ruby 1.9. Do you have a parallel installation of 1.8/1.9?</p> http://stackoverflow.com/questions/801415/why-does-rubys-win32console-not-work-for-me-with-ramaze/802444#802444 0 Answer by manveru for Why does Ruby's Win32Console not work for me with Ramaze? manveru 2009-04-29T13:49:20Z 2009-04-29T13:49:20Z <p>I think this is caused by the difference in the formatting string between your code and the code in Ramaze (or Innate).</p> <pre><code>"\e[#{COLOR_CODE[LEVEL_COLOR[severity]]}m#{string}\e[0m" </code></pre> <p>That expands to (for red, and "Hello" being the String):</p> <pre><code>"\e[31mHello\e[0m" </code></pre> <p><code>\e</code>, in Ruby, is converted to <code>\033</code>, so that shouldn't give us trouble:</p> <p>of course, is equivalent being equivalent with <code>\033</code></p> <pre><code>"\033" == "\e" # =&gt; true </code></pre> <p>The major difference is that Ramaze doesn't specify a background-color, as that may result in ugly output if it contrasts too much with the default background of the terminal. But as it may just as well be completely unreadable if your background is blue, red, white, or any of the other foreground colors that Ramaze uses for logging, I think we should define the background explicitly, and hope that this will also fix your windows issue.</p> http://stackoverflow.com/questions/365903/complex-or-deep-object-storage-in-ramaze-session-is-broken/802080#802080 1 Answer by manveru for Complex or Deep Object Storage in Ramaze Session is Broken? manveru 2009-04-29T12:12:51Z 2009-04-29T12:12:51Z <p>This issue has been solved in latest Ramaze (2009.04), please file a patch at the <a href="http://github.com/manveru/ramaze/issues" rel="nofollow">Ramaze issue tracker</a> if the problem persists.</p> http://stackoverflow.com/questions/548446/ruby-how-to-convert-stdin-contents-to-an-array/548450#548450 1 Answer by manveru for [ruby] How to convert STDIN contents to an array? manveru 2009-02-14T03:53:04Z 2009-02-14T03:53:04Z <p>What your are after is <em>using</em> <code>$stdin</code> instead of $stdin.to_s</p> <pre><code>ruby -e 'p $stdin.readlines.size' &lt; INPUT 3 ruby -e 'p $stdin.to_s' "#&lt;IO:0x7fc7cc578af0&gt;" </code></pre> http://stackoverflow.com/questions/137661/how-do-you-do-polymorphism-in-ruby/137916#137916 6 Answer by manveru for How do you do polymorphism in Ruby? manveru 2008-09-26T05:31:50Z 2008-09-26T09:25:00Z <p>Using idiomatic Ruby</p> <pre><code>class Animal def sleep puts "#{self.class} is sleeping" end end class Dog &lt; Animal def make_noise "Woof!" end end class Cat &lt; Animal def make_noise "Meow!" end end [Dog, Cat].each do |obj| animal = obj.new animal.make_noise puts animal.sleep end </code></pre> http://stackoverflow.com/questions/83329/how-can-i-extract-a-range-of-lines-from-a-text-file-on-unix/83383#83383 4 Answer by manveru for How can I extract a range of lines from a text file on unix? manveru 2008-09-17T13:46:05Z 2008-09-17T13:46:05Z <p>Quite simple using head/tail:</p> <pre><code>head -16482 in.sql | tail -258 &gt; out.sql </code></pre> <p>using sed:</p> <pre><code>sed -n '16482,16482p' in.sql &gt; out.sql </code></pre> <p>using awk:</p> <pre><code>awk 'NR&gt;=10&amp;&amp;NR&lt;=20' in.sql &gt; out.sql </code></pre> http://stackoverflow.com/questions/79974/where-can-i-read-good-code-any-resources-for-that/80144#80144 1 Answer by manveru for Where can I read good code? Any resources for that? manveru 2008-09-17T04:58:26Z 2008-09-17T04:58:26Z <p>Just browse around <a href="http://github.com" rel="nofollow">github</a> and see if you find something that interests you.</p> <p>I found that reading any kind of code will most likely reflect on your own coding style. It's not that important whether it's good code or bad code, since that's mostly depending on the use case and who judges.</p> <p>Just become someone with an opinion, try to improve yourself and try to help others, join the IRC channel for some of the areas in programming that interest you and be sure to find people you can help, and in turn others will help you, peer review is just as powerful as reading.</p> <p>You may find reading the article at <a href="http://www.oblomovka.com/wp/2008/08/20/on-being-a-bit-of-an-idiot/" rel="nofollow">Danny O'Brien's Blog - on being a bit of an idiot</a></p> http://stackoverflow.com/questions/79474/setting-environment-variables-for-phusion-passenger-applications/80003#80003 2 Answer by manveru for Setting environment variables for Phusion Passenger applications manveru 2008-09-17T04:30:03Z 2008-09-17T04:30:03Z <p>Before you do any requires (especially before requiring rubygems) you can do:</p> <pre><code>ENV['GEM_HOME'] = '/foo' </code></pre> <p>This will change the environment variable inside this process.</p> http://stackoverflow.com/questions/77748/mongrel-hangs-with-100-cpu-ebadf-bad-file-descriptor/78953#78953 2 Answer by manveru for Mongrel hangs with 100% CPU / EBADF (Bad file descriptor) manveru 2008-09-17T01:32:50Z 2008-09-17T01:32:50Z <p>Consider using <a href="http://seattlerb.rubyforge.org/ImageScience.html" rel="nofollow">ImageScience</a>, RMagick is known to leak massive amounts of memory and lock.</p> http://stackoverflow.com/questions/77744/how-can-i-change-the-text-color-in-the-windows-command-prompt/78741#78741 6 Answer by manveru for How can I change the text color in the windows command prompt manveru 2008-09-17T00:49:42Z 2008-09-17T00:49:42Z <p>On windows, you can do it easily in three ways:</p> <pre><code>require 'win32console' puts "\e[31mHello, World!\e[0m" </code></pre> <p>Now you could extend String with a small method called <code>red</code></p> <pre><code> require 'win32console' class String def red "\e[31m#{self}\e[0m" end end puts "Hello, World!".red </code></pre> <p>Also you can extend String like this to get more colors:</p> <pre><code>require 'win32console' class String { :reset =&gt; 0, :bold =&gt; 1, :dark =&gt; 2, :underline =&gt; 4, :blink =&gt; 5, :negative =&gt; 7, :black =&gt; 30, :red =&gt; 31, :green =&gt; 32, :yellow =&gt; 33, :blue =&gt; 34, :magenta =&gt; 35, :cyan =&gt; 36, :white =&gt; 37, }.each do |key, value| define_method key do "\e[#{value}m" + self + "\e[0m" end end puts "Hello, World!".red </code></pre> <p>Or, if you can install gems:</p> <pre><code>gem install term-ansicolor </code></pre> <p>And in your program:</p> <pre><code>require 'win32console' require 'term/ansicolor' class String include Term::ANSIColor end puts "Hello, World!".red puts "Hello, World!".blue puts "Annoy me!".blink.yellow.bold </code></pre> <p>Please see the docs for term/ansicolor for more information and possible usage.</p> http://stackoverflow.com/questions/67890/whats-the-best-way-to-hash-a-url-in-ruby/68028#68028 8 Answer by manveru for What's the best way to hash a url in ruby? manveru 2008-09-15T23:49:00Z 2008-09-15T23:49:00Z <p>Depending on how long a string you would like you can use a few alternatives:</p> <pre><code>require 'digest' Digest.hexencode('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "687474703a2f2f666f6f2d6261722e636f6d2f7961792f3f666f6f3d62617226613d3232" require 'digest/md5' Digest::MD5.hexdigest('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "43facc5eb5ce09fd41a6b55dba3fe2fe" require 'digest/sha1' Digest::SHA1.hexdigest('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "2aba83b05dc9c2d9db7e5d34e69787d0a5e28fc5" require 'digest/sha2' Digest::SHA2.hexdigest('http://foo-bar.com/yay/?foo=bar&amp;a=22') # "e78f3d17c1c0f8d8c4f6bd91f175287516ecf78a4027d627ebcacfca822574b2" </code></pre> <p>Note that this won't be unguessable, you may have to combine it with some other (secret but static) data to salt the string:</p> <pre><code>salt = 'foobar' Digest::SHA1.hexdigest(salt + 'http://foo-bar.com/yay/?foo=bar&amp;a=22') # "dbf43aff5e808ae471aa1893c6ec992088219bbb" </code></pre> <p>Now it becomes much harder to generate this hash for someone who doesn't know the original content and has no access to your source.</p> http://stackoverflow.com/questions/237/distributed-source-control-options/64379#64379 1 Answer by manveru for Distributed source control options manveru 2008-09-15T16:21:59Z 2008-09-15T16:21:59Z <p><a href="http://darcs.net/" rel="nofollow" title="Darcs">Darcs</a> seems to work on Windows just as well.</p> http://stackoverflow.com/questions/61675/recovering-from-a-broken-tcp-socket-in-ruby-when-in-gets/64313#64313 3 Answer by manveru for Recovering from a broken TCP socket in Ruby when in gets() manveru 2008-09-15T16:13:31Z 2008-09-15T16:13:31Z <p>You can use select to see whether you can safely gets from the socket, see following implementation of a TCPServer using this technique.</p> <pre><code>require 'socket' host, port = 'localhost', 7000 TCPServer.open(host, port) do |server| while client = server.accept begin readfds, writefds, exceptfds = select([client], nil, nil, 0.1) p :r =&gt; readfds, :w =&gt; writefds, :e =&gt; exceptfds p client.gets if readfds end until readfds end end </code></pre> <p>And here a client that tries to break the server:</p> <pre><code>require 'socket' host, port = 'localhost', 7000 TCPSocket.open(host, port) do |socket| socket.puts "Hey there" socket.write 'he' socket.flush socket.close end </code></pre> http://stackoverflow.com/questions/63998/hidden-features-of-ruby/64124#64124 10 Answer by manveru for Hidden features of Ruby manveru 2008-09-15T15:49:07Z 2008-09-15T15:49:07Z <p>Download Ruby 1.9 source, and issue <code>make golf</code>, then you can do things like this:</p> <pre><code>make golf ./goruby -e 'h' # =&gt; Hello, world! ./goruby -e 'p St' # =&gt; StandardError ./goruby -e 'p 1.tf' # =&gt; 1.0 ./goruby19 -e 'p Fil.exp(".")' "/home/manveru/pkgbuilds/ruby-svn/src/trunk" </code></pre> <p>Read the <code>golf_prelude.c</code> for more neat things hiding away.</p> http://stackoverflow.com/questions/23970/how-do-i-marshall-a-lambda-proc-in-ruby/38588#38588 Comment by manveru on How do I marshall a lambda (Proc) in Ruby? manveru 2009-11-18T09:00:28Z 2009-11-18T09:00:28Z ruby2ruby only works on 1.8, there is no official way to deserialize bytecode of 1.9 yet. http://stackoverflow.com/questions/1095546/thin-crashes-hard-with-ramaze/1095979#1095979 Comment by manveru on Thin Crashes Hard with Ramaze manveru 2009-07-09T11:35:46Z 2009-07-09T11:35:46Z It's very likely that it builds against Ruby 1.8 or at least requires a C-extension that was compiled against it. AFAIK, OSX messes around with $LOAD_PATH, i don't have a machine to try this on, sorry. http://stackoverflow.com/questions/80067/best-mocking-library Comment by manveru on Best Mocking Library manveru 2008-09-17T04:42:58Z 2008-09-17T04:42:58Z You should clarify the language you want to use as well as what you understand as mocking.