User Chris Bunch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:11:15Zhttp://stackoverflow.com/feeds/user/422http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1634980/ruby-flexmock-backticks-method0Ruby - FlexMock Backticks MethodChris Bunch2009-10-28T03:02:39Z2009-11-12T17:22:10Z
<p>I have Ruby code that uses the backticks in a number of spots and want to test it out. I'm using <a href="http://flexmock.rubyforge.org/" rel="nofollow">FlexMock</a> and want to mock that method somehow. I know the method is <a href="http://ruby-doc.org/core/classes/Kernel.html#M005960" rel="nofollow">Kernel, :`</a> but can't seem to get it to work with FlexMock. How would you do this? Here's a sample of a method I want to test:</p>
<pre><code>def foo
result = `ls`
if result.to_a.length > 0
true
else
false
end
end
</code></pre>
http://stackoverflow.com/questions/5071/how-to-add-cvs-directories-recursively1How to add CVS directories recursivelyChris Bunch2008-08-07T18:05:28Z2009-11-09T15:13:38Z
<p>I've played with CVS a little bit and am not the most familiar with all of its capabilities, but a huge annoyance for me is trying to add new directories that contain more directories in them. Running "<code>cvs add</code>" only adds the contents of the current directory, and using "<code>cvs import</code>" didn't look like the right thing either since it's still all code I'm producing (this howto claimed import is for <a href="http://www.thathost.com/wincvs-howto/cvsdoc/cvs_16.html#SEC136" rel="nofollow">3rd party sources</a>)</p>
<p>Do you guys know any way to recursively add everything in a given directory to the current CVS project (or if SVN or git makes this notably easier)?</p>
http://stackoverflow.com/questions/1671870/ruby-specific-thread-semantics/1671905#16719051Answer by Chris Bunch for Ruby specific thread semanticsChris Bunch2009-11-04T05:54:58Z2009-11-04T05:54:58Z<p>Your code creates a new <code>Thread</code> object with the corresponding block but never runs it, so when you do the <code>join</code>, you're waiting for a thread to complete that is never started. Start the thread before you do the join and it should be fine:</p>
<pre><code>d = Thread.new{ Thread.stop }
d.run
d.join
</code></pre>
http://stackoverflow.com/questions/1670211/how-can-i-develop-rails-alongside-a-xampp-installation/1670279#16702791Answer by Chris Bunch for How can I develop Rails alongside a XAMPP installation?Chris Bunch2009-11-03T21:33:27Z2009-11-03T21:33:27Z<p>If you're just using the box to develop and test Rails code, just run Rails on a different port than Apache/PHP. Rails has a built in web server that's fine for testing on, so I wouldn't worry too much about conflicting.</p>
http://stackoverflow.com/questions/1665193/ec2-bundling-on-aws-amazon-web-services/1665216#16652162Answer by Chris Bunch for ec2 bundling on AWS (Amazon Web Services)Chris Bunch2009-11-03T04:18:10Z2009-11-03T04:18:10Z<p>Did you re-bundle it as a 64-bit image? If so, you can't run it as a small image. Small images are 32-bit, while the smallest 64-bit image is m1.large.</p>
http://stackoverflow.com/questions/1634980/ruby-flexmock-backticks-method/1641684#16416840Answer by Chris Bunch for Ruby - FlexMock Backticks MethodChris Bunch2009-10-29T04:57:20Z2009-10-29T04:57:20Z<p>So it turns out the backticks method specifically maps to Kernel.`, which is fine until one looks at the FlexMock source to see what they consider to be valid method names. The regex they use essentially is checking for alphanumeric with ? or ! at the end, so backtick fails to match this regex.</p>
<p>Changing the code internally resolves the initial exception that is thrown, but doesn't actually make the code work as intended. I could have monkeypatched it as pierr suggested, but that would be extremely repetitive in my testing code, so I went the alternate route and just made a shell method in my library code that only does the backticks. This method then can be mocked out in the desired fashion, and since I only use the backticks in a small number of places, not a lot of my underlying code had to be changed.</p>
http://stackoverflow.com/questions/1634822/is-this-a-valid-ruby-syntax/1634862#16348621Answer by Chris Bunch for is this a valid ruby syntax ?Chris Bunch2009-10-28T02:23:55Z2009-10-28T02:23:55Z<p>It's definitely not what you appear to be wanting. The <code>include?</code> method takes in a <code>String</code>, which is not what <code>"apples" or "banana" or "cheese"</code> produces. Try this instead:</p>
<p><code>puts "yay" if ["apples", "banana", "cheese"].include?(step)</code></p>
<p>But it's unclear from the context what step is supposed to be. If it's just the single word, then this is fine. If it can be a whole sentence, try joel.neely's answer.</p>
http://stackoverflow.com/questions/1622059/what-is-the-error-in-this-string-loop/1622065#16220654Answer by Chris Bunch for What is the error in this string loop?Chris Bunch2009-10-25T21:05:02Z2009-10-25T21:05:02Z<p>Without any real context I would venture that <code>int i</code> should be replaced with <code>int index</code>.</p>
http://stackoverflow.com/questions/42566/getting-the-hostname-or-ip-in-ruby-on-rails6Getting the Hostname or IP in Ruby on RailsChris Bunch2008-09-03T20:56:07Z2009-10-25T02:46:38Z
<p>I'm in the process of maintaining a Ruby on Rails app and am looking for an easy way to find the hostname or IP address of the box I'm on (since it's a VM and new instances may have different hostnames or IP addresses). Is there a quick and easy way to do this in Ruby on Rails?</p>
<p>Edit: The answer below is correct but the clarification Craig provided is useful (see also provided link in answer):</p>
<blockquote>
<p>The [below] code does NOT make a
connection or send any packets (to
64.233.187.99 which is google). Since UDP is a stateless protocol connect()
merely makes a system call which
figures out how to route the packets
based on the address and what
interface (and therefore IP address)
it should bind to. addr() returns an
array containing the family (AF_INET),
local port, and local address (which
is what we want) of the socket.</p>
</blockquote>
http://stackoverflow.com/questions/1618398/given-a-set-of-points-how-do-i-find-the-two-points-that-are-farthest-from-each-o/1618458#16184589Answer by Chris Bunch for Given a set of points, how do I find the two points that are farthest from each other?Chris Bunch2009-10-24T16:31:44Z2009-10-24T16:31:44Z<p>Why not just compute the <a href="http://en.wikipedia.org/wiki/Convex%5Fhull" rel="nofollow">convex hull</a> of the points? Depending on the <a href="http://en.wikipedia.org/wiki/Convex%5Fhull%5Falgorithms" rel="nofollow">algorithm</a> you use, it takes either <code>O(n)</code> or <code>O(n log n)</code> time and eliminates all the inner points from consideration. Then, only check these outermost points to find the two that are the farthest away.</p>
http://stackoverflow.com/questions/55922/how-to-keep-concentrated-and-focused-while-waiting-for-your-compiler/55928#5592823Answer by Chris Bunch for How to keep concentrated and focused while waiting for your compiler?Chris Bunch2008-09-11T07:08:37Z2009-10-16T20:13:20Z<p>It's usually pretty hard for me to stay focused while it's all compiling, so I like to have something interesting to read on the internet that I can grab in snippets when compiling comes up.</p>
<p>Also, I am required by law to post this obligatory <a href="http://xkcd.com/303/" rel="nofollow">xkcd comic</a>:
<img src="http://imgs.xkcd.com/comics/compiling.png" alt="alt text" title="'Are you stealing those LCDs?' 'Yeah, but I'm doing it while my code compiles.'" /></p>
http://stackoverflow.com/questions/1434751/invalid-syntax-error/1434860#1434860-1Answer by Chris Bunch for Invalid syntax errorChris Bunch2009-09-16T18:59:35Z2009-09-16T18:59:35Z<p>From <a href="http://pydoc.org/1.6/time.html#-ctime" rel="nofollow">this page</a>:</p>
<blockquote>
<p>ctime(...)</p>
<p>ctime(seconds) -> string</p>
<p>Convert a time in seconds since the Epoch to a string in local time.</p>
<p>This is equivalent to asctime(localtime(seconds)).</p>
</blockquote>
<p><code>ctime</code> requires an argument and you aren't giving it one. If you're trying to get the current time, try <code>time.time()</code> instead. Or, if you're trying to convert the current time in seconds to a string in local time, you should try this:</p>
<pre><code>time.ctime(time.time())
</code></pre>
http://stackoverflow.com/questions/1423003/infinite-loop-in-c/1423025#14230250Answer by Chris Bunch for Infinite Loop in C++Chris Bunch2009-09-14T18:00:48Z2009-09-14T18:00:48Z<p>On the inner <code>while</code> loop, if <code>random[x][y] == minnum</code>, then <code>y</code> will never be incremented and the program will go into an infinite loop.</p>
http://stackoverflow.com/questions/1410976/equivalent-of-backticks-in-python3Equivalent of Backticks in PythonChris Bunch2009-09-11T13:47:53Z2009-09-11T14:17:50Z
<p>What is the equivalent of the backticks found in Ruby and Perl in Python? That is, in Ruby I can do this:</p>
<pre><code>foo = `cat /tmp/baz`
</code></pre>
<p>What does the equivalent statement look like in Python? I've tried <code>os.system("cat /tmp/baz")</code> but that puts the result to standard out and returns to me the error code of that operation.</p>
http://stackoverflow.com/questions/1059540/virtualization-cloud-computing-where-to-start/1401550#14015500Answer by Chris Bunch for Virtualization & Cloud Computing - Where to start?Chris Bunch2009-09-09T19:20:09Z2009-09-09T19:20:09Z<p>I went through a similar path as it sounds like you are trying to go through, so let me tell you what I did and you can pick and choose:</p>
<blockquote>
<p>Where should I start to learn about
virtualization & cloud computing?</p>
</blockquote>
<p>I learned about virtualization by example. If you've got a spare Linux box around, put <a href="http://www.howtoforge.com/installing-xen-3.3-with-kernel-2.6.27-on-ubuntu-8.10-x86%5F64" rel="nofollow">Xen</a> or <a href="http://www.howtoforge.com/virtualization-with-kvm-on-ubuntu-9.04" rel="nofollow">KVM</a> on it and play with some virtual machines. I used older versions of the guides in the previous links and found them to be extremely straightforward and easy to follow. And since cloud computing just adds a few more pieces on top of virtualization (such as network isolation for VMs), learning virtualization takes care of most of that.</p>
<blockquote>
<p>Anything from articles to academic
papers to blogs to books would be
great.</p>
<p>I would like to learn everything I can
from architecture to deployment on
cloud</p>
</blockquote>
<p><a href="http://www.allthingsdistributed.com/2007/10/amazons%5Fdynamo.html" rel="nofollow">Here's a link</a> to an article about Amazon's Dynamo, a chunk of the underlying storage system / database that lies under a large part of Amazon's architecture. An open-source implementation of the Amazon AWS APIs is <a href="http://open.eucalyptus.com/" rel="nofollow">Eucalyptus</a>, which you may want to try out if you have multiple Linux machines you're not using. More info describing the architecture of that can be found <a href="http://open.eucalyptus.com/wiki/Presentations" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1390977/open-source-amazon-ec2/1391383#13913832Answer by Chris Bunch for Open Source Amazon EC2?Chris Bunch2009-09-08T00:13:14Z2009-09-08T00:13:14Z<p>Similar to what other posters have mentioned, I would recommend <a href="http://open.eucalyptus.com" rel="nofollow">Eucalyptus</a>. It can use either Xen or KVM to manage virtual machines through the same Query API that Amazon EC2 provides. It also provides an S3-compatible service for storing files in buckets named Walrus. In case you need proof that you can run it over Xen, here's from the config file for Eucalyptus:</p>
<pre><code># The hypervisor that the Node Controller will interact with in order
# to manage virtual machines. Currently, supported values are 'kvm'
# and 'xen'.
HYPERVISOR="xen"
</code></pre>
http://stackoverflow.com/questions/1364955/python-on-snow-leopard-how-to-open-255-sockets/1364989#13649891Answer by Chris Bunch for Python on Snow Leopard, how to open >255 sockets?Chris Bunch2009-09-01T22:36:14Z2009-09-01T22:36:14Z<p>Did you install XCode and the developer tools off the Snow Leopard install disk? I'm able to open way more ports than you're able to:</p>
<pre><code>Creating socket 1
Creating socket 2
...
Creating socket 7161
Creating socket 7162
Creating socket 7163
Creating socket 7164
Creating socket 7165
Creating socket 7166
Traceback (most recent call last):
File "socket-test.py", line 7, in <module>
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/socket.py", line 159, in __init__
socket.error: (24, 'Too many open files')
</code></pre>
<p><code>sysctl</code> shows me a lot more info then your output shows (even with the grep) but the four lines you have match mine exactly, so all I can think of is needing something from the dev tools on the disk.</p>
http://stackoverflow.com/questions/1364113/whats-a-more-idiomatic-ruby-way-of-writing-this/1364132#13641323Answer by Chris Bunch for What's a more idiomatic Ruby way of writing this?Chris Bunch2009-09-01T19:10:55Z2009-09-01T19:10:55Z<p>I think it's fine the way it is. I'm a Ruby person, and I wouldn't laugh at you for writing it that way. It's clear what the code does and there's no real code duplication, so I wouldn't worry about it.</p>
http://stackoverflow.com/questions/1358902/why-is-clojure-much-faster-than-scala-on-a-recursive-add-function/1358928#13589285Answer by Chris Bunch for Why is Clojure much faster than Scala on a recursive add function?Chris Bunch2009-08-31T19:07:52Z2009-08-31T19:44:15Z<p>I would suspect it's due to how Clojure handles tail-cail optimizations. Since the JVM doesn't natively perform this optimization (and both Clojure and Scala run on it), Clojure optimizes tail recursion through the <code>recur</code> keyword. From the <a href="http://clojure.org/functional%5Fprogramming" rel="nofollow">Clojure site</a>:</p>
<blockquote>
<p>In functional languages looping and
iteration are replaced/implemented via
recursive function calls. Many such
languages guarantee that function
calls made in tail position do not
consume stack space, and thus
recursive loops utilize constant
space. Since Clojure uses the Java
calling conventions, it cannot, and
does not, make the same tail call
optimization guarantees. Instead, it
provides the recur special operator,
which does constant-space recursive
looping by rebinding and jumping to
the nearest enclosing loop or function
frame. While not as general as
tail-call-optimization, it allows most
of the same elegant constructs, and
offers the advantage of checking that
calls to recur can only happen in a
tail position.</p>
</blockquote>
<p>EDIT: <a href="http://stronglytypedblog.blogspot.com/2009/08/scala-tail-recursion.html" rel="nofollow">Scala optimizes tail calls also</a>, as long as they're in a certain form. However, as the previous link shows, Scala can only do this for very simple cases:</p>
<blockquote>
<p>In fact, this is a feature of the Scala compiler called tail call optimization. It
optimizes away the recursive call. This feature works only in simple cases as above,
though. If the recursion is indirect, for example, Scala cannot optimize tail calls,
because of the limited JVM instruction set.</p>
</blockquote>
<p>Without actually compiling and decompiling your code to see what JVM instructions are produced, I suspect it's just not one of those simple cases (as Michael put it, due to having to fetch <code>a.tail</code> on each recursive step) and thus Scala just can't optimize it.</p>
http://stackoverflow.com/questions/1352120/how-to-break-outer-cycle-in-ruby/1352143#135214311Answer by Chris Bunch for How to break outer cycle in Ruby?Chris Bunch2009-08-29T19:02:25Z2009-08-29T19:02:25Z<p>Consider <a href="http://ruby.activeventure.com/programmingruby/book/tut%5Fexceptions.html" rel="nofollow"><code>throw</code>/<code>catch</code></a>. Normally the outside loop in the below code will run five times, but with throw you can change it to whatever you like, breaking it in the process.</p>
<pre><code>catch (:done) do
5.times { |i|
5.times { |j|
puts "#{i} #{j}"
throw :done if i + j > 5
}
}
end
</code></pre>
http://stackoverflow.com/questions/1314592/how-can-i-get-the-binding-from-methodmissing/1314834#13148341Answer by Chris Bunch for How can I get the binding from method_missing?Chris Bunch2009-08-22T01:09:56Z2009-08-22T01:49:29Z<p>This may be a bit messier than you wanted, but here's one way I was able to do it.</p>
<pre><code>#x = 1 # can uncomment out this and comment the other if you like
A = Class.new do
x = 1
define_method :some_method do
x = 123
nonexistent_method
end
define_method :method_missing do |method, *args|
puts x
end
end
A.new.some_method
</code></pre>
<p>Replacing the class and method definitions with the <code>Class.new</code> and <code>define_method</code> calls is only half the job, though. Unfortunately, the ugly part is that it only works if you already define <code>x</code> beforehand, so you're not really grabbing the caller's binding (instead the callee is modifying the variable at a different scope).</p>
<p>This may be equivalent to just defining all your variables as globals, but this may work for you depending on your situation. And maybe with this you'll be able to find the last piece of the puzzle with this change in hand (if this doesn't work for you).</p>
<p><strong>EDIT:</strong> You can get the binding of any of the methods as follows, but even with it, I'm not able to <code>eval</code> successfully (be sure to put this at the top). This will fill up <code>@@binding</code> with the bindings for <code>some_method</code> and <code>method_missing</code> (in that order), so maybe that can help out somehow.</p>
<pre><code>@@binding = []
class Class
alias real_def define_method
def define_method(method_name, &block)
real_def method_name, &block
@@binding << block.binding
end
end
</code></pre>
http://stackoverflow.com/questions/1296501/python-find-path-to-file-being-run3Python - Find Path to File Being RunChris Bunch2009-08-18T21:02:54Z2009-08-20T12:59:21Z
<p>How can I find the full path to the currently running python script? That is to say, what do I have to put to achieve this:</p>
<pre><code>Nirvana@bahamut:/tmp$ python baz.py
running from /tmp
file is baz.py
</code></pre>
http://stackoverflow.com/questions/1297481/what-does-rem-stand-for-in-basic/1297487#129748728Answer by Chris Bunch for What does REM stand for in BASIC?Chris Bunch2009-08-19T02:09:15Z2009-08-19T02:09:15Z<p>I believe it stands for "Remark", that is, a comment. From the <a href="http://msdn.microsoft.com/en-us/library/zzw0d942%28VS.80%29.aspx" rel="nofollow">MSDN site</a>:</p>
<blockquote>
<p>Used to include explanatory remarks in
the source code of a program.</p>
</blockquote>
http://stackoverflow.com/questions/1294960/which-ubuntu-images-for-aws-hammonds-or-canonicals/1295049#12950490Answer by Chris Bunch for Which Ubuntu images for AWS: Hammond's or Canonical's?Chris Bunch2009-08-18T16:35:14Z2009-08-18T16:35:14Z<p>I personally use Hammond's over Canonical's, but not for any particularly deep reason. The Canonical images don't allow you to log in as root while Hammond's do, and while I understand the former is better from a security perspective, the applications I needed to run need to be able to ssh in as root. This made Hammond's amis optimal for programming with, at least for me.</p>
http://stackoverflow.com/questions/1284789/python-use-a-regex-to-filter-data0Python - Use a Regex to Filter DataChris Bunch2009-08-16T17:08:16Z2009-08-16T17:46:47Z
<p>Is there a simple way to remove all characters from a given string that match a given regular expression? I know in Ruby I can use <code>gsub</code>:</p>
<pre><code>>> key = "cd baz ; ls -l"
=> "cd baz ; ls -l"
>> newkey = key.gsub(/[^\w\d]/, "")
=> "cdbazlsl"
</code></pre>
<p>What would the equivalent function be in Python?</p>
http://stackoverflow.com/questions/766147/automatically-logging-exceptions-in-ruby2Automatically Logging Exceptions in RubyChris Bunch2009-04-19T21:37:50Z2009-08-09T15:31:51Z
<p>Is there a library or easy way to catch exceptions thrown in a Ruby program and log it to a file? I've looked over <a href="http://log4r.sourceforge.net/" rel="nofollow">log4r</a> and <a href="http://www.ruby-doc.org/stdlib/libdoc/logger/rdoc/index.html" rel="nofollow">logger</a>, but the docs on both don't provide any examples on how I would do this. I run this program remotely and lose handles to stdout and stderr, if that information helps at all.</p>
<p>What would you recommend?</p>
http://stackoverflow.com/questions/876711/plotting-simple-data-in-r3Plotting Simple Data in RChris Bunch2009-05-18T08:16:10Z2009-07-23T13:09:11Z
<p>I have a comma separated file named <code>foo.csv</code> containing the following data:</p>
<pre><code>scale, serial, spawn, for, worker
5, 0.000178, 0.000288, 0.000292, 0.000300
10, 0.156986, 0.297926, 0.064509, 0.066297
12, 2.658998, 6.059502, 0.912733, 0.923606
15, 188.023411, 719.463264, 164.111459, 161.687982
</code></pre>
<p>I essentially have two questions:</p>
<p>1) How do I plot the first column (x-axis) versus the second column (y-axis)? I'm trying this (from reading <a href="http://www.ats.ucla.edu/stat/R/gbe/scatter.htm" rel="nofollow">this site</a>):</p>
<pre><code>data <- read.table("foo.csv", header=T,sep=",")
attach(data)
scale <- data[1]
serial <- data[2]
plot(scale,serial)
</code></pre>
<p>But I get this error back:</p>
<pre><code>Error in stripchart.default(x1, ...) : invalid plotting method
</code></pre>
<p>Any idea what I'm doing wrong? A <a href="http://www.nabble.com/Problems-producing-a-simple-plot-td23347296.html" rel="nofollow">quick Google search</a> reveals someone else with the same problem but no relevant answer. UPDATE: It turns out it works fine if I skip the two assignment statements in the middle. Any idea why this is?</p>
<p>The second question follows pretty easily after the first:</p>
<p>2) How do I plot the first column (x-axis) versus all the other columns on the y-axis? I presume it's pretty easy once I get around the first problem I'm running into, but am just a bit new to R so I'm still wrapping my head around it.</p>
http://stackoverflow.com/questions/1149237/writing-an-activerecord-adapter0Writing an ActiveRecord adapterChris Bunch2009-07-19T04:23:23Z2009-07-19T11:07:10Z
<p>I'd like to write my own <a href="http://ar.rubyonrails.org/" rel="nofollow">ActiveRecord adapter</a> for the <a href="http://hadoop.apache.org/hbase/" rel="nofollow">HBase database</a> since none currently exist. However, I've been searching for a while online and can't find any good resources on how to write an ActiveRecord adapter. How would you go about doing this, or are there any links you can recommend?</p>
http://stackoverflow.com/questions/1149293/ruby-solitaire-game/1149296#11492960Answer by Chris Bunch for Ruby solitaire gameChris Bunch2009-07-19T05:41:10Z2009-07-19T05:41:10Z<p>I hear <a href="http://shoooes.net/" rel="nofollow">Shoes</a> is easy to use for GUI development, but I don't have any personal experience with it. You could use it to draw up the game screen and move the cards around once they're clicked. Asides from that, I wouldn't think there's any libraries you would need unless you have a particular problem in mind.</p>
http://stackoverflow.com/questions/526329/possible-to-abort-shutdown-on-linux/526334#5263344Answer by Chris Bunch for Possible to abort shutdown on Linux?Chris Bunch2009-02-08T20:45:48Z2009-07-19T01:23:11Z<p>From <code>shutdown</code>'s man page on BSD systems:</p>
<blockquote>
<p>A scheduled shutdown can be canceled
by killing the shutdown process (a
SIGTERM should suffice).</p>
</blockquote>
http://stackoverflow.com/questions/1634980/ruby-flexmock-backticks-method/1723913#1723913Comment by Chris Bunch on Ruby - FlexMock Backticks MethodChris Bunch2009-11-15T03:08:27Z2009-11-15T03:08:27ZYes, as my answer says though, flexmock doesn't allow for backticks to be in mocked method names, so while it may work for rspec, it doesn't work for flexmock. Thanks though!http://stackoverflow.com/questions/1665193/ec2-bundling-on-aws-amazon-web-services/1665216#1665216Comment by Chris Bunch on ec2 bundling on AWS (Amazon Web Services)Chris Bunch2009-11-03T04:23:46Z2009-11-03T04:23:46ZFrom the EC2 docs:
ec2-bundle-vol -d /mnt -k /mnt/pk-HKZYKTAIG2ECMXYIBH3HXV4ZBZQ55CLO.pem -c /mnt/cert-HKZYKTAIG2ECMXYIBH3HXV4ZBZQ55CLO.pem -u AIDADH4IGTRXXKCD -r i386 -p sampleimage
Here the -r i386 bundled it as 32 bit, while -r x86_64 bundles it as 64-bit. It should ask you which one you want if you don't specify it and have a default option (I believe it defaults to 64-bit).http://stackoverflow.com/questions/1634980/ruby-flexmock-backticks-method/1636462#1636462Comment by Chris Bunch on Ruby - FlexMock Backticks MethodChris Bunch2009-10-29T02:25:19Z2009-10-29T02:25:19ZHmm, I could use something similar to this, but it makes a lot of work that flexmock is designed to get around. Part of the problem is that the ` method is just named differently than standard methods so flexmock's internal regex doesn't think it's a real method, but +1 for the good idea though. Thanks!http://stackoverflow.com/questions/1618398/given-a-set-of-points-how-do-i-find-the-two-points-that-are-farthest-from-each-o/1618458#1618458Comment by Chris Bunch on Given a set of points, how do I find the two points that are farthest from each other?Chris Bunch2009-10-24T16:42:02Z2009-10-24T16:42:02ZVery true. But the hope is that if there are >1000 points, then many of them will be inside the convex hull.http://stackoverflow.com/questions/1440154/what-do-you-think-of-googles-new-programming-language-noopComment by Chris Bunch on What do you think of Google's new programming language: Noop?Chris Bunch2009-09-17T17:22:54Z2009-09-17T17:22:54ZWhat makes you think this language comes from Google? I can't find anything on the page that would suggest that. It just looks like these fellows are hosting their project on Google Code.http://stackoverflow.com/questions/1410976/equivalent-of-backticks-in-python/1410997#1410997Comment by Chris Bunch on Equivalent of Backticks in PythonChris Bunch2009-09-11T13:57:17Z2009-09-11T13:57:17ZThis actually doesn't work for me, as in this case, baz is a directory and I'm trying to get the contents of all the files in that directory. (doing cat /tmp/baz/* works in ticks but not via the method described here)http://stackoverflow.com/questions/1296501/python-find-path-to-file-being-run/1297407#1297407Comment by Chris Bunch on Python - Find Path to File Being RunChris Bunch2009-09-11T00:07:10Z2009-09-11T00:07:10ZAgreed! Sorry it took my a while to come around to it; I had taken a bit of a break from the code that used I need this for. But after much deliberation, os.getcwd() did exactly what I needed and not <b>file</b>, which instead gave me the name of the file that function was in (not the file being run).http://stackoverflow.com/questions/1390977/open-source-amazon-ec2/1391349#1391349Comment by Chris Bunch on Open Source Amazon EC2?Chris Bunch2009-09-08T00:05:38Z2009-09-08T00:05:38ZEucalyptus works with Xen or KVM just fine. I'm using it with Xen right now :)http://stackoverflow.com/questions/1314592/how-can-i-get-the-binding-from-methodmissing/1315612#1315612Comment by Chris Bunch on How can I get the binding from method_missing?Chris Bunch2009-08-22T18:18:41Z2009-08-22T18:18:41ZI tried it out on my box and like my answer, it relies on x being declared in a different scope also (here if x = 456 isn't stated, it doesn't work).http://stackoverflow.com/questions/1314403/rails-variable-in-model-not-workingComment by Chris Bunch on Rails variable in model not workingChris Bunch2009-08-21T22:11:48Z2009-08-21T22:11:48ZSo what's the problem (more specifically than 'it isn't working')? Is it that the user just isn't seeing "HOORAY", you're getting an exception somewhere, or something else?http://stackoverflow.com/questions/1284789/python-use-a-regex-to-filter-data/1284826#1284826Comment by Chris Bunch on Python - Use a Regex to Filter DataChris Bunch2009-08-16T17:27:46Z2009-08-16T17:27:46ZAh, yes, you are correct. I changed the question to match up with what I was actually trying to say. Thanks!http://stackoverflow.com/questions/1149237/writing-an-activerecord-adapter/1149422#1149422Comment by Chris Bunch on Writing an ActiveRecord adapterChris Bunch2009-07-19T08:20:09Z2009-07-19T08:20:09ZGreat idea. Thanks!http://stackoverflow.com/questions/936329/java-problems-rounding-numbers/936476#936476Comment by Chris Bunch on Java - Problems Rounding NumbersChris Bunch2009-06-02T02:32:53Z2009-06-02T02:32:53ZYes, I also like the use of pow in BigDecimal as opposed to in double. Thanks for the help, I appreciate it a lot!http://stackoverflow.com/questions/876711/plotting-simple-data-in-r/876856#876856Comment by Chris Bunch on Plotting Simple Data in RChris Bunch2009-05-18T14:57:29Z2009-05-18T14:57:29ZYup, that did it. Thanks for the help!http://stackoverflow.com/questions/779793/query-windows-search-from-java/787943#787943Comment by Chris Bunch on Query Windows Search from JavaChris Bunch2009-04-25T00:58:59Z2009-04-25T00:58:59ZAh, you're right. I'm not familiar with Windows Search and am running on a Mac, so I didn't realize it would invoke Explorer. Sorry about that!