• 1 Post
  • 17 Comments
Joined 2 years ago
cake
Cake day: February 1st, 2023

help-circle
  • edinbruh@feddit.ittomemes@lemmy.worldYouTube
    link
    fedilink
    English
    arrow-up
    34
    ·
    1 day ago

    Speaking only one language has nothing to do with this, there have always been subtitles.

    YouTube does this so that one way or another they can say that more people use AI translations, and that shows investors there’s value in AI and Google gets more investments.


  • Laser printers are the best. You sacrifice the quality of dense pictures, but gain incomparable speed and reliability. It’s especially worth it if you print less often, because the ink dries up if you don’t print every once in a while and you end up buying new ink even though the cartridge is full, but the toner just sits there indefinitely.




  • “Ternary operator” means “operator that takes three things”, like unary and binary operators take one and two things.

    In C there is an operator for conditional expressions (an ‘if’ that you can put inside expressions) and it looks like this condition ? trueBranch : falseBranch. It takes three expressions, so it’s a ternary operator.

    Except it’s the only ternary operator in C (and most languages, if they have one at all), so instead of calling it something like “conditional operator”, they just call it “the ternary operator”