A cranky biologist who means well. My hobbies include long walks off short piers and anything science related.

  • 1 Post
  • 20 Comments
Joined 1 year ago
cake
Cake day: June 25th, 2023

help-circle


  • meyotch@slrpnk.netto196@lemmy.blahaj.zonerule
    link
    fedilink
    arrow-up
    9
    ·
    3 months ago

    Why do you keep insisting that the only race that matters is for the Presidency? You keep hidng behind your superior moral stance based on the Electoral Colleges flaws. The electoral college only pertains to the presidency.

    What’s going on in your local school board or city council races? If you can’t answer, then perhaps reconsider who may be falling for a psy-op.


  • meyotch@slrpnk.netto196@lemmy.blahaj.zonerule
    link
    fedilink
    arrow-up
    29
    ·
    3 months ago

    Bless you for this comment.

    How many commenters here have even tried to figure out how ‘busses’ (the electoral process) work and find a way to get involved?

    Spend 5 hours a week (yes, you can find the time, deduct it from your screen time!) and you could basically take over your local party committee. That alone won’t change the national trend, but you might just be able to influence a city council or school board race.

    Local races hinge on a handful of votes very often. In our area, we managed to keep two anti-LGBTQ+ candidates off the school board last election. This impacts the lives of literally thousands of youth and their families and it hinged on about 80 votes. Vote, yes, but at least skim the Chilton manual for your bus in between elections. It really does matter








  • meyotch@slrpnk.nettoLinux@lemmy.mlSystemd timer unit
    link
    fedilink
    English
    arrow-up
    2
    ·
    7 months ago

    Your systemd file looks ok, but I think it’s doing exactly what you are telling it.

    The solution may lie in the backup.service. Is that code you can modify? The OnCalendar=weekly doesn’t specify when in the week the service should run so that config may be vague.

    If I understand the desired function here, you will need the service up all the time. It will just wait politely and occasionally run the specific backup script. It’s up to the backup script to determine when the last backup was made and either exit early because it hasn’t been a week or run the backup and reset a flag file.

    At least that’s the approach I would take. Systemd is a very vigilant, but very stupid, service manager. It just watches and triggers services based on just a few criteria. Any logic more complex needs to go in the service itself.


  • Not much love here for the Pi Zero W. I love them for being so flipping cute. I have a couple I use when I am learning a new system admin tool or service and I need to be able to let it run undisturbed to observe stability and function.

    Lately I am learning MQTT so am using one as a broker to manage some homemade smart devices.

    If I can ever find one in stock, i want a couple of Zero 2 for similar projects that would benefit from the extra oomph.





  • Thank you for chiming in on the slightly spurious billing claim. Yes, billing and charge codes are woven throughout EHR systems but that’s just because everything we do in health care costs time/money. It’s as much about cost tracking as cost recovery.

    We measure what we treasure however and if you look at the structure of any EHR, they are steadfastly patient-centric. Billing is ubiquitous but it is more like tinsel on a Christmas tree, sort of draped lightly over and connecting everything. Pick off the tinsel and the core patient care features are unaffected.

    It will take years to see the effects in large scale but I like the features that allow patients to see their test results the minute they are released. As a patient myself, it gives me a feeling of having a bit more ownership of my own healthcare.

    I was intrigued to learn recently that better EHR use a patients highest education level to tailor the way genomic test results are presented in the patient-viewable chart. The same results are reported to anyone but apparently patients with higher education levels will take positive actions when provided with sufficient depth of background information. Conversely, too much background info can be off-putting for others and reduces proactive behavior changes.

    I get it, it’s really easy to be cynical about health care especially in the USA where it is kinda bad in many ways for no good reason. But at least pick the right things to complain about.


  • That was my intuition, based mostly on the typical behavior of allow/block lists generally. Thank you.

    As I understand it, the best way to promote small instances is to have users from other instances subscribe and contribute. This makes the communities visible on the subscribers instance so more people will see it.

    Even small instances have to have something interesting enough to attract subscribers, there’s no substitute for interesting content.

    OP, I understand and endorse the desire to help elevate the smaller instances, so it’s a worthwhile discussion the post has stimulated. Thanks!


  • I ask this partly as a question and partly to start a discussion I hope educates me on these details. I host a small instance too and definitely want to know these things better.

    Is it necessary to add an instance to the allowed list? If federation is enabled, isn’t an instance ’allowed’ by default? Wouldn’t subscribing to communities on the small instances be of better benefit?

    Thanks to anyone who understands the mechanics at play here and is willing to break it down.



  • I think I figured it out. I’m now running 18.2.

    I had to change the lemmy.yml file under Install Docker Module and docker-compose for Python.

    The new section uses apt to install python instead of pip. It reads:

    - name: Install Docker Module and docker-compose for Python
      apt:
        name:
          - python3-docker
          - docker-compose
        state: latest
    

    My instance in now up to date. Hope this helps someone.