Daily Weekly Monthly

Daily Shaarli

All links of one day in a single page.

August 2, 2018

Set Up Rust | Writing an OS in Rust (First Edition)

Xargo is “a drop-in replacement for cargo”, so every cargo command also works with xargo. You can do e.g. xargo --help, xargo clean, or xargo doc. However, the build command gains additional functionality: xargo build will automatically cross compile the core library when compiling for custom targets.

https://os.phil-opp.com/set-up-rust/#target-specifications

https://os.phil-opp.com/set-up-rust/#compiling


switch to nigthly:
https://github.com/rust-lang-nursery/rustup.rs#working-with-nightly-rust

rustup install nightly
rustup default nightly
rustup update

Minio is an open source object storage server compatible with Amazon S3 APIs

Minio is an object storage server released under Apache License v2.0. It is compatible with Amazon S3 cloud storage service. It is best suited for storing unstructured data such as photos, videos, log files, backups and container / VM images. Size of an object can range from a few KBs to a maximum of 5TB.

Minio server is light enough to be bundled with the application stack, similar to NodeJS, Redis and MySQL.

https://minio.io/features.html
https://github.com/minio/minio

Apprendre à programmer en langage Rust

Ce tutoriel est destiné aux débutants qui veulent apprendre le langage de programmation de la fondation Mozilla : Rust.