Thomas B
Thomas B
Not sure to what extent we want this because it's maybe a bit edge-case to support. I've needed it because I'm joining on a partially-migrated schema that has FK types...
Implemented this, then realized I in fact didn't need it, figured that a draft PR would be a good place to put it nonetheless so that we don't lose the...
Unless I'm mistaken, with the current implementation, generated path for (9,2) -> (6,4) gives [(9,2), (8,2), (7,3)], so: ``` ..xx .x.. x... ``` with top right being (9,2) and bottom...
### Problem Statement When an error happens, a user may want to add additional details about what they were doing when the error happened, but they may also want to...
Currently to insert in the `LinearMap` and get a mutable reference to the corresponding value (`map.entry(key).or_insert_with(...)`), it's necessary to `.insert()` then `.get().unwrap()`, because there is no entry API or assimilated....
e.g. ```rust use std::sync::Arc; pub struct Iter { arc: Arc, #[borrows(mut arc)] iter: std::slice::Iter Iter { pub fn new(arc: Arc) -> Self { Iter { inner: IterInner::new(arc, |a| a.iter()), }...
I've had two use-cases recently for Ouroboros structs where my borrowed field was already a `StableDeref + AliasableDeref` pointer. One was a `std::cell::Ref`, and one was an `std::sync::Arc`. In both...
Resolves #69 Resolves #65 **What it does:** - When the `services.vscode-server.enableForUsers.enable = true` is specified and using `nixos-vscode-server` as a NixOS module, uses `tmpfiles` to setup the appropriate symlinks to...
These permissions would be auto-refused on A13, leading to the app refusing to start with an error message like "you have not granted the requested permissions". I've found that the...
**Describe the bug** A few releases ago, it became possible to use VSCode Vim when editing comments from the Github Pull Requests extension. This was absolutely amazing, and game changer...