Not a remake or remaster or rerelease of something old, but something inspired or influenced by something either popular or a cult classic. Also this could extend to hardware/tech too, not only media.

  • @[email protected]
    link
    fedilink
    English
    21
    edit-2
    10 months ago

    Some of the devs around Linus are getting warmed up to the idea of a microkernel. Statistics have shown better boot times and better overall performance. As they put it “guess Tannenbaum was right all along” 😂.

    Anyway, it should just be a matter of time now. Linus doesn’t like the microkernel idea because it risks stability for the sake of modularity. You maintain the entire code base with a monolithic kernel (drivers, FS, everything), while with a microkernel, you just maintain the kernel, everything else is modular, maintained by someone else, thus, things can go bump in the night. The former is better for stability.

    • @[email protected]
      link
      fedilink
      310 months ago

      Those are not really the same thing. You can still run something as a microkernel and maintain it as code bases completely under your control and developed in lockstep or even in one giant repository if you really want to.

        • @[email protected]
          link
          fedilink
          310 months ago

          Microservices and microkernels are not really that similar. The great advantage of a microkernel is not so much the separation of concerns but the fact that less code needs to run unsandboxed in kernel space where every bug can potentially corrupt other parts of the kernel or lead to security holes.