Jordan Last

Results 165 comments of Jordan Last

Hey, you can see where that went here: https://github.com/Juicy/juicy-ace-editor/pull/41 I've handed over the reins.

I'm not sure that is the issue. FF doesn't have Shadow DOM currently , and I've experienced this problem many months ago as well, when I know FF didn't have...

I see, do you know if it is possible to disable shady Dom?

I'm running into this same issue, though I am using lit-html. I imagine the problem is coming from the way both Elm and lit-html are handling the dom. We might...

It seems to me like Webpack is going to need functionality for compiling CommonJS and other formats to ES Modules, am I correct? I've been diving deep into this for...

This code is also breaking: ```python from typing import Any def hello_world() -> Any: return 'Hello world!' ```

Here's the full code that breaks, this is a wasm32-unknown-unknown environment without wasm_bindgen: ```rust use rustpython; fn custom_getrandom(_buf: &mut [u8]) -> Result { Ok(()) } getrandom::register_custom_getrandom!(custom_getrandom); #[ic_cdk_macros::query] fn simple_query() ->...

Does this possibly have to do with `rustpython::vm::Interpreter::without_stdlib`? I am calling `vm.new_scope_with_builtins()` so I would think not. This is breaking on my local machine compiled natively and in wasm32-unknown-unknown running...

I get an error like this: ```bash thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: PyBaseException', query/src/main.rs:28:10 ``` It would help if I could get some useful information...

On my machine, I mean compiling and running RustPython for my laptop computer, so probably x86. Usually I'm compiling to Wasm to run in an Internet Computer replica, which is...