• 0 Posts
  • 96 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle





  • mkwt@lemmy.worldtomemes@lemmy.worldSomething's not adding up
    link
    fedilink
    arrow-up
    8
    arrow-down
    2
    ·
    29 days ago

    It’s actually because the thing that makes you make those faces is the acceleration, not the speed.

    All three reference frames shown are accelerated, non inertial frames. But the first two have “fictitious” centrifugal accelerations somewhere around 0.5-2.5 g. The third frame has a detectable centrifugal acceleration, but it’s like 0.003 g or something, and can be lumped in with gravity for many types of problems.








  • Kill -9 is a command on Unix and Linux to send signal 9 (SIGKILL) to a process. That’s the version of kill that is the most reliable and has immediate effect.

    Taskkill is a Windows command line program. I believe that taskkill /f uses the TerminateProcess() API. This is more forceful than the End Task button on the Task Manager. There is a different End Process button on the Task Manager that does use TerminateProcess().