Jerry Ling
Jerry Ling
 https://moelf.github.io/HSF_Julia_Tutorial/dev/notebooks/unroot_tutorial/ 
```julia ulia> function main() rounds = StaticTools.read(c"./rounds.txt", MallocString) return 0 end main (generic function with 1 method) julia> main() # rounds is m"100000000\n" 0 julia> compile_executable(main, (), "./") ./wrapper.c:3:5: warning:...
 https://github.com/scikit-hep/hepstats/blob/85cdb1e9c0a2699fbe4715ff7c879f068ca7452f/src/hepstats/modeling/bayesian_blocks.py#L53-L54
Say I originally does `julia -e "println(3)"`, since obviously I can't do: ``` julia --startup-file=no -e 'using DaemonMode; runargs()' -e "println(3)" ``` what's the correct syntax?
Users probably want to read/write directly to a `.gz` file to save space. Can be done easily with https://github.com/JuliaIO/TranscodingStreams.jl
### What feature would you like to see? I'm editing very similar files and would like to re-use book marks from one file ### How will this feature be useful...
following development of https://github.com/JuliaLang/julia/pull/47184, it seems that this package would benefit from including realistic composite workload. For example, consider this slow TTFP: ```julia julia> using PrettyTables julia> @time @eval pretty_table(devnull,...
Sometimes the type is only interpreted as sign or not signed, in that case I try to use something like ```julia @define_integers 32 _ Index32 ``` but then it errors...
Just wanna open an issue to track this
consider this example from a Jax discussion: Source code ```julia function run_julia(height, width) y = range(-1.0f0, 0.0f0; length = height) # need Float32 because Jax defaults to it x =...