Fons van der Plas
Fons van der Plas
I am using HypertextLiteral to generate the entire contents of an HTML file, but HypertextLiteral.jl won't let me write `` or `` on the first line: This is not a...
```julia julia> URIs.splitpath(URIs.URI("https://asdf.com/a/b?x=y#z")) 2-element Vector{String}: "a" "b" julia> URIs.splitpath("https://asdf.com/a/b?x=y#z") 5-element Vector{String}: "https:" "" "asdf.com" "a" "b" ``` Based on the documentation for `splitpath`, I expected both to return the same...
JavaScript: ```js > new URL("./style.css", "http://x.org/wow/index.html").href "http://x.org/wow/style.css" > new URL("./style.css", "http://x.org/wow/index.html/").href "http://x.org/wow/index.html/style.css" ``` URIs `master`: ```julia julia> joinpath(URI("http://x.org/wow/index.html"), "./style.css") URI("http://x.org/wow/index.html/style.css") julia> joinpath(URI("http://x.org/wow/index.html/"), "./style.css") URI("http://x.org/wow/index.html/style.css") ```
How do I use URIs.jl to add a query parameter to a URL that _might already have query parameters_? e.g. ```julia URIs.magicfunction(URI("http://hello.com/page?x=123", Dict("y" => "no")) == URI("http://hello.com/page?x=123&y=no") URIs.magicfunction(URI("http://hello.com/page", Dict("y" =>...
It would be nice if GitHub.jl could provide this functionality out-of-the-box! Storing the last result and using the dictionary to request the next pages can be a bit cumbersome.
Hi all, `Images.jl` can be a bit tough to work with, because you need to _manually_ install the dependencies `ImageIO` and `ImageMagick` for the show methods to work, and the...
Hey! Because of https://github.com/JuliaLang/julia/issues/46635, pressing `Ctrl+C` in the terminal no longer interrupts `HTTP.listen` in Julia 1.8, you need to hold down `Ctrl+C` to force a SIGINT. https://user-images.githubusercontent.com/6933510/191505065-cdc0b986-d08b-4767-a280-e02df5c6cd09.mov There are workarounds,...
If I type `HTTP.UR` in the Julia REPL and press TAB, nothing comes up. This can make HTTP.jl difficult to use. The same for: `URIs`, `URI`, `Router`, `@register`, `splitpath`, `unescapeuri`,...
Hi @pepijndevos ! We have a new package, https://github.com/JuliaPluto/AbstractPlutoDingetjes.jl, which gives one feature that would be interesting for this app: https://docs.juliahub.com/AbstractPlutoDingetjes/UHbnu/1.1.2/#AbstractPlutoDingetjes.Bonds.transform_value-Tuple{Any,%20Any} It allows you to transform the value that you...