Steve

Results 256 comments of Steve

> @hez2010 Changes to input have been made. Please double-check if this still occurs in the latest build artefacts. What operating system are you on? It works. I didn't pull...

@maxkatz6 Note that netstandard2.0 doesn't support interface default implementation, so adding a member to the interface will result in binary breaking change as well. So you are in a situation...

If I recalled correctly, Vulkan doesn't support `WS_EX_NOREDIRECTIONBITMAP`. Will this introduce regressions on Windows?

Thanks for the advice. Will try to find a way to add an async variant of OnRouteMatch event.

Inline sudo is never a safe way and has millons of ways to exploit by a malware because it shares the same input handle/fd. Note that the same security issue...

I also tested the following code: In a WinRT component: ```cs class Foo { public IAsyncAction BarAsync() { ... } } ``` In consumer: ```cs var foo = new Foo();...

> I wonder if it is possible to address this by making one use a different instance. I think this should work as the out-of-proc model (the master branch of...

To acquire the ApiKey used in app sign, developers must pay $99 per year to Apple. I don't think it is feasible for a free open-source project. I would instead...

> there is no standard name Actually .NET doesn't care about the prefix `lib` and the extension name in `DllImport`. A simple `pcap` should cover `libpcap.so`, `libpcap.dylib` and `pcap.dll`.