Y u no Mamaleek

  • 0 Posts
  • 454 Comments
Joined 4 months ago
cake
Cake day: November 3rd, 2025

help-circle
  • Btw, if tea is too bitter for you, rooibos might fit better. Plus there are all kinds of herbal ‘teas’, or rather mixtures, that don’t contain tea proper — at least where I live. Although tea itself has barely any bitterness if you use a smaller dose of green tea, or something like white tea.

    Of herbal or aromatic teas, you might want to choose those with berries or flowers, since they impart some sweet flavor, but still far from the sweetness of fizzy drinks. A bonus benefit is that there are a lot of different flavors. One should take from life all that it has, after all.




















  • Except it’s ass if you want to do non-destructive data processing of arbitrary structures and your input and output might have null as a value. You can’t just know about fields a, b, and c of the table and leave everything else as it is, you need to know the whole structure and make sure you write null in the output for fields that have nil in them.

    Or, more realistically, use libraries that implement null as custom user data.

    Iirc Roberto Ierusalimschy even considered introducing a null value in one of the recent versions, of course confusingly named ‘undefined’ — but changed his mind. Perhaps it’s for the better than to have such a backwards name for it.

    To my knowledge, Lisps like Emacs Lisp implement this better: trying to get a value for a nonexistent key will get you nil, but you can still retrieve the list of all keys, including ones that are set to nil.