Switching from ghost to Hugo

As you’ve maybe seen, my website doesn’t look the same. In this article, I will show you how to migrate from ghost to Hugo, ghost being a CMS and Hugo a framework to build static websites. As I want to make my website as fast and light as possible and I don’t modify my website really often, going for a static website was the best option. CMS stands for content management system and can be thought as a software that helps you manage the content of your website....

19 April 2021 · 7 min · Hugo Dendievel

Use Docker to launch R-studio cloud locally

In this article I will show you how to work with R-studio in your web browser thanks to Docker. If you’ve read my other article about data science Docker containers, this will seem very similar. If you haven’t, I suggest you to read it before because I won’t explain in detail the operation. 1) Files We will first create a folder, we will call it “r_studio”, within which we will put all our Docker files....

31 January 2021 · 3 min · Hugo Dendievel

How to launch easily data science Docker containers

Tired of installing tools and dependencies on your computer ? In this article I will show you how to create with Docker data science containers for fast and easy development. 1) What you need Docker installed: docker-desktop An editor : Visual Studio Code or whatever you prefer A folder within you will put every file we will create : let’s call it “Docker” 2) Files creation 1) Dockerfile The first thing you want to do is define your Dockerfile, a file whitin which you define the base image to use in your Docker container beside some other parameters :...

30 January 2021 · 5 min · Hugo Dendievel