dzmitry-lahoda

Results 432 comments of dzmitry-lahoda

They improved .NET JIT afaik a lot in .NET 6 and 7, on top of 5, and BCL. Not expression specific. Oh, found stuff while googling https://github.com/dotnet/runtime/tree/main/src/libraries/System.Linq.Expressions - they deprecated...

One case would be not сonstrains, but combinations, e.g. {byte, int, long, float, ... , BigInteger} x {Sum, Divide, .. , Multi } x {1 parameter, ... , 256 parameters}.

@mpontus how you solved issue? we can build polkadot like this ``` { pkgs, rust-nightly }: with pkgs; rustPlatform.buildRustPackage rec { # HACK: break the nix sandbox so we can...

@mpontus try use `pkgs.rustPlatform.buildRustPackage`, not `crane`. it worked in `ComposableFi/composable`. run with sandbox relaxed and __noChroot. so for some reason failed to build statemine from cumulus like that. for cumulus...

@ipetkov would be rigth to say `if pkgs.rustPlatform.buildRustPackage can build X then crane can build X because crane is superset of rustPlatform for building`, with assumption that `patches and substitute`...

ok, will donate) (so i see only recurring sponsor, not one time donations, i would prefer one time donation in crypto so) so: 1. ideally it would be documented how...

```rust error: to use a constant of type `Mime` in a pattern, `Mime` must be annotated with `#[derive(PartialEq, Eq)]` --> libs\src\models.rs:345:13 | 345 | mime::APPLICATION_PDF => DownloadedFile::Pdf(file.content().to_owned()), ```

with lack of ide, it will give help and hints and no need to type manually in aqua stuff suggested by backend(rust developer)

> define an inherent fn checked_mul on your type so you don't need to import a trait to call it currently we have that > even implement Mul with type...