If you prefer a pure hardware solution, Tyndale's excellent One Year Bible is pretty nice. Please feel free to refer to my daily essays, which are keyed to those readings.
So why did you mark this with the "computers" label?
Well, as it turns out, those emails you get from bibleplan.org don't have a chapter of Bible text in them. Instead, they have pointers to a website; you click on the link and read the text from somewhere else -- biblegateway.com I think.So back before I started using an http-enabled email client, I wrote this little procmail script to go out and get the text from that website. The recipe looks like this:
:0See, "URL" gets the blank-stripped "http://..." string; we pass that as a parameter to lynx to get the text, then we remove the lines that contain '[' or 'http' and replace the message body with the Biblical text. Thank you biblegateway.com !
* ^From:.*@bibleplan.org (or something like this)
* B ?? http://
{
:0
URL=| grep http: | sed -n -e "1s/ *//gp"
:0
TEXT=| lynx -dump "$URL" | grep -Fve http -e '['
:0fb
| ( echo "$TEXT"; cat; )
}
So procmail and lynx are technological aids to spirituality too.
Other reading plans
There are a lot of 'em. Some of them involve charts and checklists; others are websites:- biblegateway.com's plan
- heartlight.org has a few plans
- bible-reading.com's 52-week plan
- etc.
No comments:
Post a Comment