Jeremy Fleischman

Results 153 issues of Jeremy Fleischman

I'm using the ZeroTier One app on iOS. I'm running into the exact issue described in [this Reddit thread](https://www.reddit.com/r/zerotier/comments/1dxq84q/zero_tier_one_on_iphone_keeps_disconnecting/): 1. If I try to connect to my ZeroTier network through...

As far as I can tell, [libseccomp's Python library](https://github.com/seccomp/libseccomp/blob/main/src/python/) is not distributed on pypi.org. It is available through various package managers (such as [nixpkgs](https://search.nixos.org/packages?channel=24.11&show=python312Packages.seccomp&from=0&size=50&sort=relevance&type=packages&query=seccomp) and the [AUR](https://archlinux.org/packages/core/x86_64/python-libseccomp/)). I'm building a...

Credit goes to @Ma27 for [writing most of the code in this diff](https://github.com/NixOS/nixpkgs/issues/252980#issuecomment-1722185014), I just rebased their code and fixed a test bug (`curl --data-binary` instead of `curl -d`). Enabling...

6.topic: nixos
8.has: module (update)
10.rebuild-linux: 1-10
10.rebuild-darwin: 0

This demonstrates one way of reproducing https://github.com/Mic92/sops-nix/issues/659. There may be others: I think you could achieve the same thing with a regular secret rather than a template. Here's how this...

It's a bit finicky to correctly configure sops-nix to systemd services when [secrets](https://github.com/Mic92/sops-nix?tab=readme-ov-file#restartingreloading-systemd-units-on-secret-change) (or [templates](https://github.com/Mic92/sops-nix/issues/634)) change. There are some scenarios where this is necessary (some software is hardcoded to read...

lsp-format.nvim's [setup instructions](https://github.com/lukas-reineke/lsp-format.nvim/tree/v2.7.2?tab=readme-ov-file#setup) instruct you to use: ```lua require("lspconfig").gopls.setup ``` This mechanism [is deprecated](https://github.com/neovim/nvim-lspconfig/tree/v2.1.0?tab=readme-ov-file#configuration). See the note about "Nvim 0.10 (legacy, not supported)". IIUC, the modern alternative is to use...

This fixes https://github.com/lukas-reineke/lsp-format.nvim/issues/95

Here's an example of one place where `lsp-format.nvim` is using `.` style to invoke a lsp helper: . This was recently deprecated. See: - https://github.com/neovim/neovim/commit/454ae672aad172a299dcff7c33c5e61a3b631c90 - https://github.com/neovim/neovim/blob/43d552c56648bc3125c7509b3d708b6bf6c0c09c/runtime/doc/deprecated.txt#L48-L55

This fixes https://github.com/ebkalderon/tower-lsp/issues/399 and https://github.com/ebkalderon/tower-lsp/issues/424. Note: this will not compile until https://github.com/ebkalderon/tower-lsp/pull/406/ is merged.

This `COV_CORE_SOURCE` environment variable is key for making sure that child processes continue computing code coverage. However, there's no guarantee that child processes start in the same directory as their...