From 9d42e0f3d2c2aaebc301ca24f9e36fbfb56e9b4f Mon Sep 17 00:00:00 2001 From: Nicolas Dato Date: Wed, 26 Feb 2025 10:19:54 -0300 Subject: adding a music list --- zola/content/articles/_index.md | 1 + zola/content/articles/safer-pointers.md | 2 +- zola/content/articles/typedef-or-not.md | 11 +++++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 zola/content/articles/typedef-or-not.md (limited to 'zola/content/articles') diff --git a/zola/content/articles/_index.md b/zola/content/articles/_index.md index a4e92e5..21ac4d4 100644 --- a/zola/content/articles/_index.md +++ b/zola/content/articles/_index.md @@ -1,3 +1,4 @@ +++ title = "Articles" +sort_by = "update_date" +++ diff --git a/zola/content/articles/safer-pointers.md b/zola/content/articles/safer-pointers.md index bbefdad..1a1b55e 100644 --- a/zola/content/articles/safer-pointers.md +++ b/zola/content/articles/safer-pointers.md @@ -5,7 +5,6 @@ date = 2024-11-26 authors = ["Nicolás Dato"] [taxonomies] -Categories=["Software Development"] Tags=["C", "Patterns", "Pointers"] +++ @@ -21,6 +20,7 @@ To reduce errors, and make them safer to use, I propose the following 4 tips: 4. Every time a pointer is passed to another function, deciding who *owns* the pointer ### Example + ```C #include #include diff --git a/zola/content/articles/typedef-or-not.md b/zola/content/articles/typedef-or-not.md new file mode 100644 index 0000000..9903d96 --- /dev/null +++ b/zola/content/articles/typedef-or-not.md @@ -0,0 +1,11 @@ ++++ +title = "Using typedef or not" +description = "TODO" +date = 2024-12-20 +draft = true +authors = ["Nicolás Dato"] + +[taxonomies] +Tags=["C"] ++++ + -- cgit v1.2.3