Felix Dietze

Results 196 comments of Felix Dietze

There is a recent process-compose feature that seems relevant here: [recipes](https://github.com/F1bonacc1/process-compose-recipes)

> GRADLE_OPTS = "-Dorg.gradle.project.android.aapt2FromMavenOverride=${androidSdk}/share/android-sdk/build-tools/34.0.0/aapt2"; That's also what I'm using for kotlin based android apps. But flutter seems to run `aapt2` directly... I guess that in some nix file here I...

A workaround to get going on NixOS systems: https://github.com/nix-community/nix-ld

Just ran into this one! While trying to go all-in with earthly on a new project, I expected this feature to exist. I thought that was the magic of it:...

Only in Scala 3, because the `|` hack is only needed for Scala 2. ``` [error] [E1] snabbdom/src/main/scala/snabbdom/Snabbdom.scala [error] unused import [error] L8: import scala.scalajs.js.`|` ```

strange. Maybe the WAL is growing? Could you try to checkpoint the WAL before vacuuming? ```sql PRAGMA wal_checkpoint(TRUNCATE); VACUUM; ```