Gábor Csárdi

Results 2446 comments of Gábor Csárdi

@wlandau Do you think it is possible to create a self contained docker container that reproduces this?

That's a good step. But I suspect that I would still need to set up an SGE cluster to run `qsub`.

FWIW there are some (old) dockerfiles with SGE, e.g. https://github.com/stevekm/docker-centos6-sge There is also this old recipe, which probably does not work any more: https://gist.github.com/dan-blanchard/6586533 Sure, you can send the strace...

Try https://docs.github.com/en/actions/learn-github-actions/environment-variables

This is a bug in pak. It might work if you drop the `any::` prefix for `XML`.

This is actually a relatively common error, and it needs to be fixed in pak.

Thanks! I updated these in separate commits, so I think this PR is not needed any more. I am sorry for not merging it, please let me know if something...

You mean the `class` attribute? You can call `as.character()` to drop that: ```r ❯ attributes(col_red("red")) $class [1] "cli_ansi_string" "ansi_string" "character" ❯ as.character(col_red("red")) [1] "\033[31mred\033[39m" ```

Maybe so, but adding `_bare` to all such functions will create ~60 more functions, which does not seem like a good idea, either.

Lots of packages add similar classes, e.g. glue. I think if the class attribute is in the way of snapshot tests, then we would ideally improve the snapshot tests.