Mercurial > thoughts
annotate org/tidbits.org @ 164:7a6b855cfb99 tip
more ideas, other stuff.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 12 Jul 2016 21:16:25 -0700 |
parents | 8f44e4061701 |
children |
rev | line source |
---|---|
rlm@161 | 1 ** Google Calendar URL API options |
rlm@161 | 2 |
rlm@161 | 3 Make your google calendar public (detailed [[https://support.google.com/calendar/answer/37082?hl=en][here]]), then get the |
rlm@161 | 4 puclic calendar URL, which will look like this: |
rlm@161 | 5 |
rlm@161 | 6 #+BEGIN_VERSE |
rlm@161 | 7 https://calendar.google.com/calendar/embed?src=<YOUR-ID>&ctz=<TIMEZONE> |
rlm@161 | 8 #+END_VERSE |
rlm@161 | 9 |
rlm@161 | 10 Some useful options include: |
rlm@161 | 11 |
rlm@161 | 12 - mode :: options are AGANDA, WEEK, MONTH |
rlm@161 | 13 For scheduling, I find wither WEEK or AGENDA to be best. |
rlm@161 | 14 |
rlm@161 | 15 - dates :: You can specify the dates to display using |
rlm@161 | 16 yyyymmdd%2Fyyyymmdd, example: 20160313%2F20160320. |
rlm@161 | 17 |
rlm@161 | 18 |
rlm@161 | 19 |