Ivan Kurnosov
Ivan Kurnosov
Should be closed now?
I haven't yet, no. I just assumed if a client works then this should do as well :-)
@brunoenribeiro what exact values are expected to be passed in both of your examples? It's not immediately clear what a named element in an array is.
I actually like google-politics when reason about CLI commands/servers --- their configuration must be passed as command line arguments or environment variables entirely, without any config files. At the moment...
@Commod0re I actually suggested the opposite: client cannot dictate anything: if in the config I specified that the repository **must be** signed - then a client should not be able...
Awesome, I will allocate some time to prototype it after I return from a parental leave
I have found that there might be a better solution, using a concept of raven message processors: 1. Define a processor that normalises and fixes the broken utf8: ```php final...
Indeed. 2 points though: 1. `pick` should be implemented somewhere 2. Typescript's `Pick` second argument type checks that it makes sense. `Pick` wouldn't pass a type check. `pick(FooT.props, ['a'])` would...
@mlegenhausen is it my original post still discussed? I'm not sure I understand how intersection has anything to do with `Pick`?
@mlegenhausen I'm not sure I'm following: `Pick` where `K` is a `keyof T`. With intersection-based solution you must declare both types of the keys and the values. That's the significant...