Just a basic programmer living in California

  • 16 Posts
  • 268 Comments
Joined 1 year ago
cake
Cake day: February 23rd, 2024

help-circle
  • Hospitals are required to provide emergency treatment - what we call ED or ER visits - regardless of ability to pay. Patients are expected to pay for that treatment. It’s just that the hospital isn’t supposed to deny treatment based on whether they think patients will or won’t pay the bill. This is getting-stabilized treatment.

    This is an important point in arguing for universal healthcare: if people can’t afford treatment, they’re more likely to go to the ED where they won’t be turned away. ED visits tend to cost more than non-emergency, so that drives costs up.




  • That’s a helpful one! I also add a function that creates a tmp directory, and cds to it which I frequently use to open a scratch space. I use it a lot for unpacking tar files, but for other stuff too.

    (These are nushell functions)

    # Create a directory, and immediately cd into it.
    # The --env flag propagates the PWD environment variable to the caller, which is
    # necessary to make the directory change stick.
    def --env dir [dirname: string] {
      mkdir $dirname
      cd $dirname
    }
    
    # Create a temporary directory, and cd into it.
    def --env tmp [
      dirname?: string # the name of the directory - if omitted the directory is named randomly
    ] {
      if ($dirname != null) {
        dir $"/tmp/($dirname)"
      } else {
        cd (mktemp -d)
      }
    }
    




  • I’ve done Mindfulness meditation, and I find it very helpful. It gets easier with practice too. But I haven’t developed a habit of meditating regularly so I don’t actually do it often. It’s hard to keep up with things that feel optional.

    Something that helps me to meditate more often than never is to think of it as something I can do anywhere, without preparation. Then when I find myself waiting for something I can take that time to meditate. Like waiting for a train, in a waiting room, etc. I sit normally; I often don’t close my eyes.







  • Since traditional tiling window management hasn’t caught your interest you might check out Niri, which is a scrolling tiling wm. The differences are that windows always stay the size you set them to, remain in the relative layout you put them in, and you don’t fiddle with layout switching. Niri is also especially mouse- and touchpad-friendly. It’s great for pure keyboard use too - you have both options to suit your preference & mood.

    I mention Niri despite it not being what you asked for because it checks all the boxes you listed (apart from stacking), and it’s amazing! https://github.com/YaLTeR/niri


  • I’ve been at it for less than a month so my impressions are preliminary. I’ve been doing GTD digitally for a long while. I’ve wound up not doing the planning often, and I have lists of actions piling up, and I haven’t developed the habit of looking at my lists in those “I have time, what do I do next?” moments.

    I got into using an app called Sunsama that encourages spending a few minutes every morning making a daily plan. That has been very helpful for me! It makes me spend a little time taking stock of what I’ve previously noted I wanted to do, and what I can get done today. I still had an issue of tending not to check back in with the app during the day.

    The journal is not just for todos: it’s where I jot down things I want to remember to do, notes, things that happened that I’d like to remember or that I want to tell my wife about, daily reflections. So I’m interacting with it frequently through the day. When I do I see the plans I’ve written, and think about what I can cross off. It’s a nice way to see everything laid out - a notebook is easier to take in quickly than a digital device, and comes with fewer distractions. So I think I’m more likely to check in with my plans at opportune times.

    The migration system makes it less likely for todos to pile up endlessly. From time to time I copy my list of unfinished todos to a new page. If it’s not important enough to copy then it doesn’t need to stick around in the list.

    I’ve taken the bullet journal ideas, and combined them with the Sunsama daily planning idea, and the daily reflection practice I picked up from The Cortex Theme System. My wife has also been using a bullet journal. We’ve got a new ritual of sitting together with our journals, and coordinating calendars and action items.