Skip to content

404

Page Not Found

Recent Posts

Members Public

Building a Rust project on CircleCI

While Travis supports Rust natively for its build pipeline, CircleCI still misses first-class support for Rust. This short post explains how to build a Rust project on CircleCI so you don't have to go through all the trouble. We'll be using CircleCI 2.0, which comes

Members Public

Reviving the libkv library

In 2015, two months before the release of docker 1.9 which included container networking, we had a need for a distributed metadata storage solution. The inner working of libnetwork required informations to be accessible to docker engines in a distributed fashion, in order to discover and manipulate libnetwork objects

Members Public

Rust, Builder Pattern, Trait Objects, Box<T> and Rc<T>

One of the intimidating parts of learning Rust is to master all the basic container types: Box<T>, Rc<T>, Arc<T>, RefCell<T>, Mutex<T>, etc. The least we can say is that they are not really intuitive to

Members Public

My home setup

Working at home is not as easy as I thought it would be. I felt much more productive while traveling across many countries than now sitting at my desk at home for the whole day. After being back from months of travel, I had in mind to recycle all the

Members Public

On Anxiety and the feeling of passing out

Approximately six months ago, in San Francisco, I was admitted to the emergencies after a panic attack. I lost consciousness in the ambulance leading me there. On that night, I woke up and felt like my heart stopped, which is a common symptom of panic attacks. The extreme anxiety triggers

Members Public

Getting started with Capn'proto RPC for Rust

Introduction Capn'proto is a data interchange format and RPC system. Unlike protocol buffers (coupled with its rpc system: grpc), there are no encoding/decoding steps. You can find more details on the Capn'proto website. In this article we will focus on the RPC part of Capn&

Getting started with Capn'proto RPC for Rust