Valérian Rousset
Valérian Rousset
let’s also make sure we have the needed resources in our repos, if people want to deploy somewhere else in the future (cf @martinjaggi) currently, our gcloud server is hosting...
currently, most tasks are hardcoded inside discojs-core, which looks to me as out of place: it kinda encourage people to expect that it will always contains theses tasks thus directly...
currently, the deployed server & webapp are quite old (~7 months). per monday discussion, let's move to have rolling releases * [ ] merge separated "production" & "development" branches into...
Based on remarks from @JulienVig, WDYT? The name on NPM doesn't match the ones in the repo, that's confusing, and some paths are nested unnecessarily. Proposed list of renaming, from...
see [jira's issue](https://jira.mongodb.org/projects/MONGOCRYPT/issues/MONGOCRYPT-583) for general intro. some comments now * when loading system, only load the wanted library, so it creates target `bson_shared` if `USE_SHARED_LIBBSON` else `bson_shared`; that allows to...
I'm trying to find how `onet.Roster` is serialized by protobuf. Sadly, when encountering an interface, such as `kyber.Point`, it fails. ```golang protobuf.GenerateProtobufDefinition(os.Stdout, []interface{}{ new(onet.Roster), }, nil, nil) ``` It would...
I'm refactoring the streaming capabilities of onet. Now, I'm having issues understanding what is the need for a bidirectional stream. Which real use case cannot be solved by opening a...
When a streaming handler returns a non-nil error, it is logged but the client is not informed of the call's failure. ```go s.RegisterStreamingHandler(func(*struct{}) (chan *struct{}, chan bool, error) { return...
When register a handler with an unscoped (ie, not existing at the root of a package, such as `struct{}` used directly), it fails with the following. ```go RegisterHandler(func (struct{}) (struct{},...
Some elements are tagged as `Deprecated`, we should remove theses in a next update. Here goes a list of the ones tagged: * `SendTreeMsgID` * `RequestRosterMsgID` * `SendRosterMsgID` * `OverlayMsg.{RequestRoster,Roster,TreeMarshal}`...