Blog filters
You can filter the blog posts using tags, years, and search
strings. For example, the
url filter/tag:macos/year:2020
will return posts from 2020 tagged with the
tag macos
. You can search for multiple tags by
separating each tag with a colon. To search for any posts
tagged with web
or tools
you
use this
url: filter/tag:web:tools
.
To search for blog posts with the
tags web
and tools
, you use
this
url: filter/tag:web/tag:tools
.
The general rule is that in a single filter term
(e.g. tag
, year
or search
) at least one of the values seperated by
colon has to be present (an or-expression), and with
separate filter terms all terms sperated by '/
' have to match (an and-expression).
Tags
Currently the following tags can be used in a tag
filter: -
| blog
| crypto
| fonts
| latex
| macos
| os-x
| programming
| publ
| python
| security
| software
| tools
| web
(“-
” can be used to match posts with no tags).
Year
Year supports a single year or a span of years. Blog posts between from 2015 until 2017 can be fetched with this filter: filter/year:2015-2017
. Blog post from 2017 and earlier can be fetched with this filer: filter/year:-2017
. Blog posts from 2019 and later can be fetched with this filter: filter/year:2019-
.
Search
Search supports search for alphanumeric text string in title and text of blog posts. To fetch all blog posts with Python in title or text use this filter: filter/search:python
. To fetch all blog posts with Python or Qt in title or text use this filter: filter/search:python:qt
. To fetch all blog posts with Python and Qt in title or text use this filter: filter/search:python/search:qt
.
Examples
filter/tag:macos/year:2020
(tag=macosandyear=2020)≥filter/tag:web:tools
(tag=webortools)≥filter/tag:web/tag:tools
(tag=webandtag=tools)≥filter/tag:web/year:-2017
(tag=webandyear≤2017)≥filter/tag:os-x:macos/year:2017-/tag:tools
(tag=os-xormacosandyear≥2017andtag=tools)≥filter/year:2015:2017/tag:web
(year=2015or2017andtag=web)≥