Notes: Metadata
I have a few special paragraphs in my notes to encode metadata. They always start with a specific token.
Paragraphs starting with
TODO:andTODO(YYYY-MM-DD)mark things I would like to get back to in the future.Prediction(@YYYY_MM_DD): Means that at the date given, I made a prediction. The text in the paragraph articulates unambiguously what the prediction is.- The prediction must either have:
- A given probability:
.withProbability(p)(where p is between 0 and 1) - An expected range with a confidence of 90%, reflecting a normal
distribution:
.withNormalDistribution(min, max)
- A given probability:
- The prediction may have any of these:
- A target date by which it should be evaluated:
.withDate(@DATE) - The value (
true,false, or a numeric value) if known:.withValue(value).
- A target date by which it should be evaluated:
- The prediction must either have:
I have not used this very much.