• 2 Posts
  • 127 Comments
Joined 8 个月前
cake
Cake day: 2025年1月15日

help-circle
  • Yes, they are very recognizable and the mushrooms in your photo are almost certainly K. mutabilis.

    However, Galerina marginata can look very similar under certain circumstances, which is why harvesting and consuming K. mutabilis is best left to experts. These species have been known to grow on the same substrate right next to each other which is why you should ID each mushroom individually.

    Personally, I think can tell the difference quite confidently and I still don’t harvest K. mutabilis. (I’m still waiting to find G. marginata a few more times and get to know them better.)







  • I like them lightly sautéed in butter with a pinch of salt. They’re very delicate and don’t take much time in the pan at all.

    But always make sure they’re fully cooked, never consume wild mushrooms raw (with very few exceptions).

    There is also concern about consuming certain types of Coprinus with alcohol, but to my knowledge shaggy inkcaps are safe in that regard.







  • Same for me. I distro-hopped for about 20 years with OpenSuse, Ubuntu, Debian, Arch and Fedora being the most memorable desktop setups for me. While all that was a valuable experience, NixOS feels like graduation.

    For the Nix-curious: I wish someone would have told me not to bother with the classic config and build a flake-based system immediately. They’re “experimental” in name only, very stable and super useful in practice.





  • surround the “\d+.” with a question mark group?

    If you’re expecting decimals, that’s the preferred solution:

    (?<!\d)(\d+\.)?\d+(?=\s*$)

    Otherwise you could do simply

    (?<!\d)\d+(?=\s*$)

    I added the lookahead (?=\s*$) to match digits at the end of the line only with possible trailing spaces.