PolarGoose

Results 45 comments of PolarGoose

@matthijskooijman, Is there a particular reason why the parser uses Arduino [String](https://www.arduino.cc/reference/en/language/variables/data-types/stringobject/) instead of [std::string](https://en.cppreference.com/w/cpp/string/basic_string)? If not, could you give your estimate of what would need to change in the...

@matthijskooijman, I have tried your proposal. Indeed, it is possible to make the parser work. I have created a pull request with my results: https://github.com/matthijskooijman/arduino-dsmr/pull/53 Could you please take a...

By the way, I have also written my own DSMR parser: [DsmrParserLite](https://github.com/PolarGoose/DsmrParserLite/tree/main).

@dmex, What is rundown? Could you please provide more information and a reference code? Also, I have tried to use `ReOpenFile` as you proposed in your [comment](https://github.com/giampaolo/psutil/pull/2190#issuecomment-1378854075). It works very...

@m2jean, Thank you for the explanation. > this app was designed to only enumerates audio capture devices (shown as stereo devices). On Windows 11 if I connect the headset using...

@m2jean, Your advice to use `eAll` instead of `eRender` in the [BluetoothAudioDeviceEnumerator::EnumerateAudioDevices()](https://github.com/m2jean/ToothTray/blob/master/ToothTray/BluetoothAudioDevices.cpp#L39) function worked. Thank you very much for the solution. I have adopted your implementation in my [BluetoothDevicePairing](https://github.com/PolarGoose/BluetoothDevicePairing) utility:...

> @alekw911 how did you fix this for your app? Hello @mitja-p, I'm not the author of this issue, but it seems that there is no fix, as I described...

As a workaround, I have created a repository to produce statically linked x64 executables of re2c for Windows: https://github.com/PolarGoose/re2c-for-Windows

@jlnrrg, Great proof of concept! I have some questions: 1. Even though the https://github.com/terrastruct/d2/issues/1677 has been closed, the D2Playground still doesn't resize the diamond correctly: [D2Playground state machine](https://play.d2lang.com/?script=nJK9TvswFMV3P8WRh_9Qqf1TVWK4AwtiQEgtghF1MM6NaiXYlQlUCPE2jDwVT4Ku80EcZWKKP8753XNvvFgQ3hWQkKts0oT1ufpQqpf8Sy0S2BcK6DbfX5_ilj4I1kVbswLaURHWZwpIddJ6BvbcmNhMcWmzkrERLPuG47L9DEHlLxIea2Orv5XvLIUzT2Hcj9Yj_2bk3yR_iovlBS4PbCvcXm-VGpYteniGhCgYlUJ3tivpItkAewjO8mqSROFXJI5WRdD_bV9HD-YMSdAPR-fh_KupXbHPZeyLXrC72WtpZggu9_dsoj1gy80pxCqT5lcivmNTvBF8d1KGF0me8XZlSTiGE0eEspxhTAQJOXP-EwAA__8%3D&layout=elk&) 2. Is...

@Langenbacher, There are already existing console tools for that: * [Sysinternals Handle](https://learn.microsoft.com/en-us/sysinternals/downloads/handle). Note: it doesn't support Unicode file names. Take a fixed version from [here](https://github.com/PolarGoose/Sysinternals-console-utils-with-Unicode-support) * [Handle2](https://github.com/PolarGoose/Handle2) Would they work...