From 523fefed1ba82193371d1403bf5a58ef4f6cec73 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Mon, 11 Dec 2023 19:10:00 +0100 Subject: [PATCH] Add python tag to relevant posts --- content/posts/concurrency-and-parallelism.md | 2 +- content/posts/removing-list-duplicates.md | 2 +- content/posts/typing-variance-of-generics.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/posts/concurrency-and-parallelism.md b/content/posts/concurrency-and-parallelism.md index 89a1ee3..aa17e0c 100644 --- a/content/posts/concurrency-and-parallelism.md +++ b/content/posts/concurrency-and-parallelism.md @@ -1,7 +1,7 @@ --- title: Concurrency and Parallelism date: 2021-11-17 -tags: [programming] +tags: [programming, python] --- Concurrency is an exciting topic that's becoming more and more important, yet I see so many people that aren't very diff --git a/content/posts/removing-list-duplicates.md b/content/posts/removing-list-duplicates.md index deef2b0..8dc348e 100644 --- a/content/posts/removing-list-duplicates.md +++ b/content/posts/removing-list-duplicates.md @@ -1,7 +1,7 @@ --- title: Removing duplicates from lists date: 2021-08-31 -tags: [programming] +tags: [programming, python] --- In programming, we often need to handle removing duplicates from an array-like structure. While this may seem like an diff --git a/content/posts/typing-variance-of-generics.md b/content/posts/typing-variance-of-generics.md index 244bc71..a179836 100644 --- a/content/posts/typing-variance-of-generics.md +++ b/content/posts/typing-variance-of-generics.md @@ -1,7 +1,7 @@ --- title: Variance of typing generics (covariance, contravariance and invariance) date: 2021-10-04 -tags: [programming] +tags: [programming, python] --- In many programming languages where typing matters we often need to define certain properties for the types of generics