Monthly Archive for May, 2006

Page 2 of 5

Disproving Dan

One thing that really gets me upset is when pastor-type people try too hard to “refute” The Da Vinci Code stuff.  For instance, Sunday i was at a church in Michigan and the preacher said things to the effect of:

  • Because there are actually 673 panes of glass on the pyramid at the Louvre (and not 666 as Brown states in the book), the book is wrong.  And even that is wrong as the Louvre’s website (link) states (Virtual Tours->Architectural Views->Cour Napoleon) that the pyramid in question has “almost 800 glass lozenges and triangles.”
  • “Jehovah” is a Latin creation of Brown to confuse matters on the Hebrew YHWH.  The preacher (who has studied OT Hebrew!) does not realize that “Jehovah” was the original attempt at pronouncing YHWH by adding the vowels that aren’t present.  It wasn’t until later that scholars though that “Yahweh” was more accurate.
  • Because the movie crew could not film at Westminster Abbey (minor location in the book for a major artifact in the quest), Brown must be wrong.

Now, i agree that Dan Brown was a bit far-fetched and had very little understanding in what he was writing, but this zealousness to disprove a work of fiction is a bit much.  Give it a rest.

Ancient Future Interpretation

This is part 4 of 4 in the Language & Interpretation series

The last part of this series turns us from what is to how do we use it, particularly in a “” context. Previously, i outlined the liquidity of language and its meaning. In the religious context, how should people interpret their “Scriptures” whether that be the Qur’an, the Bible, or the Upanishads. My answer would be “historically.”

Ancient

The first thing we should do when interpreting a book (or even a conversation) is that we should place it in its context. For instance, in the Book of Mark, how should Jesus’ reference to the “” be seen? Geza Vermes, in his book Jesus the Jew, suggests that “son of man” was an Aramaic idiom simply referring to the person speaking (and also sometimes the person spoken to). In his view, this phrase has no connection whatsoever with Daniel 7, 1 Enoch, or 2 Esdras (the only three locations in what can be called “Scripture” in Jesus’ time where the phrase is used). This view is further supported by going to the claims in 1 Enoch and 2 Esdras. In 1 Enoch, the “son of man” is directly referred to as Enoch himself. To use it as support for some eschatological figure would quickly remove Jesus from the possibility of being that figure. In 2 Esdras, the references to the “son of man” shed no new light on this figure. Furthermore, 2 Esdras is believed to have been written after Jesus was resurrected, thus making it an unlikely source for confirmation. We are left with Daniel 7. Looking at the rabbinic teachings of the era (i.e. the Talmud and the Mishnah), it is seen that none of the rabbis prior to the late 1st century saw the “son of man” in Daniel 7 as some kind of prophecy, let alone one about the . It is not until the 1st century (which is when Mark is written) that we see a shift in understanding. First Christians and then Jews began to re-interpret Daniel 7 as a prophecy of the Messiah.

Textually, scholars have suggested that, of the 70+ references to the “son of man” in the 4 gospels, only 5 bear any kind of relation to Daniel 7…and none of those were spoken by . Therefore, it would appear that at the earliest context, “son of man” was not a reference to the Messiah and only became such after Christianity. As such, i suggest that we should not take statements of Jesus in the Gospel as allusions to a greater figure.

Traditional

In the Christian tradition, the idiomatic interpretation of “son of man” has disappeared. Most would see “son of man” as a direct reference to Daniel 7 and the eschatological figure. As such, we should take this when reading it after the gospels, as it is what most Christians believed.

Futural

While this view of interpretation seems rather oddly named because it focuses on both the historical application and contextual usage, it also becomes futural in that it changes. Interpretations change to fit the language and culture of the day, but the message itself does not. With an understanding of the development of ideas, it is easy to see how some views that are proclaimed as historically accurate but have little historical basis (e.g. premillenialism, but that’s another topic!). Furthermore, it is a way to retain historical orthodoxy without excluding the contemporary culture.

Libuhral

You are a
Social Liberal
(78% permissive)

and an…
Economic Moderate
(43% permissive)

You are best described as a:
Democrat
Link: The Politics Test on Ok Cupid
Also: The OkCupid Dating Persona Test

Change of Plans

After talking with a couple of faculty in my two programs, things may be changing.  First off, the requirement for my second MA (Philosophy) isn’t what i was led to believe (30 hours) and is in fact a full 45 hours.  As a result, that means there is no chance of finishing up next Spring.  Talking with my advisor, a second MA (especially one in Philosophy) won’t help in getting into theological programs, which is what i want to do.

So that means that if i choose to skip the second program, i only need 6 hours (that’s not even 2 courses) to complete my course requirements.

Uninstalling Heimdal/Mambo Plus

i have gotten a couple of emails from people wanting to know how to uninstall the phpBB and Joomla/Mambo integration from me. Here’s the basics:

  1. Backup your database
  2. Duplicate mos_users (or jos_users) as phpbb_users (in phpMyAdmin, this can be done by going to the mos_users table and under the “operations” tab, there is the option of “copy table to…”)
  3. DROP mos_session (or jos_session)
  4. Using installation/sql/schema.sql (from a Mambo/Joomla package), re-create the mos_session (or jos_session) table (see below for latest)
  5. Using install/sql/mysql_schema.sql (from phpBB package), recreate phpbb_sessions (see below for latest)
  6. In mos_users (or jos_users)
    • RENAME user_email to email, user_password to password, user_id to id, user_active to block, and user_actkey to activation
    • REMOVE any other user_* fields;
    • UPDATE mos_users SET block = NOT block;
    • DELETE FROM mos_users WHERE id = -1;
  7. In phpbb_users, REMOVE name, gid, registerDate, lastvisitDate, usertype, sendEmail, and params
  8. Overwrite Mambo/Joomla files being used with “original” files from Mambo/Joomla package (you can just upgrade here to the latest Mambo/Joomla)
  9. Either overwrite phpBB files with a clean package, or remove the changes that are noted in the phpbb files (can be found from the docs/mod_phpbb.txt file in the mosplus and heimdal packages). Each modification for phpBB is noted in the file by the usage of:
    // mod: Heimdal ------------
    ....
    // fin mod: Heimdal -----------

For quick reference, here are the session tables’ structures:

-- Table structure for table `jos_session`
CREATE TABLE `jos_session` (
`username` varchar(50) default '',
`time` varchar(14) default '',
`session_id` varchar(200) NOT NULL default '0',
`guest` tinyint(4) default '1',
`userid` int(11) default '0',
`usertype` varchar(50) default '',
`gid` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`session_id`),
KEY `whosonline` (`guest`,`usertype`)
) TYPE=MyISAM;

-- Table structure for table `phpbb_sessions`
CREATE TABLE phpbb_sessions (
session_id char(32) DEFAULT '' NOT NULL,
session_user_id mediumint(8) DEFAULT '0' NOT NULL,
session_start int(11) DEFAULT '0' NOT NULL,
session_time int(11) DEFAULT '0' NOT NULL,
session_ip char(8) DEFAULT '0' NOT NULL,
session_page int(11) DEFAULT '0' NOT NULL,
session_logged_in tinyint(1) DEFAULT '0' NOT NULL,
session_admin tinyint(2) DEFAULT '0' NOT NULL,
PRIMARY KEY (session_id),
KEY session_user_id (session_user_id),
KEY session_id_ip_user_id (session_id, session_ip, session_user_id)
);