Posts tagged with "Theology"

“He shall be called a Nazorean.” — no prophet ever

Ok, ok. I’m just having a little fun with my literalist friends and others who accuse the Catholic Church of not following “the clear teaching of scripture.”  Today’s lectionary reading includes Matthew 2:23, which reads as follows:

He went and dwelt in a town called Nazareth,
so that what had been spoken through the prophets
might be fulfilled,
He shall be called a Nazorean.

The issue?  No prophet ever literally says that the Messiah would be called a Nazorean.  I know, I know. It may be a play on words with the Hebrew words for “branch” or “Nazirite” or some such other hypothesis (or at least that’s what I read in seminary).  All that to say, when people ask me “where do you find such and such Catholic teaching in the Bible?,” more often times than not I don’t bite.  Some Catholics do, but that’s their prerogative.  My follow-up question is usually “where does a prophet clearly state that the Messiah would be called a Nazorean?”  There’s at least as much, if not more, clear evidence for something like purgatory than there is that the Messiah would be a Nazorean.  So, I generally try to steer the discussion into more basic ideas about interpretation and what biblical interpretation sometimes looks like even within the Bible itself.

“Where do you find such and such Catholic teaching in the Bible?” is, in fact, not really a good question to ask a Catholic in my opinion.  We have a whole theology around the concept of the development of Christian doctrine.  John Henry Newman’s famous analogy is that a doctrine may be found in scripture in the form of an acorn that later develops into an oak tree.  Does the mighty oak resemble the acorn? Not so much.  A better question for a Catholic would be “where is that belief rooted in scripture and how does it develop over time?”

The other lesson to be learned here, follow-up on the Old Testament quotations in New Testament texts.  There’s a whole lot there a lot of our current theological frameworks might be ill-equipped to handle.

The 10 book meme – my version

This is my version of the meme going around on Facebook (not that anyone asked) to name 10 books that have stuck with you without thinking too much about it:

  1. Ecclesiastes – unknown
  2. Night – Elie Wiesel
  3. The Hound of the Baskervilles – Arthur Conan Doyle
  4. Introduction to Christianity – Joseph Ratzinger (or Truth Tolerance and the World Religions, both of which I read around the same time and had a significant effect on me)
  5. The Beak of the Finch – Jonathan Weiner
  6. The Neuroscience of Language – Friedemann Pulvermuller (close competitor – A Cognitive Exploration of Language and Linguistics – Dirven and Verspoor eds.)
  7. The Critical Meaning of the Bible – Raymond Brown
  8. The Count of Monte Christo – Alexandre Dumas
  9. The Lexical Approach: The State of ELT and a Way Forward – Michael Lewis
  10. Introduction to Biblical Hebrew – Charles Isbell

Now that the task actually has me thinking about it, this was pretty much impossible.

Python to save your soul

In a previous post, I showed you how Python can let you print important things over and over again. Here I’m posting a video that just might save your soul with the code for the quiz at the bottom of the post:

from random import randint
import sys

questions = {1 : [“Joel is a hell-bound heretic.”, “true”],
2: [“GrEEK is awesome.”, “false”],
3: [“John Wesley was a Christian.”, “false”],
4: [“GrEEK is lame.”, “true”],
5: [“Zwingli’s real name is Hurlrick Zwiggly.”, “true”],
6: [“The Orthodox are orthodox.”, “false”],
7: [“Luther started the reformation while inebriated.”, “true”],
8: [“Hebrew is awesome.”, “true”]}

while True:
question_number = randint(1, 8)
QA = questions.get(question_number)
inp = raw_input(QA[0] + ” True or False? “)
if inp.lower() == QA[1]:
print(‘yay! cool! you got it!’)
elif inp == “”:
break
else:
print(‘no! wrong! study to save your soul!’)