Moiseev Dmitrii
Moiseev Dmitrii
I've found the best solution to be fixing PATH in my sudoers file: ``` Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ``` This prevents asdf shims from being executed through sudo, which is typically what...
Seems like there are several separate parts to this. For the use case of version-controlled `.venv` files, it might make sense to read the current value and offer to make...
Since 2020 venv does indeed set the `VIRTUAL_ENV_PROMPT` envar on activation: [commit](https://github.com/python/cpython/commit/c82dda1e08c4b74ca24f88d6a549d93108c319cf)
As a hack for those using xmonad, you can preannotate the workspace tags ```haskell import qualified XMonad.StackSet as W annVisible :: X WorkspaceSort annVisible = withWindowSet $ \wset -> pure...
There were some updates to the [`error_generic_member_access`](https://github.com/rust-lang/rust/issues/99301) API recently, which is why nightly tests are failing. I'll open a separate PR to fix this. Done #294
@tyranron I implemented this with the existing parsing since it was an easy change. Would it be preferable to refactor the derive first, similarly to #286?
> Could you share a concrete example for when this is useful? The main use case I can see is transparent error variants Something like ```rust #[derive(Debug, Display, Error) enum...
Why not just run it through pawk twice? ``` $ cat meetings.txt | pawk '/Bob/' | pawk '/Alice/' ``` it's only a few characters longer than the syntax you're suggesting