originalsouth

Results 25 comments of originalsouth

> cons: users need to do updating manually, and different users may use different version packages Perhaps a `CocCommand`/hook to update the environment?

> As of [729eef0](https://github.com/jwilm/alacritty/commit/729eef0c933831bccfeac6a355bdb410787fbe5f), on my system (Arch Linux, X11, awesome WM ), a visual bell stays "on" until some interaction with the window is performed (such as moving the...

Another work around: 1. download the latest Julia here https://julialang.org/downloads/ 1. unpack it to say `/path/to/unpacked/` 1. run `/path/to/unpacked/julia-*/bin/julia buildscript.jl`

> I wasn't able to reproduce this. Can anyone upload a logcat? See [logcatOutput.txt](https://github.com/nextcloud/android/files/8661043/logcatOutput.txt) (with redacted username/host/port/user-folders)

> Note that in Settings -> Auto Upload, if I disable and re-enable a folder by hitting the cloud button, it prompts: "Your device may have battery optimisation enabled ...."...

So the solution proposed by @OrangeGeeker also works for me. The files that were not uploaded since the app broke, however, remain unuploaded -- new files are uploaded. Is there...

@pwl you can change deps/BuildBootstrap.Makefile Line 161: ``` LIB_DEPENDENCY += $(LIBDIR)/lib$(LLVM_LIB_NAME).$(SHLIB_EXT) ``` to ``` LIB_DEPENDENCY += /usr/lib/libLLVM.so ``` if you use archlinux.

Perhaps, as a middle ground solution, the functions can be reexported then?

Seems to work for `gr` and `pyplot` but not for `plotly` and `plotlyjs`. Did not test `inspectdr` and `pgfplotsx`. ``` using GraphRecipes, Plots graphplot([0 1 1; 0 0 1; 0...

As a workaround can add a space when you fill the array: ``` using Graphs, Plots, GraphRecipes graph = smallgraph(:karate) begin node_labels = fill(" ", nv(graph)) #