Simon Buchan
Simon Buchan
Seems interesting. I never had that much of an issue with threading tokens though my APIs in C#, but that probably said more about me than anything else... What do...
Wow, thanks for the pretty complete response! A lot of good detail and thought there. I've been running through different situations, and I think they *should* all be fine, with...
I've had some luck with this, perhaps it could be a start? ```rust pub fn run() { use fruity::nsstring; use app_kit::*; let app = NSApplication::sharedApplication(); assert_eq!(app.as_ptr(), unsafe { NSApp.as_ptr() });...
If you're looking for any registry package, I ended up writing my own from scratch: https://github.com/simonbuchan/native-reg but keep in mind it's a different API, e.g. C-style rather than Key objects.
If there's interest, I did end up writing an NAPI package [`native-reg`](https://github.com/simonbuchan/native-reg) after opening #62, but be warned it has an incompatible C-style API at the moment, so it's not...
For me the tests are failing later on `File Association Test` with access denied in `utils.associateExeForFile()`, since that tries to actually set it in HKCU, which fails of course. I...
Doesn't seem too tricky *design-wise*: ```yaml packages: # Set that an admin can publish anything '**': ... gitlab: admin: true # @mycompany-foo/bar can be published by maintainers in the group...
> group and user settings are ignored, this is handled within gitlab and stated as [a goal over here](https://github.com/bufferoverflow/verdaccio-gitlab/blob/master/README.md#verdaccio-gitlab). I'm afraid if this was a response to me, that I...
Also required for Windows (at least using WSL) where the only way to use docker is `export DOCKER_HOST=tcp://localhost:2375`, e.g. "remote" connection to docker for windows. I did pretty much exactly...
In particular, I found `cheap-*` source maps work, e.g. `module-source-map` dies, while `cheap-module-source-map` does not.