SafariMonkey

Results 19 comments of SafariMonkey

I have spent a decent amount of time on this, with [various branches](https://github.com/SafariMonkey/rust-script/branches), ending in byte-accurate tracking of the location of the span of the cargo manifest, which I have...

@ssokolow Does the `--pkg-path` option help you? ``` --pkg-path Specify where to place the generated Cargo package. ``` So your script would just be ``` rust-script --gen-pkg-only "$1" --pkg-path "$2"...

Here is my commit: ~~https://github.com/fornwall/rust-script/commit/0b97d86b1e0897cd6ba2e26bc90852ae0ad82bc3~~ https://github.com/fornwall/rust-script/commit/3e08f103f012b73d4e2d4ceb58baf653cc648967 (bad rebase). I want to add another format for IDE-relevant output, but that should be enough for what you're looking for. Please let me...

If it's possible to transmit pen data (pressure, precise position, maybe even tilt) over some remote desktop protocol from Android to Windows, I'm sure a lot of artists would appreciate...

@jhpratt nerd-sniped me with their comment above that "I'm not sure it's possible to implement in a `macro_rules!`, unfortunately." I made a macro to build a balanced tree of `or`...

> I'll definitely take a look to attempt to understand how that works, but it certainly looks promising. Maybe someday I'll be able to write complex macro_rules! like that myself....

I like what you've done with it. The inlining of the splitting logic is clever, and having fewer rules is nice. Unfortunately, I think that readability has somewhat suffered from...

I went ahead and added some comments from my understanding of the code. I don't know how much of the commentary is helpful/needed, so if you think any of it...

Currently looking into this. https://github.com/KhronosGroup/OpenXR-CTS/pull/20 may be relevant. Looks like it was noticed that sRGB was incorrect on the CTS on OpenGL, so sRGB formats were excluded from selection. This...