codekoriko
codekoriko
The doc says: `This currently only works for single words (not for words groups).` Does it mean it might be in the future? Opening this to keep track on the...
```python my_regex = r"\sword\.?" ``` To improve readability like the "\s" to be highlighted in blue as '\.?' is.
Tesseract is doing a fantastic Job at processing the input image! original `demo.jpg` size is `3614 Kb` `tesseract demo.jpg out get.images` gives me `demo.processed.tif` which is only `35 kb` I'd...
this is a open issue for over a year now: https://github.com/microsoft/vscode-python/issues/11929 https://github.com/microsoft/vscode-python/issues/11729 May be considering removing it from the boilerplate? or a notice in the doc? it took me a...
I implemented a ban_policy to mark redirect 302 as a "ban". But once the request reached the maximum retries it is let through and therefor picked-up by scrapy.downloadermiddlewares.redirect Which in...
where to get the following files? there is no url provided ```yaml citekey: Bingham2018PIG folder: highres location: Pine Island Glacier resolution: nan doi: dataset: nan literature: "https://doi.org/10.1038/s41467-017-01597-y" files: - filename:...
`Point` being a `Tuple` of `float` it does not match the actual behavior of the `position()` function: ```python def position(x=None, y=None): """ Returns the current xy coordinates of the mouse...
### Version of Hardhat 2.22.2 ### What happened? I'm using the [hardhat-solhint](https://hardhat.org/hardhat-runner/plugins/nomiclabs-hardhat-solhint) plugin, when the litting process raise error, the exit code stays the 0, therefor command chaining with &&...
The extension is very sweet but I'd prefer to have it on demande (either contextual menu or extension icon click) rather than automatically on every pages. That would be less...
SoftwareSerial has been replace by HardwareSerial on ESP32 based board. I added conditional import to be able to handle both platform and updated the doc to reflect those changes Tested...