Results 13 comments of Sikari

Hey, I was able to replicate this in CSGO, but only through the ingame chat, console does not work. Seems like CSGO has some quirks with the ingame chat for...

Would another option be using a regex that limits the argument to be a _somewhat_ valid path? One candidate could be: [`^[a-zA-Z0-9\/_-]+(?:\.[a-zA-Z0-9]+)*$`](https://regex101.com/r/dZ5tMX/1), or limiting the entire string to `[a-zA-Z0-9\/_-\.]` or...

> > In my opinion, it's critical that existing compiled plugins continue to work, whether that means preserving the extension as a shim or keeping the extension as-is and making...

Hey, are you able to connect to the instance via CLI or other methods?

I like this idea a lot, I feel like it would play nicely with this RFC: . In fact Zod is mentioned in the RFC.

I personally use the scripts mostly to do occasional seeding to my database, with the script taking in parameters to push different objects to the database. I would agree that...

> > As for memoizing them across queries, I think that would be very unexpected; > > If you run a query with required parameters, you should always provide them....

There is some discussion around this here:

Hey, you can deny updates and deletes using [access policies](https://www.edgedb.com/docs/datamodel/access_policies), does this achieve what you want?