wdkrnls

Results 23 comments of wdkrnls

Fair enough. I suppose I will try and build daff instead :) I was under the mistaken belief it did not support sqlite. It's nice to learn I was wrong....

Yes, I am referring to the `$ENV[STOW_DIR] || '/usr/local'` logic at the top of (only) the chkstow utility source code.

Wouldn't the right thing here would be to add a `--dir` argument to `chkstow`? Then you could 're-root' all the relative symlinks into absolute links and grep through all of...

A similar issue seems to pertain to naively trying to define an R6Class in your project. However, since this function is in another package, it's not clear how to fix...

1. that is the Intel C++ compiler 2. I am not sure. I was under the impression that [Microsoft R](https://mran.microsoft.com/open) was all compiled with the Intel Compiler. However, in my...

I will look out for that upgrade and give building tidyxl another shot then on the Intel compiler. In the meantime, my friendly sysadmins have graciously gotten me set up...

Hi @nacnudus, I just tried again today with the Intel compiler. I'm still seeing "compilation aborted for xlex.cpp (code 2)". Fortunately, I have been able to keep everyone going with...

Perhaps you can check with the rstan developers for tips about what they do? They require the user to setup a special `~/.R/Makevars` file to configure the compilation of Stan...

Alas, I was lucky some friendly people packaged up ROCm OpenCL for my distribution.

Bridges can be found using `igraph::biconnected_components`! Thank you to Szabolcs Horvát for pointing me to it. The following code worked on my graph: ```r my_bridges = suppressWarnings({ my_tidy_graph %>% igraph::biconnected_components()...