Anton Kropp
Anton Kropp
Is there any way to easily inject into a constructor that does something like this ``` export class Foo { constructor({ foo, bar, baz }: { foo: Foo, bar: Bar,...
It would be really nice to be able to have a pre-apply verification hook for fields to enforce naming patterns, etc. We frequently run into our organization that people misname...
I have a sample test here: ``` "Anyvals" should "serialize json" in { val groups = (0 until 10).map(_ => AnyHolder( Some(TestAny("data")) )) val objectMapper = new ObjectMapper().registerModule(DefaultScalaModule) println(objectMapper.writeValueAsString(data)) }...
I am getting this error semi frequently on a consistent event type and I can't seem to tell if there is something in the _payload_ that is causing this or...
It seems that yarn nightly yesterday was at ``` YN0000: │ /private/var/folders/11/nh0v1jld7zd7b9zqm1774gtm0000gn/T/xfs-35f3355e STDOUT ➤ YN0000: Retrieving https://nightly.yarnpkg.com/latest.js ➤ YN0000: │ /private/var/folders/11/nh0v1jld7zd7b9zqm1774gtm0000gn/T/xfs-35f3355e STDOUT ➤ YN0000: Saving the new release in .yarn/releases/yarn-1.23.0-20220130.1630.cjs...
Is it possible to hydrate a list of options in the flags from an async function? A good use case would be to dynamically detect the input options for an...
It seems that flush should be checking the result of process.stdout.write to see if it was already flushed or not. For example ``` async function flush() { const p =...
2.8 supports api route prefixes. It'd be great to support this feature as well
https://github.com/gogo/protobuf/releases is at 1.1.1 right now and the veneur dependency is pinned to 0.5.0 (https://github.com/stripe/veneur/blob/master/Gopkg.toml#L45) 1.x protobuf introduced some new types and fields in generated protobuf types that aren't available...
Figured since you already had a base project to do support dropwizard logstash plugins that I could add in the flat file based logging that I was using into your...