chore: add author name to all blog posts
This commit is contained in:
parent
afa7d97a88
commit
341f5c2d91
7 changed files with 6 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
||||||
title: "An introduction"
|
title: "An introduction"
|
||||||
subtitle: "But a very concise one"
|
subtitle: "But a very concise one"
|
||||||
date: 2019-05-27
|
date: 2019-05-27
|
||||||
|
author: Wilfried
|
||||||
draft: false
|
draft: false
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ title: "Dear ops, it's 2019 and you need dev skills"
|
||||||
subtitle: "Evolve, or die in pain"
|
subtitle: "Evolve, or die in pain"
|
||||||
date: 2019-06-21
|
date: 2019-06-21
|
||||||
draft: false
|
draft: false
|
||||||
|
author: Wilfried
|
||||||
tags: [ops, dev, devops, opinion]
|
tags: [ops, dev, devops, opinion]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ title: "Another one bites the Rust"
|
||||||
subtitle: "Lessons learned from my first Rust project"
|
subtitle: "Lessons learned from my first Rust project"
|
||||||
date: 2019-08-25
|
date: 2019-08-25
|
||||||
draft: false
|
draft: false
|
||||||
|
author: Wilfried
|
||||||
tags: [dev, programming, rust]
|
tags: [dev, programming, rust]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ title: "How to debug a GenServer like Sherlock using IEx"
|
||||||
subtitle: "A Sherlock Holmes approved guide 🕵"
|
subtitle: "A Sherlock Holmes approved guide 🕵"
|
||||||
date: 2019-11-08
|
date: 2019-11-08
|
||||||
draft: false
|
draft: false
|
||||||
|
author: Wilfried
|
||||||
tags: [dev, programming, elixir, production, debug]
|
tags: [dev, programming, elixir, production, debug]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ title: "GNU/Linux wireless networking like it's 2020"
|
||||||
subtitle: "How to add some systemd stuff inside your network configuration"
|
subtitle: "How to add some systemd stuff inside your network configuration"
|
||||||
date: 2020-07-14
|
date: 2020-07-14
|
||||||
draft: false
|
draft: false
|
||||||
|
author: Wilfried
|
||||||
tags: [ops, systemd, network, wireless]
|
tags: [ops, systemd, network, wireless]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ title: "3 weeks, 1 CKA"
|
||||||
subtitle: "How to rock the k8s certification in no time"
|
subtitle: "How to rock the k8s certification in no time"
|
||||||
date: 2022-10-29
|
date: 2022-10-29
|
||||||
draft: false
|
draft: false
|
||||||
|
author: Wilfried
|
||||||
tags: [ops, containers, certifications, devops, kube]
|
tags: [ops, containers, certifications, devops, kube]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,6 @@ author: Wilfried
|
||||||
tags: [dev, languages, ruby, demystifying-ruby]
|
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.
|
[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.
|
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.
|
||||||
|
|
Loading…
Reference in a new issue