Tim Pigden

Results 9 issues of Tim Pigden

I get stack overflow (zio 2.0.0-RC2, scala 2.13.8) with following code ``` import zio.test.{ZIOSpecDefault, assertTrue} object SmartAssertHatesXml extends ZIOSpecDefault { override def spec = suite("compare xml")( compareXml ) def compareXml...

I have time-based data for which I wish to generate ULIDs - I need to generate a key and want default sorting/storage in the right sequence - but the timestamp...

A paragraph on difference between newtypes and opqaue types would be really good since they do similar things

Hi, My data models make extensive use of NonEmptyVector from cats. And I have desire for NonEmptyMap that's not based on sorted data. Would they have a place? I notice...

was this just left out or was it deliberate?

I'm trying to adapt some code from http4s. One of the things I do there is write tests which generate a request object that gets compared to the routes and...

import fastparse._ object TestFastParse { def parseA[$: P] = P("a") val Parsed.Success(value, successIndex) = parse("a", parseA(_)) assert(value == (), successIndex == 1) } >>>>>>>. /home/tim/repos/untitled/src/main/scala/TestFastParse.scala:5:56 Context bounds will map to...

If you call take(n) on a stream more than once you get different behaviour depending on how the stream was created, even though it has the same elements. I presume...

This method: ``` public static final int getCoordSequenceDim(CoordinateSequence coords) { if (coords == null || coords.size() == 0) return 0; // JTS has a really strange way to handle dimensions!...