• 1 Post
  • 35 Comments
Joined 28 days ago
cake
Cake day: July 27th, 2026

help-circle
  • TwilightKiddytoAnimemes@ani.socialDon’t be a quitter
    link
    fedilink
    English
    arrow-up
    7
    ·
    58 minutes ago

    Fermented juice like wine, cider and similar things like mead get to around 13% ethanol through the fermentation alone, no special technological magic needed. I think it’s fair to say it was the first method of acquiring alcohol, as it’s very common in nature with, for example, birds getting high from eating not so fresh berries.






  • I’m using it as a way to keep track of channels I like, after I find something interesting, the actual playback is handled by yt-dlp + mpv. Because I always build yt-dlp from source, it is pretty much never broken for me.

    Hooray to the relentless open source devs beating Google’s puzzle games mere hours after they are released!









  • TwilightKiddytoAnime_IRL@ani.socialOops_irl (by Wokada)
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    20 days ago

    For those who can’t read, the text says
    ○ックスするまで出られない部屋
    Which is “A room you can’t leave before you have **x”
    Reading with the pink corrections turns it into
    ワックスかけたら乾燥するまで出られない部屋
    Which is “A room you can’t leave before the applied wax dries”

    I think there is a doujinshi with the same name as the first sentence, but I’m not diving that rabbit hole.



  • If you spoke with any Japanese people in the wild, it’s very hard to find those who can speak proper English. Most of the time they’ll have some basic vocabulary and will be able to understand what you are saying, but saying anything themselves is practically impossible. I often say that Japanese is a phonetically impaired language, mainly because of how little valid sound combinations there are in the language, being risen surrounded with only Japanese trains your voice cords to only produce these sounds. And Japanese phonetics barely intersect with English ones. You see the problem, right?

    And Japanese who are hanging out in places where they can meet with foreigners are obvously better at it than your average Japanese person.

    だから、私日本語を学んでいる。この方で楽だ。




  • || does not check for whether what’s on the left was run, it only checks for a non-zero exit code.

    In this case the left operand for || is &&, not the rm command. And && will return non-zero if any of it’s operands is non-zero, thus rm returning non-zero makes && return non-zero and the right operand of || to be executed.

    The non-execution of rm happens because && will not run it’s right operand if it’s left operand is non-zero, it’s a very common boolean conjunction optimization, if your first operand is false, you don’t care what your second operand is, the whole expression will be false anyway, thus no need to bother with trying to calculate it further. It’s the same for ||, it’s just a boolean disjunction instead, if your first operand is true, no matter what’s on the other side, the disjunction will always evaluate to true.