Satoshi Terasaki

Results 81 comments of Satoshi Terasaki

๐Ÿค” It worked in my Organization FYI I created `DOCUMENTER_KEY` by following instructions on this link: https://github.com/JuliaRegistries/TagBot/issues/227#issuecomment-1784011651

I'm making an example of Weave.jl now. The content is taken from [Weave.jl's README.md](https://github.com/JunoLab/Weave.jl) - src: - https://github.com/terasakisatoshi/MathSeminar.jl/blob/master/programming/weave.jmd - https://github.com/terasakisatoshi/MathSeminar.jl/blob/master/_mytools/deploy.jl#L18 - result: https://terasakisatoshi.github.io/MathSeminar.jl/programming/weave/ If appropriate, please utilize it. ๐Ÿ‘

Thank you for your quick reply. > This will require some minor modifications atleast for the Flux layers code to make it julia 1.0 compatible O,K, I will study Flux.jl

Maybe, this issue can be closed. JSServe runs on JupyterLab v3 ``` $ jupyter lab --version 3.0.6 ``` ![image](https://user-images.githubusercontent.com/16760547/106383489-b17a5600-6409-11eb-84b5-b7fa789273e3.png)

Setting `github.user` before running `t = Template()` solves our issue. ```console $ git config --global github.user ``` There is yet another solution by setting `user=` i.e. ```julia julia> using PkgTemplates...

I could reproduce same error by constructing IR manually like `@trace pow(Float64, Int32)` without using @tshort 's converter above. https://gist.github.com/terasakisatoshi/81a97ae06323793512dd9be1a3b0eba7

Hello @thomarse-ef. I'm sorry to late reply for you. As for PortAudio.jl, it depends on alsa_plugins_jll and libportaudio_jll according to https://github.com/JuliaAudio/PortAudio.jl/blob/master/Project.toml#L7-L8 where foo_jll is a [JLL pakages (a pun on...

Fortunately, we can import `scipy` on windows ๐Ÿ˜… ```julia _ _ _ _(_)_ | Documentation: https://docs.julialang.org (_) | (_) (_) | _ _ _| |_ __ _ | Type "?"...

(ยดใƒปฯ‰ใƒป๏ฝ€)ใค ๐Ÿ’Š ```julia import PyCall PyCall.Conda.rm("mkl") PyCall.Conda.add("nomkl") PyCall.Conda.add("scipy=1.8.0"; channel="conda-forge") # we also could set "scipy=1.9.3" ``` Ref: https://github.com/JuliaPy/PyPlot.jl/issues/315#issuecomment-814652753 (It actually works, however, I'm not sure this is the best solution...

๐Ÿค” Should we add in `deps/build.jl` ```julia using PyCall if PyCall.conda if Sys.islinux() && ... ... end if Sys.isapple() && Sys.ARCH === :x86_64 buf = IOBuffer() PyCall.Conda.export_list(buf) for s in...