Archive for February, 2007

Reading on hold

So I’ve been using the Now Reading plugin for a while, but there was one feature I wanted: an “on hold” status so that if I am in the middle of reading a book but stop for a while, I don’t have to mark it as “Currently Reading” or as “Yet to Read” (the two non-complete statuses). So, I added the “On Hold” feature yesterday. It was pretty simple (modify two files and run one SQL query). Here’s the file changes:

in now-reading.php around line 36:

  1. $nr_statuses = array(
  2.         ‘unread’        => __(‘Yet to read’, NRTD),
  3.         ‘onhold’        => __(‘On Hold’, NRTD),
  4. +       ‘reading’      => __(‘Currently reading’, NRTD),
  5.         ‘read’    => __(‘Finished’, NRTD)
  6. );

and line 340:

  1. case ‘unread’:
  2.         case ‘reading’:
  3.         case ‘read’:
  4. +       case ‘onhold’:
  5.                 break;
  6.         default:
  7.                 $status = ‘all’;

Then, in template-functions.php, around line 130:

  1. function book_status ( $echo = true, $unread = , $reading = , $read = ) {
  2.         global $book, $nr_statuses;+   $text = $nr_statuses[$book->status];
  3. +       /*
  4.         if ( empty($unread) )
  5.                 $unread = $nr_statuses[’unread’];
  6.         if ( empty($readin) )
  7.                 $reading = $nr_statuses[’reading’];
  8.         if ( empty($read) )
  9.                 $read = $nr_statuses[’read’];
  10.         switch ( $book->status ) {
  11.                 case ‘unread’:
  12.                         $text = $unread;
  13.                         break;
  14.                 case ‘reading’:
  15.                         $text = $reading;
  16.                         break;
  17.                 case ‘read’:
  18.                         $text = $read;
  19.                         break;
  20.                 default:
  21.                         return;
  22. @       } */
  23.         if ( $echo )

Finally, run this query through your favorite MySQL interface (phpMyAdmin):

MySQL [Show Plain Code]:
  1. ALTER TABLE `wp_now_reading` CHANGE `b_status` `b_status` VARCHAR( 8 ) NOT NULL DEFAULT ‘read’;

And presto, an “on hold” status that removes the book from the library’s public lists, while keeping it in the manage books section.

No Tags

Deleuze

Just posted an article about Deleuze and religion over at Church and Postmodern CultureDirect link.  Overall, I was happy with it, but I would liked to have written more.  I will be posting more extensively on Deleuze in the distant future (probably after the summer), but I will also have a more in-depth article in the next week or so on the same subject (and a bit more).

No Tags

Reading list

Today, I finally received my reading lists for my comprehensive exams. I still don’t know which two of the three traditions I requested will be the chosen traditions. As it stands, I was given a list of 10-13 books for each possible tradition, as well as for the “theory” exam. I choose seven for each and return that list to the professor that will be giving the exam. Here’s my list for each exam (I put up all three traditions I requested). I have underlined the ones I have read previously for classes or own.

Theory

  • Bell, Catherine. Ritual: Perspectives and Dimensions
  • Durkheim, Emile. The Elementary Forms of Religious Life
  • Freud, Sigmund. Civilization and Its Discontents
  • Freud, Sigmund. Totem and Taboo
  • Roy, Olivier. Globalized Islam
  • Taylor, Mark C. About Religion
  • Smith, Jonathan Z. Imagining Religion

Christianity

  • Ahltstrom, Sidney. A Religious History of the American People
  • Ehrman, Bart. The New Testament: A Historical Introduction to the Early Christian Writings
  • Logan, F. Donald. A History of the Church in the Middle Ages
  • McGrath, Alister. Christianity: An Introduction
  • Ozment, Steven. The Age of Reform, 1250-1550: An Intellectual and Religious History of Late Medieval and Reformation Europe
  • Pelikan, Jaroslav. The Christian Tradition: A History of the Development of Doctrine, Volumes 1-5
  • Stevenson, James. Creeds, Councils and Controversies: Documents Illustrating the History of the Church

Islam

  • Arberry, Arthur. The Qur’an Interpreted
  • Denny, Frederick. Introduction to Islam
  • Geaves, Ron. Aspects of Islam
  • Madelung, Wilferd. Succession to Muhammad
  • Rahman, Falzur. Major Themes of the Qur’an
  • Schimmel, Annemarie. The Mystical Dimension of Islam
  • Watt, W Montogmery. The Formative Period Of Islamic Thought

Hinduism

  • Bayly, Susan. Caste, Society and Politics in India from the Eighteenth Century to the Modern Age
  • Eck, Diana L. Darsan: Seeing the Divine Image in India
  • Flood, Gavin. An Introduction to Hinduism
  • Khandelwal, Meena. Women in Ochre Robes: Gendering Hindu Renunciation
  • Miller, Barbara S. The Bhagavad-Gita: Krishna’s Counsel in Time of War
  • Ramanujan, A K. Speaking of Siva
  • Smith, David. Hinduism and Modernity

I guess that means I have quite a bit of reading to do over the next 10 weeks.

No Tags

The bureaucracy of Vista

So, I got an email last night from my universities Vice Chancellor for Technology saying that students who run Windows should not get Vista yet because it is incompatible with:

  • Symantec Antivirus
  • The Wireless VPN
  • Blackboard
  • Webmail
  • Pharos public printer system

OK, I can see it not being compatible with actual software on the computer (Symantec and the VPN client), but Blackboard? Webmail? Bull. These are web apps that run off of old technology that any modern browser can handle: HTML and javascript. That’s it. I’ve gotten these things to run in lynx, a text-only browser that is run from the command line. I don’t think Microsoft screwed up IE that much in Vista that these no longer work. The university says that in Vista, both of these services have “limited” functionality. I’m sorry DU, but that’s a lie. BOTH of these sites will work as well in IE7 on Windows XP and IE7 on Vista. Users may need to allow content from these sites (i.e. change a setting), but that’s it. I have found that the techs at my university are rather ignorant of operating systems. Case in point: I run Iceweasel in Debian. When I go to the university login, I get a message saying that my browser isn’t supported. Why? It’s because the script reads my User Agent as Netscape 1.8 instead of Iceweasel 2.0. My first response was to fake the User Agent as Firefox 2.0 (which is “supported” by my university). Well, even as FF 2.0, the script still reads it incorrectly. So what did I do? Sent an email to the tech guys saying that the script isn’t reading my User Agent correctly. Their response?

At this time the Helpdesk only supports Windows XP sp2 and Apple’s OSX. The warning message you see is because your browser is not one supported in WebCentral.

Sorry, but User Agents have nothing to do with Operating Systems. If a web app gets a User Agent as Firefox 2.0–a “supported” browser–it should treat like FF 2.0 There shouldn’t be a “well, it only works for FF 2.0 in Windows XP.” FF2.0 is FF 2.0, regardless of what system it is installed on. After reiterating this fact to the “tech support,” they said they’d forward the info to the script developer. Thank you, that’s all I asked for. And one last thing, I’m not going to install Windows XP SP2 on my computer so that I can use the school’s “preferred software.” I can do everything I need to on my computer without needing the crap they give out. I already have a SSH client, so I don’t need the crap one provided by them. I don’t need a “secured wireless VPN” because my system is secure. I don’t need Symantec AV because ClamAV works better. Yeah, it’s a pain living in a Microsoft world, but I survive rather nicely. And, unlike their computers, mine’s been running for 19 days straight. The only thing I can’t do is print directly to their networked printers because it goes through Pharos and I haven’t researched how to make it work (I don’t print much at school). Nevermind…thanks to the Princeton Unix Group, I have enough info to print to the Pharos server through CUPS.
So, in summary: “tech support” at my university is a joke. Vista isn’t worth the upgrade. Try Linux.

No Tags

bcm43xx

Finally, I have my computer off of ndiswrapper. A relatively new kernel module named covers the driver and firmware for most wifi chipsets (possibly most popular PCI wifi cards like Linksys and many of the cheap ones). With this change, I can finally ditch some files I have had to keep for ndiswrapper (namely, the WinXP driver files). Additionally, I am able to re-enable the WPA security for router. I could not do this previously because the ndiswrapper/wpa_supplicant combo equaled no connection for me. Now, one less reason to not switch to Linux.
Update: Apparently Wordpress’s xml-rpc has been scrod. If using Performancing, the site has to be treated as a Metablog API, not Wordpress API to work.,

No Tags

Cleanup

Just did a little bit of cleaning up around the site…here’s a breakdown:

  • Updated all of my series posts to have the same styling for the link table on top and the section headers.
  • Created a page that lists all of my series with links to all posts.
  • Deleted all of the spam users that joined hoping to spam the site.
  • Checked that all of my series posts had tags.
  • Deleted and reorganized the categories a little bit…No more hierarchy.
  • A few tweaks to the CSS.

Also, just FYI: the photo in the header was taken by me last year in March while in Breckenridge…It’s from somewhere in the middle of the runs on Peak 9.

Lastly, if anyone would like a copy of the code for this in its entirety (minus my database info), drop me a line. I’ve checked on it and it will run through an installation and everything works nicely.

No Tags

Synthetic & Metaphor

Knowing
1: Epistemology 2: Flux Capacity 3: Correspondence 4: Synthetic & Metaphor 5: Postmortem Epistemology

Finally, a return to the series on . Previously, we’ve covered the “basics” of epistemology, as well as the Greek responses to epistemology. Last time, we hit on and the early French and English responses. Now, we turn to the Germans.

A Response to Rationalism

Let’s start by reviewing Descartes by analogy. Let’s say Jim finds a photograph of a building titled “Empire State Building” in his grandmother’s attic. He’s never heard of this building, never saw King Kong, etc. Does the picture provide enough evidence to prove that the building exists? No, because it could have been drawn by a good artist and simply be a product of the artist’s imagination. Even if Jim knows that the artist always paints from his life experiences and is a good painter, he might have enough evidence to convincingly argue that the building exists. This is what Descartes means when he says that God is what presents information to our senses for experience and that God can be trusted.

Now let’s look at ’s conclusions: knowledge cannot rely on any form of correspondence with either some external “reality” or even some internal belief. Truth is nothing but an agreed-upon custom. So, let’s imagine Steve takes Terry to a baseball game, but Terry is totally ignorant of this game called “baseball” and Steve keeps him in the dark. As Terry watches the events unfold during the first inning, he will come to the conclusion that each inning will run in the same predictable fashion (one team hits the ball with the stick and runs around the track of dirt touching the white bags on the ground while the other team tries to touch that guy with the ball he just hit, etc). But, Terry has no sufficient proof that this will continue. This is analogous to Hume’s dilemma (above).
So now, we can bring in . His response is simple: if our mind uses rules to process our experiences and join them together, then we can be certain that the regularities will always occur in “reality.” To return to our analogies, it would be like Jim going to New York City and finding the city archives (without ever seeing the Empire State Building) and finding in the archives the blueprints for a building titled “Empire State Building.” Those blueprints are a set of rules for creating such a building, so as long as Jim knows that they have been used, then he can be sure that there is a building that resembles those blueprints. There is an expectation that if there are a set of rules for the creation of something and that those rules have been enacted at least once, then there should be that particular product. With Terry, let’s imagine now that Steve explains to Terry that they are at a baseball game. Because games have rules, Terry is confident that the remaining innings will occur in roughly the same fashion.

Kant spends the majority of his time in the Critique of Pure Reason developing these ideas and discovering the rules by which the mind processes and unifies experiences into a coherent whole. How so? All humans are roughly equal in abilities when it comes to experience and knowledge–a regularity. Furthermore, humans do agree that green is green, so there must be a common set of experiences that humans do process roughly the same. Let’s label this set of experiences phenomena. By tracing what occurs when the mind experiences something in the phenomenal world of experience, Kant argues that there is a non-physical aspect of humans that does this processing. Let’s label that area noumena. This is where the self (i.e. one’s mind) exists and processes experiences. The pathway that this occurs is through the usage of rules, what Kant labels judgments of perception and judgments of experience. These are first filtered through what Kant calls the pure (read noumenal, not clean) categories of understanding. It is quite likely that other types of beings have different processes, so this isn’t something universal and across the board. These rules and pathways can only apply to things experienced, but there’s one shortcoming: one cannot experience any pure (again, noumenal) thing. These are the things in themselves (Ding-an-sich) and are always experienced through the phenomenal categories first.

After Kant

There were a few differences with those who followed after Kant, namely and . Hegel sought to remove the limit of knowing things in themselves. His arguments were based on what he termed Absolute Knowledge, which is to be seen not as some form of omniscience but rather as an understanding of self-understanding, (introspective) reflection, and understanding that the object of knowledge is also a subject understanding oneself. In this way, Hegel argues that one can actually know and experience things in themselves. Kierkegaard takes a different route and stands against Hegel’s interpretation of Kant while also inserting his own view of faith into it. Kierkegaard argues that all knowledge is grounded in the ethical–that is, knowledge is itself ethical and rooted in ethics and morality. While both of these derivatives of Kant have some ground, they have been largely ignored by subsequent epistemology (and only there).

Technorati Tags: , , , , , ,

Upgrade

If you haven’t noticed, I’ve uploaded a new look to the blog. Behind that, though, is a major overhaul of the code, including upgrading to the latest-and-greatest of Wordpress plugins. Yet, before I went live, I did all of the work under the control of a local Subversion repository….and it was beneficial. With a total of 90 commits logged (many were one and two line edits), I feel confident in saying that everything here plays nicely. I’ve gotten rid of the small ad at the bottom, as it was relatively worthless. Also removed were the stats trackers (Google Analytics and Performancing Metrics). They worked nicely when they worked, but the plugins seemed to still be bugtastic and overkill. So, here’s the version 3.1 of impleri.net….enjoy.

No Tags

Atheism

Well, it’s way old now, but the Rational Response Squad wants people to “blaspheme” — “deny the holy spirit” and/or commit the “unforgivable sin.” Since I don’t have a webcam to do this via video, I have to settle for text. God is dead…and we have killed him. That’s what Nietzsche’s madman declared long ago. Well, even so, I still “believe in God.” It’s just that I don’t believe in a semi-physical being that’s “out there” who needs some kind of consolation because some don’t believe in “him.” Here’s a problem with the RRS’s reasoning: first, this “unforgivable sin” has still been forgiven. Sorry, but the Christian faith I hold to says that God dies for all sins–not some or a few or all for those who believe. It’s “unforgivable” in that a “normal, rational” wouldn’t forgive it, but that doesn’t change the text that says that it was. I see it as a friend betraying another and the first–who shouldn’t forgive the second–still forgives him anyway (think of that arc in the series Angel where Wesley betrays Angel). Secondly, I want to clarify my first response in that “God is dead.” It’s not that God was some being with a lifespan who died of old age…or even some kind of being that can be killed. What Nietzsche meant is that what was the prevalent conception of God (which is still prevalent today) has been killed….AND that we did it (with our increasing individualism and subjectivism)…AND that he was a bit early (advice: go grab a copy of The Gay Science and re-read that passage…I think it was section 129, but I can be off by a few and I’m too lazy to check). Thirdly, doing this around a church building is just plain stupid. Nobody at Mardi Gras (which is 20 Feb this year) likes the over-zealous “evangelists” running about proclaiming how everyone there is going to hell. Let’s not stoop to that same level if we wish to be called “rational.” I’m sorry, but so far, it doesn’t look like the RRS is rationally responding to anything. It’s all emotional.

No Tags

Mythic Proportions

I now have a fully dedicated box running in my living room. Here’s its lovely specs: dual Hauppauge PVR-150 for input (that’s two channels simultaneously) with a remote, a 256 Mb PCIe 16x video card with component video out to my TV. The box does has a hi-def 7.1 sound system, but I don’t have a sound system to handle it, so it’s just doing the regular two-channel audio. The box runs on an Pentium 4 3.06 GHz (With HyperThreading) and a half gig of DDR2 RAM (running single-channel). It has a 250Gb SATA drive for storage (approximately 200 hours). Also, it boasts an 18x DVD burner for ripping and burning DVDs thanks to MythDVD and MythArchive. The system itself runs on 6.10 and MythTV 0.20 with a working lirc input for remote control usage. Also, I have MythWeb installed on the box for (secured) remote access.
In addition to being a dedicated Myth box (frontend for the living room and only backend), the box also doubles as the new server through . I need to finish moving everything over to it (as it is replacing my normal computer as the main outlet for the web because it is hard-wired onto the network (hence, no problems with wifi), but it will contain all of my public repositories, as well as hosting working copies of all of my projects. Internally, it will be my testing server for my offline replicas of the sites that I maintain (for backups and testing). I have also configured everything so that my own personal computer (which is running a Debian install) also serves as a frontend to the MythTV box, so that I can access and watch things from the Myth box.
Lastly, I have wired my living room electronics so that there is an additional cable connection to my VCR and TV, allowing me to record 2 channels on the Myth box, while also watching or recording a third on the VCR. I may re-wire it so that I can have a fourth output to the TV so that I can record to the VCR while also watching on the TV. Yes, that’s major TV watching, which I doubt I’ll never do, but it’s a possibility, mainly for completeness’s sake.

Technorati Tags: , , ,

February 2007
S M T W T F S
« Jan   Mar »
 123
45678910
11121314151617
18192021222324
25262728  

Save