Techcable
Techcable
> One of my main reasons for adopting xonsh over powershell or zsh is it's decent portability (first-class support for Windows/Mac/Linux) 100% this. The ideal solution has first class support...
This would be (partially) fixed by #295 😄 Only thing to note is `RmpWrite`/`RmpRead` are considered an implementation detail in that PR. That means on `#[no_std]`, the only supported types...
If this is a matter of convenience, I think there are tools to help with that: - [cargo workspaces](https://github.com/pksunkara/cargo-workspaces) as @trevarj mentioned - [cargo release](https://github.com/crate-ci/cargo-release) - [publish-ws](https://lib.rs/crates/publish-ws) Also if you're...
Just FYI the java security manager is [deprecated for removal in Java 17](https://openjdk.java.net/jeps/411). Any java-level controls would be difficult (even with jython). CPython doesn't really support sandboxing even if Jep...
Wouldn't it be possible to have each jep instance execute the python code in its own subprocess? Wouldn't the overhead of those processes be far less than that of a...
I forgot about inter-process communication. It Makes sense to let the Py4j project handle it. @bsteffensmeier You switched the () and [] on the markdown link.
I'm willing to get wheels working for python 3.5 and 2.7 on windows and linux if you'd accept a PR. As for which wheels you're going to distribute, I feel...
You could add a unsafe `DerefTrusted` trait to force only 'trusted' deref implementations to run that don't panic or have side effects. Most smart pointers already require unsafe code anyways,...
Right now on Apple Silicon, the MPS "doesn't have a configuration for this platform out of the box". I use an M1 MacBook as my main development machine, so I...
Okay I have a minimal viable patch in #77 that simply disables `PROT_EXEC` flag on Apple Silicon. It will not work for @fstromback 's use case of using the MPS...