gitboy16

Results 25 issues of gitboy16

Hi, Thank you for implementing HTML. I was wondering if it is possible to merge cells in a HTML? Example here:https://www.computerhope.com/issues/ch001655.htm In R for example, there is the flextable package...

Hi, Is there a way to control the number of threads used before a loop? Let's say I start julia with 4 threads but for a specific loop i only...

As suggested by @KristofferC in the following link: https://discourse.julialang.org/t/using-package-install-automatically/70896/5 I am opening an issue so that maintainers can discuss whether they deem it useful or not to have an option...

DotNET never crashes when I use it in the terminal but it does when I use it in VSCode. To reproduce the issue just type `using DotNET` in the julia...

help wanted

Hi, In the following blog: https://julialang.org/blog/2019/07/multithreading/ The variable `m` is not defined in: ```julia temp = temps[Threads.threadid()] length(temp) < m-lo+1 && resize!(temp, m-lo+1) copyto!(temp, 1, v, lo, m-lo+1) ``` Could...

Hi, I got the following warning twice while running tests on Julia 1.8. ```julia Warning: broadcasting get property is deprecated for SubDataset and will be disallowed in the future. Use...

code cleaning
test

Hi, Is there an example on how to curl get and post using LibCURL.jl? For example is it possible to do: ``` curl "http://localhost:8000/echo" ``` Or ``` curl -H "Content-Type:...

Hi, I think it would be nice to have something like: ```julia julia --test-package=folder ``` To test a local package (a bit like cargo test in the rust world). Is...

packages
feature

Hi, I was windering if there is a way to use CxxWrap with boost_jll to call a boost function in a julia package? If yes, would it be possible to...

Hi, I was wondering if it possible to expose the parallel sortperm function for "normal" vectors like Vector{Float64} or Vector{Int64}? Thank you Kind regards

enhancement