Kirill Müller

Results 607 issues of Kirill Müller

The relevant info can also be hard-coded in the R code. https://github.com/duckdb/duckdb-r/pull/73#issuecomment-1962439369

I'm struggling to run the images (or R, for that matter) on my M2 in a virtual machine using Rosetta. I'm experimenting with arm64 images in https://github.com/cynkra/r-debug. These Dockerfiles have...

I've been using this recently in several projects: https://github.com/krlmlr/dm/blob/9c6ee29b7ac93f47484b2052dc6f6b73755ac8c9/R/cache.R The idea is to attach a hidden environment to the search path that hosts the caching env. Useful e.g. for database...

for `install_missing_packages()`. - [ ] Qualified access with `::` - [ ] `loadNamespace()` - [ ] `requireNamespace()` Also warn if `library()` or `require()` is used.

enhancement

It would be *awesome* if `remake` used `BatchJobs` as backend to perform its computation. `BatchJobs` has also a "local" mode that performs the computation in the same R process, so...

https://cran.r-project.org/web/packages/CodeDepends/index.html https://cran.r-project.org/web/packages/CodeDepends/vignettes/intro.html

Similar to `make()` but does not check dependencies, just builds the target unconditionally. Useful for parallelRemake which now is capable of figuring out dependencies beforehand, CC @wlandau. Kind of the...

It seems that all string literals found in `remake.yml` rules are currently interpreted as targets. Would it be difficult to interpret constructs of the form `I("...")` as string literals, and...

Within a session, this should avoid recomputing file hashes where the file size and mtime have not changed. This exploits remake's internal caching. Fixes #110.

It would be awesome if `remake` took control of setting the random seed. Currently, it seems that it must be explicitly set by the user. Also, it would be nice...