Chris Grigg

Results 97 comments of Chris Grigg

There's an open issue with Google Recaptcha, https://github.com/google/recaptcha/issues/269. Might be nice if anyone else wanted to comment there so they'll give it some attention.

I'm still getting the timeout after upgrading. Any troubleshooting tips?

Just tried it out. When I swap my branch for this commit, I get: ``` /blah blah blah/app/models/user.rb:3:in `': undefined local variable or method `acts_as_token_authenticatable' for # (NameError) ``` I...

I like the idea of a `Path` class. @dpisarewski, what kind of behavior would you expect from it? At the least, I think we can expose each of the keys...

What do you think the default behavior should be? I guess it should mark the transaction as expired once this error occurs so it doesn't bother attempting to continue, right?

But if your transaction has expired, shouldn't it give you an error so you can react to it? We could definitely add an `expired?` instance method that compares the current...

So once we get a response saying that a transaction is expired, it should mark it, `expired?` should return true, and all attempts to communicate with the server using that...

I don't really know... I think the question is whether `current` represents a transaction with the server or a transaction object within the app. As far as I'm concerned, it's...

But I do think that we should maybe subclass `CypherTransaction`, maybe `FailedCypherTransaction` or both that and `ExpiredCypherTransaction`, automatically created and assigned to `current` when the state of a transaction changes....

I'm not going to add a new class for failed transactions right now, a little too much going on. I was going to modify the behavior to prevent continued queries...