Martin Angers

Results 89 comments of Martin Angers

Unlikely in the foreseeable future, sorry. If anyone is interested, I'll gladly give them collaborator access.

I see what you mean. Read the signature bytes, create a reader off of those bytes, and combine those bytes with the rest of the reader using a multireader. Sounds...

Maybe: make func statements (i.e. `func SomeName() {}`) accessible even before declaration, but func expressions (i.e. `SomeName := func() {}`) accessible only from the point of declaration forward. That's pretty...

Haha, I'm so not surprised :) Thanks for submitting the issue, I'm sure the compiler allows all kind of messy things right now. I'll fix this for the next release.

Actually this will be adressed in v0.4, when I rewrite the compiler. There's not much sense in fixing it right now as there are many other problems with the current...

Is there a link to that lua implementation? I might be interested in using this. Thanks!

We'll need a new table to store the host's disk status. I'd recommend making it a bit flexible so we're not stuck with today's requirement - today we only store...

@noahtalerman @lukeheath Did a review of this ticket as requested, everything looks good and clear to me. I think most of the complexity will be in figuring out the required...

@noahtalerman Regarding validation of config fields, one thing that came up in one of @roperzh 's PRs (https://github.com/fleetdm/fleet/pull/7353#discussion_r954127168) is that we will now have _legacy_ config fields, that have been...

> How much work would it take to return a warning like "the deprecated field name is deprecated in favor of new field name." ? > > I think we...