Nikita Balabaev
Nikita Balabaev
`liblttng-ust0` is installed as CLI dependency on line 10
`sudo npm install -g pngquant-bin@^3.0.0` output: ``` info lifecycle [email protected]~postinstall: [email protected] verbose lifecycle [email protected]~postinstall: unsafe-perm in lifecycle false verbose lifecycle [email protected]~postinstall: PATH: /usr/share/npm/bin/node-gyp-bin:/usr/local/lib/node_modules/pngquant-bin/node_modules/.bin:/usr/local/lib/node_modules/.bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin verbose lifecycle [email protected]~postinstall: CWD: /usr/local/lib/node_modules/pngquant-bin silly lifecycle...
When one of Extensions package is referenced in a .NET FX application, there will be a warning emitted: ``` warning : Microsoft.Extensions.Compliance.Abstractions 8.2.0 doesn't support net462 and has not been...
Right now we have caching of instruments in Metrics source-gen: https://github.com/dotnet/extensions/blob/7271d1923ef31670feefbcba1e55751dcc3e6bfa/src/Generators/Microsoft.Gen.Metrics/MetricFactoryEmitter.cs#L109 The original issue https://github.com/dotnet/runtime/issues/84713 was resolved in `System.Diagnostics.DiagnosticSource` of version 8, thus we can check its version during generation...
There's a bunch of custom-made `ToHexString()` methods with the same implementation. As per [Performance Improvements in .NET 9](https://devblogs.microsoft.com/dotnet/performance-improvements-in-net-9/#encoding), it's better to use built-in and optimized [`Convert.ToHexStringLower()`](https://learn.microsoft.com/en-us/dotnet/api/system.convert.tohexstringlower?view=net-9.0) method. That way, it...