Performance tips for IntelliJ Scala Plugin
There are some things you can try yourself to improve your IntelliJ IDEA and the Scala plugin experience, like implementing configuration tweaks and maintaining good coding practices. Maciej Gorywoda (@makingthematrix) |
Introduction to Bazel for Scala developers
Bazel requires users to manage a lot more build configurations than other build tools such as sbt and Maven. However, this is an acceptable tradeoff for very large projects. considering the scalable build speed thanks to Bazel’s advantages, such as reproducible builds and remote cache. Rikito Taniguchi (@tanishiking25) |
Gradle Inc. Acquires Triplequote to Expand Developer Productivity Solutions Footprint
Gradle now extends its developer productivity solution portfolio directly to the Scala developer community by speeding up builds with the world’s only parallel compiler for the Scala language, Hydra. Additionally, Martin Odersky, creator of the Scala programming language and advisory board member to Triplequote, will continue in a technical advisory role at Gradle. Gradle Inc. |
Concise enumeration in Scala
This is personally my favorite approach for simple enumeration as it keeps the code concise and clear. Julien Truffaut (@JulienTruffaut) |