Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)AF
Posts
3
Comments
1,237
Joined
2 yr. ago

Permanently Deleted

Jump
  • buried deep in your comment is a reasonable criticism of his actions, but it's difficult to want to engage with that because of how smug and condescending your comment is.

  • i feel the same way about bob dylan as i do about the rolling stones. i like some of their music, but i can only stand listening to at most 3 songs in a row. after that i need a break.

  • Permanently Deleted

    Jump
  • it's (somehow) even creepier when you hear how he describes it:

    "When I was trying to get my wife Emma] to date me, first thing I did, uh, I let the air out of her tires," Watters claimed, pleased with himself. "She couldn't go anywhere, she needed a lift. I said, 'Hey, you need a lift?' She hopped right in the car." (source)

  • Rule

    Jump
  • a wise programmer knows to always ask the question "can i solve this problem in python using metaprogramming?" in this instance, the answer is yes:

     python
        
    def is_even(n: int):
        s = "def is_even_helper(number: int):\n"
        b = True
        for i in range(0, abs(n)+2):
            s += f"\tif (abs(number) == {i}): return {b}\n"
            b = not b
        exec(s)
        return locals().get("is_even_helper")(n)
    
      
  • Permanently Deleted

    Jump
  • Jesse Watters of Fox News has even equated a wife secretly voting for Harris to “having an affair.”

    something that this article didn't mention is that jesse walters' current marriage started as an affair: he started dating his current wife while he was married to his previous wife. (source)

    yet another example of every accusation being a confession.

  • ah true. i missed the context of the original comment since it got deleted, but you're completely right that the “1 is a scalar while i is a vector” statement is not entirely accurate.