flamingos-cant (hopepunk arc)

Webp’s strongest soldier.

  • 23 Posts
  • 108 Comments
Joined 3 years ago
cake
Cake day: June 12th, 2023

help-circle







  • flamingos-cant (hopepunk arc)@feddit.uktoLemmy Shitpost@lemmy.worldVeganuary
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    1
    ·
    2 months ago

    Vitamin B12 is the main one that’s hard to get. It’s not really natural to any foods apart from animal products.

    Iodine is also a tough one. Though you’re probably deficient in this anyway depending on how much sea food and dairy milk you eat. Technically iodine isn’t natural to milk, but we feed iodine supplements to dairy cattle.

    You can get enough of both of these by drinking enough fortified plant milks, but it’s like half a litre a day and idk I find that’s just a lot.

    I’m personally just lazy and take supplements, the Vegan Society here in the UK do ones that are affordable and have everything you need in them. If you live far enough north or south you should be taking vitamin D supplements anyway, at least during the winter.
















  • A ‘mode’ in emacs is a set of bindings which associate specific keys with specific functions.

    Not quite, a mode is basically a lisp function defined with a different macro that integrates it into the various systems (like showing up in the modeline when active). It can do basically anything, including setting keybinds.

    ‘modes’ can be stacked on top of each other, with higher modes being able to intercept key presses before they reach lower modes, and changes / manipulate lower modes (I think?)

    No, a keybind can only run one function and what that function is is whatever last defined a binding for that key. Like, if one mode defines a key to be something and you activate another that also binds that key, the latter takes over.

    Emacs does have something like you describe, where functions can be ‘advised’.