Matt Bovel
Matt Bovel
Out of curiosity, why not also updating the sbt version in tests and community projects as you did in https://github.com/scala/scala3/commit/19a69900d7ab19fe2e5d6b70f8bb470133372d53?
@codefromthecrypt no, GraalWasm does not support DWARF yet. (Thanks! I hope that there will be [an official WASI test suite](https://togithub.com/WebAssembly/WASI/issues/9) at some point 😄)
> > Make project detection more robust. Students do not always start their project in the perfect directory, but if they don't nothing is recognized. Is there no way for...
@hamzaremmal do you think that would be appropriate for a spree?
Still not sure if this is appropriate for a spree and how hard that would be to fix. cc @hamzaremmal
We had a look during last Spree. @EugeneFlesselle, what was the conclusion in the end? Do you have a branch somewhere with what you experimented?
I've been thinking about a backup/restore strategy for some WordPress sites I host lately and couldn't find an elegant solution. I am happy to see that other people have the...
I made a small prototype to illustrate some of the ideas I emitted in my previous message: [wp-backup-restore-command](https://github.com/mbovel/wp-backup-restore-command). This is a WP-CLI command that enables backing up core files, database...
Scala 2: ```scala $ scala-cli repl -S 2.13 Welcome to Scala 2.13.14 (OpenJDK 64-Bit Server VM, Java 17.0.8). Type in expressions for evaluation. Or try :help. scala> final val x...
Note: you get the same error when trying to define a `final val` in a method for example: ```scala ➜ ~/scala-snippets-5 cat finalVal.scala package finalVal @main def Main = final...