This may be off-topic, but when accidentally running a process which turns out to be computationally more intensive than expected (or even getting stuck in an infinite loop), it seems that there is often no way to reliably abort. Sometimes it is possible to kill the specific Mathematica kernel from the terminal, but often the entire system crashes. (NB: I am using v13 on Ubuntu Linux 22.04).
So, if I am running "risky" or experimental code and doesn't care about the performance impact, is there a way to force Mathematica to regularly pause evaluation and or listen for Abort interruptions? I'm aware I can set TimeConstrained or MemoryConstrained for specific functions, and setting $RecursionLimit and $IterationLimit can also help in a narrow range of scenarios, but the ideal would be a global notebook option that allows aborting any process, ideally without having to restart the kernel. Is this possible with Mathematica notebooks?