Jakub Okoński

Results 77 comments of Jakub Okoński

It would be better to use something like ``` erb ``` Just to have _all_ locals there, instead of just `activity`.

Do you need this fix for your case? `#current_user` is a public method and a helper most of the time. I don't remember anyone complaining about this, is this an...

Perhaps you could use this to address the problem: http://api.rubyonrails.org/classes/ActionController/HideActions/ClassMethods.html#method-i-hide_action . I don't think anyone makes #current_user protected/private, does it work as a helper in views that way? On 16...

I understand why it's not working for you, but this helper has traditionally been a public helper in the controller, this convention is as popular as rails itself. Could you...

Well, aggregation of custom attributes works exactly as you'd expect it to be, you pass a hash to `tracked`: ``` ruby tracked params: {anything: :model_method, anything2: -> controller, model {...

Quick (possibly dumb) idea: can we make all the Builder functions accept _only_ other builders or slices of them? This would be a breaking change, but with positive safety implications...

@MaikKlein Is the whole idea undesirable, or just the implementation with `unsafe trait` in #253?

@MaikKlein There's a useful new extension I'd love to see: [VK_KHR_timeline_semaphore][1] [1]: https://www.khronos.org/registry/vulkan/specs/1.1-extensions/html/vkspec.html#VK_KHR_timeline_semaphore

I'm also not looking for any kind of implicit solution, I think we're in complete agreement here. Instead of a new object `Batch`, could we make it work with the...

@mehcode What would be the type safety story for `SELECT` queries? Your example seems to deal with a Vec of homogeneous queries and runs them in a pipelined fashion. What...