Brandon Ros

Results 284 comments of Brandon Ros

For what it's worth I was just calling out the weird need for stdcall extern fn architecture. I'm actually temporarily doing the test on Mac OS X (where the problem...

What is the current base way to use WebView2 (Chromium based Edge) on Windows?

For anyone else: crates.rs 0.7.3 version does not have this patch https://crates.io/crates/web-view Instead do this in Cargo.toml: ``` [dependencies] web-view = { git = "https://github.com/Boscop/web-view", ref = "e87e08cab3a2d500d54068ec9c7aaa055a711465" } ```...

These files work for Mac OS X, but what about trying to import/include + link against IOKit for iPhoneOS?

I wrote half of that. It's not very good unfortunately/doesn't really work. Looking for alternatives.

I don't think this actually works, but I'm trying to understand why. Apologies upfront. I've been searching far and wide for this, coming up blank.

Another route would be pulling in https://docs.rs/sspi/latest/sspi/ I'm guessing (which seems to support Ntlm without `gss-ntlmssp` plugin). https://github.com/prisma/tiberius/blob/27ea5a763fa7e3f95c6a81eed405e6589cd97458/src/client/connection.rs#L341 I see "mechanism" here. https://github.com/gssapi/gss-ntlmssp/blob/8149435632628a2c4d814624954f48564a3a5d9e/src/gssapi_ntlmssp.h#L13 And I see mechanism OID here. I'm...

Maybe instead of returning `lastAction` from strategy backtest results you return the entire array of actions? I see this repo is basically a clone of your Go repo. Has you...