Silas Davis

Results 70 comments of Silas Davis

Blimey, would it be straight-forward to do the physical layout in the DOM with your current client-side? Looking at pretty_writer.clj, maybe we could do something crazy by sub-classing `java.io.Writer` and...

This looks like it might be useful: https://github.com/brandonbloom/fipp in terms of providing a pluggable pretty printer. Again... maybe I'll actually try and do it!

Like a top level `/v1` and `/v2` directory in the repo?

There are a number of reasons I tend to use it: 1. To control the rendering/marshalling of a value, e.g. `type HexInts []uint64` where I can define a MarshalJSON (or...

I think the basic idea would be to generate code for 'custom types' that implements `protoreflect.Message` (actually they should implement `protoreflect.ProtoMessage` but this just provides a layer of indirection between...

This works well for me: ```typescript import { map } from 'fp-ts/Record'; import * as t from 'io-ts'; export const partialRecord = (k: t.KeyofType, type: T) => t.partial(map(() => type)(k.keys));...

It's very clearly an aim of this library to push on FP in general and fp-ts in particular. Clearly this is part of the cake for @gcanti (https://twitter.com/GiulioCanti/status/1235521019131170817) who must...

I am wondering if I might be hitting something similar with the grpc native modules: ``` FATAL ERROR: HandleScope::HandleScope Entering the V8 API without proper locking in place 1: 0x9dab80...

the broken modules support is making upgrades quite painful. Would you mind git tagging some releases?

I came here asking for env var support having not sufficiently RTFM'd, this is great!