Steven Jeuris

Results 102 comments of Steven Jeuris
trafficstars

Note that I already managed to make the second test of `V2019JsonSchemaTest.testAnchorValidator()` and all of `testRefValidator()` pass [by the changes described in the PR](https://github.com/networknt/json-schema-validator/pull/500#issuecomment-1020681816). But, this wasn't exactly production-ready code...

Intervals are not only useful for datetime, but _any_ interval [would make a great Kotlin language feature](https://github.com/Kotlin/KEEP/issues/138). Therefore, I started a multiplatform generic interval project, [kotlinx.interval](https://github.com/Whathecode/kotlinx.interval). I use a similar...

@JakeWharton I'm unaware of any trademark on the use of `kotlinx`, if that is what you are referring to. I in fact searched for exactly that prior to naming the...

Update: I now included and published `InstantInterval` on Maven as part of the [`Whathecode/kotlinx-interval` library](https://github.com/Whathecode/kotlinx.interval).

I have a Kotlin multiplatform library which includes JS as a target. As per the use case highlighted by @dkhalanskyjb, the library exposes `kotlinx-datetime` types in its API, [in particular...

My current workaround, similar to what I did on the legacy backend, is to write custom TypeScript declarations for the types which are exported through `$crossModule$` (more information in [this...

@erikbern I tried: - adding a `.mailmap` file - checking it in (not certain this would be a requirement) - re-running `git-of-theseus-analyze` (not certain this would be a requirement) But,...

I'm considering creating a `kotlin-interval` library to provide similar functionality to something I implemented in C# before, and is suggested here. It's a base class I used quite extensively in...

I started work on this [in this repository](https://github.com/Whathecode/kotlinx.interval/tree/develop). Going smoothly so far. 🥳

Thank you for this excellent overview of planned additions and tradeoffs considered! I want to comment on the following: > **Common supertype of ClosedRange and OpenEndRange** > ... > Introducing...