Robert Kieffer

Results 120 comments of Robert Kieffer

Can someone from this project provide a high-level update on what's going on with this service? Specifically, who's the one responsible for it these days, and what (if anything) is...

`origin` should reflect exactly-and-only what exists in the request. Special casing the behavior will be confusing and unexpected, especially when proxies/load balancers/VPNs start getting involved.

> HTM@1 legacy Are you referring to this module, `htm` version 1 (as opposed to, e.g., the XHTML spec)? So... not a convention anyone is using outside of this module?...

https://github.com/sergi/jsftp#ftpgetremotepath-callback will provide a `Stream` that you can listen to `data` events on. E.g. ``` client.get('your_file_here.txt', (err, socket) => { if (err) return console.log(err); const chunks = []; // `data`...

Using the `variant` field to signal different bit semantics within RFC 4122 versions is not appropriate. The `variant` field is the overarching field that dictates layout and semantics of all...

> What about using variant=0b111 in a new format (without version)? Expanding the variable part by three bits reduces the probability of collisions by almost an order of magnitude. You...

> I'm hoping this can help move things toward greater simplicity in the spec/proposal. | Before | After | |---|---| | RFC4122 is variant 0b10x | RFC4122 is variant 0b10x...

> In Draft 02 set definition of any UUID Version (UUIDv1/2/3/4/5/6/7/8) + Variant E (111) as a method for signaling an alternative bit layout to any previously defined UUID. This...

> The logic I'm proposing... > ... I don't think it's overly complicated and confusing I understand what you're proposing. And I agree that, had this been the bit layout...

> Is there some specific real-world problem that this would cause that I'm missing? These sorts of questions are harder to answer: - "Is [some UUID] valid?" - "What version...