• 0 Posts
  • 61 Comments
Joined 4 months ago
cake
Cake day: February 22nd, 2026

help-circle









  • Well, yes, “why don’t you care about things?” is a timeless problem. People don’t like to see beyond the immediate. Probably because in pre-history, the creatures that focused on right now did better than the ones who went “but if we keep cutting down the trees, eventually it’s going to cause problems.”

    Well, now we have many problems, and our brains have not advanced.


  • It’s one of those self fueling problems. Businesses post on Instagram because people go there, and people go there in part because that’s where they found out about businesses doing stuff.

    Better options are possible, but the big money is backing this hell. Less money to be made from RSS feeds , web rings, and email newsletters.

    I don’t use any social media other than this. I find out about bands I like playing from their email lists or bandsintown. I’m on a couple “things happening in the city” email newsletters. It doesn’t demand my attention.









  • Many people have as an immutable axiom “I am a good person”

    When you suggest they are doing something bad, like contributing to climate change, this clashes with that axiom.

    That clash causes discomfort. Most people are, frankly, lazy cowards. They could accept that they are not being a good person all the time, and update their axiom. But that’s scary and feels bad. They could also try to do something about climate change (or whatever the topic is. see also: veganism), but that’s also hard. It’s far easier to just lash out at the source of discomfort.

    The oatmeal did a comic on basically this topic: https://theoatmeal.com/comics/believe


  • I did some webdriver stuff for reasons I don’t remember anymore.

    I also made a simple Django app to track job applications.

    Unsolicited advice:

    • use type annotations. You’ll thank yourself later when your IDE tells you “hey this can be None are you sure you want to call .some_func() on it?”
    • use an ide. Don’t just raw dog it in notepad. You should have syntax highlighting, red squiggles for errors, the ability to go to definition.
    • learn to use a debugger. Pdb is built in and fine.
    • don’t write mega functions that do a thousand things. Split things up into smaller steps.
    • avoid side effects. You don’t want your “say_hello” function to also turn on the lights