Chris Bunch

5,158
reputation
359 views

Registered User

name Chris Bunch
member for 1 year
seen yesterday
website
location Santa Barbara, CA
age 24
I'm passionately ambivalent about programming and Computer Science, but check out my site for my random ramblings on the topic.
2d
awarded  Mortarboard
Dec
3
awarded  Notable Question
Dec
1
awarded  Notable Question
Nov
23
awarded  Enlightened
Nov
23
awarded  Nice Answer
Nov
15
comment Ruby - FlexMock Backticks Method
Yes, 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!
Nov
5
accepted Ruby specific thread semantics
Nov
5
awarded  Notable Question
Nov
4
answered Ruby specific thread semantics
Nov
3
answered How can I develop Rails alongside a XAMPP installation?
Nov
3
comment ec2 bundling on AWS (Amazon Web Services)
From 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).
Nov
3
answered ec2 bundling on AWS (Amazon Web Services)
Oct
30
accepted Ruby - FlexMock Backticks Method
Oct
29
answered Ruby - FlexMock Backticks Method
Oct
29
comment Ruby - FlexMock Backticks Method
Hmm, 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!
Oct
28
asked Ruby - FlexMock Backticks Method
Oct
28
answered is this a valid ruby syntax ?
Oct
28
revised Accessing local variable outside of class definitionNameError: undefined local variable or method `a’ for A:Class from (irb):2:in `send’ from (irb):2 from :0
put in code tags as needed
Oct
25
answered What is the error in this string loop?
Oct
24
comment Given a set of points, how do I find the two points that are farthest from each other?
Very true. But the hope is that if there are >1000 points, then many of them will be inside the convex hull.
Oct
24
answered Given a set of points, how do I find the two points that are farthest from each other?
Oct
23
awarded  Popular Question
Oct
12
awarded  Enlightened
Oct
12
awarded  Nice Answer
Sep
17
comment What do you think of Google’s new programming language: Noop?
What 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.
Sep
17
revised KVC: How to test for and existing key
cleaned up question
Sep
16
answered Invalid syntax error
Sep
14
awarded  Popular Question
Sep
14
answered Infinite Loop in C++
Sep
11
comment Equivalent of Backticks in Python
This 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)
Sep
11
asked Equivalent of Backticks in Python
Sep
11
comment Python - Find Path to File Being Run
Agreed! 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 file, which instead gave me the name of the file that function was in (not the file being run).
Sep
10
accepted What is your experience with software model checking?
Sep
10
awarded  Nice Answer
Sep
9
answered Virtualization & Cloud Computing - Where to start?
Sep
8
revised I am a java beginner. help me out with this simple code pls
added 98 characters in body
Sep
8
awarded  Good Answer
Sep
8
accepted Open Source Amazon EC2?
Sep
8
answered Open Source Amazon EC2?
Sep
8
awarded  
Sep
8
comment Open Source Amazon EC2?
Eucalyptus works with Xen or KVM just fine. I'm using it with Xen right now :)
Sep
3
revised Postgresql causing “no space on device” error but disks/partitions are not full
tagged and fixed code snippet
Sep
1
answered Python on Snow Leopard, how to open >255 sockets?
Sep
1
awarded  Notable Question
Sep
1
answered What’s a more idiomatic Ruby way of writing this?
Aug
31
revised Why is Clojure much faster than Scala on a recursive add function?
added link and more info based on comments so far
Aug
31
answered Why is Clojure much faster than Scala on a recursive add function?
Aug
30
awarded  Nice Answer
Aug
29
answered How to break outer cycle in Ruby?
Aug
24
revised how to load data from file to string array?
cleaned up question