• 0 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle
  • Excellent point. I had forgotten about this. I work for a non profit so I’m ok, but yes you should absolutely check the terms of the license before using. On the upside, almost everything is markdown files in regular folders, so you can fall back to vim anytime.


  • I don’t know if this will work for you, and I’m not sure if you’re only looking for TUI editors, but Obsidian has vi key bindings and a lot of plugins.

    Disclaimer: I have not tried the vi key bindings in Obsidian.

    Another one I use is vscode. It has a ton of markdown plugins and vi key bindings. It also has a nice preview window.


  • That’s probably what it is. I didn’t go to school in the US but my kids went to school in Ohio and my impression was that metric was not the primary system of units used in education, though it was taught.

    The argument I hear most often from people defending the US customary units is that the units are more intuitive. For example, an inch is about the size of a thumb, or 0 degrees is fucking cold and 100 is fucking hot.

    On the whole, people seem receptive to metric, but don’t want the hassle or cost to convert. They seem content to use metric where it’s important (science, military) and keep the old ways elsewhere.

    I currently with in healthcare research and almost everything not patient facing is done in metric, but there are still conversions going on everywhere, leading to data problems that are hard to correct later. People used to thinking in ounces putting those where grams were supposed to go, and so on.








  • folekaule@lemmy.worldtoProgrammer Humor@lemmy.mlOld timers know
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    3 months ago

    It depends. I’ve done it a few different ways:

    • YOLO: especially with thugs like PHP you only affect one page at a time and with low traffic the odds of a problem is small
    • Maintenance page: temporarily show a page. Some servers like IIS have this built in. Otherwise it’s a simple update to httpd conf
    • In a cluster environment, just take the node you’re updating out of rotation, and only update one node at a time.
    • Copy and switch like you suggested. Can be combined with any of the above and is a smart move if upload is slow or can be interrupted, or it’s cumbersome to restore the old files

    Edit: spelling