Hùng
Hùng
Just an idea on related problem, if we can have a cell delay widget for PlutoUI, it would be awesome. For very heavy computed cells that relies on many inputs,...
I've run in the same bug just now. My setup is exactly the same as OP's (neovim, with `nvim-lspconfig` and `JuliaFormatter.vim`). [lsp.log](https://github.com/julia-vscode/julia-vscode/files/8311646/lsp.log) Only two differences: - I use auto formatting...
Awesome work. Can you write a guide for using the standalone compositor please? That will help other to do the test and report stuffs too.
The tutorial fails again. Now `train.GradientDescentOptimizer(0.0001)` throw `UndefVarError: constant not defined` ``` Stacktrace: [1] #GradientDescentOptimizer#4(::String, ::Type{TensorFlow.train.GradientDescentOptimizer}, ::Float64) at /home/hung/.julia/packages/TensorFlow/JljDB/src/train.jl:67 [2] TensorFlow.train.GradientDescentOptimizer(::Float64) at /home/hung/.julia/packages/TensorFlow/JljDB/src/train.jl:67 [3] top-level scope at REPL[20]:1 ``` Edit:...
What do you mean? I was using master.
Nope, didn't work, sorry. Which commit did you use?
I had to unblock the wifi with `rfkill` first. After that, everything worked. ``` rfkill unblock wlan ```
> Maybe provide some general information on accessibility tooling will suffice? I agree with this, maybe we should provide info such as which package to install (since distributions has different...
[Upstream](https://github.com/BambooEngine/ibus-bamboo)'s last commit is 19 days ago, so I'd say it's still active.
My current workaround: ```julia function single_functional_term(f, x) symbol = Expr(:call, Symbol(f), x) fanon = eval(:(($x,) -> log($x))) StatsModels.capture_call(f, fanon, (x,), symbol, [Term(x)]) end f = let res = Term(:y) pres...