• 0 Posts
  • 42 Comments
Joined 1 year ago
cake
Cake day: December 4th, 2023

help-circle
  • To be more precise it’s not each stream having it’s own antenna, you combine the signals from all antennas and then “spatially filter” it into separate streams, but the number of concurrent streams is limited by the minimum of the number of antennas at both ends of the connection, if your device has only one antenna and your access point has eight you can only have one data stream.


  • If you want to patent something globally you have to patent it in every country, and there are some things like software that aren’t patentable in some countries.

    A license just tells someone what they can and can not do with something, it doesn’t protect an idea. For code it literally just protects the written code, someone could write a clean room clone, i.e. never looking at your code.












  • As the other comments have already said it’s not Python. Not sure what you mean with text formatting, do you mean that it’s multiple strings that are concatenated using +? You don’t need the + in Python, you can do

    some_function(
        "part one of really long string"
        " part two of really long string"
    )
    

    Which is identical to

    some_function("part one of really long string part two of really long string")
    

  • It’s quite simple actually: The user wanted to delete their account, but forgot their password so they requested a password reset. Before the password reset email was delivered, the user remembered their password and deleted their account. The password reset email is finally delivered and apparently some email clients open all the links in the background for whatever reason, so it wasn’t actually the user who clicked the password reset link.