Results 12 comments of kotfu

I'll bet there is a way to get apache or Nginx to do the basic authentication and then pass it along to tomcat. Let me experiment with configurations and see...

See https://bz.apache.org/bugzilla/show_bug.cgi?id=59758. I don't think Tomcat can support this.

Absolutely. I don't use pandoc so I'm not much help with the specifics, but I'm happy to collect useful scripts and associated documentation. Do you want to create a pull...

Stumbled on a cool tool called [asciinema](https://asciinema.org) that looks like it can solve our video/gif/screenshots problem. It records terminal output and plays it back in an embeddable frame. Itr looks...

@kusibornhauser: I'm one of the maintainers of https://github.com/python-cmd2/cmd2. We have an [open issue](https://github.com/python-cmd2/cmd2/issues/1251) to investigate how we might make `cmd2` more friendly to use with `rich`. I've done some preliminary...

I have a potential solution for this on the `clipboard` branch.

The clipboard branch now has a useful solution to this problem. It both adds an `allow_clipboard` attribute and initialization parameter, but also defers the pyperclip initialization until the user attempts...

This has been added and will be included in the next release of cmd2.

There is another option you might consider, which would not require any changes to cmd2, and which may be similar enough to the stdin/stdout thing that you could make it...

The `--select-if-one` logic is applied before the `--value` logic: ``` $ echo "Downloads" | gum filter --select-if-one Downloads ``` This: ``` $ echo "Applications\nLibrary\nDownloads" | gum filter --value=Down --select-if-one ```...