0x11
0x11
| Title | Description | --------------------|------------ | Version | all | Type | feature request | node | all | Operating System | mac | Short Description | request for...
**READ THE INSTRUCTIONS BELOW** config ``` version: '2' services: phabricator: environment: - PHABRICATOR_HOST=mydomain.com - MYSQL_HOST=mariadb - MYSQL_USER=root - MYSQL_PASS=asdf123 - PHABRICATOR_REPOSITORY_PATH=/repos image: 'redpointgames/phabricator' ports: - '80:80' - '443:443' - '922:22'...
there are many gist show how to graceful exit tornado application like this: ``` python stop_httpserver(http_server) def try_stop_ioloop(): io_loop = IOLoop.instance() if io_loop._callbacks or io_loop._timeouts: io_loop.add_timeout(time.time()+1, try_stop_ioloop) else: io_loop.stop() try_stop_ioloop()...
`dispatch_sync_f(dispatch_get_main_queue(), XX, XX) ` in [here line 280](https://github.com/kwhat/libuiohook/blob/f259ff37e81125f6f91ebac5439e7cde1e78b296/src/darwin/input_hook.c#L279C45-L280C12) will make a deadlock situation. To resolve this, we need to make a copy of the CGEventRef with `CGEventRef eventCopy = CGEventCreateCopy(event);`...
request for macOS support. Thanks.
fix "TypeError: 'int' object is not iterable" error