Alex Sharp

Results 61 comments of Alex Sharp

Potential of getting this merged soon? @pearkes

Separating out the token creation functionality from the request cycle stuff is useful and a good idea for lots of reasons. It makes the code easier to work with in...

I have a basic typescript definition file I'm using internally. I've been meaning to submit it to definitely typed: ```typescript /// declare module 'passwordless' { import TokenStore from 'passwordless-tokenstore' interface...

I'm seeing this as well, following the [consumer example](https://github.com/streadway/amqp/blob/1c71cc93ed716f9a6f4c2ae8955c25f9176d9f19/_examples/simple-consumer/consumer.go). I'm trying to capture a SIGINT, empty the queue and exit cleanly, but when I call `Channel.Cancel()` it hangs indefinitely. This...

Retracting above. May have been an issue with my code. Apologies.

After stepping through rails, I've found that the additional query occurs here in activerecord/lib/serialization.rb:76. Specifically, this happens when rails tries to serialize the associated 'content' object. This is with active...

So it looks like every attribute being serialized during the `to_json` call is ending up in the `send_with_searchlogic` method in lib/searchlogic/active_record/association_proxy.rb:10 (http://github.com/binarylogic/searchlogic/blob/v2.4.22/lib/searchlogic/active_record/association_proxy.rb#L10). The problem is that searchlogic automatically generates named...

Good point. So git flow feature rebase could do something like the following `git fetch origin/develop` `git rebase origin/develop` Currently it does `git rebase develop`, if I'm reading the code...

Thanks for the helpful and informative response. I agree published branches should _never_ be rebased to their remotes. I should have been more clear, but I was talking about the...

Not sure what you mean. We pass them in the `bldr` sinatra helper method here: https://github.com/ajsharp/bldr/blob/master/lib/sinatra/bldr.rb#L26, and they're made instance variable here https://github.com/ajsharp/bldr/blob/master/lib/bldr/node.rb#L25. This means they're accessible inside a template...