Petrus Theron

Results 50 comments of Petrus Theron

Some encouragement from the sidelines :) Don't give up on Closh. I need it every day. I have since switched to Parinfer now that the Cursive implementation is good enough.

I tried `["/js" :path]` and `["/js/.*]` with no luck. Using bidi v2.1.2, the following route does not match: ``` (let [routes ["" [["/" :index]] ["/css/" (bidi-ring/->ResourcesMaybe {:prefix "public/css/"})] ["/js/" (bidi-ring/->ResourcesMaybe...

@Hozeeben the order of a filter refers to the number of poles in the filter. By definition, a biquad filter is a [second order filter](https://en.wikipedia.org/wiki/Digital_biquad_filter): two poles, two zeros. The...

Thanks. In this particular case, I have a mixed-source project (ClojureScript & Rust) and I didn't want Cargo to restart when I touch my *.cljs files :)

OK, so load-js / load-gist should work using advanced compilation with externs?

Thanks @josephschorr, but my application is not written in Golang. Can `diff` be exposed via gRPC? If it's part of `zed` CLI, would have to shell out, or add a...

I'm trying to compare if the schema in prod SpiceDB instance differs from the Spice schema I have on-disk, e.g. when deploying a new version of app. At this stage,...

Thanks. How do you keep track of Spice schema versioning? Practical example similar to mismatched database schema: given a set of schema migrations, prod might think it has v3 of...

Thanks. How do you keep track of which schema version was written to Spice? External hash / commit / version number in DB? Would be nice if SchemaService took a...

Is there a BNF syntax spec somewhere for the Schema language in the meantime so I can parse the schema text and compare the sorted parse tree?