Piero Marcelo Ulloa Mora

Results 18 comments of Piero Marcelo Ulloa Mora

Hello! I was reading the proposal and kinda resonated with me the issue of not being able to do parallel operations that are thread safe, because they're not really operating...

This is nice. I like the comcept of the executor. Have you considered how it would be intended to be used? I was thinking something in terms of say, async...

Hello I reviewed your code and I don't know, maybe it is better to try to extend the [ResourceHandle](https://api.flutter.dev/flutter/dart-io/ResourceHandle-class.html) API instead? That one would allow you more flexibility rather than...

@brianquinlan Hello, sorry for the direct ping, but I noticed that you're responsible for `dart:io` and I think this would be a very nice feature to have, and we want...

It would be great if it worked like Rust borrow checker, but right now I would like it to work like the don't forget to close sinks lint, maybe? El...

Yes, I'm already doing that, but the issue is with classes wrapping pointers to structs and such. I'll get some example code later to illustrate my point better. El jue.,...

```dart static FrequenciesData loadFromAudioFile(String path) { const fftSize = 1024; const frameCount = fftSize; var arena = Arena(); // To avoid memory leaks var runningAverages = Float32List(fftSize); try { //...

To be honest, the proposal went a little bit over my head in how nuanced the situation was. I would probably not care about the lint if Dart provided an...