From b3757714a5309af5687aa671cde042fb31cfea08 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 15 Aug 2022 16:16:27 +0100 Subject: [PATCH] docs: move dates into filenames --- ... => 2022-08-12-git-worktrees-docker-compose.md} | 1 - ...in.md => 2022-08-13-i-wrote-a-neovim-plugin.md} | 1 - ...te-tests.md => 2022-08-14-why-i-write-tests.md} | 1 - website/source/_posts/why-i-write-tests.md | 14 -------------- 4 files changed, 17 deletions(-) rename website/source/_daily_emails/{git-worktrees-docker-compose.md => 2022-08-12-git-worktrees-docker-compose.md} (99%) rename website/source/_daily_emails/{i-wrote-a-neovim-plugin.md => 2022-08-13-i-wrote-a-neovim-plugin.md} (99%) rename website/source/_daily_emails/{why-i-write-tests.md => 2022-08-14-why-i-write-tests.md} (99%) delete mode 100644 website/source/_posts/why-i-write-tests.md diff --git a/website/source/_daily_emails/git-worktrees-docker-compose.md b/website/source/_daily_emails/2022-08-12-git-worktrees-docker-compose.md similarity index 99% rename from website/source/_daily_emails/git-worktrees-docker-compose.md rename to website/source/_daily_emails/2022-08-12-git-worktrees-docker-compose.md index 30cb6eed7..ae7cbdaa7 100644 --- a/website/source/_daily_emails/git-worktrees-docker-compose.md +++ b/website/source/_daily_emails/2022-08-12-git-worktrees-docker-compose.md @@ -1,6 +1,5 @@ --- title: Git Worktrees and Docker Compose -date: 2022-08-12 --- I've recently started trialing Git worktrees again as part of my development workflow. diff --git a/website/source/_daily_emails/i-wrote-a-neovim-plugin.md b/website/source/_daily_emails/2022-08-13-i-wrote-a-neovim-plugin.md similarity index 99% rename from website/source/_daily_emails/i-wrote-a-neovim-plugin.md rename to website/source/_daily_emails/2022-08-13-i-wrote-a-neovim-plugin.md index 777a85ac7..cfd750a85 100644 --- a/website/source/_daily_emails/i-wrote-a-neovim-plugin.md +++ b/website/source/_daily_emails/2022-08-13-i-wrote-a-neovim-plugin.md @@ -1,6 +1,5 @@ --- title: I wrote a Neovim plugin -date: 2022-08-13 tags: - neovim - open-source diff --git a/website/source/_daily_emails/why-i-write-tests.md b/website/source/_daily_emails/2022-08-14-why-i-write-tests.md similarity index 99% rename from website/source/_daily_emails/why-i-write-tests.md rename to website/source/_daily_emails/2022-08-14-why-i-write-tests.md index 66ea6bce7..dc4f48e28 100644 --- a/website/source/_daily_emails/why-i-write-tests.md +++ b/website/source/_daily_emails/2022-08-14-why-i-write-tests.md @@ -1,7 +1,6 @@ --- title: "Why I write automated tests" tags: [testing] -date: 2022-08-14 --- In February 2012, I saw a tweet from Tim Millwood asking if anyone wanted to maintain or co-maintain a Drupal module called [Override Node Options](https://www.drupal.org/project/override_node_options). diff --git a/website/source/_posts/why-i-write-tests.md b/website/source/_posts/why-i-write-tests.md deleted file mode 100644 index f13052441..000000000 --- a/website/source/_posts/why-i-write-tests.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Why I write tests, and why I do test-driven development" -excerpt: | - A free chapter from my Test-Driven Drupal book, where I explain how I why I started with and continue using automated testing and doing test-driven development. -tags: [testing] -date: ~ -draft: true ---- - -One of my goals for this year is do more writing, like this blog post, but also eBooks - which I've been wanting to write for a long time. - -I had an idea some time ago to write about automated testing and test-driven development in Drupal - inspired by other courses and books like [Ansible for Devops](https://www.ansiblefordevops.com) by Jeff Geerling, and [Refactoring to Collections](https://adamwathan.me/refactoring-to-collections) and [Test-Driven Laravel](https://course.testdrivenlaravel.com) by Adam Wathan, and more recently [Docker Essentials](https://dockeressentials.com) by Matthew Setter, and [Modern Software Engineering](https://www.informit.com/store/modern-software-engineering-doing-what-works-to-build-9780137314911) by Dave Farley. - -I've restarted my work on the Test-Driven Drupal book recently; finalising its scope, deciding what sort of examples I want to include, and building an [example conference website with Drupal 9](https://github.com/opdavies/test-driven-drupal-app) which is publicly accessible on GitHub so people can see my progress as I continue building it.