Jordan Last

Results 225 comments of Jordan Last

It would be great to get RustPython back up on crates.io!

I will post code later, but to initialize the interpreter I just use run_code_string with all of the user's code. Hmm, this is troubling for my use case. I need...

Here's a more complete program after all of our compilation (I've left out a couple traits and impls to save on verbosity). This will run on the Internet Computer inside...

As a first step I'm just trying to get this to work within a single interpreter.enter not using scope: ```python message = 'it did not work' def set(): message =...

Okay so this is really dumb, but I just needed to use the `global` keyword in my original code earlier up in this issue. This seems to be working well...

What if we want to override these traits for the primitive types, like `u128`? The solution we've moved to is just implementing our own traits, `TryIntoVmValue` and `TryFromVmValue`. We implement...

I think it's best to move forward with what is being suggested here: https://github.com/dfinity/motoko/issues/3462#issuecomment-1258599165

That's where I was headed, getting OpenMVG compiled. So, the biggest barrier for me in getting started is where to start, or what to compile first. I don't know much...

Also, if you want to start getting setup for WebAssembly, it's​ pretty simple to get started with, they've done a good job: http://webassembly.org/getting-started/developers-guide/

That will be a great place to start, thanks. I'm pretty busy this next week or so, but I'd love to dig into this soon. Seems pretty straightforward so far,...