John-Alan Simmons
John-Alan Simmons
You should user specified error types, instead of errors.New(...). It would make for much better error handling. ie. instead of errors.New("No record found") use: type NoRecordError string func (e NoRecordError)...
disclosure: I don't have a running instance of PrimeCMS, but I've been extensively pouring through the code for the last few days. When looking at your generated resolvers for the...
When a `Post` is made for an event, a for-loop is used to broadcast the event to all the channel registered to that event. But the send down the goroutine...
Resolves #2473 This is an initial draft PR to get feedback. Still, some rough edges that will be worked on, but this PR is already late enough relative to when...
Hello, I've been playing around with your library and so far love it. I am interested in what you see your plans are with respect to the idea of JIT...
It would be nice to have the ability to continously add rows to a table after Render() is called, and have it still print formatted like the rest of the...
Currently you can't set a specific logger to use, resulting in everything just being dumped to STDOUT. In a production environment, this can be a little annoying. Seeing as you...
The [PrintDAG](https://github.com/ipfs/go-ds-crdt/blob/3fb181fdd7870ef7f0ec9b4dc61331591a2d51e1/crdt.go#L750) should take either a PrinterFunc(line string) as an argument, or an io.Writer so you can control what the function prints to. I noticed the comments on the PrintDAG...
Based on the latest version (33.2). Currently the [`GenerateSecp256k1Key(src io.Reader)`](https://github.com/libp2p/go-libp2p/blob/a86d94e4084861dafb35ce85af0bd7262324a42d/core/crypto/secp256k1.go#L23) accepts a `io.Reader` parameter to use as its source of random ness to generate the new key, however it doesn't...
Currently, only `Primary Indexes` are implemented, which is a simple relation between `dockey/field => state_data`. Effectively this is an index on the `dockey` field of a document. This is a...