From 341f5c2d915d9a533bc3cbc0eec76877ec115635 Mon Sep 17 00:00:00 2001 From: Wilfried OLLIVIER Date: Sun, 20 Oct 2024 18:10:08 +0200 Subject: [PATCH] chore: add author name to all blog posts --- content/post/01-introduction.md | 1 + content/post/02-ops-dev.md | 1 + content/post/03-bites-the-rust.md | 1 + content/post/04-production-iexing.md | 1 + content/post/05-networking-the-right-way.md | 1 + content/post/06-cka.md | 1 + content/post/07-demystifying-ruby-01.md | 2 -- 7 files changed, 6 insertions(+), 2 deletions(-) diff --git a/content/post/01-introduction.md b/content/post/01-introduction.md index 576fa6d..879b96a 100644 --- a/content/post/01-introduction.md +++ b/content/post/01-introduction.md @@ -2,6 +2,7 @@ title: "An introduction" subtitle: "But a very concise one" date: 2019-05-27 +author: Wilfried draft: false --- diff --git a/content/post/02-ops-dev.md b/content/post/02-ops-dev.md index cb26781..3847270 100644 --- a/content/post/02-ops-dev.md +++ b/content/post/02-ops-dev.md @@ -3,6 +3,7 @@ title: "Dear ops, it's 2019 and you need dev skills" subtitle: "Evolve, or die in pain" date: 2019-06-21 draft: false +author: Wilfried tags: [ops, dev, devops, opinion] --- diff --git a/content/post/03-bites-the-rust.md b/content/post/03-bites-the-rust.md index 0966664..128a6df 100644 --- a/content/post/03-bites-the-rust.md +++ b/content/post/03-bites-the-rust.md @@ -3,6 +3,7 @@ title: "Another one bites the Rust" subtitle: "Lessons learned from my first Rust project" date: 2019-08-25 draft: false +author: Wilfried tags: [dev, programming, rust] --- diff --git a/content/post/04-production-iexing.md b/content/post/04-production-iexing.md index dc2608d..5605311 100644 --- a/content/post/04-production-iexing.md +++ b/content/post/04-production-iexing.md @@ -3,6 +3,7 @@ title: "How to debug a GenServer like Sherlock using IEx" subtitle: "A Sherlock Holmes approved guide 🕵" date: 2019-11-08 draft: false +author: Wilfried tags: [dev, programming, elixir, production, debug] --- diff --git a/content/post/05-networking-the-right-way.md b/content/post/05-networking-the-right-way.md index ed65ebb..e1a8caf 100644 --- a/content/post/05-networking-the-right-way.md +++ b/content/post/05-networking-the-right-way.md @@ -3,6 +3,7 @@ title: "GNU/Linux wireless networking like it's 2020" subtitle: "How to add some systemd stuff inside your network configuration" date: 2020-07-14 draft: false +author: Wilfried tags: [ops, systemd, network, wireless] --- diff --git a/content/post/06-cka.md b/content/post/06-cka.md index 3580aa2..7766dd8 100644 --- a/content/post/06-cka.md +++ b/content/post/06-cka.md @@ -3,6 +3,7 @@ title: "3 weeks, 1 CKA" subtitle: "How to rock the k8s certification in no time" date: 2022-10-29 draft: false +author: Wilfried tags: [ops, containers, certifications, devops, kube] --- diff --git a/content/post/07-demystifying-ruby-01.md b/content/post/07-demystifying-ruby-01.md index 0242827..d1d680e 100644 --- a/content/post/07-demystifying-ruby-01.md +++ b/content/post/07-demystifying-ruby-01.md @@ -7,8 +7,6 @@ author: Wilfried tags: [dev, languages, ruby, demystifying-ruby] --- -# Demystifying Ruby 1/3 : Threading and Concurrency - [Ruby](https://www.ruby-lang.org) is a dynamic, **interpreted**, open-source programming language known for its simplicity, productivity, and its “human-readable” syntax. Ruby is often used in web development, particularly with the [Ruby on Rails](https://rubyonrails.org/) framework. It supports object-oriented, functional, and imperative programming paradigms. The most known and used Ruby Virtual Machine is the **M**atz **R**uby **I**nterpreter (aka CRuby), developed by [Yukihiro Matsumoto](https://en.wikipedia.org/wiki/Yukihiro_Matsumoto) (aka Matz), the creator of Ruby. All other Ruby implementation such as [JRuby](https://www.jruby.org/), [TruffleRuby](https://github.com/oracle/truffleruby) and so on are out of the scope of this blog post.