448 reputation
1415
bio website linklens.blogspot.com
location London, United Kingdom
age 41
visits member for 3 years, 1 month
seen yesterday
stats profile views 87

Been coding 30 years I guess. Just love to code, although don't get to do it as much as I would like these days. I teach computer science and design online for Hawaii Pacific University, which doesn't let me do as much coding as you might think :-)


May
21
comment how best to handling ruby nils, and should CSV return empty strings or nils?
Found a great talk that recommends the to_s method amongst other things: youtube.com/watch?v=T8J0j2xJFgQ
May
20
comment ZenTest errors preventing autotest from running
a more stable fix appears to be: "upgrade rubygems, uninstall zentest and reinstall zentest." seems to have worked for me on at least one system
May
17
answered twitter bootstrap css affecting google maps
May
17
comment twitter bootstrap css affecting google maps
didn't work for us using gmap4rails gem, but did when we changed to .map_container img { max-width: none; } .map_container label { width: auto; display:inline; }
May
14
comment ZenTest errors preventing autotest from running
@maasha I notice there is an issue on github now: github.com/seattlerb/zentest/issues/40
May
14
comment how best to handling ruby nils, and should CSV return empty strings or nils?
many thanks for the detailed suggestion. After various refactoring we now have a parse_address method: github.com/tansaku/LocalSupport/blob/master/app/models/… which is of course screaming for an extract class refactoring, but we've put that off til later. @steenslags to_s is very helpful. having to deal with match being nil is still very strange ... the match.length = 4 is actually a hangover from before when we through we could match the regex two ways - could lose that now - but would love match[1] to return nil if match was nil ...
May
14
comment how best to handling ruby nils, and should CSV return empty strings or nils?
@steenslag - we went with your suggestion and that has simplified alot of the code - if you want to add that as an answer I could give you a tick?
May
10
comment How to center map in gmaps4rails?
this worked for me too, but I don't understand why. Why does setting auto_zoom to true make centering to work ...?
May
9
awarded  Good Question
May
8
comment Rails with ruby-debugger throw 'Symbol not found: _ruby_current_thread (LoadError)'
this worked for me, but I had to remove gem "ruby-debug19" from the Gemfile
May
3
comment Why is localhost:3000 rendering css differently than my app hosted on Heroku?
Could the answer be similar to this issue: stackoverflow.com/questions/9056684/…
Apr
30
comment how best to handling ruby nils, and should CSV return empty strings or nils?
Steenslag - great suggestion - will have to try that ...
Apr
30
revised how best to handling ruby nils, and should CSV return empty strings or nils?
fixed some typos - tried to tighten up the question
Apr
30
comment how best to handling ruby nils, and should CSV return empty strings or nils?
Neil - we are using CSV to get the data out of CSV format
Apr
27
asked how best to handling ruby nils, and should CSV return empty strings or nils?
Apr
24
comment Why does Android org.json.* not implement the Map interface?
everything is true from some point of view - it's served it's purpose for me at the time
Apr
23
comment Hackbook Example Hangs and nothing happens on iOS
BTW, I just came back to my iOS6 simulator and it was unhung - was able to log in and all works ... curious
Apr
23
comment Hackbook Example Hangs and nothing happens on iOS
I have the same issue - I would argue that this isn't particularly localized and the question should be reopened to allow people to potentially answer it
Apr
11
comment default values for nested javascript hashes
ah got you - sorry I missed that you were recommending changing the syntax to the .get("x") - yeah, wish I could stick with ['x'] so much less verbose - I guess ._('x') is not bad too. And any custom Hash Class I made would have to change syntax too - I guess I can't easily override the [] operator like Object.prototype.[] = function(v){ ...
Apr
11
comment default values for nested javascript hashes
this looks cool, but doesn't it have dangerous side effects on other libraries that might be relying on the default get behaviour that returns 'undefined'? What I'd love is this mod, but restricted to the local code - hence a Hash class seems safer, no?