Patrick Reader
Patrick Reader
Revival of #1738. Could you consider adding an option to serve hidden static files and templates? I cannot see any reason why one wouldn't want to serve these hidden files,...
When I press Ctrl+Shift+P, Firefox opens a new Private window instead of triggering the command palette. I'm using Firefox Developer Edition v96.0b8 on Arch Linux.
I prefer to put spaces in my heredoc delimiters, because they're more readable than WORDSLIKETHIS. For example: ```
### What would you like to be added On Linux, Step CLI should follow the [XDG Base Directory specification](https://wiki.archlinux.org/index.php/XDG_Base_Directory) for storing data (essentially, use `$XDG_CONFIG_HOME/step` rather than `~/.step` by default)....
In Swift, `\(` is used for string interpolation: ```swift var name = "Tim McGraw" "Your name is \(name)" ``` ([source](https://www.hackingwithswift.com/read/0/5/string-interpolation)) Could a ligature be added for this?
1. Run hspec with some tests that enter an infinite loop 2. Press ctrl+c to escape the infinite loop 3. Observe that the terminal cursor is invisible As a workaround,...
Simple example: ```bash $ bwrap --ro-bind / / --bind . /here true bwrap: Can't mkdir /here: Read-only file system ``` This can be worked around by creating the target directory...
**Describe the enhancement or feature you'd like** There should be some documentation about the various code generation tools used in CPython, for example: - freeze_modules.py - deepfreeze.py - generate_global_objects.py I...
Currently, if an object containing the same list or dict object twice is dumped, aliases are created: ```python yaml = YAML(...) x = [1, 2, 3] y = [x, x]...