Jerry Ling

Results 163 issues of Jerry Ling

![image](https://user-images.githubusercontent.com/5306213/187950356-6720119f-0d79-43b7-b88e-33802736059c.png) https://moelf.github.io/HSF_Julia_Tutorial/dev/notebooks/unroot_tutorial/ ![image](https://user-images.githubusercontent.com/5306213/187950404-42abdcf1-46ce-4e42-a26b-aab63d67c005.png)

```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:...

![image](https://user-images.githubusercontent.com/5306213/197619423-d680f35a-978d-4c0e-a4fc-46a66ffc03bb.png) 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...

feature request

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,...

enhancement

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...

enhancement

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 =...