Eli Mallon

Results 70 comments of Eli Mallon

Hmm, a naive test shows that `new Function()` doesn't actually work here. Interesting. EIther AJV started working in contexts that disallow code generation or something else is going on... investigating...

Minimal repro case: ```javascript import Ajv from "ajv"; const handleEvent = () => { try { var schema = { type: "string" }; var ajv = new Ajv(); // options...

Okay, confirmed my original hypothesis - `new Function("true");` seems to get around the ban on code generation.

@davinkevin's referenced commit (https://github.com/davinkevin/Podcast-Server/commit/9ca4be54606925e3a8a4213384bc8de84ce7fbbf) illustrates the problem very nicely — how do I make three different variants with three different ingress rules applying to three different hosts? Here's how I'm...

Anyone know of a way to diagnose this further? "Unrecognized remote plugin message: \n\n" is pretty unhelpful.

Here's an example nginx.conf I was using: ``` worker_processes auto; # rtmp_auto_push on; error_log /proc/1/fd/1 info; events {} rtmp { access_log /proc/1/fd/1; # wait_key on; # interleave on; max_message 10M;...

Yeah, there is potentially a lot to think about with various corner cases but automatic indentation of block helpers would be a great start. Need to also account for the...

This would allow running Viz in a CloudFlare worker for free, which would be pretty neat.

Hi! I have a use case that involves "save states" of a text adventure game, so I was looking for a mechanism for doing that, something like https://github.com/wasmerio/wasmer/pull/489 but for...

For others like me coming from Google looking to sneak some cheeky little JS snippets into your instance, it looks like the glitch-soc fork of Mastodon supports injecting JavaScript in...