diff --git a/content/blog/00_cs325_languages_hw1.md b/content/blog/00_cs325_languages_hw1.md index 1a365a1..c004485 100644 --- a/content/blog/00_cs325_languages_hw1.md +++ b/content/blog/00_cs325_languages_hw1.md @@ -1,7 +1,7 @@ --- title: A Language for an Assignment - Homework 1 date: 2019-12-27T23:27:09-08:00 -tags: ["Haskell", "Python", "Algorithms"] +tags: ["Haskell", "Python", "Algorithms", "Programming Languages"] --- On a rainy Oregon day, I was walking between classes with a group of friends. diff --git a/content/blog/01_cs325_languages_hw2.md b/content/blog/01_cs325_languages_hw2.md index dde669e..2b347fb 100644 --- a/content/blog/01_cs325_languages_hw2.md +++ b/content/blog/01_cs325_languages_hw2.md @@ -1,7 +1,7 @@ --- title: A Language for an Assignment - Homework 2 date: 2019-12-30T20:05:10-08:00 -tags: ["Haskell", "Python", "Algorithms"] +tags: ["Haskell", "Python", "Algorithms", "Programming Languages"] --- After the madness of the diff --git a/content/blog/02_cs325_languages_hw3.md b/content/blog/02_cs325_languages_hw3.md index 01890c9..c398fbe 100644 --- a/content/blog/02_cs325_languages_hw3.md +++ b/content/blog/02_cs325_languages_hw3.md @@ -1,7 +1,7 @@ --- title: A Language for an Assignment - Homework 3 date: 2020-01-02T22:17:43-08:00 -tags: ["Haskell", "Python", "Algorithms"] +tags: ["Haskell", "Python", "Algorithms", "Programming Languages"] --- It rained in Sunriver on New Year's Eve, and it continued to rain diff --git a/content/blog/coq_dawn.md b/content/blog/coq_dawn.md index 6dd2600..8db138d 100644 --- a/content/blog/coq_dawn.md +++ b/content/blog/coq_dawn.md @@ -1,7 +1,7 @@ --- title: "Formalizing Dawn in Coq" date: 2021-11-20T19:04:57-08:00 -tags: ["Coq", "Dawn"] +tags: ["Coq", "Dawn", "Programming Languages"] --- The [_Foundations of Dawn_](https://www.dawn-lang.org/posts/foundations-ucc/) article came up diff --git a/content/blog/typesafe_imperative_lang.md b/content/blog/typesafe_imperative_lang.md index 050c115..a2acf7c 100644 --- a/content/blog/typesafe_imperative_lang.md +++ b/content/blog/typesafe_imperative_lang.md @@ -1,7 +1,7 @@ --- title: "A Typesafe Representation of an Imperative Language" date: 2020-11-02T01:07:21-08:00 -tags: ["Idris"] +tags: ["Idris", "Programming Languages"] --- A recent homework assignment for my university's programming languages diff --git a/content/blog/typesafe_interpreter.md b/content/blog/typesafe_interpreter.md index 2531125..66d306b 100644 --- a/content/blog/typesafe_interpreter.md +++ b/content/blog/typesafe_interpreter.md @@ -1,7 +1,7 @@ --- title: Meaningfully Typechecking a Language in Idris date: 2020-02-27T21:58:55-08:00 -tags: ["Haskell", "Idris"] +tags: ["Haskell", "Idris", "Programming Languages"] --- This term, I'm a TA for Oregon State University's Programming Languages course. diff --git a/content/blog/typesafe_interpreter_revisited.md b/content/blog/typesafe_interpreter_revisited.md index e965e74..5deaeb9 100644 --- a/content/blog/typesafe_interpreter_revisited.md +++ b/content/blog/typesafe_interpreter_revisited.md @@ -1,7 +1,7 @@ --- title: Meaningfully Typechecking a Language in Idris, Revisited date: 2020-07-22T14:37:35-07:00 -tags: ["Idris"] +tags: ["Idris", "Programming Languages"] favorite: true --- diff --git a/content/blog/typesafe_interpreter_tuples.md b/content/blog/typesafe_interpreter_tuples.md index c96fd99..2c28dc0 100644 --- a/content/blog/typesafe_interpreter_tuples.md +++ b/content/blog/typesafe_interpreter_tuples.md @@ -1,7 +1,7 @@ --- title: Meaningfully Typechecking a Language in Idris, With Tuples date: 2020-08-12T15:48:04-07:00 -tags: ["Idris"] +tags: ["Idris", "Programming Languages"] --- Some time ago, I wrote a post titled