Mike Woodhouse

8,822
reputation
537 views

Registered User

name Mike Woodhouse
member for 1 year
seen 2 hours ago
website
location London, UK
age 50
These days, part-programmer (Excel/VBA, Ruby/Rails) and part-quantitative analyst and financial product modeller/designer. In the finance sector for almost 30 years now - currently occupied in the asset management division of Deutsche Bank.
1d
awarded  ruby
2d
comment How to calculate how many years passed since a given date in Ruby?
+1, but what if I was born on, say Date.new(1980, 2, 29) ? ;-)
2d
answered When is `eval` in Ruby justified
Dec
14
comment Good Ruby shell?
I use some parts of the [utility_belt](utilitybelt.rubyforge.org) gem - it takes some fooling around with before anything works nicely in Windows, but it's helpful.
Dec
13
revised Cascade delete in Ruby ActiveRecord models?
title was less informative than it might have been
Dec
13
accepted Ruby: “in `<=’: comparison of Fixnum with Array failed (ArgumentError)”
Dec
13
answered Ruby: “in `<=’: comparison of Fixnum with Array failed (ArgumentError)”
Dec
13
answered Question about Ruby on Rails, Constants, belongs_to & Database Optimization/Performance
Dec
9
revised Class designer
16 months later, noticed a word missing. Ho hum.
Dec
7
answered default scope in older rails versions
Dec
7
comment Static block in Ruby
What is your question? The part about rules in initialize? What have you tried so far? What problems have you encountered?
Dec
7
comment What’s the best AIR & Ruby integration tool/framework?
re "doesn't exist yet/unanswered": no disagreement here!
Dec
6
accepted Using tables in UDF’s in Excel 2007
Dec
5
answered Objective reasons for using Python or Ruby for a new REST Web API
Dec
5
comment How do I find .index of a multidimensional array
One thing I didn't see mentioned in the (several very good ) answers was that Ruby doesn't really support 2D arrays - they're really arrays of arrays, hence the two-level search.
Dec
4
comment Ruby Array group and average by hour
Note that Enumerable#reduce was introduced in 1.8.7 as the newly-preferred alias for #inject (I didn't know that, so others may also be unaware of it)
Dec
3
comment SQL query to replace all occurrences of space in a table with underscore
+1 400K rows in Access shouldn't pose too much of a problem. I wonder what he wants to do if there are values with > 1 consecutive space?
Dec
3
revised SQL query to replace all occurrences of space in a table with underscore
corrected spelling
Dec
3
comment Obscure your Ruby code?
Not sure why you would want to hide source code from the client who's paying for it. Or am I missing something? ;-)
Dec
3
answered What’s the best AIR & Ruby integration tool/framework?
Dec
3
awarded  Nice Answer
Dec
2
accepted How do you remove the documentation installed by gem install?
Dec
2
comment Is it possible to compare private attributes in Ruby?
+1 for sheer length ;-)
Dec
2
comment Is using get set properties of C# considered good practice?
Professors should be smart enough to know not to use absolutes! Unless he's redefined "never" to mean "not without an understanding and acceptance of the possible consequences"...
Dec
2
answered My Plan for Being a Great Web Developer (with Ruby on Rails specialty)
Dec
2
accepted excel macro to save as filename excel file and close open excel file
Dec
2
answered excel macro to save as filename excel file and close open excel file
Dec
1
answered Dynamically Create Arrays in Ruby
Dec
1
comment How to make a modulino in Ruby ?
I find it a handy way to work on (usually) small independent modules when they're still "young" - especially when I'm working in an editor within which I can execute immediately (like SciTE). It's obviously less of an issue where you have larger bodies of code and/or AutoTest. But I don't live in that world ;-)
Dec
1
comment Can anyone please help me with this SQL Query (works in SQLite DB Browser, but not in Rails)
As @Staelen points out, there's a strange character immediately before the "S" of "SELECT" in the code you've posted here. I don't think it's actually a dot: if I copy-paste it into a text editor, I see a "?", so it's probably something unprintable.
Dec
1
answered How to call a C# dll in ruby?
Dec
1
revised How to call a C# dll in ruby?
added some tags
Dec
1
comment How to call a C# dll in ruby?
not a dupe (of the question cited, at least) - that was about calling unmanaged code, this one's about managed.
Dec
1
awarded  Fanatic
Nov
30
comment Macro too big to run, keeps ‘not responding’.
@pjp: I can see what you're thinking, but it's VBA (and from the use of ActiveWorkbook, specifically Excel). VBScript doesn't allow Dim As - everything's a Variant. I'd prefer to see evidence of explicit references to ADO and early binding using Set .. As New ... but the CreateObject - which is being used in a very VBScript-y way, stuff is hardly the biggest problem. :-)
Nov
30
answered Macro too big to run, keeps ‘not responding’.
Nov
30
accepted Does Ruby On Rails support a table for every instance of a model database schema?
Nov
30
answered question about overriding initialize method
Nov
29
answered How do you remove the documentation installed by gem install?
Nov
28
answered has_many in Rails uses a JOIN
Nov
28
revised has_many in Rails uses a JOIN
added activerecord reference, since that's what the q is really about
Nov
28
comment What makes Ruby an Elegant Language?
If the next language were, say, PHP then one might perhaps consider the possibility of disagreeing.
Nov
27
answered Overcoming a basic problem with CSV parsing using the FasterCSV gem
Nov
26
comment How do you add an array to another array in Ruby and not end up with a multi-dimensional result?
well done for being the only one (of 5 I can see) who actually pointed out what was wrong with the code presented. +1
Nov
25
comment Ms Excel -> 2 columns into a 2 dimensional array
I don't think he does mean that: a Variant can store an array quite happily without any need for Dimming, ReDimming, ()s or whatnot. The result of SomeRange.Value, which returns 2-dimensional array, can be put straight into a variable decalred as Variant. It's a good (and sometimes maybe not so good) thing about VB/VBA Variants...
Nov
25
answered ExcelDNA / Managed XLL / Excel Interop
Nov
25
comment when building a web spider, should you use recursion ?
My immediate thought was also "queue". With the possible addition of a little de-duplicating intelligence, I expect that it would also provide the basis for a very robust scaling capability.
Nov
24
revised Ruby Interpreter crashes with a certain word
retagged - probably not visible to Rails watchers before
Nov
23
revised Rails: Sending cached gzip content directly to client using caches_action
retagged - rails tag is not the preferred one
Nov
23
revised Moving the :format attribute in routing from the end to beginning of route
rails tag is unnecessary