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

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

help-circle

  • You don’t have to get a smart tv at all. TVs do not need to be smart. If you search ‘business monitor’, you will find large quality displays such as used for corporate signage. The one issue is they often have only a few inputs, but that is easily addressed and worth it to avoid the completely unnecessary hassle of a TV too smart for your own good.

    My two cents


  • Cloning, once you have done it once, is a dead simple process, relatively. Figuring it out the first time was hard, but since Dolly (the first cloned sheep, born at University of Idaho) there have been high levels of publication on sheep cloning specifically.

    Anymore, anyone who can parse reasonably complex instructions and has access to the kind of facilities any large animal vet might have could do this. It takes more money than I personally command but an even slightly well off person could afford it.


  • Back when Perl was the language of choice for bioinformatics, I found a huge performance boost pre-processing large (~1Tb) text files using built in unix tools like sed and awk with regex. So while it might take me a full hour to peck out the correct incantation, the task would then run in an hour, compared to four hours or more for the same task using Perl.

    So many pipes…







  • meyotch@slrpnk.nettoLinux@lemmy.mlSystemd timer unit
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 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.





  • 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.