Graciliano Monteiro Passos

Results 27 issues of Graciliano Monteiro Passos

First of all, the idea of Pitest is from a genius! Without any additional code, you increase the quality of the tests and point new cases for tests. It's very...

## The Issue While compiling a Web project that have some dependency or code like `dart:io` (or any non browser compatible dependency), build will show a warning: ``` [WARNING]build_web_compilers:entrypoint on...

HTTP range requests are needed, since the asset server is accessed by `webbed serve` proxy (`shelf_proxy`). When any browser accesses the `webdev` port, it's actually accessing the Asset Server (`AssetHandler.handle`):...

Currently is impossible to connect to a MySQL Daemon with a user using the new Authentication Plugin `caching_sha2_password` (the default for the latest MySQL version). The only way to circumvent...

With the advent of Bitcoin taproot and probably a wide adoption of Schnorr signature, it will be very important to this package to have support for this. Currently there’s an...

Just to inform a `Dart` integration with the `RandomX` library, with binaries for `Linux` and `MacOS` (arm64 and x64): https://github.com/gmpassos/dart_randomx This project also shows how to write a simple wrapper...

Just a request for Bootstrap 4+ support. (Bootstrap 4 was released in 18 Jan 2018). Thanks for the lib! Best regards.

The `build_verify` test usually works in a CI, just after a `dart pub get` and usually in a different OS from the developer computer (the `pubspec.lock` committer). It is not...

The previous code was using `yield` in a wrong (or outdated) form, creating unnecessary `Future` + `lambda` and unnecessary use of `await`.

`operations` should be populated before `schedule`. This line ``` operations[id] = op ``` should be placed before: ``` ioScheduler.schedule ``` The only thing that avoids an asynchronous bug is the...