Matijs van Zuijlen

Results 328 comments of Matijs van Zuijlen

I've looked at the example that @ojwb found and property `001F:8003` is just the content-type and does not contain the full message. That message contains bodies in plain text and...

I had a similar problem where users would use reset password instead of accepting the invitation. It turned out the password reset failed due to an invisible validation error on...

I have the same problem in Firefox on Linux. Also, cursor keys and page up/down don't work outside the search box. I can only scroll using the touch pad. This...

I would guess the unwanted scrolling is javascript related, so while removing `scroll-padding-top` might stop the actual effect from happening, the cause is probably still there.

I was able to reproduce the scrolling problem with pure css: ```html body { margin: 0; } .content { max-width: 40em; margin-left: 16px; margin-right: auto; } .sticky-header { position: sticky;...

The live_ast gem does something like this. Here's a quick proof-of-concept to work with method_source: ``` ruby require 'method_source' @store = {} def store src key = "(eval@#{src.hash})" @store[key] =...

@carlost yes, it is.

It looks like the problem is that `Rails.application` is nil at that point. It seems one work-around is to create a very small Rails application before loading `rspec/rails`. See [this...

I just encountered this issue. Specifiying the instance method doesn't work. I suppose you have to actually call the method as an instance method.

Ctrl+C quitting Rails instead of the currently typed command often trips me up as well. I'm wondering if Pry can intercept Ctrl+C while waiting for input?