Rust to the rescue (of Ruby)

You are working with Ruby, probably with Rails or Sinatra. Your company has an algorithm that is becoming more complex and important… Read more

Similar

Rust vs. Go: Why They’re Better Together

For most companies and users, Go is the right default option. Its performance is strong, Go is easy to adopt, and Go’s highly modular nature makes it particularly good for situations where requirements are changing or evolving.As your product matures, and... (more…)

Read more »

Speeding up Rust builds inside Docker

Currently it is not possible to instruct cargo, the Rust package manager, to build only the dependencies of the software you are compiling! This means you can't easily pre-install build dependencies. Luckily you can workaround this with cargo build -p! I'... (more…)

Read more »