torfmaster

Results 20 comments of torfmaster

> Is it correct to assume, that gopass on your terminal works without issue? Yes. > Did you follow the steps to setup the gopass jsonapi without errors? https://github.com/gopasspw/gopass/blob/master/docs/setup.md#filling-in-passwords-from-browser Yes....

I personally would be okay with just removing all of the debug implementation as I don't use them for debugging and we shouldn't use them in production code at all.

I don't know exactly about the details, however, you can build no-std-binaries (which are probably actually libraries) using stable rust and the cortex-m-rt crate. Regarding inline assembly: We are using...

> .cargo/config should be removed. Critical build infrastructure should not be intentionally obscured by putting it in hidden files. After the long discussions about the build system I think that...

What about inlining everything (--target, deny warnings, ...) inside the Makefiles and keeping (+documenting) the config for everyone who wants to use cargo instead of Makefiles. Another option would be...

@gendx: We started writing a design document in https://github.com/tock/libtock-rs/pull/20 some time ago. As we didn't come to a consensus we didn't merge it, yet. 👍 for adding this to the...

Thank you for your response! I already tried that but that only sets the server part. As for javascript which consumes `navigator.language`. I already tried also setting the javascript part...

@ivanvanderbyl as @sonnguyenmau mentioned setting the `launchArgs` doesn't work as the chromium version provided by puppeteer doesn't accept the `--lang` argument anymore (still, it is listed as a supported argument)....

You can put this option to the test setting by using an object as follows: ```typescript const cheatTestSettings = { bypassCSP: true }; const testSettings: TestSettings = { ...cheatTestSettings };...

> I looked into this, and this is actually the expected behaviour. I am not sure that this is expected. When setting `loopCount` to zero I actually don't expect any...