Claire Foster

Results 128 issues of Claire Foster

Allow anonymous function syntax like `->_[1]` to mean `x->x[1]` as discussed in https://github.com/JuliaLang/julia/issues/38713 Exists in part of the same design space as https://github.com/JuliaLang/JuliaSyntax.jl/pull/148 You can try this in the REPL...

syntax change

Found as part of JuliaLang/julia#46372 - the reference parser treats triple quoted lines of uneven whitespace in a weird inconsistent way so this is changed in the new parser. This...

Hi, I just installed `pymatch` 0.3.4 via pip (inside a conda environment). Newly installed it could not be imported because the `seaborn` and `statsmodels` libraries weren't installed automatically. In fact...

Handy link to the document: https://github.com/JuliaLang/Juleps/blob/cjf/internal-properties/InternalProperties.md I started this over at https://github.com/JuliaLang/julia/issues/30975, but keep wanting to edit the description. I figure it might be better to put it here. This...

Currently the `easy_hook` function gets passed an `info` parameter with URL, method and headers: https://github.com/JuliaLang/Downloads.jl/blob/e22219f6cf8e474ace8624534188f23858e56779/src/Downloads.jl#L341-L342 But I can't see how to use this to set options on a per-request basis...

This allows any of the more esoteric CURL options to be applied as necessary on a per-request basis. This is the bare-bones approach to fixing #141 which I'm using in...

These changes allow CSTParser to be connected up as the main Julia parser. To use it, you currently need both a branch of the Julia runtime and of CSTParser: *...

The correct general behavior for `zero` and `one` is to construct a StaticArrays type which can represent the additive and multiplicative identities. Currently this doesn't always work for the reasons...

bug
design

Here I've tried implementing this for the sake of people using MArray in generic code, even though it's unlikely to be fast. (Furthermore I can't think of a way to...

feature
bugfix

It would be nice to have the option to use unix domain sockets or windows named pipes when both client and server are on localhost. This should improve security a...