Someone
Someone
I think the pragmatic solution would be to make `fmt: off` work for comments, cf. https://github.com/psf/black/issues/1245
> However, according to the OP that's not an option for these #SBATCH comments, because they must be right after the shebang line. I've just tried running a job with...
> `sbatch` submits a batch script to Slurm. The batch script may be given to sbatch through a file name on the command line, or if no file name is...
Another use-case that's affected: ```python #!/usr/bin/env python3 # fmt: off #SBATCH --job-name="Example" #SBATCH --array=0-250 # ... # fmt: on ``` Black alters `#SBATCH` into `# SBATCH`. The former is interpreted...
This feature is a necessity: e.g. when you allow javascript from `accounts.google.com` you really only want it to be available to `*.google.com` and youtube; not, say, medium and twitter
> any suggestions In dfs.py: ``` diff + visited = list() ``` ``` diff + if subadjnode not in visited: ``` // Is linear in time and results in $O(VE)$...
Hi! Have there been some updates - guides or examples - on this?
@roberth Thank you! The discoverability of the page is good (I'm opening hercules-ci landing page, following to the "docs", and there I have the link) As for the documentation itself,...
If you so wish, but I must warn we'll be going off the point :) I want to run jupyterhub on NixOS and have access to user kernels (e.g. installed...
@behrmann definitely nothing to be sorry about, and thank you for advancing the discussion:) - You're right, Nix sets runpaths and dynamic linkers to absolute paths: ```bash $ patchelf --print-interpreter...