Explore >> Select a destination


You are here

blog.asleson.org
| | blog.arcjet.com
13.6 parsecs away

Travel
| | Building and compiling a Rust FFI library so it can be executed from Go.
| | radu-matei.com
11.7 parsecs away

Travel
| | In this article we will explore how to build shared and static libraries in Go, and import them in Rust.
| | adventures.michaelfbryan.com
12.2 parsecs away

Travel
| | Once you get past the growing pains of the Borrow Checker and realise Rust gives you the power to do things which would be unheard of (or just plain dangerous) in other languages, the temptation to Rewrite it in Rust can be quite strong. However at best, the temptation to RiiR is unproductive (unnecessary duplication of effort), and at worst it can promote the creation of buggy software (why would you be better equipped to write a library for some domain-specific purpose than the original author?
| | atilaoncode.blog
108.0 parsecs away

Travel
| Big complicated projects nearly always need a build system. They might be generating code. They might be compiling different branches depending on the platform or a build-time configuration option. They might turn on/off unity builds for C++. For most simple projects however, build systems are stupid. Let's say you have a single C file. We...