Results 34 comments of Spencer Baugh
trafficstars

Well, the main hacky bit is the sleep-for. Everything else is fine I suppose, but relies on that core hackiness... I don't have signed FSF papers, but I've been meaning...

I don't myself have a need to run Kubernetes - I don't actually know if Kubernetes can even run without root. But I help run a collection of Unix machines...

Let me give a little more context and color on my scenario (since I think this scenario will be relatively common in an async codebase of sufficient size). Specifically in...

I use unittest with trio, and don't plan to ever migrate to pytest. It would be nice to be able to get rid of my homegrown TrioTestCase in favor of...

The test definition part - the part that allows defining tests as free functions, supplying mocks, and using assert. But I'm fine with using the pytest runner to run my...

Emacs 28 has undo-redo built in, so undo-fu is no longer necessary. Instead, you can do the following (untested): ``` (global-undo-tree-mode -1) (setq evil-undo-system 'undo-redo) (evil-set-undo-system 'undo-redo) ``` (If you...

That works great! But wouldn't it be better to expose a method that takes a Twitter screen name rather than a Twitter ID? To go from a screen name to...

@puckipedia on Libera #nixos has mentioned that changing the format of store derivations will cause all Nix derivations to hash differently, and thus all derivations (even old, already-realised ones) will...

I'm very interested in this too. Specifically, I have a somewhat interesting use case: I have another xref backend which supports jump-to-definition efficiently, but doesn't support jump-to-references, so it would...

FWIW I went ahead and did exactly what I just said, just improved the default `xref-backend-references` implementation to not be slow https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62837