nickwitha_k (he/him)

  • 2 Posts
  • 251 Comments
Joined 1 year ago
cake
Cake day: July 16th, 2023

help-circle








  • You’ve received a lot of great advice that I’ve seen. Definitely getting labs would be a good first step. I’d suggest working with your therapist on this, honestly. Supposing that you’re not dealing with a deficiency or medication issue, it might be important to figure out how long you’ve been feeling this way, what way it is exactly that you’re feeling, and figuring out what to do about it.












  • I don’t get the concept that depending on 7 lines of code from a third-party package is remotely acceptable. It’s expanding the potential attack surface to save a dev from templating 7 lines of boilerplate. There’s no net benefit or appreciable time saved.

    I’m glad I don’t have to deal with this regularly.

    ETA: The package is even MIT licensed! There’s no excuse but laziness and not wanting to understand the code to import this rather than inlining or implementing a novel version. If I can spend the time to write:

    if err != nil {
      slog.Warn("well shit", "error", err)
      return err
    }
    

    after every function call…I just didn’t get it.