From 55c5096e5537563cabe427885b6ee3cbc06681a1 Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Tue, 4 Jun 2024 18:31:02 -0700 Subject: [PATCH 1/2] intro paragraph --- src/content/writing/codegen.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/content/writing/codegen.md diff --git a/src/content/writing/codegen.md b/src/content/writing/codegen.md new file mode 100644 index 0000000..2c8f99b --- /dev/null +++ b/src/content/writing/codegen.md @@ -0,0 +1,17 @@ +--- +title: The Difficulties of Code Generation (TODO: //TITLE?) +date: 2024-06-02 +draft: true +tags: ["tech"] +--- + +# The Difficulties of Code Generation (TODO: Title) + +Over the past year, there's been a lot of discussion about LLMs and their +ability to generate code. While GenAI is a hot topic du jour, computers +generating code isn't actually a new phomomenon. Code generation is surprisingly +common throughout tech to a point where popular build systems like Bazel have +support for +(it)[https://docs.bazel.build/versions/main/be/general.html#genrule]. + +## What is Code Generation? From 8a0c99ffdad196e9483177b3eadb52f9078cacc3 Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Mon, 19 Aug 2024 09:53:58 -0700 Subject: [PATCH 2/2] todo is bad --- src/content/writing/codegen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/writing/codegen.md b/src/content/writing/codegen.md index 2c8f99b..6f37fad 100644 --- a/src/content/writing/codegen.md +++ b/src/content/writing/codegen.md @@ -1,5 +1,5 @@ --- -title: The Difficulties of Code Generation (TODO: //TITLE?) +title: The Difficulties of Code Generation TODO TITLE date: 2024-06-02 draft: true tags: ["tech"]