Max Held

Results 285 issues of Max Held

I've run into some puzzling behavior: (For reproducibility, I used the rig image) ```sh docker run -it ghcr.io/r-lib/rig/ubuntu-22.04-release R --no-save ``` ```r pak::repo_resolve("PPM@2023-02-14") # CRAN # "https://packagemanager.posit.co/cran/16710885" pak::repo_resolve("PPM@2023-02-15") # CRAN...

I sometimes find myself in this situation: ```r if (rlang::is_installed("optional-package")) { # do something more fully-featured } else { # do a simpler version without the opt package } ```...

I want to separately construct conditions with `*_cnd()` and signal them with `cnd_signal()`. As far as I can see, it is currently not possible to set a `.frequency` (and id)...

## Prework - [x] Read and abide by **gt**'s [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html) and [contributing guidelines](https://github.com/rstudio/gt/blob/master/.github/CONTRIBUTING.md). - [x] Search for duplicates among the [existing issues](https://github.com/rstudio/gt/issues) (both open and closed). ## Proposal...

Difficulty: [3] Advanced
Effort: [3] High
Priority: [3] High
Type: ★ Enhancement
Focus: i18n

Using this `Dockerfile`, only slightly changed from the one recommended in the docs (see comments): ```dockerfile # Dockerfile from https://github.com/DeterminateSystems/nix-installer FROM ubuntu:latest RUN apt update -y # added git for...

The "Edit this page" button currently leads to a 404, as first reported in #391 The web UI currently gives this for https://zero-to-nix.com/start/nix-develop/, for example: ``` https://github.com/DeterminateSystems/zero-to-nix/edit/main/src/content/start/nix-develop/.mdx ``` The Correct...

Most typical flake boilerplates (e.g., [here](https://zero-to-nix.com/concepts/flakes/)) involve something like: ```nix # flake.nix { outputs = { self }: { } } ``` This tiggers this nixd lint: ``` attribute `self`...

enhancement

(This is a flakehub.com ticket, not related the CLI -- logging here for lack of another repo). I got confused today, because looking at https://flakehub.com/flake/hercules-ci/flake-parts, I thought that there must...

**Is your feature request related to a problem? Please describe.** Not a problem, I'm just too lazy to write a lot of, for example, this: ```nix programs = { actionlint.enable...

enhancement

this flake does not work, without the highlighted diff: ```nix { description = "Description for the project"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-parts = { inputs.nixpkgs-lib.follows = "nixpkgs"; url...