diff options
author | Jed Barber <jjbarber@y7mail.com> | 2021-02-05 11:21:30 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2021-02-05 11:21:30 +1100 |
commit | 9fd72ae4c4b852b94a2f3fdc760de81206a44857 (patch) | |
tree | fdcc9180ad6eed5fc89c212795abd6080996846e /project/context | |
parent | 22467d65f5454dd6b1719aafee50850a5ae96bf3 (diff) |
Tagging system created
Diffstat (limited to 'project/context')
-rw-r--r-- | project/context/articles.json | 67 | ||||
-rw-r--r-- | project/context/tags.json | 14 |
2 files changed, 81 insertions, 0 deletions
diff --git a/project/context/articles.json b/project/context/articles.json new file mode 100644 index 0000000..feb5d44 --- /dev/null +++ b/project/context/articles.json @@ -0,0 +1,67 @@ + +[ + { + "title": "Packrat Parser Combinator Library", + "anchor": "/packrat.html", + "taglist": ["library", "programming"], + "postdate": "2/2/2021" + }, + { + "title": "Area Under the Curve of a Complex Integral", + "anchor": "/integral.html", + "taglist": ["mathematics"], + "postdate": "29/12/2018" + }, + { + "title": "D, Parasail, Pascal, and Rust vs The Steelman", + "anchor": "/steelman.html", + "taglist": ["languages"], + "postdate": "29/10/2017" + }, + { + "title": "Sokoban Clone", + "anchor": "/sokoban.html", + "taglist": ["programming", "videogames"], + "postdate": "8/8/2017" + }, + { + "title": "Sunset License", + "anchor": "/sunset.html", + "taglist": ["copyright", "legal"], + "postdate": "29/6/2017" + }, + { + "title": "FLTK Ada Binding", + "anchor": "/fltkada.html", + "taglist": ["binding", "library", "programming"], + "postdate": "21/5/2018", + "updated": "yes" + }, + { + "title": "Single Transferable Vote Counter", + "anchor": "/stvcount.html", + "taglist": ["application", "politics", "programming"], + "postdate": "19/2/2017" + }, + { + "title": "Adapad", + "anchor": "/adapad.html", + "taglist": ["application", "programming"], + "postdate": "8/5/2017", + "updated": "yes" + }, + { + "title": "Grasp Interpreter", + "anchor": "/grasp.html", + "taglist": ["esoteric", "programming"], + "postdate": "1/1/2017" + }, + { + "title": "Thue Version 2a", + "anchor": "/thue2a.html", + "taglist": ["esoteric", "programming"], + "postdate": "1/1/2017" + } +] + + diff --git a/project/context/tags.json b/project/context/tags.json new file mode 100644 index 0000000..14e22a1 --- /dev/null +++ b/project/context/tags.json @@ -0,0 +1,14 @@ + +[ "application", + "binding", + "copyright", + "esoteric", + "languages", + "legal", + "library", + "mathematics", + "politics", + "programming", + "videogames" ] + + |