Marc Knaup

Results 65 comments of Marc Knaup
trafficstars

What does the following mean regarding composition? > So, the compiler will implicitly color any given function with as many colors as it needs. It's possible that we see `@Composable...

Another example of mine - a Kotlin GraphQL library: ![image](https://user-images.githubusercontent.com/85242/111311031-4f5f7280-8690-11eb-98a9-a02d112ec935.png) Different colors for type definitions (pink), built-in types & values (lime green) and the rest (turquoise). Note that due to...

😅 I must have read over that. Thanks for pointing that out. Too bad. Would be amazing. At least it's related. I currently try to impose such restrictions using `@DslMarker`...

I'm using `@optional` in my project. The main issue is supporting it for non-nullable types which for me is the most important use case. That requires breaking the spec but...

From what I understand about Node now there is no way to fix this issue. The `Array` and `Object` types that you pass to the context will become contextified. Arrays...

As there is no activity in this project I've [forked](https://github.com/fluidsonic/quartz-mongodb) and [published](https://repo1.maven.org/maven2/io/fluidsonic/mirror/quartz-mongodb/) it ​using my own group on Maven Central. No need for any code changes as the Java package...

https://github.com/michaelklishin/quartz-mongodb/issues/217#issuecomment-867205877

This should also stop tracking `document.referrer` after the first `pushState` or `replaceState`. It would report the *initial* referrer for all subsequent `$pageview` events which is incorrect. Either it should use...

I ran into this too. ```solidity interface IExchange { … } interface IExchangeInternal is IExchange { … } interface IStrategy { function exchange() external view returns (IExchange); } contract Strategy...

It shouldn't cause any failures unless other contracts depend non a nonzero return value.