David Zaslavsky

Software engineer, former particle physicist, occasional blogger. I support the principle of cake.

  • 0 Posts
  • 13 Comments
Joined 2 years ago
cake
Cake day: November 27th, 2022

help-circle



  • @Pantherina “I mean notes should have bold headers, not hashtags.” OK, but that reflects what *you* want from a notes app, not what everyone wants. And of course that’s totally fine, you can get that from a notes app that has WYSIWYG formatting if you find that it works for you. But I would suggest that it doesn’t make sense for you to enter a discussion about a Markdown notes app and tell a bunch of people, for many of whom that app probably works pretty well, that they’re making a bad choice to use it because it doesn’t offer the behavior you want.

    For what it’s worth, I think a lot of people use Markdown notes apps in a way that you might not be considering. Like, this separation between writing and viewing that you’re talking about simply doesn’t exist in my note-taking workflow. I usually just read the raw markup, possibly with some minimal formatting added on by whatever app I’m using.




  • @Fleppensteijn @Max_P The change in the first component of the version number from 5 to 6 is what could have tipped you off. I mean, admittedly there’s no universal standard for software versioning that everyone follows, but the closest thing there is to a commonly adopted standard (https://semver.org/) says that when the first component of the version number changes, it’s a big deal and things might break. (Or, a relatively big deal, but just how big that is in practice depends on the package.) If you didn’t know to look out for that, now you do. 😀

    Unless by “average user” you mean someone who relies on automatic updates and doesn’t look at what’s getting installed. Which is fine, but if you’re allowing automatic updates, you have to understand you’re giving up the ability to catch stuff like this before it happens. (This situation could certainly be improved, but generally that’s the state of things right now.)



  • @Moshpirit 👍

    If you have any experience with computer programming, I would definitely recommend looking up a tutorial on threads for your favorite programming language and writing a little program that uses them. The best way to understand what threads are is through practical experience.

    If not, hopefully you can find some good resources anyway! The gist is that threads are kind of like little mini-programs that run within a main program and can be used to do specific tasks that would otherwise “distract” the main program from its work. (That’s not exactly accurate, but it’s the best way I can think of to explain the basic idea in one sentence.)