• 0 Posts
  • 49 Comments
Joined 11 months ago
cake
Cake day: December 4th, 2023

help-circle






  • zaphod@sopuli.xyztoich_iel@feddit.orgich_iel
    link
    fedilink
    arrow-up
    10
    ·
    28 days ago

    Ich hab eine E-Mail-Adresse an der Uni plus einen Benutzernamen und ein Passwort. Und was soll überhaupt Erstsemester-freundliche IT-Infrastruktur sein, ab dem zweiten Semester gibt es dann die unfreundliche Infrastruktur?











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