about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2020-04-03 21:44:24 +0200
committerAlan Pearce2020-04-04 23:02:37 +0200
commit8568ada6ddde91e4cd53ae2351385bca4d7d6531 (patch)
tree5e5718bff91130637816553649974d2fad8f5615
parentc649194fdc77889ca282c2f42507d777b3b933f6 (diff)
downloadwebsite-8568ada6ddde91e4cd53ae2351385bca4d7d6531.tar.xz
website-8568ada6ddde91e4cd53ae2351385bca4d7d6531.zip
Use more common front matter markers
-rw-r--r--content/post/a-new-site.md12
-rw-r--r--content/post/back-again.md12
-rw-r--r--content/post/cedit-and-paredit.md14
-rw-r--r--content/post/emacs-package-archive-statistics.md14
-rw-r--r--content/post/git-cloning-similar-repositories.md16
-rw-r--r--content/post/opening-projects-with-projectile.md14
-rw-r--r--content/post/repository-management-with-ghq.md10
-rw-r--r--content/post/self-hosted-git.md12
8 files changed, 52 insertions, 52 deletions
diff --git a/content/post/a-new-site.md b/content/post/a-new-site.md index ffaa3ff..5b32519 100644 --- a/content/post/a-new-site.md +++ b/content/post/a-new-site.md
@@ -1,9 +1,9 @@
1+++ 1---
2Categories = ["Geek"] 2Categories: ["Geek"]
3Description = "I made a website." 3Description: "I made a website."
4title = "A New Site" 4title: "A New Site"
5date = 2014-06-07T20:16:16Z 5date: 2014-06-07T20:16:16Z
6+++ 6---
7 7
8I finally got around to making a website. I decided to use [Hugo][] with a slightly-modified [Hyde theme][] 8I finally got around to making a website. I decided to use [Hugo][] with a slightly-modified [Hyde theme][]
9 9
diff --git a/content/post/back-again.md b/content/post/back-again.md index 7107a56..0f7adc7 100644 --- a/content/post/back-again.md +++ b/content/post/back-again.md
@@ -1,9 +1,9 @@
1+++ 1---
2Description = "I'm back" 2Description: "I'm back"
3Tags = ["website"] 3Tags: ["website"]
4date = "2017-05-06T16:55:57+02:00" 4date: "2017-05-06T16:55:57+02:00"
5title = "Back again" 5title: "Back again"
6+++ 6---
7 7
8I've not made any posts for quite some time. My life has changed 8I've not made any posts for quite some time. My life has changed
9quite a bit, I've emigrated from the UK and it's only now that I'm 9quite a bit, I've emigrated from the UK and it's only now that I'm
diff --git a/content/post/cedit-and-paredit.md b/content/post/cedit-and-paredit.md index 23fb1c4..f35b362 100644 --- a/content/post/cedit-and-paredit.md +++ b/content/post/cedit-and-paredit.md
@@ -1,10 +1,10 @@
1+++ 1---
2Categories = ["Emacs"] 2Categories: ["Emacs"]
3Description = "Cedit and paredit for structural editing" 3Description: "Cedit and paredit for structural editing"
4Tags = ["development", "emacs"] 4Tags: ["development", "emacs"]
5title = "Cedit and Paredit" 5title: "Cedit and Paredit"
6date = 2014-08-04T07:10:14Z 6date: 2014-08-04T07:10:14Z
7+++ 7---
8 8
9I recently discovered [cedit][], which provides some structural 9I recently discovered [cedit][], which provides some structural
10commands for editing c-like languages. (See this 10commands for editing c-like languages. (See this
diff --git a/content/post/emacs-package-archive-statistics.md b/content/post/emacs-package-archive-statistics.md index 2275c9a..5fda12d 100644 --- a/content/post/emacs-package-archive-statistics.md +++ b/content/post/emacs-package-archive-statistics.md
@@ -1,10 +1,10 @@
1+++ 1---
2Categories = ["Emacs"] 2Categories: ["Emacs"]
3Description = "Working out which package archives I'm using" 3Description: "Working out which package archives I'm using"
4Tags = ["emacs"] 4Tags: ["emacs"]
5title = "Emacs Package Archive Statistics" 5title: "Emacs Package Archive Statistics"
6date = 2014-07-19T13:19:54Z 6date: 2014-07-19T13:19:54Z
7+++ 7---
8 8
9I use [cask][] for managing the dependencies of my Emacs 9I use [cask][] for managing the dependencies of my Emacs
10configuration. Whenever I opened my `Cask` file, I wondered if I 10configuration. Whenever I opened my `Cask` file, I wondered if I
diff --git a/content/post/git-cloning-similar-repositories.md b/content/post/git-cloning-similar-repositories.md index 96ea7b4..517ff4d 100644 --- a/content/post/git-cloning-similar-repositories.md +++ b/content/post/git-cloning-similar-repositories.md
@@ -1,10 +1,10 @@
1+++ 1---
2Categories = ["Development"] 2Categories: ["Development"]
3Description = "Speed up cloning of similar git repositories" 3Description: "Speed up cloning of similar git repositories"
4Tags = ["git"] 4Tags: ["git"]
5title = "Cloning Similar Git Repositories" 5title: "Cloning Similar Git Repositories"
6date = 2014-06-22T08:35:24Z 6date: 2014-06-22T08:35:24Z
7+++ 7---
8With multiple similar git repositories, for example where a base repository contains a framework or base system installation and other repositories are created from that repository, it's possible to save some time when cloning down another repository by using the `reference` option to [git-clone][]: 8With multiple similar git repositories, for example where a base repository contains a framework or base system installation and other repositories are created from that repository, it's possible to save some time when cloning down another repository by using the `reference` option to [git-clone][]:
9 9
10 git clone git@github.com/my/repo --reference another-repo 10 git clone git@github.com/my/repo --reference another-repo
@@ -16,4 +16,4 @@ On a related note, I'm surprised that [GitHub][] doesn't allow for multiple rena
16 16
17[git-clone]:https://www.kernel.org/pub/software/scm/git/docs/git-clone.html 17[git-clone]:https://www.kernel.org/pub/software/scm/git/docs/git-clone.html
18[GitHub]:https://github.com 18[GitHub]:https://github.com
19[BitBucket]:https://bitbucket.org/ \ No newline at end of file 19[BitBucket]:https://bitbucket.org/
diff --git a/content/post/opening-projects-with-projectile.md b/content/post/opening-projects-with-projectile.md index d88d309..8c6d2bc 100644 --- a/content/post/opening-projects-with-projectile.md +++ b/content/post/opening-projects-with-projectile.md
@@ -1,10 +1,10 @@
1+++ 1---
2Categories = ["Emacs"] 2Categories: ["Emacs"]
3Description = "" 3Description: ""
4Tags = ["emacs", "lisp"] 4Tags: ["emacs", "lisp"]
5title = "Opening Projects with Projectile" 5title: "Opening Projects with Projectile"
6date = 2014-07-12T09:12:34Z 6date: 2014-07-12T09:12:34Z
7+++ 7---
8 8
9I use [Projectile][] for working with projects in Emacs. It's really good at finding files in projects, working with source code indexes (I use [Global][]), and with its [perspective][] support, it's also great at separating projects into workspaces. However, I've always felt it lacking in actually opening projects. I tend to work on different projects all the time and `projectile-switch-project` only tracks projects once they've been opened initially (despite the name, it works across Emacs sessions). 9I use [Projectile][] for working with projects in Emacs. It's really good at finding files in projects, working with source code indexes (I use [Global][]), and with its [perspective][] support, it's also great at separating projects into workspaces. However, I've always felt it lacking in actually opening projects. I tend to work on different projects all the time and `projectile-switch-project` only tracks projects once they've been opened initially (despite the name, it works across Emacs sessions).
10 10
diff --git a/content/post/repository-management-with-ghq.md b/content/post/repository-management-with-ghq.md index d831c9e..656da0b 100644 --- a/content/post/repository-management-with-ghq.md +++ b/content/post/repository-management-with-ghq.md
@@ -1,8 +1,8 @@
1+++ 1---
2Tags = ["development","git"] 2Tags: ["development","git"]
3date = "2017-05-06T23:31:51+02:00" 3date: "2017-05-06T23:31:51+02:00"
4title = "Repository management with ghq" 4title: "Repository management with ghq"
5+++ 5---
6 6
7I recently encountered [ghq][], a tool for automatically organising VCS-backed 7I recently encountered [ghq][], a tool for automatically organising VCS-backed
8projects automatically. Give it a repository URL, it will clone a project to 8projects automatically. Give it a repository URL, it will clone a project to
diff --git a/content/post/self-hosted-git.md b/content/post/self-hosted-git.md index b26f61b..19428ce 100644 --- a/content/post/self-hosted-git.md +++ b/content/post/self-hosted-git.md
@@ -1,9 +1,9 @@
1+++ 1---
2Description = "I describe my git server setup (using cgit and gitolite), and what it allows" 2Description: "I describe my git server setup (using cgit and gitolite), and what it allows"
3Tags = ["development","git"] 3Tags: ["development","git"]
4date = "2017-06-04T12:33:02+02:00" 4date: "2017-06-04T12:33:02+02:00"
5title = "A simple, powerful self-hosted git setup" 5title: "A simple, powerful self-hosted git setup"
6+++ 6---
7 7
8I had been using [gogs][] for about a year. It worked reasonably 8I had been using [gogs][] for about a year. It worked reasonably
9well, as it focuses on being a lightweight self-hosted GitHub 9well, as it focuses on being a lightweight self-hosted GitHub