Tim Stamp
Tim Stamp
Say I have a container hosting my apidoc endpoint at `/api/myapp/apidoc` I don't know when I build my application what '/api/myapp' will be, so I can't hardcode it. With Flask,...
One Solo key plugged in, and one Yubico key plugged in, causes: ``` $ solo key update Multiple Solo keys are plugged in! Please: * unplug all but one key...
Add a right-click menu to quickly change config options, such as the zoom/scale level.
Modification on the existing code to strip https:// prefix only - as http://localhost is considered a secure domain used for development and testing. Love this project, thanks so much!
### Actual Behavior Attempting to use a `/etc/docker/daemon.json` file within the `rdctl shell` seems to have no effect. ### Steps to Reproduce ```bash cat >/etc/docker/daemon.json /etc/conf.d/docker ] 278.5kB/27.15MB de8ecf497b75: Downloading...
### Steps to reproduce Link to live example: https://mui.com/material-ui/react-app-bar/#enable-color-on-dark Steps: 1. The theme sets the AppBar colour to "#1976d2". 2. The AppBar actually has colour "#2582D6". 3. If you change...
Link at the bottom of the page refers to non-existant page at: ``` /WebAuthn//FIDO2_WebAuthn_Developer_Guide/WebAuthn_Client_Authentication.html ``` Should be pointing at: ``` /WebAuthn/WebAuthn_Developer_Guide/WebAuthn_Client_Authentication.html ```
My basic setup in Flask, using a Flask Blueprint: ```Python @bp.route('/ws', websocket=True) def wss(): ws = simple_websocket.Server(request.environ) ws.close(reason=3000, message="not logged in") time.sleep(1) return jsonify(None), 200 ``` So I would expect...