Almenon

Results 424 comments of Almenon

What is the bug?

The reason why this is not a feature currently is that the panel AREPL displays is HTML, not a console (aka terminal aka command prompt) that displays colored text.

Another person asked for this at https://github.com/Almenon/AREPL-vscode/discussions/457

This is because `this.PythonEvaluator.checkSyntax` calls the static method `PythonShell.checkSyntax`, which uses the static variables `defaultOptions.pythonPath` or `this.defaultPythonPath`. These static variables can have a different python than what is set in...

wierd..... never seen that one before. Might be fixed by https://github.com/Almenon/AREPL-vscode/issues/439

No log. If you want, you could try different versions of python and see what happens. > I've also noticed No, not connected. The VSCode python extension doesn't like `arepl_dump`...

This will also fix https://github.com/Almenon/AREPL-vscode/issues/367

There would be two or more processes. This would be the lifecycle for each process: ```mermaid flowchart TD P[process created] --> S[Starting] --> |Start result received| F[Free] -->|incoming code| E[Executing]...

So that's the theory, but how to implement the code? I could set a setInterval, checking the executors every X milliseconds till one of them are free. New code would...

This reminds me of the elevator problem. https://leetcode.com/discuss/interview-question/object-oriented-design/124936/design-an-elevator-system https://leetcode.com/discuss/interview-question/object-oriented-design/124927/write-elevator-program-using-event-driven-programming/123400 http://play.elevatorsaga.com/ Also reminds me of load balancers, although that's actually simpler because you don't have to cancel existing processing when another...