• 1 Post
  • 24 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle



  • aksdb@feddit.detoMemes@lemmy.mlYeah, well...
    link
    fedilink
    arrow-up
    3
    ·
    8 months ago

    That is - IMO - what critical thinking is meant to be … thinking about alternative explanations and evaluating their viability or probability.

    Unfortunately a lot of people use the term “critical thinking” as just another way to rationalize why they are against something, without actually weighing the options.





  • One problem is that they need to put a price tag and therefore a timeline on such a project. Due to the complexity and the many unknown unknowns in theses decades worth of accumulated technical debts, no one can properly estimate that. And so these projects never get off and typically die during planning/evaluation when both numbers (cost and time) climb higher and higher the longer people think about it.

    IMO a solution would be to do it iteratively with a small team and just finish whenever. Upside: you have people who know the system inside-out at hand all the time should something come up. Downside of course is that you have effectively no meaningful reporting on when this thing is finished.



  • To execute more than one process, you need to explicitly bring along some supervisor or use a more compicated entrypoint script that orchestrates this. But most container images have a simple entrypoint pointing to a single binary (or at most running a script to do some filesystem/permission setup and then run a single process).

    Containers running multiple processes are possible, but hard to pull off and therefore rarely used.

    What you likely think of are the files included in the images. Sure, some images bring more libs and executables along. But they are not started and/or running in the background (unless you explicitly start them as the entrypoint or using for example docker exec).