Jun Tian
Jun Tian
When displaying some custom julia struct in IPython, the string output is wrapped. But when I try `jl.display` instead, the struct is displayed correctly as expected. I'm wondering what we...
> Set a suitable package name without `.` This seems a bit annoying since one has to modify some upstream proto files. Or at least trying to parse `option julia_package="..."`...
Add more repos to sync README and LICENSE
MWE: ```julia using HTTP function handle(req) HTTP.Response(200, string(req.url)) end router = HTTP.Router() HTTP.register!(router, "/", handle) server = HTTP.serve!(router, "127.0.0.1", 8122) HTTP.get("http://127.0.0.1:8122") # empty result ```
Now we support `push(first)layer!` and `pop(first)layer!`. Sometimes, we added a layer with `push(first)layer!` and then we want to remove this layer later. Blindly calling `pop(first)layer!` may remove some other layer...
- Julia 1.6.7 - HTTP.jl 1.7.4 Quick example: ``` using HTTP HTTP.serve(HTTP.Router(), "0.0.0.0", 1234;stream=true) ``` Error message: ``` ┌ Error: handle_connection handler error │ exception = │ Server never wrote...
This package is pretty neat and helpful! Can we add some keyword arguments to the following function to reuse preallocated array and control whether to permute dims or not? https://github.com/fhs/NPZ.jl/blob/8834d3ceb9be626d254204580ad585edfacb8b1a/src/NPZ.jl#L229-L240
Hi @mfiano , Just found this package from the `new-packages-feed` channel on Slack. Really nice one! Several days back, I created a Julia wrapper of https://github.com/JuliaReinforcementLearning/FastNoise2.jl . I think both...