• 28 Posts
  • 1.81K Comments
Joined 2 years ago
cake
Cake day: August 4th, 2023

help-circle














  • Wow. Huge topic. And it depends on a ton of things. And I definitely don’t feel like I’ve got it all figured out myself.

    If you’re young and just for the first time having to manage your own affairs rather than depend on parents to help with that, then self-help kind of stuff might well be a fine place to start. (Just avoid Jordan Peterson.) If you’re older and feel like you’ve had the time needed to develop those skills and still don’t have them, it’s likely there’s something deeper going on that might benefit from therapy.

    I personally cared for my ailing grandmother for a long time. And that shit’s hard work, and takes a lot of time. In the process, I let a lot of things go by the wayside like yardwork, home repair, and organization. Now that she has passed, I find myself with a lot of remedial work to catch up on. I feel like I’m making progress. It’s frustrating and slow, but it is progressing and that’s the important part.




  • I can definitely see a lot of good applications for this way of doing things.

    It does seem like I often run across “error handling” code that literally just catches a bunch of different exception types and throws a new exception with the same content from the caught error just reworded, adding literally zero helpful information in the process.

    It’s definitely the case that sometimes the exact sort of crash you’d get if you didn’t handle errors is exactly the best sort of exception output the program could do given its particular use case and target audience. Or at least it might be best to let the error be handled much further away in the call stack.