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/)IM
ImplyingImplications @ ImplyingImplications @lemmy.ca
Posts
2
Comments
2,361
Joined
2 yr. ago

  • The fan wiki page says Salmo is programmed to deliver bread to the inns they visit but if you give them bread they eat it instead. The crash is probably due to attempting to complete delivery of an item that's no longer in the inventory.

    The wiki also says other characters in the game erroneously refer to Salmo with "she/her" pronouns, but until I ask Salmo for their pronouns I'll keep using neutral language.

  • Offering women housing in exchange for producing babies sounds like something from the Handmaid's Tale. Housing affordability should be addressed because people want to own homes, not because the baby making machines aren't making babies.

  • https://www.canada.ca/en/public-health/services/sexual-health/abortion-canada.html

    Abortion became legal in Canada through the Criminal Law Amendment Act, passed in 1969. At that time, abortions could take place in hospitals, but only if a 3-doctor committee determined that the pregnancy posed a danger to the parent's health. In 1988, the Supreme Court of Canada held that the Criminal Code provisions restricting abortion were unconstitutional and struck them down.

    Abortion was legal with restrictions. The Supreme Court only removed the restrictions.

  • I wouldn't call it a news show. It's more like short video essays on systemic issues. But I definitely agree there should be way more content like this. Not only does it bring attention to issues a lot of people probably aren't thinking about, it also offers realistic solutions.

  • While it wasn't unintended, the Atari 2600 only had 39 bits of memory to draw 160x192 graphics to the screen. It accomplished that task using the fact that CRT screens displayed images by rapidly moving a beam of light across the screen. Knowing the beam could only be in one spot at any time, the Atari system held just enough space in memory to draw 20 pixels. As the beam moved across the screen, the system updated the colour of the next pixels immediately before they needed to be drawn in a method that became known as Racing the beam.

    It was built that way because having enough memory to draw the entire screen at once would have made the Atari 2600 prohibitively expensive for consumers.

  • SCOTUS has been effectively making laws for a while. Interracial marriage is legal because of a SCOTUS ruling. Gay marriage is legal because of a SCOTUS ruling. Abortion was legal because of a SCOTUS ruling.

    These are all legal in Canada because parliament passed laws making them legal, and not because of Supreme Court rulings. I get the sense that the US Congress is so bad at passing any laws whatsoever that the only time laws change is when SCOTUS changes them.

  • 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

     python
        
    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.