Simeon H.K. Fitch

Results 210 comments of Simeon H.K. Fitch

A few random thoughts, with the caveat that I'm not sure I understand the specific use case, so given that, just ignore my questions if they are not worth the...

@Berveglieri or @Links2004 Did you figure out a workaround for this? I'm also having this problem.

Addendum: When I open the `.gpkg` file with a shell in the Docker container, I'm able to manually follow the steps: ```sql sqlite> SELECT load_extension('mod_spatialite.so'); sqlite> PRAGMA application_id; 1196437808 sqlite>...

PS: I tried overriding the `Id` type member in `Marshallable`, but its constrained: ``` scala Error:Error:line (56)overriding type Id in trait Marshallable, which equals AnyRef; type Id has incompatible type...

OK, good to know. I thought it might be in the macro instead of in TinkerPop since the `TinkerFactory.createModern()` has Integer ids, but certainly wasn't sure. Seems to me that...

Noting there's a whole bunch of the `elementPropertyKey` like parameters that are `String` rather than `Key[T]`.

If `orderBy(A)` translates into the TP equivalent `order().by(A)`, is there a semantic (or performance) difference between `order().by(A).by(B)` vs. `order().by(A).order().by(B)` when writing `orderBy(A).orderBy(B)` in GS? Personally, I'd argue for sticking with...

@lihaoyi Any tips on how we might help debug this? How might we add code or compiler flags to spit out intermediate representations with positioning information (sorry, I've not programmed...

Desugaring tests: These work: ``` scala> x(List(2,3).::(1)) res1: String = List(2,3).::(1) scala> x(List(2,3).$colon$colon(1)) res2: String = List(2,3).$colon$colon(1) scala> x(Vector("b", "c").+:("a")) res3: String = Vector("b", "c").+:("a") ``` This does not: ```...