• 0 Posts
  • 163 Comments
Joined 2 years ago
cake
Cake day: June 23rd, 2023

help-circle

  • Dating myself… This brings back bad memories…

    In the 70’s in elementary school I had a classmate who had a brother about two years younger than we were. In 1978 when the brother was only 8 years old he was killed in a freak accident. The family had moved to a new house whose previous owner collected war memorabilia. The brother found a hand grenade that had somehow been left behind. It was live and blew up in his hands.

    Ten years later my former classmate was killed on board the Pan Am 103 bombing.

    Archived New York Times article that is mostly about my classmate but mentions the death of the younger brother as well: https://archive.is/ykLi0

    Those were the only two children in that family. I still think about them all from time to time to this very day…




  • Proper hashing of a password includes a salt that should be kept private. This means the password should definitely be passed to the server in plaintext. The server adds the salt to the password, then hashes it.

    This adds more protection should an attacker somehow manage to get access to your hashed passwords. Even if they identify the type of hashing mechanism used it will prevent the use of rainbow tables, dictionary attacks, etc. against the hashes.










  • We have a handful of Python tools that we require to adhere to PEP8 formatting, and have Jenkins pipeline jobs to validate it and block merge requests if any of the code isn’t properly formatted. I haven’t personally tried it yet, but I wonder if these AI’s might be good for fixing up this sort of formatting lint.