Tim Krins
Tim Krins
I also came across this today while using a replicated database after running `chameleon detach_replica`. It seems everything comes across absolutely fine - all except the default values.
I think you meant to create this issue on https://github.com/ankane/ahoy.js. In any case, you can already do this yourself - you can send whatever data you want to `ahoy.track`. For...
@priomsrb Thanks for that PR! The 'Unable to find a visible, non-wrapper element' error is much clearer. Defaulting to the `body` tag in my particular case still did not do...
There is no such valid input - I think you wanted to write ``` ChronicDuration.parse('1:1:1:1:1:1.1') ``` Note the decimal place `... 1.1` rather than `... 1:1` Result is ```34239661.1```
Agreed. It should be returning `nil`.
This is a fantastic collection, many thanks. I can think of a few more items that would be super awesome to include, forgive me if any of them are silly...
Just for anyone interested - The chipset of the Victure SC220 camera is a Realtek RTS3903N
I don't think so. See issue https://github.com/TheCrypt0/yi-hack-v4/issues/29
Hi @molfar - I have done this in my own fork. The usage is akin to ``` Mobility::Plugins::Fallbacks.with_fallbacks(fallbacks_override_array_or_false) do ... end ``` I'll try create a PR over the weekend.
Depends what you want to be counting. The `p.steps.paginate(page: 1, per_page: 2).count` call will call the `count` method on the underlying `ActiveRecord::AssociationRelation` The `p.steps.paginate(page: 1, per_page: 2).to_a.count` call will execute...