Results 75 comments of James Ravn

As a workaround I've just labeled the workspace ` `.

Hi - is this the same issue I'm seeing when I do `curl https://en.wttr.in/format=v2` ? ![image](https://user-images.githubusercontent.com/522123/79232016-dd1e5680-7e5e-11ea-9980-b5e12c843cce.png) For some reason extra spaces are added after the sun emojis. I've tried this...

I'm seeing the same behavior. Here's my build.gradle (its in a multi module build): ```groovy apply plugin: 'pl.allegro.tech.build.axion-release' String getVersion(version) { def currentRevision = "git rev-parse HEAD".execute().text def branch =...

Hmm - is it because the tagged commit is a merge commit?

I notice it's worse than just early completing. It can lead to segfaults as well. If the future completes early, the main thread can end up deleting the combined future...

> That line forces the deferred to be moved to the main thread. The call to deleteLater needs an event loop to run correctly. It's not guaranteed that a QThread...

@vpicaver Created https://github.com/benlau/asyncfuture/pull/44 to fix the crashes.

For posterity sake, this is a quirk of glibc: https://codebrowser.dev/glibc/glibc/sysdeps/posix/getaddrinfo.c.html#1234. It explicitly ignores ipv6 standards and returns ipv4 addresses first when using ULA addresses. The assumption is "ipv6 will never...