Rui Lopes
Rui Lopes
FWIW, https://github.com/bmc-toolbox/bmclib already has support for Intel AMT.
I'm still sporadically playing with Intel AMT. Besides https://github.com/bmc-toolbox/bmclib, there is https://github.com/open-amt-cloud-toolkit/open-amt-cloud-toolkit. It provides an UI SDK and a reference implementation of backend services which expose an API to control...
I also wished that would be possible, but unfortunately Inno Setup (out-of-box at least) only supports these known Identifiers: admins Built-in Administrators group authusers Authenticated Users group everyone Everyone group...
I've added these changes into the 2.2 branch too.
Got it. Thank you! For now, I think I will shortcut this, and just include this in a separate source file before compiling the app. Only have two use-cases, mainly...
I've just found out about https://github.com/bytecodealliance/wasm-tools, which contains this nugget: > `wasm-tools metadata show` [wasm-metadata](https://crates.io/crates/wasm-metadata) Show name and producer metadata in a component or module It seems to be the...
If that is not going to be completed, maybe, include the rbac.yml as a static file, and return that from that go codepath? My hope is to have a straightforward...
Windows uses UTF-16LE and utf16.Encode is UTF-16BE. I will submit PR soon.
Oh an I was mistaken, `utf16.Encode` is really UTF-16LE! We just need to convert the result into a `[]byte`.
Sorry for the confusion... the PR does not really convert from BE to LE. Let me clarify: 1. `utf16.Encode` converts from `string` to a `[]uint16` encoded as UTF-16LE. 2. `encodeUtf16Le`...