

1·
1 year agoLemmy isn’t really an echo chamber. It’s like saying going over to a friends place is an echo chamber because you and your friend get along. There’s nothing wrong with hanging out with people who share your values and beliefs.
The problem with social media are their algorithms. They aren’t designed to connect you with like-minded people, but to keep you engaged. The content that keeps people engaged tends to be terrible content.
The recent “a man or a bear” trend is a perfect example. Algorithms love divisive content like that because it drives engagement, but it also leads to people getting really upset over nothing. Lemmy doesn’t have any algorithms driving engagement so it doesn’t have that problem.
It is true. Math.min() returns positive Infinity when called with no arguments and Math.max() returns Negative Infinity when called with no arguments. Positive Infinity > Negative Infinity.
Math.min() works something like this
def min(numbers): r = Infinity for n in numbers: if n < r: r = n return r
I’m guessing there’s a reason they wanted min() to be able to be called without any arguments but I’m sure it isn’t a good one.