Paul Frischknecht
Paul Frischknecht
why don't you create a pull request? It should probably read `const maxMTU = settings.EnvInt("CHISEL_UDP_MAX_SIZE", 9012)`. Or as you said, use a command line param. Does chisel/go have a library...
any reason not to set up a github action to build it or have dockerhub build it?
I have experienced this too. It is prominent in notebooks with lots of large images. This makes the FrontEnd hang for quite some time after evaluations when the timeout for...
I applied the following changes: ``` BackupName[file_String, num_Integer] := file StringJoin @@ Table["~", {num}] ".nb"; Monitor[ NotebookSave[EvaluationNotebook[], Print@bakfile;bakfile]; (*Print@renameFile[bakfile".nb",bakfile];(*HACKFIX for NotebookSave adding .nb to .nb~*)*) NotebookSave[EvaluationNotebook[], nbfile];(*HACKFIX for restoring the...
Sure! I would prefer to get `.nb~` and `.nb~~` files though. With my fix I get `.nb~.nb` and `.nb~~.nb` files which mix with the normal notebooks. I find that not...
Yes. This might be problematic if the notebook becomes corrupted (making the original and the backup unusable on the next backup).
I don't see why you would not want continuous mutation testing, especially if you have the resources for it. It can only help you discover more problems. Obviously, wallaby would...
How does enableBearerInterceptor fit into this? I did not find bearerStrategy: 'include_urls', bearerIncludedUrls: ['/api'], these props don't exist...
The solution is to use `npm install path` to install the 'path' module which native nodejs provides by itself but must be manually installed for webpack to understand it.
'npm install process' is also necessary to avoid the subsequent error message in the browser ``` path.js:25 Uncaught ReferenceError: process is not defined at Object../node_modules/path/path.js (path.js:25) ```