Przemek Wesołek
Przemek Wesołek
It would be nice to make it configurable. Maybe also ask for the file name when creating after pasting? Some meaningful file name is always better than a sequence number.
`json.load()` requires `str`, but `HTTPResponse.read()` returns bytes. In Python 3.6 it should work, as `json.load()` has additional logic to decode the bytes. https://docs.python.org/3/whatsnew/3.6.html#json. In older versions, a patch is needed....
Same on Ubuntu 12.04 32-bit
I also had this problem, but removing `.gradle` was not necessary. Simply stopping the Gradle daemon (with either `./gradlew --stop` or `gradle --stop`, depending on the way you run Gradle)...
Yes, I know, but the example uses `classpath 'se.transmode.gradle:gradle-docker:1.2'` to load the plugin, so it simply doesn't work. And the error message doesn't help much to a newbie, so I...
I can confirm the issue (also detected on trying to change the N binding used by me for "next unread") on Linux Mint 21 (based on Ubuntu 22.04). Thunderbird 102.2.2
After trying numerous configurations, I limited the problem to a single package. The problem occurs in conjunction with version 7 of `jupyter_client`. When instead forcing the installation of `jupyter_client=6.1.12`, or...
When working this out into new logging subsystem, please consider giving a possibility to has it working as this issue describes: to ignore logs from the application being wrapped (stdout...
I have the same problem. Reading through the code I see that only one line needs to be changed to fix this problem: https://github.com/thoughtbot/rcm/blob/ef34b0b0a664557ed0d276acffda3434acd49066/bin/rcup.in#L128-L138 in line 133 the `$dest` should...
Normally SDKMAN checks for updates on each `sdk` call, so going into offline mode in the above snippet speeds things up considerably: ``` SDK_OFFLINE_MODE=true sdk use $candidate $candidate_version ```