Ethan Bell
Ethan Bell
What about a slide-out "Confirm Reset" (or similar) button that appears under the "New Game" button, and slides back in after, eg, 2 seconds or so? It's unobstrusive but also...
My team is having exactly the same problem as @danpat described -- we have an authentication proxy in a same-origin setup with an application that embeds Stoplight Elements. Requests issued...
Added a proposed implementation in #509
Reproduction using only ad-hoc queries: Query 1: ``` MATCH (n) WHERE id(n) = idFrom(0) SET n = { tags: { foo: "bar", fizz: "buzz" } } ``` Query 2: ```...
As a temporary workaround, this also works on 1.2.0: instead of passing `n.tags` to `keys()`, pass `properties(n)["tags"]` ``` MATCH (n) WHERE id(n) = $sqMatch.data.id UNWIND keys(properties(n)["tags"]) AS key MATCH (m)...
The root cause seems to be upstream of Quine, in openCypher: Other cypher interpreters using openCypher have the same problem:  We may be able to patch around this issue...
`%%` in sbt is a string modifier that says roughly "append and put in current scala version". Vegas hasn't published a 2.13 version (ie, there is no file named like...
A more thorough workaround has been introduced in https://github.com/thatdot/quine/commit/edecbcccd55206c9f028f1d68dc784e6ac38baff and is scheduled to be included in the next release. A new set of casting cypher functions may be used to...
Another motivating example: Storage subnetting. In Applied Energistics or Refined Storage, a common pattern is to construct a storage subnet: The subnet "Expose"s the storages it manages, while the supernet...