• 1 Post
  • 500 Comments
Joined 2 years ago
cake
Cake day: October 1st, 2023

help-circle

  • Male loneliness is about camaraderie. If it was about getting laid, then prostitution would solve it. Busting a nut isn’t gonna fix a psychological problem facing the adult male population in modern western society and this shitty tumblr post isn’t gonna either. Its down right perpetuating it. Now, some truth is there; COMPANIONSHIP (not not getting laid) is a wonderful thing and does help, but the root of the problem is societal.


  • PieMePlenty@lemmy.worldtoScience Memes@mander.xyzget sum
    link
    fedilink
    English
    arrow-up
    9
    ·
    6 days ago

    I’d say 10% not fucking is pretty standard/average and your thinking you were all (100%) doing it is either clouded by your own experiences or you grew up in a very liberal community where it deviates.

    Why its rising is questionable. Personally, I’d say its due to rising depression rates… well, it correlates at least.








  • Trust is the most important part. You trust someone they made something themselves. They digitally sign their work with a public key that is known to be theirs. You can now verify they (the person you trust) made it.
    Once the trusted creator’s key is leaked, they are no longer trusted for future works.
    AI made content can be freely signed as well, but if you don’t trust the origin, the signature doesn’t matter anyway since it will just verify it is coming from the AI creator.
    The key thing is trust, the signature is just there to verify.



  • It does to some degree.

    • “11” is string, 1 is an int, because strings can be added (+) convert int to string and combine: “11”+“1” = “111”
    • “11” is string, 1 is an int, because strings cant be subtracted (-) convert string to int and combine: 11-1 = 10

    I’m not into JS so I don’t know how it takes priority. ints can be added too, so I guess its basing it on the first variable which is compatible with the operator: in the first case string, in the second case int.

    If this is how it works, it makes sense. But imo its a case of the designers being preoccupied with whether or not they could, they didn’t stop to think if they should.