I was on campus today when all of a sudden the greenspace between Tresidder Union and White Plaza became a combat zone.
It was pretty cool.
The martial arts clubs were out recruiting by demonstrating their slickest moves.
I learned something important today–don’t mess with the Kempo Karate club at Stanford. They scare me.
The other groups were pretty impressive too, especially the Wushu Club.
Side note: people sometimes wonder why there are so many Christian organizations on your typical campus when they all agree on the basics. One might as well ask why there are so many martial arts organizations when they all focus on the same things (wearing funny clothes and fighting one another). We disagree on some techniques and a few philosophical premises. Differentiation is not a big deal, nor is it unique to religious organizations.
In Campus Collisions, Christianity Today tells the story of the recent troubles Christian organizations have had on campuses.
The lead paragraphs: THE HARVARD UNDERGRADUATE COUNCIL was working its way through a night of routine business last November when sophomore Jason Lurie, an officer of the Harvard Secular Society and a member of the council, dropped his bombshell. Did the Undergraduate Council realize, he asked, that it was approving grants to openly discriminatory organizations?
The organizations were the more than 50-year-old Harvard-Radcliffe Christian Fellowship (HRCF) and the much newer Harvard Asian Baptist Student Koinonia (ABSK). Clauses in their constitutions specified that their leaders—though not their members—must affirm an evangelical Christian statement of faith.
Really well-written article by a former InterVarsity staffer.
While I was preparing for this week’s message I came across this paragraph which I don’t think is going to make it in (doesn’t fit the flow), but it was so good that I feel compelled to share it with you:
Dorothy Sayers in her book Unpopular Opinions wrote:
Setting aside the scandal caused by His Messianic claims and His reputation as a political firebrand, only two accusations of personal depravity seem to have been brought against Jesus of Nazareth. First, that He was a Sabbath-breaker. Secondly, that He was “a gluttonous man and a winebibber, a friend of publicans and sinners” — or (to draw aside the veil of Elizabethan English that makes it sound so much more respectable) that He ate too heartily, drank too freely, and kept very disreputable company, including grafters of the lowest type and ladies who were no better than they should be. For nineteen and a half centuries, the Christian Churches have laboured, not without success, to remove this unfortunate impression made by their Lord and Master. They have hustled the Magdalens from the Communion-table, founded Total Abstinence Societies in the name of Him who made the water wine, and added improvements of their own, such as various bans and anathemas upon dancing and theatre-going. They have transferred the Sabbath from Saturday to Sunday, and, feeling that the original commandment “Thou shalt not work” was rather half-hearted, have added to it the new commandment, “Thou shalt not play.”
So there.
Now that I look at it again it may make it in after all… come and find out!
By the way, this week we’re continuing our “Jesus Is Asking You…” series of messages with the pivotal question Who Do You Say That I Am?
We just signed a lease on a new apartment! We’ll be moving this month–I’ll update our contact information soon.
For now, you can see some photos we took of the new pad.
It’s a great place–3 bedrooms, 2 bath, nice patio, and a fireplace! The best part is that the rent is the same as what we’re paying now. Woohoo!
I woke up early this morning and had this thought about daily Bible reading plans (namely, that it would be good to have one on our website).
So I added it on the top left of the screen. Just wanted to draw your attention to it.
I figured it would be pretty easy to set one up using PHP and MySQL, but I didn't want to have to do a ton of data entry. Rather than reinventing the wheel, I searched for an online tabulation of Bible readings. I found a good one at Bible-reading.com.
I copied the plan into Word and used the search and replace features to format all the readings into 364 SQL INSERT statements (the number of readings in this plan). I added two more (thereby insuring that the database always has the data that I query for even in a leap year. Side note: I picked these somewhat at random and they're probably not great choices, especially the Matthew reading).
Then I created some quick PHP code to take the current day of the year and look up the corresponding reading. I took the output and made it compatible with Bible Gateway and voila--an easy online Bible reading plan!
The code was very straightforward:
PHP:
-
-
$day=$date['yday'];
-
-
-
-
-
-
$sql=
sprintf("SELECT * FROM bible_reading WHERE day='%d'",
$day);
-
-
-
-
-
-
$passage=$line["passage"];
-
-
-
-
-
-
$URL=
sprintf("http://bible.gospelcom.net/cgi-bin/bible?language=english&passage=%s&version=NIV",
urlencode($passage));
-
-
-
-
printf("<a href='%s'>%s</a>",
$URL,
$passage);
That's pretty much it. It turned out to be a piece of cake!
The data entry would have been horrible--but I was able to avoid that hassle. If you need the SQL statements for any reason, you can use these:
SQL:
-
CREATE TABLE `bible_reading` (
-
`day` int(11) NOT NULL DEFAULT '0',
-
`passage` varchar(255) NOT NULL DEFAULT '',
-
PRIMARY KEY (`day`)
-
) TYPE=MyISAM;
-
-
#
-
# Dumping data for table `bible_reading`
-
#
-
-
INSERT INTO `bible_reading` VALUES (1,
'Romans 1-2');
-
-
INSERT INTO `bible_reading` VALUES (3,
'Joshua 1-5');
-
INSERT INTO `bible_reading` VALUES (4,
'Psalms 1-2');
-
INSERT INTO `bible_reading` VALUES (5,
'Job 1-2');
-
INSERT INTO `bible_reading` VALUES (6,
'Isaiah 1-6');
-
-
INSERT INTO `bible_reading` VALUES (8,
'Romans 3-4');
-
-
INSERT INTO `bible_reading` VALUES (10,
'Joshua 6-10');
-
INSERT INTO `bible_reading` VALUES (11,
'Psalms 3-5');
-
INSERT INTO `bible_reading` VALUES (12,
'Job 3-4');
-
INSERT INTO `bible_reading` VALUES (13,
'Isaiah 7-11');
-
INSERT INTO `bible_reading` VALUES (14,
'Matthew 3-4');
-
INSERT INTO `bible_reading` VALUES (15,
'Romans 5-6');
-
-
-
INSERT INTO `bible_reading` VALUES (18,
'Psalms 6-8');
-
INSERT INTO `bible_reading` VALUES (19,
'Job 5-6');
-
-
INSERT INTO `bible_reading` VALUES (21,
'Matthew 5-7');
-
INSERT INTO `bible_reading` VALUES (22,
'Romans 7-8');
-
-
-
INSERT INTO `bible_reading` VALUES (25,
'Psalms 9-11');
-
INSERT INTO `bible_reading` VALUES (26,
'Job 7-8');
-
-
-
INSERT INTO `bible_reading` VALUES (29,
'Romans 9-10');
-
-
-
-
INSERT INTO `bible_reading` VALUES (33,
'Job 9-10');
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (38,
'Judges 1-6');
-
-
INSERT INTO `bible_reading` VALUES (40,
'Job 11-12');
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (45,
'Judges 7-11');
-
-
INSERT INTO `bible_reading` VALUES (47,
'Job 13-14');
-
-
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (54,
'Job 15-16');
-
-
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (61,
'Job 17-18');
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (66, 'Ruth');
-
-
INSERT INTO `bible_reading` VALUES (68,
'Job 19-20');
-
-
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (75,
'Job 21-22');
-
-
INSERT INTO `bible_reading` VALUES (77,
'Mark 1-2');
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (82,
'Job 23-24');
-
-
INSERT INTO `bible_reading` VALUES (84,
'Mark 3-4');
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (89,
'Job 25-26');
-
-
INSERT INTO `bible_reading` VALUES (91,
'Mark 5-6');
-
-
INSERT INTO `bible_reading` VALUES (93,
'Exodus 1-4');
-
-
-
INSERT INTO `bible_reading` VALUES (96,
'Job 27-28');
-
-
INSERT INTO `bible_reading` VALUES (98,
'Mark 7-8');
-
-
INSERT INTO `bible_reading` VALUES (100,
'Exodus 5-8');
-
-
-
INSERT INTO `bible_reading` VALUES (103,
'Job 29-30');
-
-
INSERT INTO `bible_reading` VALUES (105,
'Mark 9-10');
-
-
INSERT INTO `bible_reading` VALUES (107,
'Exodus 9-12');
-
-
-
INSERT INTO `bible_reading` VALUES (110,
'Job 31-32');
-
-
INSERT INTO `bible_reading` VALUES (112,
'Mark 11-12');
-
-
-
-
-
INSERT INTO `bible_reading` VALUES (117,
'Job 33-34');
-
-
INSERT INTO `bible_reading` VALUES (119,
'Mark 13-14');
-
-