Autowire: Zero-Cost Dependency Injection
Autowire extends the MacWire library with a simple, compile-time generation of entire object creation graph. It doesn't impact the code of your classes in any way. There are no annotations, no conventions to follow, and definitely no containers that need to do run-time reflection at startup! Adam Warski (@adamwarski) |
Comparison of Kyo and traditional effects
Flavio's elaborate Reddit answer. Flavio Brasil (@flaviowbrasil) |
Scala & Akka: How to secure your code
Paired with Akka, you can create robust and secure applications that can endure any strain on the system. There’s a good reason why tech giants such as Netflix, Twitter, Facebook, or even Google use Scala under the hood. Dawid Jóźwiak |
Fun with Types: All Types of Physics Computations
What if we could make the Scala compiler type checks our Physics computations? For example, we would define a bunch of variables, telling the compiler (via usual typing) that some are distances, some are times, some are masses. Then, we could make all sorts of computations with them and, at the end, requiring that the result is a force. If we make a mistake such as physical units don’t match, then it would simply not compile! Antoine Doeraene (@doe_antoine) |