Daniel Schierbeck
Daniel Schierbeck
This can be a big source of latency.
We'd like to track these headers, but need to strip out PII.
I've started using Algebird in conjunction with Google Dataflow, which works great! My main data structure is a deeply nested case class that is implicitly a monoid – it contains...
Elm version: 0.19.1. Given this source: ```elm module Main exposing (..) ``` When compiling with `elm make src/Hello.elm`, I get the following error message. ``` Detected problems in 1 module....
I'm running into an issue that makes it hard to use Cache Digests in some cases. In the app I'm working on, users can upload custom templates. When these templates...
Subclasses of this class can easily delegate presenter methods to a backing object. A parameter with the same name as the class (e.g. `product` for `ProductPresenter`) must be passed and...
It would be great to get a description of a presenter, including all nested presenters. ``` ruby class OrganizationPresenter < Curly::Presenter def name; end def members(max: nil); end def open?;...
- Adds support for generating presenters with e.g. `rails generate curly:presenter posts/show`; - improves the presenter template.