Logic-32

Results 23 comments of Logic-32

How about a compromise? Use LocalStorage, or some such mechanism, to persist it. So once I change it, it stays the way I want it for my use case. Which...

Lol, I actually have been wanting to add LocalStorage/a cookie to the front-end to persist that setting for awhile. I probably wouldn't do a config property for it personally. But...

My two cents on shutdown hooks: they don't work very well in web applications. For example, running in any servlet container (e.g. Tomcat), if you undeploy a context it doesn't...

Unfortunately it looks like the `` are written out at the end of the document (at least, they are in my case) so I'm not sure this can work with...

I now find myself in a situation that shows off just how little I know of how to work with python properly. - smtpd-tls supports Python 2.7+ but [you can't...

FWIW, one solution my company had to this problem was to actually swap out the Reporter if the flag was "off". Basically, we have an implementation of AsyncReporter that is...

`brave-jdbc` sounds like an awesome name to me simply because it's what we named our custom variant of this problem in-house. Basically, my two cents on the problem as a...

Looked at your commit @adriancole, was the bug here that you finished a parent span prior to initializing the child span? In doing so, the SpanMap got cleared out so...

Just want to chime in and add that, as of 2.17, this is an issue someone I work with had to find the hard way :( Out of curiosity, has...

Sorry. Perhaps "default" was the wrong word. What I mean is: - On the happy-path that works as expected, the code goes through: https://github.com/FasterXML/jackson-core/blob/8b87cc1a96f649a7e7872c5baa8cf97909cabf6b/src/main/java/com/fasterxml/jackson/core/base/ParserBase.java#L863 - This path explicitly uses `BigDecimal`...