Jerry Ling
Jerry Ling
```julia julia> using FHist, CairoMakie julia> h = Hist1D(;binedges = 0:3, bincounts = [2, 0, 10]) julia> begin stephist(h; axis=(; yticks=[1,10,100], yscale=log10)) ylims!(1, 100) current_figure() end ``` 
sometimes one just want to judge ``` @time main_function_for_user(...) ```
I noticed that at the moment you need to convert a `DateTime` object by `(1e3 * datetime2unix(date))` to get it working in the `extent` keyword of anything, can we fix...
As title says, if 0 presents in the data, we should not draw it, at the moment, it pings everything to the top somehow: 
c.f. https://stackoverflow.com/questions/65551215/get-docker-cpu-memory-limit-inside-container Should `"auto"` be aware of the fact that the container has a limited CPU? for example if we see ``` / # cat /sys/fs/cgroup/cpu/cpu.cfs_quota_us 400000 / # cat...
https://openai.com/blog/introducing-chatgpt-and-whisper-apis ``` julia> CC = OpenAI.create_completion("-......................", "gpt-3.5-turbo") ERROR: request status HTTP/2 404: { "error": { "message": "This is a chat model and not supported in the v1/completions endpoint. Did you...
My current plan is to break this huge task into four large stages: ## Stage 1 (Before July 2024) In Stage 1 we aggressively use dummy data (raw bytes copied...
The package looks great and I hope this goes far. I see that Oliver already has an issue open re. DensityInterface. My main interest here is to see if we...
https://github.com/JuliaLang/julia/blob/0d00660a38f4d4049e12a97399e4ef613bf0d7dc/stdlib/Distributed/src/managers.jl#L568 for some reason we don't use the fact that we can call `Sockets.getpeername()` here, instead we read the stdout of the worker process. This is problemmatic mainly because: 1....
- https://github.com/jinyus/related_post_gen/pull/376 on top of this PR, if I include back a precompile workload: ```julia @compile_workload begin print("Precompiling main workload: ") main() end ``` I can see that the time...