diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-05 13:29:47 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-05 13:29:47 -0200 |
commit | 05831e1c0ea10e1a043e3be5cb13d93666103ceb (patch) | |
tree | 9d9fb29d3af2fbcea4af32f89ba4a4d7ca02d08e /modules/wyrd/reminders.dot.link | |
parent | 87904a40a7809727fea1df0384691889553e8a84 (diff) | |
download | dotfiles-05831e1c0ea10e1a043e3be5cb13d93666103ceb.tar.gz dotfiles-05831e1c0ea10e1a043e3be5cb13d93666103ceb.tar.bz2 |
Sample reminders file
Diffstat (limited to 'modules/wyrd/reminders.dot.link')
-rw-r--r-- | modules/wyrd/reminders.dot.link | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/modules/wyrd/reminders.dot.link b/modules/wyrd/reminders.dot.link deleted file mode 100644 index b5d0984..0000000 --- a/modules/wyrd/reminders.dot.link +++ /dev/null @@ -1,69 +0,0 @@ -# Using Remind -# ============ -# -# Needed packages for ical2rem.pl -# ------------------------------- -# -# perl-class-accessor -# perl-class-accessor-chained -# perl-datetime -# perl-datetime-event-ical -# perl-datetime-event-recurrence -# perl-datetime-format-ical -# perl-datetime-locale -# perl-datetime-span -# perl-datetime-timezone -# perl-ical-parser -# perl-io-string -# perl-list-moreutils -# perl-params-validate -# perl-set-infinite -# perl-vfile-asdata -# perl-class-singleton -# -# Conversion procedure -# -------------------- -# -# 0. Use patched ical2rem.pl from http://tim.stoakes.net/remind -# -# 1. Set timezone to UTC or somewhere. -# -# 2. Run conversion script: -# -# for file in `ls`; do -# ical2rem.pl --label `basename $file .ics` < $file > \ -# `basename $file .ics | tr '[:upper:]' '[:lower:']`.rem; -# done -# -# 3. Fix timezone info and configuration. Examples: -# -# for file in `ls *.rem`; do sed -i 's|Europe/Amsterdam|America/Sao_Paulo|g' $file; done -# for file in `ls *.rem`; do sed -i 's|UTC|America/Sao_Paulo|g' $file; done -# -# 4. Fix charset: -# -# for file in `ls *.rem`; do -# iconv -c --from-code=UTF-8 --to-code=ISO-8859-1 $file > $file.new; -# mv $file.new $file; -# done -# -# Useful links -# ------------ -# -# http://tim.stoakes.net/remind/ -# http://pbrisbin.com:8080/bin/ical2rem.pl -# http://github.com/FND/misc/blob/master/ical2rem.pl -# http://www.offensivethinking.org/projects/ical2rem/ -# http://github.com/courts/ical2rem.rb -# http://jalcorn.net/weblog/archives/899-iCal-to-Remind-script.html -# http://writequit.org/blog/?cat=487 - -# From Remind Cookbook -# http://wiki.43folders.com/index.php/Remind_Cookbook -INCLUDE .remind/cookbook/ - -# Custom calendars -INCLUDE .remind/ - -# Calendar data imported from Sunbird -#INCLUDE .remind/sunbidr |