Evstifeev Roman
Evstifeev Roman
i started server with ``` ext_http_server -a foo:bar --cert cert.pem -p 8080 ``` then i opened localhost:8080 with browser, chcecked that it works ok. then i hit ctrl-c it prints...
google-api-python-client was updated and pushed to pypi
os: CentOS Linux release 7.4.1708 kernel: 3.10.0-693.el7.x86_64 python: 3.6 pyftpdlib version: 1.5.4 My config: ```python from pyftpdlib.authorizers import DummyAuthorizer from pyftpdlib.handlers import FTPHandler, ThrottledDTPHandler from pyftpdlib.servers import MultiprocessFTPServer authorizer =...
https://developer.android.com/reference/android/support/v4/content/FileProvider If the option `--fileprovider-paths=./mypaths.xml` is given, then this xml file is copied to apk `res/xml/file_paths.xml` and `` is added to the AndroidManifest.xml
```python from pprint import pprint ctx = {'@vocab': 'http://ex.org/#', 'path': {'@type': '@id'}} data = { 'http://ex.org/#maxCount': 1, 'http://ex.org/#path': 'http://ex.org/#shortname' } pprint(jsonld.compact(data, ctx)) # { # '@context': {'@vocab': 'http://ex.org/#', 'path': {'@type':...
```python print(jsonld.compact( {'name': 'Bob'}, {"@vocab": "http://example.org#"} )) ``` I would expect this to return ```json { "@context": { "@vocab": "http://example.org#" }, "name": "Bob" } ``` But instead i got just...
System Information * OS: Linux * Blender version: 2.83 * Add-on version: Git master O the file with many vertices, "Straighten UV" takes more than 20 minutes to complete, and...
Sometimes when you click "Straighten" or other actions in "Align UV" section, the plugin gives an error "All UVs are not separated". It would be nice to see more clear...
**Describe the bug** 0.5.0 produces heavy artefacts in the middle of the video, as shown in the sample below. **To Reproduce** Watch or download the encoded result here: https://drive.google.com/file/d/1kaQCIcGPAzmjIS-4zb8JsALle7o8hoa0/view?t=460 at...
I spawn many thousands of jobs to a scheduler, and after I hit ctrl-c, call `Scheduler.close()` to stop all the jobs. It takes ages to finish, because currently the job...