Org mode timestamps

As previously stated, Org mode is first created as an outliner enabling you to manage tasks. Here's some of the features you might be interested when using it as such.

Timestamps and durations

Being a personal information tool, Org mode heavily features timestamps.

<2021-04-21 Wed>

You can easily set a timestamp with org-time-stamp that comes with an interactive calendar and a prompt to indicate the date and time. The prompt is more useful since you can quickly enter relative values such as:

Durations are made by putting a pair of dashes between two timestamps.

<2021-04-22 Thu>--<2021-04-25 Sun>

You can quickly create a duration by running org-time-stamp two times consecutively.

Deadlines and schedules

In Org mode agenda view, it can show deadlines and schedules by prepending the timestamps with DEADLINE and SCHEDULED, respectively.

DEADLINE: <2021-04-26 Mon 22:00>
SCHEDULED: <2021-04-25 Sun 20:00>

Repeated tasks

One can set repeated tasks in the following format.

SCHEDULED: <2020-06-22 Mon +2d>

Any missed session will cause the agenda to keep overdued sessions and accumulate to repeat the tasks 'X' number of times with the number of overdued sessions.

Some tasks does not work this way, however. You don't need to replace the batteries 5 times or brush your teeth 10 times to make up for it. For this, you can do the following.

SCHEDULED: <2020-06-22 Mon ++2d>

One cool thing about it if you mark a task as done, it will simply create an entry of the task completed and update the base date.

* TODO Watch the lectures from Brian Harvey's SICP series (https://archive.org/details/ucberkeley-webcast-PL3E89002AA9B9879E?sort=titleSorter)
SCHEDULED: <2020-06-24 Wed .+2d>
:PROPERTIES:
:LAST_REPEAT: [2020-06-22 Mon 22:01]
:END:
- State "DONE"       from "TODO"       [2020-06-22 Mon 22:01]

Backlinks