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

help-circle

  • Because if the majority of people following a particular religion reject a prior view as false or wrong, then arguably that view is no longer part of the religion.

    Religions aren’t crisp, unchanging, monolithic entities where everybody believes the same thing forever. If we’re talking about judaism in the sense of the views and practices jewish people actually subscribe to, then that seems like we are referring to beliefs they actually hold in a mainstream/current sense, not beliefs they previous held but now reject?


  • Operating System Concepts by Silberschatz, Galvin and Gagne is a classic OS textbook. Andrew Tanenbaum has some OS books too. I really liked his OS Design and Implementation book but I’m pretty sure that one is super outdated by now. I have not read his newer one but it is called Modern Operating Systems iirc.





  • myslsl@lemmy.worldtolinuxmemes@lemmy.worldHtop too
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    7 months ago

    If you have a fixed collection of processes to run on a single processor and unlimited time to schedule them in, you can always brute force all permutations of the processes and then pick whichever permutation maximizes and/or minimizes whatever property you like. The problem with this approach is that it has awful time complexity.

    Edit: There’s probably other subtle issues that can arise, like I/O interrupts and other weird events fwiw.