C. Brenhin Keller

Results 72 comments of C. Brenhin Keller

To be fair, CC0 is the one cc *thing* (I would say license except that it's not, just a public domain dedication) that's often considered acceptable for software. I don't...

Oh, also it looks like the Unlicense already *is* on the OSI approved list: https://opensource.org/licenses/unlicense so this is all already compliant from that perspective.

> At the moment, moving to Statistics would also preclude any breaking changes, no matter how minor, until Julia 2.0. Is adding things considered breaking? If not, that may be...

Oh, that could be cool! A `MallocArray` is basically just a thin wrapper around a pointer, so if you *have* a pointer you can make a `MallocArray` from it with...

I think adding a new type parameter could make sense -- that may actually help answer a related question about what type views should return (some discussion at https://julialang.zulipchat.com/#narrow/stream/137791-general/topic/StaticTools.2Ejl/near/291368732)

Ah yeah, so as I understand it, enabling multithreading in StaticCompiler currently would be rather hard. On the StaticTools side, some of the Libc functions that StaticTools calls may not...

Ah, these are good questions. Fixing `display` would be easy enough and we should definitely do that one way or another. The big question is whether we should try to...

My initial reasoning for including null-termination in `codeunits` and in `length` and etc. is basically just that this is a low-level package where implementation details really matter, so my general...

Also: hooray, first issue :tada:

One option may be to have `getindex` on ranges of a `StaticString` return a `StaticSubString` or `StaticStringView` view type which is explicitly not null-terminated and dispatches to methods which are...