Branden Visser
Branden Visser
I've experienced this fairly regularly on a high-traffic VNC connection. I've bound a listener to `server.on('error', ...)` as well but it doesn't help.
The exception raised to process was actually a chain reaction from another stream I had open. So long as you listen on `server.on('error'...)` in your own code, should be all...
Same here, running the `compile.sh` on a Lambda AMI, the resulting soffice binary on the CentOS machine gives the above error. That's for `6.2.1.2`.
AWS has some guidance on how to automate this workaround in a platform-agnostic way using Lambda: https://docs.aws.amazon.com/prescriptive-guidance/latest/patterns/deploy-coredns-on-amazon-eks-with-fargate-automatically-using-terraform-and-python.html Which is... something. I've had success for similar one-offs using terraform by using...
I've updated the wiki (because it actually let me...) to indicate that `.ts` config files will mysteriously break source maps: https://github.com/lorenwest/node-config/wiki/Configuration-Files#typescript---ts This issue is devious enough that I think it...
I'm building a Lambda function that has a dependency that references `aws-sdk`. The lambda environment provides `aws-sdk` for you so I don't want to bundle it (it adds about 6MB...
Do you mean like `values.map(_.getClass)`?
Thanks for the clarification. Does this rough example reflect more of what you'd want? ```scala sealed trait Option[+A] object Option { case object None extends Option[Nothing] final case class Some[A](a:...
Built-in type guards pretend that TS has excess property checking on unions, when really it doesn't. ```typescript type Step = | { name: string } | { name: string; start:...