Category Archives: Topics

Recommended Preachers Online

Links

Motivations

As I reflected on my lack of spiritual vitality earlier this year (2007), I concluded that it would help to have more Christian input into my mind. Once a week at church and an occasional devotion wouldn’t cut it. To keep my mind on spiritual things, I needed to hear the Christian message more often. One easy way for me to do that is to listen to online Christian audio, so I set out to collect some.

Procedure

As things usually go with me, the project quickly expanded beyond all reasonable proportion, and instead of gathering two or three sources I could rely on for insight and inspiration, I decided to find as many as I could, searching in a comprehensive and semi-systematic fashion. And by comprehensive, I mean searching every city (above a certain size) in every state in the US. And then expanding to other English-speaking countries after that. That’s what I’m shooting for anyway. In reality I’ll search until I get tired of it. At some point I may expand the project to include speakers that aren’t attached to a church.

My overall procedure is to take the states in the order of their importance to me and search for churches by city, starting with the largest. I didn’t start out this way—I tried alphabetically first, so the map began with some random churches in Alabama—but officially the first state in the list is Illinois, and the first city is Chicago. And then along the way I’ve thought of churches in other states I knew I wanted to include, and I’ve listened to sermons at my friends’ churches from around the country, so I’ve interrupted my orderly progression to add some of those.

Normally I would keep a list like this in my bookmarks, but since the data was geographical, I thought it would be fun to make a Google map out of it, which I have linked to above. My bookmarks are holding the raw results of my search, and to make my decisions, I’m taking more detailed notes in a Zoho Creator database.

Benefits

In addition to collecting more listening material than I could ever possibly take in and stimulating my thoughts and feelings on spiritual matters, this project has come with some unexpected side benefits. One is that I feel more connected with different parts of the country. If Birmingham, Alabama, comes up in a conversation, I can think, Ah, I know something about Birmingham. I’ve listened to some good preachers there. If a natural disaster sweeps through, I can wonder how my churches there are doing. If on a Sunday I’m traveling in an area that has churches on my list, I can visit one of them and gain a more personal connection. If I have a friend who needs a church, I can refer them to my list, if I’ve covered their area; or I can take the project on a detour through their city to see what I can find. For my friends who go to churches on my list, it gives me a little more of a connection with them and more topics for conversation.

And finally, this project lets me exercise one of my joys in life, which is to find hidden treasure and share it with people who might not have found it otherwise. Some of the preachers in the list are well known, but there are pastors out there who are unknown but still good, and they deserve a wider audience. So by posting my discoveries online, I can hopefully give them a bit more exposure and put a few more people in touch with their unique perspectives and good preaching, and the happiness and well-being in the world can be increased. πŸ™‚

Criteria

This list is extremely subjective. While there are a few things I look for, I don’t apply a rigorous and objective rubric to each church. The question that determines whether a church makes the list is, Would I listen to this preacher regularly? If the answer is probably or yes, they go on the map. (If it’s maybe, I come back to it later and listen to a sermon or two more to decide.) So this is not a list of all the good churches in the world or even all the good preachers, just the ones I have personally found to be especially worth listening to so far. Obviously someone else would have a different list. Also, since most of these decisions are based on a single sermon, I will take a church off the list if I change my mind about it on later listenings.

I do keep my ears open for a few basic characteristics. I prefer speakers who have a more natural speaking style, as opposed to a highly affected one. I gravitate toward thoughtful pastors who are speaking to audiences who already have the basics of Christianity under their belt and who are looking to live it more effectively. I like hearing preachers who express the Christian message in new ways, rather than delivering the same old content with the same old language. And I appreciate a balance between exegesis and application. If it’s unbalanced, I’d rather it be on the application side. I am also a conservative Protestant, so you will see a clear bias toward this category in my list, which also I think comes from the fact that they seem to care more about preaching and getting their message out into the public.

Since there are potentially thousands of preachers who fit these criteria, I also keep a few limiting questions in mind: Is this speaker unique enough to stick in my mind? Is he or she easily ignorable (by being overly academic, rambling, or boring in some other way)? Does the speaker express a lot of opinions I disagree with without adding anything to my understanding? Is this speaker annoyingly liberal or conservative? I am more tolerant of conservatism, but I will turn them off if they’re too simple minded for me. And although I am fairly ecumenical, I skip over churches that don’t fit into what I would consider orthodox Christianity, so no Mormon, Christian Science, or Unitarian churches. Seventh-Day Adventists are a little too iffy; they’re out too.

Most of these criteria can be overridden by others in particular cases. Sometimes I can overlook an affected speaking style if the preacher is especially reflective. Or I can forgive a simple message if I feel inspired by the speaker’s sincerity. And I also look for certain specific preaching styles that I wouldn’t normally listen to because occasionally I do feel like listening to them. Sometimes I’m in an “old time religion” mood, for example, which is normally when I turn on Family Radio, even though Harold Camping is kind of a heretic. And of course my friends’ churches get special consideration. πŸ˜‰ Though they are not automatically included. -.- Even if they’re the preacher.

The List

The list linked to below corresponds to the placemarks on the map. It should be updated often while I’m on this project, except when I take breaks to concentrate on other things, and the changes will be reflected on the Recent Changes page and in the corresponding “all updates” feed. The churches on this page are arranged by state, then by city, then by church name. The Google map list is arranged in the order in which I added them.

The List

Continue reading

Posted in Audio sermons, Christianity, In progress, Lists | Leave a comment

Akelos and OpenLaszlo–a first attempt

Along with my updated site I am updating my self-limiting policies on what I post. In the past I have refrained from posting on things like programming that would bore most of my audience (of 5 people), but no longer! I am going to post about whatever I feel like. My readers will just have to suffer.

This job I’m in is the most educational I’ve ever had. I never thought I would learn about networking or do any web programming, but now both are in my job description. When I decided my employer needed a web application, I didn’t know a thing about writing one, so I decided to use the web application framework Ruby on Rails because it allegedly made web development easy, or at least easier than it had been.

Well, once I got into it, it did seem like a pretty easy way to develop, but there was one problem. It’s hard to deploy, at least if you’re using a Windows server. So I looked for a PHP alternative, because I knew I could deploy that with virtually no effort. And I found CakePHP, CodeIgniter, and Akelos. I’m trying out Akelos because it’s pretty much a straight port of Rails to PHP (so all that Rails learning won’t be wasted), and even though it’s very new, people are already impressed with it.

But then there’s the problem of the user interface. It’s very easy to create boring and cumbersome UIs in regular HTML. It’s hard to create nice-looking and easy-to-use ones that work right in every browser. Hence there are rich Internet application platforms like Adobe Flex. I somewhat randomly settled on OpenLaszlo for this.

Laszlo interacts with the server by passing XML back and forth within a single application, I presume using a single URL. Akelos executes actions based on the URL the browser requests and then generates a view, usually in HTML, that gets sent to the browser as the content for that URL. Invoking a different action means pointing to a different URL. How can I get the two to work together?

The answers are probably obvious to anyone who’s familiar with the tools or with web programming in general, but I am just learning this stuff, so I was pleasantly surprised when I made fairly easy progress tonight with only a couple of general hints I picked up online. I’m used to guessing wrong about how things work and spending hours slogging through documentation and experimentation.

Tonight I successfully embedded a Laszlo Flash application in an Akelos view and had the application grab some XML data from a static view in Akelos. The next step is to get Akelos to generate the XML dynamically from the database, and after that I’ll have the Laszlo application give Akelos data to put into the database. Then I’ll have to learn more about OpenLaszlo to define the next tasks.

I think the basic idea behind getting the two to interact is to treat the Laszlo application as a web browser so that it is the one making the requests for the various Akelos URLs, while the browser simply points to the Laszlo application. So to deliver the data to the application, I created a view that contained the data (and a corresponding action in the controller), and then in the application I used the relevant URL in the src attribute of the dataset tag.

I would post the code for all this, but this entry is already long enough. When I get far enough along, I’ll post a demo or tutorial or something, either here or on the Akelos wiki.

Continue reading

Posted in Akelos, OpenLaszlo, Programming | 3 Comments

I moved

It went really well. I had seven people from my old small group helping me, and it only took about two hours. I felt kind of bad that they had to help me finish packing and that I had sooo … Continue reading

Posted in General | Leave a comment

Moving tomorrow

At last I am moving. Some of my old small group are coming to help me, which is nice of them. I lured them out with pizza. πŸ˜‰ The carpet in the apartment is being replaced tomorrow, which is cutting … Continue reading

Posted in Aesthetics, General, Life maintenance | 1 Comment

I am now a Stephen Ministry in training to be!

The Stephen Ministry training coordinator from my church left me a message on Wednesday telling me I’d been accepted into the program and asking me officially if I wanted to join. She said she was hoping I’d reply with a … Continue reading

Posted in General | 1 Comment

TLDW

There’s an acronym out there on the Internet that’s used whenever a long and boring article is presented for consumption and the user can’t be bothered: TLDR, “too long; didn’t read.” I would like to add my own variation on … Continue reading

Posted in General | 3 Comments

The Annotated Scanner’s Toolbox

Version 1.0, 5-12-07

In addition to the inspiring stories, perspective-altering advice, Life Design Models, and career possibilities Barbara Sher serves her readers, Refuse to Choose also contains about forty tools that Scanners can put to work when they need a little organization or motivation. These tools are listed in an index in the back. Unfortunately, in spite of the creative names she has given them, I had a hard time remembering when I should use each tool. Hence, I have added descriptions of the circumstances in which each tool would be helpful, based on Barbara’s discussions.

If

Then You Need The

See Page(s)

You don’t finish what you start because you don’t have a clear sense of direction

15-Month Goal Calendar (use it with the Rotating Priorities Board)

152

You have many interests that you’d like to explore deeply, but you don’t have time

20 or 30 Three-Ring Binders

84, 157–158, 174, 253

You have ideas you want to put into action, but you’re anxious about it and/or you have trouble keeping in mind what you need to do

Appointment Planner (use it with the Success Team)

95

  1. You’re disorganized and spend too much time getting the materials together for your projects, or
  2. You find that you’ve neglected your projects for a while and you miss them

Avocation Station (use it with the Setup)

153–156

You think about your ideas but don’t get around to doing anything about them

Backward Planning Flowchart (use it with the Real Deadline)

91–95, 97, 98

You are interested in practically everything and you want to study each of those things deeply, but that’s impossible, so you don’t do any of it

Big List

77–79

You feel you can’t pursue your interests because it would be irresponsible

“Busting Open Either/Or Thinking” Game

127–128

  1. You’re trying to decide on a (temporary) career, or

  2. You want to explore a variety of new fields or jobs

Career Tryout

56–57, 207

Ideas enter and leave your mind too quickly without being written down, so you forget them, can’t show them to anybody, can’t do anything with them, and start to forget who you are

Catalog of Ideas with Potential

244–245

You have an idea for a project

Da Vinci Write-Up (use it with the Scanner Daybook or the 20 or 30 Three-Ring Binders)

11–17, 110, 243–244

You live two lives, and you want to keep your gear for your other life in one place while you’re waiting to get to it

Destination Steamer Trunks

139–140

You’re doing a project you intend to finish, and you need a little pressure to keep you going

Down-to-the-Wire Tear-Off Calendar

251

You want to find out what your interests have in common so you can find a job that matches that theme

“Everything I Don’t Want” List

216–217

You can’t fit all your interests into one job (and maybe you don’t want to be pressured to do those things anyway), yet you still need to pay the bills

Good Enough Job

60, 136–137, 143, 159, 233–235, 264

You can’t keep track of your ideas or follow up on your interests

Interest Index Binder

83–84

  1. You need to test your Setups, or

  2. You have neglected your projects and you miss them

Kitchen Timer (use it with the Avocation Station)

155

You want to find a career that can use all your experiences, or you’d like to find a theme to your interests, but you tend to get lazy about writing

Letters from the Field (use it with the Web E-mail Account)

189–190, 225

You need to adjust your environment, schedule, and/or career to give you the ability to pursue all your interests

Life Design Model

128–129

You finish a project, either completely or via a Scanner’s Finish, and especially if you aren’t used to appreciating your own wonderful mind or you think you never accomplish anything

Life’s Work Bookshelf

112–113, 210, 236–237, 252

You’ve started a lot of projects you haven’t finished and your home is cluttered with them, and you’re embarrassed by it

Living Quarters Map

17–19

You’re afraid of committing to a job long term because you know you’ll get bored with it

LTTL (Learn, Try, Teach, Leave) System

58–59, 169–171

You have a lot of stress and anxiety because you’re so busy all the time

Micro Nervous Breakdown

66–67

You keep accumulating a variety of skills and experiences, but it would look bad to put them all on your résumé

Never-Ending Résumé

188

  1. You’re very busy and you want to capture your ideas while you’re out and about, and especially if

  2. You need to take a break now and then to think about something else

Portable Dream Deck (use it with the Alternating Current Life Design Model or just by itself)

69, 167

You finish a project, either completely or via a Scanner’s Finish, and you want a creative way to display it

Private Museum

237

You have interests that are too 3-D to put in a binder

Project Box

157

You need some accountability to keep you moving toward your goal

Real Deadline

91, 94, 95, 97, 99, 250–252

You can’t decide if your idea is a good or bad one just by thinking about it

Reality Research

97–99

  1. You feel guilty about jumping from one thing to another, especially if you don’t finish your projects,

  2. You want to design a life that will fit your particular interests, or

  3. You want to know how far to pursue an interest, especially if you’re afraid you have too many

Rewards and Durations

29–36, 38, 79–81, 103, 117

You’re juggling several projects, and your interest level for each one is unpredictable, so you don’t know how to prioritize them from day to day

Rotating Priorities Board (use it with the 15-Month Goal Calendar)

152–153

  1. You feel ashamed of the way you dabble in many different subjects, and you avoid getting involved in new subjects because you have too many interests and projects already, especially if you haven’t finished the ones you’re working on,

  2. You tend to get ideas and then lose them,

  3. You’re doing a Scanner exercise from Refuse to Choose! or taking notes on something Scanner related,

  4. You’ve been neglecting or undervaluing certain sides of you,

  5. You want to understand what interests you, what causes you to lose interest, and the way your mind works,

  6. You want to capture the excitement you feel when coming up with a project,

  7. You want to preserve your ideas for posterity,

  8. You’ve been too busy to come up with any projects or to let your mind wander,

  9. You just want to have fun in Scanner fashion,

  10. You want to find a theme to your interests, or

  11. You’re returning to Scanner mode after doing your Best Work

Scanner Daybook (use it with the Da Vinci Write-Up)

11–20, 24–25, 33, 36, 57, 68, 77–79, 105, 109, 110, 140, 155, 156, 165, 167, 198, 209, 213, 225, 244–245, 252

You have several projects you want to work on, but you can’t organize your time well enough to juggle them

Scanner Planner (use it with the School Day Life Design Model)

146–148

You have a project that you feel bad about not finishing, but you’re not interested enough to keep working on it

Scanner’s Finish (use it with the Life’s Work Bookshelf)

111–112, 210

You’re really busy and have only two minutes here and there to work on your projects

Setup

69–70, 153

  1. You finish a project (typically something you’ve made) and you want to show off the results, or

  2. You need some accountability to keep you moving toward your goal

Show-and-Tell Party

237–238, 250–251

You want to learn and do a lot of different things, and you think informal learning would work better than college classes

Soiree

230–231

You learn something that calms your Scanner Panic

Sticky Notes

47

You need accountability and moral support to keep you moving toward your goal

Success Team

92, 94–95, 99

You keep accumulating a variety of skills and experiences, but it would look bad to put them all on your résumé

Three Scanner Résumés

266–267

You’re afraid you’ll never get to do everything you want to do

Wall Calendar Poster

45–47, 138–139, 140

You need a convenient place from which to write your Letters from the Field

Web E-mail Account (use it with the Letters from the Field)

189–190, 225

You think you haven’t accomplished much in your life

“What Have I Done So Far?” List

24–25

Continue reading

Posted in Scanners | 2 Comments

A new tools index for Refuse to Choose

Thanks to my miraculous C-Pen, I have been able to whip together another project. It’s an expanded version of the tools index at the back of Refuse to Choose. I wanted to make it more useful and give people a … Continue reading

Posted in Psychology, Site updates | 2 Comments

My first YouTube video

Well, I didn’t think it would happen, but I finally found something to post on YouTube. I’ve had an account for a while, but only to comment on other people’s videos. As I was leaving work today (it’s still Thursday … Continue reading

Posted in General | Leave a comment

Hurray for technology!

My C-Pen arrived today! I ordered it last week. It’s a handheld scanner. You drag it across individual lines in a book, and it scans the text and OCRs it into a document. I tried it just now, and it … Continue reading

Posted in General | 1 Comment