Tom Grushka

Results 56 comments of Tom Grushka

Bulk upsert would be wonderful, as `insertAll` fails with a `DuplicateKeyException` if even one record is duplicated, and this exception cannot seem to be caught and ignored, such as in...

Bad news. Trying to use this in a Flutter plugin. Can't add `git` or `version` in myproject.podspec because of some arbitrary limitation by the Pod authors, because well, no one...

I would like to know as well, as this was present in 0.19.1 as: ```dart await audioPlayer.earpieceOrSpeakersToggle(); ``` Cannot find any docs regarding removal/refactoring or whether it now somehow lives...

Really. If you pass `--depends-on` as a command line argument to `melos exec`, it works without prompting. Why does simply adding it as a config map option force a prompt?...

Wow, that's annoying. Should allow to select lint or none for certain file types. Should be somewhat intuitive, but it is not. The lint suggestion above worked for me, but...

Still happening. Very annoying testing a proxy server getting an extra request on every request.

Yes, just found this neat library, and unfortunately there is no way to get sub-sitemap info, e.g. if I want info about which sitemap(s) a url came from in my...

Yes, I confirm this bug with generated code for Twilio API: ``` openapi-generator generate -g rust \ -i https://raw.githubusercontent.com/twilio/twilio-oai/main/spec/json/twilio_api_v2010.json \ -o twilio_rust \ --additional-properties=useSingleRequestParameter=true ``` ### Error: ``` error[E0433]: failed...

Only way I could fix: ```js await fetch(url, { headers: { 'Accept-Encoding': 'identity' } }) ``` I wonder if this is related to Bun's Brotli compression issue? Seems unlikely, as...

EDIT: Oh wait, now Flutter has `ReorderableListView` (Material version) and `ReorderableList` ("basic" version) built in! No list animation on reorder though, I guess. Aaaaarrrrgggghhh! Now, in 2024, it seems `ReorderableSliverList`...