Mike Hearn
Mike Hearn
https://gist.github.com/christianparpart/d8a62cc1ab659194337d73e399004036 Supposedly it avoids flicker and tearing on terminals that support it.
The following test fails: ```kotlin val doc = ConfigDocumentFactory.parseString(""" include required("a.conf") include required("b.conf") abc = 1 """.trimIndent()) val result = doc.withValueText("abc", "2").render() assertEquals(""" include required("a.conf") include required("b.conf") abc = 2...
Curious how much work is involved in improving the parser's handling of symbols in unquoted strings
I realize this library is unmaintained so this is more a query in case anyone knows how much work is involved, or what issues I might hit. My app involves...
MachO files can be effectively glued together with a small header that indicates this has happened, Apple calls this a "fat" binary. https://www.symbolcrash.com/2019/02/26/mach-o-universal-fat-binaries/ The current `mach_o.ksy` doesn't know about this...
I like the new feature that regexs out the crap in the BitPay/Coinbase memo fields: nice. I just made a payment via a payment processor I never heard of before....
I was confused for a moment by the wording of this menu item. What is actually edited is the label for the address, isn't it. I'm not sure labelled addresses...
I can cast a JavaScript object to a Java interface that has one function per JS property. But if those functions have names that don't exactly match the JS side,...
You can do this in Nashorn but the equivalent approaches in GraalJS don't seem to work (yet?). The JavaInterop.md file doesn't say how to do it either. This makes it...
Companion objects that consist of no fields and all `@JvmStatic` methods are effectively redundant, especially for Java users who will want to use static methods as normal. Currently these things...
**Describe the bug** It's not totally obvious how to link to things in a module when writing `module.md`. The IDE offers no suggestions and Dokka just seems to render the...