public_html/GUESTBOO.KPL010064400017520000001000000321150712642301000162210ustar00matthewsother00001460002002#!/usr/local/bin/perl # ------------------------------------------------------------------------- # GUESTBOO.KPL - Based on the HTML file, E:\Arch543p\addguest.html # Perl CGI generated using Guest*Star - to process the input from a WWW Form # E_mail Technical support from : support@webgenie.com # ------------------------------------------------------------------------- # WARNING: Alterations to this file must be done very carefully. # Any introduced error will render this script useless. # Also, # 1. Transfer this file to the WWW server in ASCII mode. # 2. Set the CGI file protection to world read, execute (e.g. chmod 755 filename) # 3. Set the HTML DIRECTORY protection to world read, write, execute (e.g. chmod 777 dirname) # ------------------------------------------------------------------------- # Test the script on the server: # As a quick test, simply type the name of this file as a shell command # and see if any compilation error is reported. If none, try your HTML file to record a guest book entry. # ------------------------------------------------------------------------- # Start of the Perl script: # ------------------------------------------------------------------------- # Procedure to write guestlog sub do_writelog { #Get the dir and filename to create the guestbook log file $guestbook_dir = $ENV{'HTTP_REFERER'}; $htdocs = $ENV{'DOCUMENT_ROOT'}; @path = split (/\//, "$guestbook_dir"); pop @path; # Remove the referring HTML filename $gb_dir = pop @path; #Get the dirname. May be used later push (@path, "$gb_dir"); #Put it back # Remove the base HREF, http://www.company.com/, which is represented by a singe forward slash (/) shift @path; shift @path; shift @path; $guestlog_dir = join ("/", @path); #Only the relative pathname to browse the HTML $guestlog_dir = "$htdocs/$guestlog_dir"; $img_dir = join ("/", @path); $img_dir = "/$img_dir"; push (@path, "guestlog.html"); # Add the guestlog filename $guestlog_html = join ("/", @path); #Only the relative pathname to browse the HTML $guestlog_html = "/$guestlog_html"; #Add a leading slash to complete the filename $guestbook = "$guestlog_dir/guestlog.html"; #The full pathname to write the HTML $tmplog = "$guestlog_dir/gbtmp.log"; $mailfile = "$guestlog_dir/gbmail.txt"; $gbtxtfile = "$guestlog_dir/guestlog.txt"; open(TMPINP,"<$guestbook"); open(TMPOUT,">$tmplog"); $count = ; if (!$count) { print "$guestbook does not exist.
Creating it with the first entry.
"; #Check if the dir is writeable open (TMP, ">$guestbook"); print TMP "0\n"; close (TMP); open (TMP, "<$guestbook"); $line = ; close (TMP); if ($line eq "0\n") { print "Dir is writeable
"; unlink ($guestbook); } else { # Try setting the prot with chmod print "Directory is NOT writeable.
Attempting to set the correct permissions
"; `/usr/bin/chmod 777 $guestlog_dir`; $err = $?; if ($err) { `/bin/chmod 777 $guestlog_dir`; $err = $?; if ($err) { $chmod = `/usr/bin/whereis chmod`; $chmod =~ s/\n//g; `$chmod 777 $guestlog_dir`; $err = $?; if ($err) { $chmod = `/usr/ucb/whereis chmod`; $chmod =~ s/\n//g; `$chmod 777 $guestlog_dir`; $err = $?; if ($err) # Giveup { print "Unable to set directory protections. Please set it manually as follows:\n"; print "
\n"; exit (0); } } } } } } # $count = $count + 1; while ($line = ) { print TMPOUT "$line"; } close (TMPINP); close (TMPOUT); unlink ($guestbook); open(TLOG,">$guestbook"); print TLOG "$count\n"; open(TFILE,">$mailfile"); open(PFILE,">>$gbtxtfile"); # >>>>> Start of User configurable section 1 of 2 >>>>> if ($Visitor_Name eq "") { $Visitor_Name = "No_Name"; } if ($Email eq "") { $Email = "No_Address"; } print TFILE "From: \"$Visitor_Name\" <$Email>\n"; print TFILE "To: $mailreceiver \n"; print TFILE "Subject: \"\" \n"; print TLOG "
\n"; print PFILE "-----------------------\n"; if ($city ne "") { print TLOG "\n
city= "; @words = split (/ /, "$city"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "city= $city\n"; print PFILE "city= $city\n"; } if ($state ne "") { print TLOG "\n
state= "; @words = split (/ /, "$state"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "state= $state\n"; print PFILE "state= $state\n"; } if ($country ne "") { print TLOG "\n
country= "; @words = split (/ /, "$country"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "country= $country\n"; print PFILE "country= $country\n"; } if ($comments ne "") { print TLOG "\n
comments= "; @words = split (/ /, "$comments"); while (@words) { $word = shift @words; if ($word =~ /\b\w*@\w*./) { print TLOG "$word"; } else { if ($word =~ m|http://|) { print TLOG "$word"; } else { if ($word =~ m|www.|) { print TLOG "$word"; } else { print TLOG "$word "; } } } } print TFILE "comments= $comments\n"; print PFILE "comments= $comments\n"; } print TLOG "
Visitor is from:
$ENV{'REMOTE_HOST'} at $ProcessTime\n"; print TFILE "Visitor is from $ENV{'REMOTE_HOST'} at $ProcessTime\n"; print PFILE "Visitor is from $ENV{'REMOTE_HOST'} at $ProcessTime\n"; close(PFILE); open(TMPOUT,"<$tmplog"); while ($line = ) { print TLOG "$line"; } close (TMPOUT); unlink ("$tmplog"); close (TLOG); close(TFILE); `/usr/lib/sendmail $mailreceiver < $mailfile`; $mailstatus = $?; unlink("$mailfile"); } # <<<<< End of User configurable section <<<<< # >>>>> Do not alter anything in the following section >>>>> # convert %20 to a space and other %dd to a character sub reformat { local($tmp) = $_[0] ; $tmp =~ s/\+/ /g ; while ($tmp =~ /%([0-9A-Fa-f][0-9A-Fa-f])/) { $num = $1; $dec = hex($num); $chr = pack("c",$dec); $chr =~ s/&/and/g; # Replace if it is the & char. $tmp =~ s/%$num/$chr/g; } return($tmp); } sub vcv { $cv = 0; @edt = (20, 2); $sysdate = `/bin/date`; $err = $?; if ($err) { $sysdate = `/usr/bin/date`; $err = $?; if ($err) { #Give up safe $cv = 1; return; } } @mnt = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); @msg = ("CGI", "on", "Expires", "This", "Expired", "Has"); @sd0 = split (/ /, "$sysdate"); $j=0; print "
@msg[3] @msg[0] @msg[2] @msg[1] @mnt[@edt[1]] @edt[0]

"; #Find the current month while (@sd0[1] ne @mnt[$j] && $j <= 11) #If @sd0[1] == @mnt[$j] Then @rd[2]/4 must be == $j { $j++; } if ($j == @edt[1]) { #CGI expires Same month. Then the current date must be le recorded date if (@sd0[2] <= @edt[0]) { $cv = 1; } } else # Different month. If it is $j + 1 { if ($j == 11) {$j = 0;} else { $j++; } if ($j == @edt[1]) { #CGI expires Next month. Then the current date must be gt recorded date if (@sd0[2] >= @edt[0]) { $cv = 1; } } } } # Main body of the script sub do_main { $guestbookPage = $ENV{'HTTP_REFERER'}; $cl = $ENV{'CONTENT_LENGTH'}; print "Content-type: text/html\n\n"; &vcv; if ($cl > 0) { read(STDIN, $_, $cl); $_ .= "&"; # Append an & char so that the last item is not ignored $pquery = &reformat($_); while ($pquery =~ /city=([^&]*)&/) { if (!$city) { $city = $1; } else { $city = $city."\n ".$1; } $pquery =~ s/city=([^&]*)//; } $city = &reformat($city); while ($pquery =~ /state=([^&]*)&/) { if (!$state) { $state = $1; } else { $state = $state."\n ".$1; } $pquery =~ s/state=([^&]*)//; } $state = &reformat($state); while ($pquery =~ /country=([^&]*)&/) { if (!$country) { $country = $1; } else { $country = $country."\n ".$1; } $pquery =~ s/country=([^&]*)//; } $country = &reformat($country); while ($pquery =~ /comments=([^&]*)&/) { if (!$comments) { $comments = $1; } else { $comments = $comments."\n ".$1; } $pquery =~ s/comments=([^&]*)//; } $comments = &reformat($comments); # <<<<< Do not alter anything in the above section <<<<< # >>>>> Start of User configurable section 2 of 2 >>>>> print "\n"; print "Acknowledgement\n"; print "\n"; print "\n"; print "


\n"; print "

Acknowledgement

\n"; print "Thank you for signing my guest book

\n"; print "


\n"; &do_writelog; if ($mailstatus == 0) { print "

Guestbook entry successfully added.

\n"; } else { print "

An error occurred when sending the mail.


\n"; print "Please try again and/or write to $mailreceiver to notify the error.
\n"; } print "

Form accessed at $ProcessTime from $ENV{'REMOTE_HOST'}\n"; # Although the next line can be removed without causing an error, we request you to kindly retain it. print "


This guestbook and its CGI were auto-generated by Guest*Star\n"; print "\n"; } } # <<<<< End of User configurable section 2 of 2 <<<<< $misterwolf = `/bin/date`; $misterwolf =~ s/\n//g ; $ProcessTime = `/bin/date`; $ProcessTime =~ s/\n//g ; $mailreceiver = "arch\543p@pratt.edu"; $|=1; eval '&do_main'; sleep(1); # ***** End of the Perl Script file. ***** { print "Unable to set directory protections. Please set it manually as follows:
    "; print "
  • Telnet to the webserver and login with your username and password.\n"; print "
  • Change dir to where the guestbook.html resides. (e.g. cd public_html/guestbook_dir).\n"; print "
  • Type chmod 777 ../guestbook_dir.\n"; public_html/Italian_passport.html010064400017520000001000000016560712642301100206330ustar00matthewsother00001460002002 Italian Passport

    Document 1:

    The Italian Passport

     

    public_html/Neta.html010064400017520000001000000332020712642301100161760ustar00matthewsother00001460002002 Reactivating Geometry
         

     

    Reactivating Geometry
    by Neta Katz

     

    PART ONE:

    ".... Is a science like geometry possible? How as a systematic, endlessly growing stratified structure of idealities, can it maintain its original meaningfulness through living reactivability, if its cognitive thinking is supposed to produce something new without being able to reactivate the previous levels of knowledge back to the first?"

    What Husserl is asking is where does one begin, where does one start in the challenge of understanding geometry? How far back do you have to go to make geometry self evident? Husserl suggests to go to the origin of geometry, to find out how and for what purpose geometry developed, but in doing so, Husserl cautions us from the historicism that doesn't go beyond the usual facts. The reactivating of geometry must include in it a personal vision, because it "involves a lively productively advancing formation of meaning." Geometry, Husserl says, "is not a handed down ready made in the form of documented sentences." To be meaningful, geometry must have I think that this means that there is room in geometry for interpretation. Serres does what Husserl suggests, by realizing that "beneath the theorem of Thales (involving the pyramids) a corps was hurried." Serres connects two parallel lines by bringing ritual back in to the history of geometry. Husserl brings ritual back to the act of trying to understand geometry, in the present. He writes, "it is something special...to have the intention to explicate, to engage in the activity which articulates what has been read, extracting one by one, in separation from what has been vaguely, passively received as a unity, the elements of meaning, thus bringing the total validity to active performance in a new way on the basis of the individual validities. What was a passive meaning - pattern has now become one constructed through active production. This activity is a peculiar sort of self evidence; the structure arising out of it is in the mode of having been originally produced." (Later in this paper, this will become the definition for drawing, it also sound to me like a definition of abstracting (?)). So in order to reactivate geometry, one must go to the absolute origin of it but still somehow "originify" the past by a kind of invention. Geometry, I think, exists only if we are conscious of it, and for one to be wakefully conscious of geometry, geometry must touch on more levels of our lives than just logic. How does geometry mean more? Could the deaths of Hippasus of Metapontum, Parmenides, and Theaetetus (which Serres suggests were related to the crisis of irrational numbers) mean more to the development, and present existence of geometry than we are ready to admit? If so, should we document more closely the deaths of those flirting with the fifth postulate?

     

    PART TWO:

    Lets go to Euclid's five postulates written in about 300 B.C.

    Let the following be postulated:

    1. To draw a straight line from any point to any point.
    2. To produce a finite straight line continuously in a straight line.
    3. To describe a circle with any center and any distance
    4. That all right angles are equal to each other.
    5. That, if a straight line falling on two straight lines makes the interior angles on same line less than two right angles, the two straight lines, if produced indefinitely, meet on that side on which are the angles less than two right angles.

     

     

    In other words, through a point outside a given line it is possible to draw only one line that is parallel to the given line. Euclid wasn't satisfied with the fifth postulate because straight lines were infinite. Many struggled to prove the fifth postulate (the new crisis). The elder Bolyai, in a letter written in 1820, warned his son against any obsessive interest in postulate five. "You should detest it as much as lewd intercourse, it can deprive you of all your leisure, your health, your rest, and the whole happiness of your life." But young Bolyai did work on the fifth postulate and he wrote his father, "I was astounded...out of nothing I have created a strange new world." What led him to this strange new world was assuming that the fifth postulate was wrong. The way that I understand it is that Bolyai and those who followed him were reading geometry three dimensionally, and so those two lines that are on the side on which the angles are less than two right angles, don't have to meet (one can be above the other).

     

    PART THREE:

    What does it take to visualize non-Euclidean geometry? We must try to visualize non-Euclidean geometry within the three dimensional domain (the two dimensional diagram doesn't allow for point of view (we are not talking about perspective), in the three dimensional, choosing a point of view is necessary). Reichenbach says that we need to adjust our conception of congruence because "congruence is a matter of definition." "The adjustment necessary for visualization of a curved space consists in projecting congruence differently into three dimensional space." Basically the process that I see that the Euclidean mind should go through to see non - Euclidean is as follows: say something "wrong" about a "fact" and now find a way to project three dimensionally in such a way that makes the "wrong" possible, with out having to change the original "fact", or diagram. Euclidean geometry assumes a certain definition of congruence - don't, and you're in the non-Euclidean.

     

    Three Models:

    1. Bolyai – Lobachevsky

     
         
      2. Lines: Length
         
    3. Torus: inbetweeness  

     

    The postulate that now replaces Euclid’s fifth postulate is, that through any point not on a given straight line, an infinite number of parallels, to the given line can be drawn. That is, that these lines will never have to meet (later the mathematician Riemann showed these lines will always meet because there are no parallels).

     

    PART FOUR:

    It is possible to visualize non - Euclidean geometry, so the question that I have now is how can one draw, or can one draw non - Euclidean geometry? If Poincare write that non - Euclidean geometry is about "the movement of variable solids", and the putting together of different perspectives of the same body, seeing several points of view so that "the object and the sensory being considered ... form a single body", can this geometry be frozen, can/should it be drawn? In the true sense of the word to draw (as in water from a well, or as in Husserl's reactivation), yes, because to draw means to reactivate. So, it is possible to draw this geometry if the viewer reactivates the drawing. But, this drawing as an end in itself is completely meaningless. The drawing must be drawn.

    I think that Cubism was an attempt at abandoning Euclidean geometry, but by reassembling fragments according to classical geometric principles. Still, in my opinion, the cubist painting assists us in acting non-Euclideanly.

     

    PART FIVE:

    What does it mean to act non-Euclideanly? Vertov wrote: " I am the cinema eye, I am a mechanical eye. I, a machine, I can show you the world as only I can see it ... I ascend with aeroplanes, I fall and rise together with falling bodies." This, to me is a description of non-Euclidean action - the "I" plays a crucial role. Engaging in non-Euclidean geometry, or in a drawing - activating these, requires a point of view, an "I". Point of view can't be completely objective. Euclidean geometry, as I understand it, doesn't require more than one "flat" point of view, there is only one way to read it. Lines that look like they meet, do meet. Non -Euclidean geometry, because it moves, demands of us to be "I"s, to be narcissistic. Merleau - Ponty says, "since the seer is caught up in what he sees: there is a fundamental narcissism of all vision. I am not sure that all vision is narcissistic, (or equally narcissistic) but, Drawing and reactivating has to be, with out "I", non - Euclidean geometry wouldn't exist.

     

    1996 Neta Katz

    public_html/Wren.html010064400017520000001000000424710712642301100162320ustar00matthewsother00001460002002 Extended Bodies in Space
         

     

    Extended Bodies in Space

    The Figure Skating Event

    by Lawrence McDonald
    Fall 1996

     

    Extension of the body in space

    A single shower of glittering spray, all that remains of the angels great fall. Down deep, a frozen descent, a realm of ice, a white void waiting to be conquered, waiting to be ruled. She ran her fingers along the black laces, smoothing them out perfectly,. Each end precisely twined through the holes, no hesitation. Like the most beautiful Lucifer, his image vanishing beneath a cascade of scales and coils that became his flesh, she too descended into new form. No sparkles, no vibrant hues, no medal winning smile with gleaming white inside. Black leather, bare legs. She set out to conquer the ice, to make it more than just a canvas, to make it her slave, a landscape that would absorb the slices, the grooves, the digs of her blades and would yield with each swift turn and spin. She would not offer it the devotion of grace, only that passion that erupts from some dark place in each of us...

    "Chaos does not exist" asserts Deleuze; it is an abstraction, it is inseparable from a scene which makes something - something rather than nothing - emerge from it. Chaos would be a pure many, a purely disjunctive diversity, while the something is a net a pre-given unity, but instead the indefinite article that designates a certain singularity. a or an, that does not fix the identity of the noun modified. How can the many become the one? A screen has to be placed in-between them.

     

    The Interface with Timaeus

    ...She breathed in deep at the gate. The cool air rushing down into her lungs and she felt it course through her body. She launched out onto the ice, a flawless, seamless beauty; so pure. It welcomed her to the challenge. Her blades cut sweetly and smoothly through the first slick layer, was flying to the center. In the heart of the rink, she dug her heel lightly into the ice; a hold that fixed her entire body still. First waming. She in turn was given her own. The buckles and straps that held the leather fragment against her breasts and groin were icy against her skin. But anticipation began to thaw her. The crowd waited silently, oddly. They watched a mistress, hair teased wildly, eyes rimmed again and again in thick black lines, her lips, thick and vicious red. A leather teddy wrapped tight, almost cruelly around the perfect, leanest body. DeRant! Almost dating the crowd to watch. A woman with black skates, more a raven than any preffy peacock that had previously skirted so daintily along the ice.

    Leibniz has been able to ascribe several approximations to chaos. A cosmological approximation, chaos is the sum of all possibilities, all individual essences in so far as each tends to exist on its own account; but the screen only allows for the best combination of possibilities, or compossibles.

     

    Leibniz's Monads Confront the Screen

    She sensed the beat, heard it calling somewhere in her mind, instigating the power in her limbs and the madness in her imagination. She breathed in, knowing at the moment of exhale the beat would come and urge her on and on until the ice was a tatter of dust and shards and cuts and grooves. The bass was deep, she felt it kicking in her heart and began her trial. She gained momentum slicing around the corners in sharp and angry swift movements. Leaping up into the air, she spun and twisted wildly, tightly like some maniac left crazed in his straitjacket.

    Chaos is composed of elements, each of which is extended over the following ones. This notion of extension is the first component of both Leibniz and Whitehead's definition of the event. "Extension exists when one element is stretched over the following ones such that it is a whole and the following elements are its parts."(Deleuze, p.77) This extension of parts to whole forms an infinite series that does not contain a final term nor a limit.

    "Time and Space are not limits but abstract coordinates of all series, that are themselves in extension, the minute the second the tenth of a second."(Deleuze, p77) This now leads us to the properties of extensive series in the event, these too are in extension. But, extensive series, when saturated to there limits offer relations and conjunctions. These are no longer extensions! It has become something rather than nothing, but also this rather than that: no longer the indefinite article but the demonstrative pronoun. A demonstrative pronoun specifies or singles out the person or thing referred to: the demonstrative pronouns these and…that. The images below can be seen in this light as temporal sections of an event which contain intrinsic properties and characteristics unique to that particular moment -yet born in fluvia.

       

       

     

     

    PREHENSION DATUMS

     

     

    The Nexus of Prehension and The Individual

    The crowd's whoops and whoas came and then descended into applause as she deliberately crashed her blades back into the ice. And then up again, thrashing and rigid, she beat her arms against the cold air. She caught a glimpse of a spectator's face, awe, surprise; in fact, confusion. She was attacking the ice, she was beating it down in front of their wondering faces, breaking their expectations of some pink lady with the grace of elegance and stance. She was raw energy, it surged through her muscles making them tight as she raced along. She leapt up, her legs kicking out. All of the power reaching out and out from the blades which she brought down and across on the ice. And there she looped and spun, bringing her body low approaching the challenger face to face and then brought herself back up. She brought her arms from above, flexed with fists clenched and sent them crashing down as she raced again...

    The individual is creativity according to Whitehead. It is the formation of the new. It is no longer the indefinite article nor the demonstrative pronoun but a "personal mood." The individual is a concrescence of elements. Further it is a prehensions: "An element is the given, the datum of another element that prehends it by degrees. Prehension is individual unity. The vector of prehension moves from the world to the subject, from the prehended datum to the prehending one. Thus, the data of prehension are public elements, while the subject is the intimate or private that expresses intimacy & individuality. But, the datum, is itself a preexisting or coexisting prehension, such that all prehensions are prehension of prehension (See attached video stills). The event thus becomes a nexus of prehension. I.e. the entire sequence played as one continuous movement. Each new prehension becomes a datum. It becomes public." (Deleuze, p.78) We can see now that the event is the objectification of one prehension and the subjectification of another (the subjective intent/contemplation/planning of the next move, however slight) it is at once public and private -THE SKATER THINKS, THE AUDIENCE GASPS.

     

    Teleological Records

    . . . The bass and the beats pounded so loudly now, they bled into her ears, so profusely, she could hear nothing else. So loud, it became all she saw and felt and she no longer controlled her body. It was all bass and fury that moved her. She was blind beyond thought Only movement, simply spins and leaps and blades, she was the device of something higher, used to etch a bit of fire and insanity into the ice. She was numb, almost out of body, carried away by the passion. . .

    Beyond the video still there is another element to the event, the Record. The record hear is a direct mapping of the skaters movements. It is the impressions and scratches left on the ice. It is an example of a physical prehension come eternal object. The scratch is a trace of what has been born in fluvia, a pure virtuality actualized in prehensions/datum's and recorded as eternal artifact and record. Figures, temporal sections and mapped traces on ice..

    "determine extension and are inseparable from the process of actualization or realization into which they enter and gain a limited permanence, within the limits of the flux which creates them, or the prehensions which actualize them. They are eternal objects that have ceased becoming incarnate, just as a new thing, it has found its condition."(Deleuze, p.). The scratches represent a measurement. They are the intentional transmission of information onto the ice, albeit, a byproduct of the event, nevertheless these vectors of prehension are teleological, that is, they had a purpose and where brought about not simply by a causal relationship, but as man made artifact. Each skater, the identifiable source, will know his own record, the variance of different records is infinite.

    . . . Then, agony. In full leap, in mid air, the light flooded into her eyes, hundreds of waiting eyes melted into her own. The beat had left her body, and floated somewhere above her. Her limbs felt almost sectioned off, parts amputated and sewn back in new places. Her blades, as if her claws, somehow detached from herself. The impending white god rushed faster and faster at her, its face absorbing all sense; devouring her as it gleamed its revenge for the blasphemy. Her body broke against it The crowd gasped, their voices drowning out the last of the beat The dark maiden acknowledged her defeat in front of this court's curiosity and concern. The thought of another day came in the instance before black out as peacocks and pink ladies alike glided mellifluous to lift her dark carcass from the ice.

     

    1996 Lawrence McDonald

    es such that it is a whole and the following elements are its parts."(Deleuze, p.77) This extension of parts to whole forms an infinite series that does not contain a final term nor a limit. vti_timelastmodified:TR|20 Feb 1997 06:14:28 -0500 public_html/_vti_cnf/anicn281322.gif010064400017520000001000000003020712642300200204440ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 00:01:57 +0200 vti_timelastmodified:TR|14 Feb 1997 00:01:57 +0200 public_html/_vti_cnf/background.jpg010064400017520000001000000003020712642300200210240ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:56 +0200 public_html/_vti_cnf/Ball7271.gif010064400017520000001000000003020712642300200200650ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/Berkeley.html010064400017520000001000000023060712642300200206410ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 07:04:08 -0500 vti_cachedtitle:SR|Criticism of Newton's Doctrines on Space vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|http://acnet.pratt.edu/~arch543p/help/Berkeley.html K|Berkeley.html K|Berkeley.html K|Berkeley.html K|Berkeley.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 07:04:05 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 07:04:05 -0500 public_html/_vti_cnf/biology.html010064400017520000001000000013040712642300200205400ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Biology vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|biology.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/bkgrn1622C3.gif010064400017520000001000000003020712642300200204760ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 23:42:01 +0200 vti_timelastmodified:TR|13 Feb 1997 23:42:01 +0200 public_html/_vti_cnf/bkgrn168241.gif010064400017520000001000000003020712642300300204640ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 22:40:51 +0200 vti_timelastmodified:TR|13 Feb 1997 22:40:51 +0200 public_html/_vti_cnf/bkgrn6D252.gif010064400017520000001000000003200712642300300204210ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|miatopia vti_modifiedby:SR|miatopia vti_timecreated:TR|14 Feb 1997 02:43:08 +0200 vti_timelastmodified:TR|14 Feb 1997 02:43:08 +0200 public_html/_vti_cnf/Blue_BallD163.gif010064400017520000001000000003020712642300300210520ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 03:52:07 -0500 vti_timelastmodified:TR|14 Feb 1997 03:52:07 -0500 public_html/_vti_cnf/Blue_Line21F2.gif010064400017520000001000000003020712642300300210640ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 03:52:12 -0500 vti_timelastmodified:TR|14 Feb 1997 03:52:12 -0500 public_html/_vti_cnf/bureau.tif010064400017520000001000000003020712642300300201730ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:59 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:59 +0200 public_html/_vti_cnf/bureau_diploma.html010064400017520000001000000007310712642300300220700ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|Bureau Diploma vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif S|images/bureau.GIF vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 18:57:49 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:57:49 -0500 public_html/_vti_cnf/Burgin.html010064400017520000001000000020760712642300300203320ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 07:05:26 -0500 vti_cachedtitle:SR|Geometry and Abjection vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 07:05:23 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 07:05:23 -0500 public_html/_vti_cnf/BurstaniA024.gif010064400017520000001000000003020712642300300210110ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/card.GIF010064400017520000001000000003020712642300300174440ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/card.JPG010064400017520000001000000003020712642300300174570ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:57 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:57 +0200 public_html/_vti_cnf/CHPT1.HTM010064400017520000001000000006350712642300300174060ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedlinkinfo:VX|K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM K|CHPT1.HTM vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/CHPT2.HTM010064400017520000001000000007150712642300300174060ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedlinkinfo:VX|K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM K|CHPT2.HTM vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/CHPT3.HTM010064400017520000001000000006350712642300300174100ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedlinkinfo:VX|K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM K|CHPT3.HTM vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/CHRONO.HTM010064400017520000001000000013320712642300300175520ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:56 +0200 vti_cachedtitle:SR|a Superstructuralist Chronology vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|CHRONO.HTM H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:55 +0200 public_html/_vti_cnf/Craig.html010064400017520000001000000022330712642300300201240ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Craig Bacheller vti_cacheddtm:TX|21 Feb 1997 20:54:00 -0500 vti_cachedtitle:SR|Craig Bacheller vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html vti_modifiedby:SR|? vti_timecreated:TR|17 Feb 1997 03:27:39 -0500 vti_nexttolasttimemodified:TR|19 Feb 1997 20:59:48 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:26:59 -0500 public_html/_vti_cnf/CustTags.tag010064400017520000001000000003020712642300300204360ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/document1.html010064400017520000001000000007570712642300300210070ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|Document 1 vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif S|images/passport1.GIF S|images/passport2.GIF vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 18:47:28 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:47:28 -0500 public_html/_vti_cnf/ethics.html010064400017520000001000000013020712642300300203520ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Ethics vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|ethics.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 thics.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +020public_html/_vti_cnf/frames4.htm010064400017520000001000000005210712642300300202620ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 01:59:22 -0500 vti_cachedtitle:SR|Frameset 4 vti_cachedlinkinfo:VX|F|logo.htm F|toc.htm F|index.html vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 01:59:22 -0500 public_html/_vti_cnf/frames4.html010064400017520000001000000003350712642300300204410ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 04:03:34 -0500 vti_cachedtitle:SR|Frameset 4 vti_cachedlinkinfo:VX|F|logo.htm F|toc.htm F|index.html vti_cachedbodystyle:SR| public_html/_vti_cnf/guestbook.html010064400017520000001000000024340712642300300211040ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect addguest.html 2 0 99 22 vti_botmap3:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Comments vti_cacheddtm:TX|21 Feb 1997 20:54:02 -0500 vti_cachedtitle:SR|Comments vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html M|images/add.GIF L|addguest.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html S|images/Blue_Line.gif H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|20 Feb 1997 06:14:14 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|20 Feb 1997 06:17:08 -0500 public_html/_vti_cnf/guestbook.pl.txt010064400017520000001000000003020712642300300213610ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/guestlog.html010064400017520000001000000006100712642300300207250ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|20 Feb 1997 05:20:58 -0500 vti_cachedtitle:SR|Guestbook Short Log vti_cachedlinkinfo:VX| vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|13 Feb 1997 10:35:58 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|20 Feb 1997 05:20:56 -0500 public_html/_vti_cnf/head_trauma_clinic.html010064400017520000001000000023740712642300300227000ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Head Trauma Clinic vti_cacheddtm:TX|21 Feb 1997 20:53:56 -0500 vti_cachedtitle:SR|Head Trauma Clinic vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html K|head_trauma_clinic.html K|head_trauma_clinic.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|17 Feb 1997 22:33:31 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:26:29 -0500 public_html/_vti_cnf/help.html010064400017520000001000000040050712642300300200260ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Help vti_cacheddtm:TX|21 Feb 1997 20:53:56 -0500 vti_cachedtitle:SR|Help vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|http://acnet.pratt.edu/~arch543p/addguest.html H|file:///help/reference_pages.html H|http://humanitas.ucsb.edu/shuttle/philo.html H|http://www.utm.edu/research/iep/p/parmenid.htm H|http://www.io.org/~randall/Parmenides/Parm-comment.html H|http://sun.soci.niu.edu/~phildept/Dye/Parmenides.html H|http://www.io.org/~randall/Parmenides/Parmenides.html H|http://www.dm.uniba.it/psiche/bas3/node3.html H|http://www.shu.edu/~wachsmut/reals/history/zeno.html H|http://www-groups.dcs.st-andrews.ac.uk/~history/Mathematicians/Euclid.html H|http://www-groups.dcs.st-andrews.ac.uk/~history/HistTopics/Non-Euclidean_geometry.html H|http://www.geom.umn.edu//docs/research/ieee94/node12.html H|http://www-mitpress.mit.edu:80/City_of_Bits/contents.html H|http://www.lycos.com H|http://www.altavista.digital.com H|http://www.yahoo.com H|http://the-tech.mit.edu/Classics/ M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|19 Feb 1997 21:19:40 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|20 Feb 1997 01:33:46 -0500 public_html/_vti_cnf/HTACCESS.TXT010064400017520000001000000003020712642300300200020ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/HTPASSWD.TXT010064400017520000001000000003020712642300300200420ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/index for dbucsesc.html010064400017520000001000000010610712642300300225270ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|17 Feb 1997 06:39:56 -0500 vti_cachedtitle:SR|We have moved! vti_cachedlinkinfo:VX|S|images/background.gif H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:59 +0200 vti_nexttolasttimemodified:TR|13 Feb 1997 10:36:00 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|17 Feb 1997 06:39:55 -0500 public_html/_vti_cnf/INDEX.GIF010064400017520000001000000003020712642300400174030ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_timelastmodified:TR|13 Feb 1997 10:35:56 +0200 public_html/_vti_cnf/index.htm010064400017520000001000000020630712642300400200340ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:04 +0200 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|background.jpg S|card.jpg H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|/readings/Monod.html H|/help/Vico.html H|/readings/Monod.html H|outline.html H|/help/Cezanne.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/index.html010064400017520000001000000042670712642300400202200ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Paragone vti_cacheddtm:TX|21 Feb 1997 20:53:52 -0500 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html H|stage_manager.html H|help/history_of_mathematics.html H|help/art.html H|help/philosophy.html H|help/aesthetics.html H|help/ethics.html H|help/history_of_mathematics.html H|help/geometry.html H|help/physics.html H|help/biology.html H|help/sociology.html H|help/psychology.html H|help/literary_criticism.html H|help/political_science.html H|help/Friedman.html H|help/Merleau-Ponty.html H|causality.html H|help/philosophy.html H|help/phenomenology.html H|myth_of_essences.html H|help/language.html H|help/deconstruction.html H|help/materialism.html H|help/Barthes.html H|readings/origin_of_geometry.html H|head_trauma_clinic.html H|help/machine.html H|help/biology.html H|help/language.html H|outline.html H|readings/Monod.html H|readings/Monod.html H|help/Vico.html H|help/Cezanne.html H|who_am_I.html H|head_trauma_clinic.html H|head_trauma_clinic.html H|readings/Deleuze.html H|readings/Whitehead.html H|readings/Leibniz.html H|head_trauma_clinic.html K|projects.html S|images/Blue_Ball.gif H|stage_manager.html S|images/Blue_Ball.gif M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html S|images/Blue_Line.gif H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|21 Feb 1997 20:49:23 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 20:53:51 -0500 ml M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html H|stage_manager.html H|help/history_of_mathematics.html H|help/art.html H|help/philosophy.html H|help/aesthetics.html H|help/ethics.html H|help/history_of_mathematics.html H|help/geometry.html H|help/physics.html H|help/biology.html H|help/sociologpublic_html/_vti_cnf/index_for_dbucsesc.html010064400017520000001000000005560712642300400227360ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|17 Feb 1997 06:39:56 -0500 vti_cachedtitle:SR|We have moved! vti_cachedlinkinfo:VX|S|images/background.gif H|http://acnet.pratt.edu/~arch543p/ vti_cachedbodystyle:SR| public_html/_vti_cnf/indexnew.html010064400017520000001000000015140712642300400207220ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Introductory Remarks vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|indexnew.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ H|http://acnet.pratt.edu/~arch543p/mainpage.html H|http://acnet.pratt.edu/~arch543p/syllabus.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/intro.gif010064400017520000001000000003020712642300400200270ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 14:48:21 +0200 vti_timelastmodified:TR|13 Feb 1997 14:48:21 +0200 public_html/_vti_cnf/toc.htm010064400017520000001000000007430712642300400175150ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:04 +0200 vti_cachedtitle:SR|index vti_cachedlinkinfo:VX|S|tstreak.jpg S|Purpleba.gif H|file:///E|/Dan\ Bucsescu/Web\ Pages/frames4.htm S|Purpleba.gif S|Purpleba.gif S|Purpleba.gif vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/introduction.html010064400017520000001000000004440712642300400216230ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:58 -0500 vti_cachedlinkinfo:VX|K|introduction.html vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:58 -0500 public_html/_vti_cnf/Italian_passport.html010064400017520000001000000010570712642300400224170ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|Italian Passport vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif S|images/passport1.GIF S|images/passport2.GIF vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 18:51:04 -0500 vti_nexttolasttimemodified:TR|21 Feb 1997 18:47:28 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:51:04 -0500 public_html/_vti_cnf/language.html010064400017520000001000000012610712642300400206630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 -0500 vti_cachedtitle:SR|Language vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|language.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:02 -0500 public_html/_vti_cnf/literary_criticism.html010064400017520000001000000013320712642300400230000ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Literary Criticism vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|literary_criticism.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/logo.htm010064400017520000001000000031140712642300400176630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.acnet.pratt.edu/ 82 1 267 16 rect http://acnet.pratt.edu/~dbucsesc/ 266 125 370 142 rect index.html 39 170 238 180 vti_botmap1:SX| rect help.html 0 118 99 142 rect projects.html 0 79 99 105 rect outline.html 0 38 99 65 rect index.html 0 0 99 26 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Paragone vti_cacheddtm:TX|14 Feb 1997 01:59:18 -0500 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|bkgrn1622C3.gif M|Untitled-2.gif L|http://www.acnet.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|buttons1.gif L|help.html L|projects.html L|outline.html L|index.html H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|outline.html H|/readings/Monod.html H|/readings/Monod.html H|/help/Vico.html H|/help/Cezanne.html H|projects.html H|projects.html H|theory.html H|readings/Deleuze.html H|readings/Whitehead.html H|readings/Leibniz.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_nexttolasttimemodified:TR|14 Feb 1997 01:31:20 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 01:59:18 -0500 public_html/_vti_cnf/logo.html010064400017520000001000000026070712642300400200450ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.acnet.pratt.edu/ 82 1 267 16 rect http://acnet.pratt.edu/~dbucsesc/ 266 125 370 142 rect index.html 39 170 238 180 vti_botmap1:SX| rect help.html 0 118 99 142 rect projects.html 0 79 99 105 rect outline.html 0 38 99 65 rect index.html 0 0 99 26 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 04:03:34 -0500 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|bkgrn1622C3.gif M|Untitled-2.gif L|http://www.acnet.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|buttons1.gif L|help.html L|projects.html L|outline.html L|index.html H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|outline.html H|/readings/Monod.html H|/readings/Monod.html H|/help/Vico.html H|/help/Cezanne.html H|projects.html H|projects.html H|theory.html H|readings/Deleuze.html H|readings/Whitehead.html H|readings/Leibniz.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_cachedbodystyle:SR| public_html/_vti_cnf/Logonew.gif010064400017520000001000000003020712642300400203060ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/machine.html010064400017520000001000000013040712642300400205020ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Machine vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|machine.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/mainpage.html010064400017520000001000000016230712642300400206630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:58 -0500 vti_cachedtitle:SR|Architectural Event vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|mainpage.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ H|http://acnet.pratt.edu/~arch543p/theory.html H|http://acnet.pratt.edu/~arch543p/other.html H|http://acnet.pratt.edu/~arch543p/markers.html H|http://acnet.pratt.edu/~arch543p/terminals.html H|mailto:vico65@aol.com vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:58 -0500 public_html/_vti_cnf/markers.html010064400017520000001000000022310712642300400205420ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Markers vti_cacheddtm:TX|14 Feb 1997 06:48:02 -0500 vti_cachedtitle:SR|Markers vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|head_trauma_clinic.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|14 Feb 1997 06:47:46 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 06:48:01 -0500 public_html/_vti_cnf/Neta.html010064400017520000001000000023630712642300400177730ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Reactivating Geometry vti_cacheddtm:TX|21 Feb 1997 20:53:56 -0500 vti_cachedtitle:SR|Reactivating Geometry vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html S|images/neta1.GIF S|images/neta2.GIF S|images/neta3.GIF S|images/neta4.GIF M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html vti_modifiedby:SR|? vti_timecreated:TR|17 Feb 1997 03:28:21 -0500 vti_nexttolasttimemodified:TR|19 Feb 1997 20:55:53 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:28:32 -0500 public_html/_vti_cnf/new index for arch543p.html010064400017520000001000000021530712642300400230430ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:04 +0200 vti_cachedtitle:SR|Paragone vti_cachedlinkinfo:VX|S|../background.jpg S|file:///E:/tstreak.jpg S|file:///E:/tstreak.jpg S|card.jpg H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/history_of_geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|/help/Friedman.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|/readings/Monod.html H|/help/Vico.html H|/readings/Monod.html H|outline.html H|/help/Cezanne.html H|/readings/Monod.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/other.html010064400017520000001000000022350712642300400202230ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Other Related Concepts vti_cacheddtm:TX|14 Feb 1997 06:41:52 -0500 vti_cachedtitle:SR|Other Related Concepts vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|31 Dec 1969 19:00:00 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 06:41:50 -0500 public_html/_vti_cnf/outline.html010064400017520000001000000032450712642300400205630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Course Outline vti_cacheddtm:TX|21 Feb 1997 20:53:58 -0500 vti_cachedtitle:SR|Course Outline vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|readings/Monod.html H|readings/Arnheim.html H|readings/thermodynamics.html H|readings/Whitehead.html H|readings/Deleuze.html H|readings/origin_of_language.html H|readings/mathematics_and_philosophy.html H|readings/origin_of_geometry.html H|readings/Burgin.html H|readings/Whitehead.html H|readings/Heidegger.html H|readings/Whitehead.html H|readings/Whitehead.html H|readings/physics.html H|readings/Newton.html H|readings/Berkeley.html H|readings/Park.html H|readings/Poincare.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|19 Feb 1997 21:29:25 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:25:28 -0500 public_html/_vti_cnf/passport.tif010064400017520000001000000003020712642300400205640ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/passport2.tif010064400017520000001000000003020712642300400206460ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/physics.html010064400017520000001000000004070712642300400205630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedlinkinfo:VX| vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/political_science.html010064400017520000001000000014200712642300400225460ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Political Science vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|political_science.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ H|http://acnet.pratt.edu/~`arch543p/help/sociology.html vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/projects.html010064400017520000001000000025460712642300400207400ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Student Projects vti_cacheddtm:TX|21 Feb 1997 20:53:58 -0500 vti_cachedtitle:SR|Student Projects vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html S|images/Blue_Ball.gif H|guestbook.html H|guestbook.html S|images/Blue_Ball.gif H|semester_projects.html H|semester_projects.html K|projects.html K|projects.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|19 Feb 1997 21:20:26 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:20:47 -0500 public_html/_vti_cnf/projes.html010064400017520000001000000006760712642300400204130ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Untitled Normal Page vti_cacheddtm:TX|14 Feb 1997 03:27:44 -0500 vti_cachedtitle:SR|Untitled Normal Page vti_cachedlinkinfo:VX| vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 01:36:48 +0200 vti_nexttolasttimemodified:TR|14 Feb 1997 01:36:50 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 03:27:42 -0500 public_html/_vti_cnf/Purpleba.gif010064400017520000001000000003020712642300400204460ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:03 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:03 +0200 public_html/_vti_cnf/pyschology.html010064400017520000001000000013120712642300400212750ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Psychology vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|pyschology.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/semester_projects.html010064400017520000001000000022700712642300500226420ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Semester Projects vti_cacheddtm:TX|20 Feb 1997 02:32:06 -0500 vti_cachedtitle:SR|Semester Projects vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|Craig.html H|Neta.html H|Wren.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_nexttolasttimemodified:TR|19 Feb 1997 21:30:26 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:30:35 -0500 public_html/_vti_cnf/sociology.html010064400017520000001000000013100712642300500211030ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Sociology vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|sociology.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 public_html/_vti_cnf/stage_manager.htm010064400017520000001000000015400712642300500215220ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| default http://acnet.pratt.edu/~arch543p/ rect index.html 25 0 152 37 rect outline.html 163 1 296 37 rect projects.html 308 0 462 37 rect help.html 473 0 568 37 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Paragone vti_cacheddtm:TX|14 Feb 1997 02:17:44 -0500 vti_cachedtitle:SR|the Stage Manager vti_cachedlinkinfo:VX|S|background.jpg S|card.jpg S|logo.gif M|index.gif L|http://acnet.pratt.edu/~arch543p/ L|index.html L|outline.html L|projects.html L|help.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:57 +0200 vti_nexttolasttimemodified:TR|13 Feb 1997 10:35:58 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 02:17:42 -0500 public_html/_vti_cnf/stage_manager.html010064400017520000001000000024340712642300500217010ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|the Stage Manager vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|the Stage Manager vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html H|Bureau.html H|Italian_passport.html H|help/Tzara.html H|bureau_diploma.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html S|images/Blue_Line.gif H|mailto:vico65@aol.com vti_modifiedby:SR|? vti_timecreated:TR|17 Feb 1997 06:39:55 -0500 vti_nexttolasttimemodified:TR|21 Feb 1997 18:28:19 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 18:58:43 -0500 public_html/_vti_cnf/syllabus.html010064400017520000001000000022010712642300500207320ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Syllabus vti_cacheddtm:TX|20 Feb 1997 02:32:06 -0500 vti_cachedtitle:SR|Syllabus vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|17 Feb 1997 22:33:19 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:31:11 -0500 public_html/_vti_cnf/temp1.html010064400017520000001000000024120712642300500201260ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|14 Feb 1997 01:36:12 -0500 vti_cachedtitle:SR|oldparagone vti_cachedlinkinfo:VX|S|background.jpg S|card.jpg H|/help/history_of_mathematics.html H|/help/art.html H|/help/philosophy.html H|/help/aesthetics.html H|/help/ethics.html H|/help/history_of_mathematics.html H|/help/geometry.html H|/help/physics.html H|/help/biology.html H|/help/sociology.html H|/help/psychology.html H|/help/literarary_criticism.html H|/help/political_science.html H|head_trauma_clinic.html H|/help/machine.html H|/help/biology.html H|/help/language.html H|/readings/Monod.html H|/help/Vico.html H|/readings/Monod.html H|outline.html H|/help/Cezanne.html H|theory.html H|help/Merleau-Ponty.html H|help/Husserl.html H|mainpage.html H|theory.html H|readings/Deleuze.html H|/readings/Whitehead.html H|/readings/Leibniz.html H|/help/geometry.html H|/readings/origin_of_geometry.html H|stage_manager.html H|mailto:vico65@aol.com vti_author:SR|? vti_timecreated:TR|14 Feb 1997 01:36:10 +0200 vti_nexttolasttimemodified:TR|13 Feb 1997 10:35:56 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 01:36:12 -0500 public_html/_vti_cnf/TEMPLATE.HTM010064400017520000001000000006360712642300500200050ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:35:58 +0200 vti_cachedtitle:SR|Absolute vti_cachedlinkinfo:VX| vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:35:56 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:35:56 +0200 public_html/_vti_cnf/template.html010064400017520000001000000022010712642300500207070ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|template vti_cacheddtm:TX|20 Feb 1997 02:32:08 -0500 vti_cachedtitle:SR|template vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|14 Feb 1997 02:22:37 -0500 vti_nexttolasttimemodified:TR|17 Feb 1997 22:32:03 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|17 Feb 1997 22:33:37 -0500 public_html/_vti_cnf/terminals.html010064400017520000001000000022440712642300500211010ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Terminals vti_cacheddtm:TX|14 Feb 1997 22:40:12 -0500 vti_cachedtitle:SR|Terminals vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html H|head_trauma_clinic.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|miatopia vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|14 Feb 1997 06:45:14 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|14 Feb 1997 22:40:10 -0500 public_html/_vti_cnf/theory.html010064400017520000001000000022660712642300500204210ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://acnet.pratt.edu/~dbucsesc/ 267 125 370 143 rect index.html 34 166 237 180 rect http://www.pratt.edu 79 3 271 18 vti_botmap1:SX| rect projects.html 0 77 98 102 rect help.html 0 115 99 139 rect outline.html 1 40 99 65 rect index.html 0 0 99 23 vti_botmap2:SX| rect help.html 396 3 500 23 rect projects.html 266 2 368 23 rect outline.html 136 0 235 23 rect index.html 0 1 102 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Theory vti_cacheddtm:TX|16 Feb 1997 13:00:50 -0500 vti_cachedtitle:SR|Theory vti_cachedlinkinfo:VX|S|images/background.gif M|images/logo.gif L|http://acnet.pratt.edu/~dbucsesc/ L|index.html L|http://www.pratt.edu M|images/buttons1.gif L|projects.html L|help.html L|outline.html L|index.html S|images/Blue_Arrow.gif H|head_trauma_clinic.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html H|mailto:vico65@aol.com vti_author:SR|? vti_modifiedby:SR|miatopia vti_timecreated:TR|13 Feb 1997 10:35:55 +0200 vti_nexttolasttimemodified:TR|16 Feb 1997 12:57:40 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|16 Feb 1997 13:00:48 -0500 public_html/_vti_cnf/tstreak.jpg010064400017520000001000000003020712642300500203650ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:02 +0200 vti_timelastmodified:TR|13 Feb 1997 10:36:02 +0200 public_html/_vti_cnf/Tzara.html010064400017520000001000000013100712642300500201550ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Tristan Tzara vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|Tzara.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:01 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:01 +0200 Tzara.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:0public_html/_vti_cnf/Untitled-1.GIF010064400017520000001000000003020712642300500204630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 13:32:10 +0200 vti_timelastmodified:TR|13 Feb 1997 13:32:10 +0200 public_html/_vti_cnf/Untitled-2.gif010064400017520000001000000003020712642300500206240ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 22:40:54 +0200 vti_timelastmodified:TR|13 Feb 1997 22:40:54 +0200 public_html/_vti_cnf/Vico.html010064400017520000001000000012760712642300500200070ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|13 Feb 1997 10:36:02 +0200 vti_cachedtitle:SR|Vico vti_cachedlinkinfo:VX|S|background.jpg S|logo.gif S|index.gif K|Vico.html H|http://acnet.pratt.edu/~arch543p/index.html H|http://acnet.pratt.edu/~arch543p/outline.html H|http://acnet.pratt.edu/~arch543p/projects.html H|http://acnet.pratt.edu/~arch543p/help.html H|http://acnet.pratt.edu/~arch543p/ vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|13 Feb 1997 10:36:00 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|13 Feb 1997 10:36:00 +0200 public_html/_vti_cnf/who_am_I.html010064400017520000001000000023470712642300500206310ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|WHO AM I? vti_cacheddtm:TX|21 Feb 1997 20:54:04 -0500 vti_cachedtitle:SR|WHO AM I? vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html K|Craig.html K|Craig.html K|Craig.html K|projects.html K|projects.html M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html vti_author:SR|? vti_modifiedby:SR|? vti_timecreated:TR|21 Feb 1997 20:41:58 -0500 vti_nexttolasttimemodified:TR|21 Feb 1997 20:52:42 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|21 Feb 1997 20:53:11 -0500 public_html/_vti_cnf/Wren.html010064400017520000001000000026000712642300500200120ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_botmap:SX| rect http://www.pratt.edu/ 81 0 268 16 rect http://acnet.pratt.edu/~dbucsesc/ 263 124 379 144 rect index.html 38 166 240 180 vti_botmap1:SX| rect index.html 0 0 99 25 rect outline.html 0 38 99 64 rect projects.html 0 77 99 104 rect help.html 0 117 99 142 vti_botmap2:SX| rect help.html 397 0 500 23 rect projects.html 267 0 368 23 rect outline.html 130 0 237 23 rect index.html 0 0 105 23 vti_extenderversion:SR|2.0.2.1112 vti_title:SW|Extended Bodies in Space vti_cacheddtm:TX|21 Feb 1997 20:53:54 -0500 vti_cachedtitle:SR|Extended Bodies in Space vti_cachedlinkinfo:VX|Y|index.html S|images/background.gif M|images/logo.gif L|http://www.pratt.edu/ L|http://acnet.pratt.edu/~dbucsesc/ L|index.html M|images/buttons1.gif L|index.html L|outline.html L|projects.html L|help.html S|images/Wren1.GIF S|images/Wren2.GIF S|images/Wren3.GIF S|images/Wren4.GIF S|images/Wren5.GIF S|images/Wren6.GIF S|images/Wren7.GIF S|images/Wren8.GIF S|images/Wren9.GIF S|images/Wren10.GIF S|images/Wren11.GIF M|images/buttons2.gif L|help.html L|projects.html L|outline.html L|index.html vti_modifiedby:SR|? vti_timecreated:TR|17 Feb 1997 03:29:24 -0500 vti_nexttolasttimemodified:TR|17 Feb 1997 22:33:31 -0500 vti_cachedbodystyle:SR| vti_timelastmodified:TR|19 Feb 1997 21:27:40 -0500 public_html/_vti_log/004075500017520000001000000000000712642300500162315ustar00matthewsother00001460002002public_html/_vti_pvt/004075500017520000001000000000000712642300600162625ustar00matthewsother00001460002002public_html/_vti_pvt/_vti_cnf/004075500017520000001000000000000712642300500200505ustar00matthewsother00001460002002public_html/_vti_pvt/_vti_cnf/_x_todo.htm010064400017520000001000000004670712642300500222210ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|17 Feb 1997 08:17:12 -0500 vti_cachedtitle:SR|Active To Do List vti_cachedlinkinfo:VX| vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:35:23 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|17 Feb 1997 08:17:12 -0500 public_html/_vti_pvt/_vti_cnf/_x_todoh.htm010064400017520000001000000004700712642300500223630ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_extenderversion:SR|2.0.2.1112 vti_cacheddtm:TX|17 Feb 1997 07:33:14 -0500 vti_cachedtitle:SR|To Do List History vti_cachedlinkinfo:VX| vti_author:SR|? vti_timecreated:TR|13 Feb 1997 10:35:24 +0200 vti_cachedbodystyle:SR| vti_timelastmodified:TR|17 Feb 1997 07:33:14 -0500 public_html/_vti_pvt/_x_todo.bak010064400017520000001000002172410712642300500203770ustar00matthewsother00001460002002 Active To Do List

    Active To Do List

    Number Task Pri Author Created By Tool Created On Modified On Completed Modified By Assigned To Link To Magic Description

    3

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:49 -0500 14 Feb 1997 22:33:49 -0500 N miatopia readings/Lynn.html ~$SPELLING Mispelled words: Multiplicitous

    4

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:52 -0500 14 Feb 1997 22:33:52 -0500 N miatopia readings/Whitehead.html ~$SPELLING Mispelled words: Anshen Nanda relata unexhaustive relatum cogredience Bergson durations measurableness extranatural instantaneousness consequents consciousnesses indeterminateness subserves deliverances sm

    5

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:53 -0500 14 Feb 1997 22:33:53 -0500 N miatopia readings/Burgin.html ~$SPELLING Mispelled words: Burgin Cornford centre supercelestial omnivoyant Foucault localisation Husserl Augustine Brunelleschi theocentric Empedocles Minkowski Aristotelianism centres Lissitsky Lobachevsky Riemann Vertov aeroplanes perspectival technologism Virilio Bolter Soweto irruptions geometries Mobius Kant Derridean intravagination Debord

    6

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:54 -0500 14 Feb 1997 22:33:54 -0500 N miatopia help/Monod.html ~$SPELLING Mispelled words: Monod Andre Lwoff Francois

    7

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:55 -0500 14 Feb 1997 22:33:55 -0500 N miatopia help/Le-duc.html ~$SPELLING Mispelled words: Viollet-le-Duc Vezelay Sainte-Chapelle Notre Lassus Carcassone Pierrefonds Ecole des Beaux-Arts

    8

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:55 -0500 14 Feb 1997 22:33:55 -0500 N miatopia help/Braque.html ~$SPELLING Mispelled words: Georges Braque Picasso Havre Academie Humbert Ecole des Beaux-Arts Bonnat Braque's Andre Derain Henri Matisse Vlaminck Fauve Fauves Cezanne d'Automne Bernheim-Jeune geometrization Les d'Avignon nonillusionistic nonimitative Kunstmuseum Basel ochers Louvre Vence

    9

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:56 -0500 14 Feb 1997 22:33:56 -0500 N miatopia help/analog.html ~$SPELLING Mispelled words: springweight nomography y=f planimeters retranslation microcircuitry

    10

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:57 -0500 14 Feb 1997 22:33:57 -0500 N miatopia syllabus.html ~$SPELLING Mispelled words: interactionist Leibniz Poincare Piaget Heelian Hillier morphic Bergson Husserl Deleuze

    11

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:58 -0500 14 Feb 1997 22:33:58 -0500 N miatopia help/Serres.html ~$SPELLING Mispelled words: Lechte Routledge Serres Serres's Sadi Carnot Carnot's Helmholtz Clausius stochastics Bourdieu Gaston Bachelard enquiry Agen Ecole Normale Supérieure d'Ulm agrégation Leibniz's Foucault Clermont-Ferrand Vincennes Sorbonne analysed Fontaine traduire characterises structuralist analogically similia facilia Saussure Bourbaki Georges Dumézil's Dumézil analogon organises loganalyse comparativist virtuality emphasised poeticising fictionalising Emile endeavour replac ing Dysfunctioning traveller Lucretius rerum natura Lucretius's clinamen endeavours

    12

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:59 -0500 14 Feb 1997 22:33:59 -0500 N miatopia help/Bell.html ~$SPELLING Mispelled words: Clive Bloomsbury Woolf Cezanne Proust

    13

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:00 -0500 14 Feb 1997 22:34:00 -0500 N miatopia help/pyschology.html ~$SPELLING Mispelled words: neuroanatomy neurophysiology Comparatie Ethology outpoint Psychometricians ethologists Konrad Sigmund reconstructions Piaget

    14

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:02 -0500 14 Feb 1997 22:34:02 -0500 N miatopia help/Bataille.html ~$SPELLING Mispelled words: Lechte Routledge Bataille Georges Billon paralysed Auch Granero emphasises Lascaux André Breton Adrien Borel analysand theorise Blanchot Barthes Foucault Derrida Reims Lycée Epernay baccalauréat demobilised Ecole des Chartes Hautes Hispaniques Nietzsche Médailles Bibliothèque Nationale Alexandre Kojève Picasso Icarus Hegelian horizontality homogenising unassimilable disequilibrium Gogh Mauss analysed Laplace limitedness analogically Hollier isn contestation amor fati otherness

    15

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:02 -0500 14 Feb 1997 22:34:02 -0500 N miatopia help/euclidean_geometry.html ~$SPELLING Mispelled words: Hilbert

    16

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:03 -0500 14 Feb 1997 22:34:03 -0500 N miatopia help/Berkeley.html ~$SPELLING Mispelled words: Cloyne Locke esse est percipi Lockean

    17

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:04 -0500 14 Feb 1997 22:34:04 -0500 N miatopia help/Newton.html ~$SPELLING Mispelled words: N.S. O.S. Woolsthorpe Grantham Lincolnshire Gassendi Vieta Leibniz fluxions maxima minima Lucasian Hooke Huygens alchemical Opticks Kepler's inertially Hooke's Halley Halley's Philosophiae naturalis mathematica nonresisting pendula Kepler unreconciled recoinage singlehandedly

    18

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:05 -0500 14 Feb 1997 22:34:05 -0500 N miatopia help/transformation.html ~$SPELLING Mispelled words: x'=x+y x'x'+y'y x+y

    19

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:07 -0500 14 Feb 1997 22:34:07 -0500 N miatopia help/history_of_mathematics.html ~$SPELLING Mispelled words: ARITHMEtic Rhind Golonishev sexagesimal Hammurabic Pythagoras Samos atomism Zeno Elea Zeno's Pythagoreans Eudoxus Cnidus Pythagoras's axiomatization Archimedes Apollonius Perga Aristarchus Hipparchus Nicaea Claudius Ptolemy geometers Pappus Almagest sines Menelaus Byzantines Constantinople Isfahan Jundishapir Farazi's Siddhantas Khwarizmi's Ptolemy's Battani Khayyam Haitham Alhazen Abul-Wafa Leonardo Pisano Fibonacci Liber Oresme Bradwardine Georg von Peuerbach Regiomontanus Vitrivius da Battista Alberti Piero della Niccolo Tartaglia Scipione Gerolamo Cardano Ars Rafaello Bombelli Francois Viete Viete's Stevin Napier Kepler Discours methode Geometrie Bonaventura Cavalieri Fermat Huygens Gottfried Wilhelm Leibniz integrations differentiations fluxional quadrature Leibniz's dx dy Jakob Johann Leonhard Euler Euler's Comte Lagrange Laplace Traite mecanique celeste Friedrich geodosy Augustin Cauchy Ecole Polytechnique Legendre Gaspard Monge Lacroix Monge's Biot Poncelet Dupin Coriolis Poinsot Dirichlet Jacobi Riemann Riemann's nondifferentiable Theodor Weierstrass Leopold Kronecker Kronecker's Dedekind Gergonne Steiner Staudt Ferdinand Mobius Plucker Chasles Cayley geometries Nikolai Ivanovich Lobachevsky Bolyai Grassman affine situs Liouville Hermite Lindemann Baire Emile Borel Hadamard Lebesgue Picard Henri Poincare Babbage Boole Bertrand Evariste Galois Helmholtz Sophus Elie Cartan Gottlob Frege Giuseppe Peano Augustus logicism logicist Mathematica Hilbert Hilbert's Neumann Godel Brouwer intuitionism

    20

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:08 -0500 14 Feb 1997 22:34:08 -0500 N miatopia help/Cantor.html ~$SPELLING Mispelled words: Georg Ferdinand Philipp nondenumerability Halle Hilbert Bertrand Zermelo

    21

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:09 -0500 14 Feb 1997 22:34:09 -0500 N miatopia help/aesthetics.html ~$SPELLING Mispelled words: nonartistic counterposition nondiscursive Immanuel Kant's Kant Santayana Santayana's

    22

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:10 -0500 14 Feb 1997 22:34:10 -0500 N miatopia help.html ~$SPELLING Mispelled words: Bucsescu resouces Socratics Parmenides B.C. Heraclitus Zeno Elea

    23

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:11 -0500 14 Feb 1997 22:34:11 -0500 N miatopia readings/Poincare.html ~$SPELLING Mispelled words: Henri Poincare générale des geometricians tabula geometrician L'Espace géométrie métaphysique t.iii Ryding

    24

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:14 -0500 14 Feb 1997 22:34:14 -0500 N miatopia readings/Monod.html ~$SPELLING Mispelled words: Monod teleonomy morphogenesis Austryn Wainhouse artificialness geometries Fontainebleau Barbizon Apremont translational paleolithic morphogenetic ne varietur teleonomic exorcizing structuration Escherichia coli undemonstrable consubstantial projectively

    25

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:15 -0500 14 Feb 1997 22:34:15 -0500 N miatopia help/Deleuze.html ~$SPELLING Mispelled words: Lechte Routledge Deleuze Lecercle délire Nietzsche Kant Bergson Spinoza Différence répétition Logique sens Félix Guattari Kafka Foucault Derrida travelled Lycée Carnot Sorbonne Butor Tournier Châtelet Ferdinand Aliquié Georges Canguilhem Hyppolite agrégation lycées Centre Recherche Scientifique CNRS Vincennes horizontality Deleuzian emphasising Nietzschean antidialectical favour Proust Leibniz unities Lacan Antonin Artaud rhizomatic harbour Nietzscheanism organised

    26

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:17 -0500 14 Feb 1997 22:34:17 -0500 N miatopia help/Einstein.html ~$SPELLING Mispelled words: Ulm N.J. Aarau cantonal privatdocent Wilhelm Gesellschaft luminiferous Hendrik Antoon Lorentz's nonaccelerated Maxwellian Boltzmann Gibbs Boltzmann's von Smoluchowski Perrin Grossmann Tullio Civita Gregorio Ricci-Curbastro Minkowski's Philipp Lenard Szilard Leopold Infeld Banesh Hoffmann Heisenberg Niels Bohr

    27

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:18 -0500 14 Feb 1997 22:34:18 -0500 N miatopia help/logical_positivism.html ~$SPELLING Mispelled words: Moritz Schlick Carnap Godel Gottlob Frege Bertrand Ayer's tautologous aesthetical

    28

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:19 -0500 14 Feb 1997 22:34:19 -0500 N miatopia help/black_hole.html ~$SPELLING Mispelled words: Laplace Laplace's Schwarzschild mi nonspherical Cygni Hubble

    29

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:20 -0500 14 Feb 1997 22:34:20 -0500 N miatopia help/Hegel.html ~$SPELLING Mispelled words: Georg Wilhelm Friedrich Tubingen Jena Heidelberg Immanuel Kant Weltgeist Hegelian Hegel's nonrational subjectivistic Hegelians Soren Kierkegaard

    30

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:22 -0500 14 Feb 1997 22:34:22 -0500 N miatopia help/Nietzsche.html ~$SPELLING Mispelled words: Lechte Routledge Friedrich Nietzsche Nietzsche's Foucault Saxony Kaufmann's Pforta maths Schopenhauer Basel structuralist horizontality homogenising ideolectal Dionysian Apollonian Schlegel Nietzschean ressentiment Zarathustra calculability favour characterised Kant disequilibrium centred Amor fati siécle philosophising Kristeva

    31

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:22 -0500 14 Feb 1997 22:34:22 -0500 N miatopia help/Bergson.html ~$SPELLING Mispelled words: Henri Bergson Clermont-Ferrand UNESCO

    32

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:24 -0500 14 Feb 1997 22:34:24 -0500 N miatopia help/Spinoza.html ~$SPELLING Mispelled words: Baruch Spinoza Kabbalah Maimonides Gersonides Crescas Neoplatonism Rijnsburg Leiden Oldenburg Voorsburg Heidelberg Gottfried Wilhelm von Leibniz Descartes's philosophiae Spinoza's Cogitata metaphysica Tractatus theologico-politicus posthuma emendatione intellectus Ethica ordine geometrico demonstrata Elwes scholia lemmata Encyclopedists Goethe Coleridge

    33

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:27 -0500 14 Feb 1997 22:34:27 -0500 N miatopia help/philosophy.html ~$SPELLING Mispelled words: philosophos Socratics Bertrand Montaigne Zeno Elea Atomism neurophysiologists Irrationalist Soren Kierkegaard Pythagoras Samos Baruch Spinoza Gottfried Wilhelm von Leibniz Kepler Anaxagoras Augustine Immanuel Kant nonrational episteme Miletus Anatolia Thales Anaximender Anaximenes Milesian Anaximander Heraclitus Parmenides Delphic Neoplatonism telos Nicolaus turmoils Philo Saadia ben Gaon Neoplatonist Ibn Gabirol Maimonides Kabbalah Kindi Farabi Avicenna ibn Sina intuitionist Ghazali Avicenna's Ghazali's Averroes Rushd Khaldun Origen Plotinus Anselm Abelard Albertus Scotus Occam Occam's Aristotelianism Descartes's Spinoza's preestablished Locke Locke's esse est percipere Kant's Georg Friedrich Hegel's Hegelianism Hegelian Kierkegaard's Husserl Heidegger Vedic nonorthodox Samkhya Vaisheshika Nyaya Mimamsa Charvaka Jainism Kapila prakriti purusha Patanjali Isvara Kanada Gantama Purva Uttara Jainini Kumarila Bhatta Prabhakara Dharma Vedantic Badarayana's atman nondualist advaita Shankara maya nondualism vishishtadvaita Ramanuja dualist dvaita Madhva atomism dharma Dharmas coorigination anatta skandhas Mahasanghikas Sthaviras Mahayana Theravada Pudgalavadins Vaibhashika Sautrantika pudgala Vaibhashikas Saravastivadin dharmas Sautrantikas Yogacara Madhyamika Nagarjuna Ching Mencius Hsun-tzu nonabsoluteness Hsun-tzu's Neoconfucianism Neoconfucians Neoconfucian Te semilegendary Tzu Chuang-tzu Chuang-Tzu Moists

    34

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:28 -0500 14 Feb 1997 22:34:28 -0500 N miatopia help/pre-socratics.html ~$SPELLING Mispelled words: Socratics Miletus Anatolia Thales Anaximander Anaximenes Milesian Heraclitus Parmenides

    35

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:29 -0500 14 Feb 1997 22:34:29 -0500 N miatopia help/phenomenology.html ~$SPELLING Mispelled words: Husserl Husserl's presuppositionless noesis noema Scheler Heidegger Merleau-Ponty Binswanger Thomist phenomenalism

    36

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:31 -0500 14 Feb 1997 22:34:31 -0500 N miatopia help/Barthes.html ~$SPELLING Mispelled words: Lechte Routledge Barthes André Gide A.J Greimas Ecole des Hautes Sociales Collège fictionalises Godard's personalised semiotician Barthes's Michelet's analyse criticise modelled Saussure's langue imperiality sui generis naturalised unanalysable centre centred Camus naturalisation semiotician's formalisation scientificity Semiology Saussure mobilises tusser rationalisations Sarrasine semic proairetic analysing Sade Logothetes jouissance

    37

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:33 -0500 14 Feb 1997 22:34:33 -0500 N miatopia readings/origin_of_language.html ~$SPELLING Mispelled words: Serres Harari Josue logico Spinoza Leibniz Laplace Carnot stateurs fixity stabilities Laplace's Bergson's Bergsonism entropic negentropy invariances hypercomplex genotypical homeorrhetic chreodes Heraclitus Parmenides homeorrhesis syrrhesis diarrhesis quasistable aleatory upsteam negentropic phylogenesis rhesis multitemporality Boltzmann neurovegetal homeorhesis homoiothermal globalizing Francois psychologies intropathy proprioceptivity coenesthesia functionings vagosympathetic integrations chiasms readaptation rebalancing proto stereospecific inorganization unconsciouses eros organon meanderings presences palais des merveilles Sur les XVIIe philosophiques homos rhysis syrrhein diarrhein histanai Naissance dans texte Lucrece Fleuves turbulences Minuit Lucretius Homoiothermy poikilothermal homoiothernial homeology Spillman Henri Atlan L'Organisation biologique theorie l'information Organization,"Journal Entre cristal fumee Essai sur l'organisation Seuil Urbana Sigmund Strachey Hogarth

    38

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:35 -0500 14 Feb 1997 22:34:35 -0500 N miatopia readings/Newton.html ~$SPELLING Mispelled words: Scholium Philosophiae Naturalis Mathematica Motte Florian Cajori unequable disquisitions effectually

    39

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:37 -0500 14 Feb 1997 22:34:37 -0500 N miatopia readings/Deleuze.html ~$SPELLING Mispelled words: Deleuze Leibniz Conley diadoche multiplications pregiven Timaeus possibles compossibles fuscum subnigrum aleatory Leibniz's submultiples intensions prehension prehends prehend prehensions prehended prehending superject subjectification Bergson fluvia Virtualities virtualities incompossible intraworldly prehensive compossible bifurcations incompossibilities chaosmos Leblanc Borges Gombrowicz fibered dissonances Sextus Lucretia Rubicon Boulez

    40

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:39 -0500 14 Feb 1997 22:34:39 -0500 N miatopia help/Derrida.html ~$SPELLING Mispelled words: Lechte Routledge Derrida deconstructive grammatology Ecole Normale Supérieure Ulm Bertrand aporias phenomenologists recognises différance Saussurian structuralist Saussure structuralists unconceptualisable conceptualisable différer pharmakon Lévi grammalogist endeavours unpresentable ideographic Glas Sorbonne Derridean Laclau im Ponge éponge Wordsworth Signéponge iterability Culler Searl J.L performatives performative

    41

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:40 -0500 14 Feb 1997 22:34:40 -0500 N miatopia help/Asimov.html ~$SPELLING Mispelled words: Asimov Asimov's

    42

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:41 -0500 14 Feb 1997 22:34:41 -0500 N miatopia help/ontology.html ~$SPELLING Mispelled words: Wolff Wolff's Immanuel Kant Heidegger Quine Anselm's Wilhelm Friedrich

    43

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:42 -0500 14 Feb 1997 22:34:42 -0500 N miatopia help/gestalt_psychology.html ~$SPELLING Mispelled words: Koffka Kohler Wertheimer Duncker Friedrich Perls Gestalten

    44

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:44 -0500 14 Feb 1997 22:34:44 -0500 N miatopia help/structuralism.html ~$SPELLING Mispelled words: structuralist Ferdinand Saussure Saussure's langue Trubetzkoy Jakobson singlemindedly narratology narratologists Barthes antihumanistic semiology Peirce Deleuze's schizoanalysis Derrida's Foucault's Kristeva's semanalysis poststructuralism *Also

    45

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:45 -0500 14 Feb 1997 22:34:45 -0500 N miatopia help/idealism.html ~$SPELLING Mispelled words: epistemologist esse est percipi immaterialism Immanuel Kant Kant's Johann Gottlieb Fichte Fichte's Hegel's Hegelian

    46

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:46 -0500 14 Feb 1997 22:34:46 -0500 N miatopia markers.html ~$SPELLING Mispelled words: interactionist Corbusier Norberg Eisenman Piaget euclidian Heelan

    47

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:51 -0500 14 Feb 1997 22:34:51 -0500 N miatopia readings/Arnheim.html ~$SPELLING Mispelled words: Arnheim Blaise Pensees Butor Kohler gestalten naturphilosophische equilibria Voigt lucite Angrist Hepler Tyndall Auguste Traite des degenerescences intellectuelles morales espece humaine Baudelaire's Fleurs Clausius Boltzmann mori Nordau siecle Lombroso nystagmus retinae Whyte Kasimir Malevich's Suprematist lifes Hogarth Kostelanetz Smithson's Tuming Landsberg geometrician Apollinare Nuovo Ravenna Warhol microstates macrostate micromoment micromoments Lecomte Nouy Eddington interrelational Rubens Piero della Verteilungscharakter Pollock's Arp reliefs selfcontained Bork macrostates Schrodinger Kepler's macrostructures microevents Hagia Poussin Poussin's Gombrich Bonnencontre

    48

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:52 -0500 14 Feb 1997 22:34:52 -0500 N miatopia help/Chabrol.html ~$SPELLING Mispelled words: Chabrol Hitchcock Cahiers Les Biches infidele avant nuit d'orgueil

    49

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:53 -0500 14 Feb 1997 22:34:53 -0500 N miatopia help/Duchamp.html ~$SPELLING Mispelled words: Duchamp Cezanne Fauve Eadweard MuyBridge's Picabia Guillaume Apollinaire Duchamp's Arensberg illusionistic Etant Donnes

    50

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:55 -0500 14 Feb 1997 22:34:55 -0500 N miatopia help/Freud.html ~$SPELLING Mispelled words: Lechte Routledge Sigmund vitalism unanalysable emphasised Lacan Laplanche chiasmus Thanatos Freiburg Anschluss Berggasse Charcot Salpetrière Brücke Brücke's Helmholtz Gustav Fechner Breuer physicalist vitalist Fliess behaviourist centre positivistically imbricated meagre overdetermination ideolect analysand Pontalis meta

    51

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:57 -0500 14 Feb 1997 22:34:57 -0500 N miatopia help/theory_of_relativity.html ~$SPELLING Mispelled words: microworld Space-Time Eddington Eddington's Galilean Minkowski WEP Friedrich Bessel von Eotvos EEP gh blueshifted precisions Brans Dicke Shapiro Nordtvedt landers mi supermassive schwarzschild nonrotating Kerr

    52

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:58 -0500 14 Feb 1997 22:34:58 -0500 N miatopia help/realism.html ~$SPELLING Mispelled words: Nominalism Abelard Occam

    53

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:00 -0500 14 Feb 1997 22:35:00 -0500 N miatopia help/Kant.html ~$SPELLING Mispelled words: Immanuel Kant Konigsberg pietists Collegium Fridiricianum Wolff Gottfried Wilhelm von Leibniz Kant's Principiorum Primorum Cognitiones Metaphysicae Dilucidato Leibnizian LaPlace Monadology Wolffian Enquiry Descartes's nonempirical teleologic contentless prestructured Noumenon spatiotemporal purposiveness Johann Gottlieb Fichte Friedrich Schelling Schopenhauer Cassirer

    54

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:01 -0500 14 Feb 1997 22:35:01 -0500 N miatopia help/absolute.html ~$SPELLING Mispelled words: Johann Gottlieb Fichte Friedrich Schelling Hegelian

    55

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:04 -0500 14 Feb 1997 22:35:04 -0500 N miatopia readings/origin_of_geometry.html ~$SPELLING Mispelled words: Serres Harari Josue Renan Thales Pythagoras doxography Diogenes Laertius Plutarch Athenaeus Proclus Simplicius diaIogue prosopopoeias the,powers resemblances Meno Timaeus Parmenides agonal geometer Ra stereometric diaphaneity Leibniz Pythagoreans Democritus scriptive signaletiques tum wom Phaethon doxographies geometers arithmeticians Rosetta Delos apagogic scholium Hippasus Metapontum scholia alogon Theaetetus Corinth metrological Callicles otherness commensurability demonstate undecidable undecidably Theodorus Pythagoreanism irrationals Girard thematized intersubjective sacrifical Pontifex thatjoins Grasset explaiiatioii Origine geometrie Nord-Ouest Minuit reductio absurduni Girard's Epicurus Lucretius Rerum Natura Iphigenia phvsics Naissance dans texte Luctice Fleuves el turbulences

    56

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:05 -0500 14 Feb 1997 22:35:05 -0500 N miatopia help/Tzara.html ~$SPELLING Mispelled words: Tristan Tzara Hulsenbeck Andre Breton Aragon aventure celeste Antipyrine coeur gaz Dadaism

    57

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:06 -0500 14 Feb 1997 22:35:06 -0500 N miatopia help/causality.html ~$SPELLING Mispelled words: Galilei Immanuel Kant

    58

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:08 -0500 14 Feb 1997 22:35:08 -0500 N miatopia help/Lacan.html ~$SPELLING Mispelled words: Lechte Routledge Lacan Sorbonne Gaëtan Clérambault Roudinesco Lacan's Sainte Garbo Arturo Toscanini Alexandre Kojève's Hegelian intersubjective Hegel's subversiveness behaviour Heinze Hartmann centre structuralist enfans Saussurian significations analysand resonances misreadings analysed Jakobson's connexion decentres mis-recognises méconnaît Durkheim symbolised formalised Poe's Tbe fulfilment Lévi n'existe n'est toute symbolise Frege Gödel Roudinesco's

    59

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:10 -0500 14 Feb 1997 22:35:10 -0500 N miatopia help/metaphysics.html ~$SPELLING Mispelled words: Milesian Heraclitus Parmenides Pythagoras Samos Anaxagoras Empedocles Baruch Spinoza Immanuel Kant Gottfried von Leibniz atomists Hobbes Johann Gottlieb Fichte teleologic Spinoza's Hegel's undemonstrable phenomenologists

    60

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:11 -0500 14 Feb 1997 22:35:11 -0500 N miatopia help/epistemology.html ~$SPELLING Mispelled words: knower episteme Protagoras objectivism Theaetetus Dualisms substantivized Sextus Empiricus Baruch Spinoza von Leibniz Locke Immanuel Kant Noumenon Neorealists

    61

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:13 -0500 14 Feb 1997 22:35:13 -0500 N miatopia help/materialism.html ~$SPELLING Mispelled words: Democritus Atomism Democritus's Epicurus Lucretius rerum natura Gassendi Hobbes d'Holbach Ryle physicalism

    62

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:14 -0500 14 Feb 1997 22:35:14 -0500 N miatopia help/Panovsky.html ~$SPELLING Mispelled words: Panofsky iconology N.J. Netherlandish Panofsky's Albrecht Durer Renascences

    63

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:15 -0500 14 Feb 1997 22:35:15 -0500 N miatopia help/linear_algebra.html ~$SPELLING Mispelled words: x,y x',y x+x y+y ax,ay x'y v+v av aT

    64

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:18 -0500 14 Feb 1997 22:35:18 -0500 N miatopia help/art.html ~$SPELLING Mispelled words: ars Vasari Johann Winckelmann Heinrich Wolfflin Xenocrates Plotinus Neoplatonism Leonardo da Vasari's Neoplatonic Diderot Georg Wilhelm Friedrich Delacroix Academie des Baudelaire intentionality Clive Theodor Adorno oppositional poststructuralism Monticello Augustus Pugin's Paxton's Gropius's Dessau Mies Der Rohe's reposeful Auguste Rodin Constantin Brancusi's Aleksandr Archipenko Naum Gabo isms Monet's Louvre Georges Seurat Gauguin Gogh Cezanne Picasso's d'Avignon Armand Batos Piet Mondrian neoplastic Stijl Willem Kooning Kline Motherwell Rothko Clyfford Merisi Caravaggio Gustave Courbet Velazquez nonescapist Nochlin contemporaneity Gemaldegalerie Proudhon Honore Daumier Francois Edouard Manet Courbet's von Menzel Ruskin Madox Burne Rossetti Rennie Voysey Mackmurdo Maybeck nonimitative Picasso Braque lifes duced geometrization Les Vauxcelles Independants Braque's ochers papiers colles illusionistic Gris Fernand Leger Gleizes Metzinger Delaunay Duchamp Miro Amedee Ozenfant Chagall Henri Laurens Lipchitz

    65

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:20 -0500 14 Feb 1997 22:35:20 -0500 N miatopia help/harmonic_motion.html ~$SPELLING Mispelled words: Hooke Hooke's inextensible massless deg cos Lissajous

    66

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:21 -0500 14 Feb 1997 22:35:21 -0500 N miatopia help/topology.html ~$SPELLING Mispelled words: crinkly homeomorphic torus invariants Euler invariations Poincare Henri homotopy Poincare's

    67

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:23 -0500 14 Feb 1997 22:35:23 -0500 N miatopia help/rationalism.html ~$SPELLING Mispelled words: Aristotelianism Kabbalah Montaigne Descartes's Baruch Spinoza Spinoza's Gottfried Wilhelm von Leibniz preestablished

    68

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:25 -0500 14 Feb 1997 22:35:25 -0500 N miatopia help/literary_criticism.html ~$SPELLING Mispelled words: krinein kritikos LONGINUS Johann Gottfried von Schlegel Immanuel KANT COLERIDGE HAZLITT PATER Hippolyte Adolphe TAINE JUNG's VALERY FRYE Lovejoy Cleanth Wellek repr Balakian Daiches Empson Frye Leitch Nabokov Woolf

    69

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:27 -0500 14 Feb 1997 22:35:27 -0500 N miatopia help/language.html ~$SPELLING Mispelled words: monogenesis subpopulations polygenesis epicommunicational transcode perro chien Hund sobaka kelev mbwa animush inu implicational Sociolinguistics transdisciplinary

    70

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:28 -0500 14 Feb 1997 22:35:28 -0500 N miatopia help/political_science.html ~$SPELLING Mispelled words: subdiscipline Nicolo Machiavelli Auguste Comte Vilfredo Pareto Duguit Hauriou Jellinek behavioralist Lasswell Lippmann Wallas Behavioralists behavioralists behavioralism

    71

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:30 -0500 14 Feb 1997 22:35:30 -0500 N miatopia help/Foucault.html ~$SPELLING Mispelled words: Lechte Routledge Foucault Poitiers agrégation Uppsala Folie déraison Histoire folie âge classique doctorat état Georges Canguilhem alia systematicity Saussure langue ahistorical Nietzsche endeavour Nietzschean analysand realised Bachelard Cavaillès recognises analysed Mauss endeavours immortalised Sébastian Brant Stulifera navis Hieronymous Bosch behaviour medicalisation Hôpital général Tuke Pinel structuralist philosophico centralised Damiens emphasised Bentham Panoptican juridico realisation realisable

    72

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:33 -0500 14 Feb 1997 22:35:33 -0500 N miatopia help/Eco.html ~$SPELLING Mispelled words: Lechte Routledge Umberto Foucault's Sherlock Hermeticum semiotician specialising Sviluppo dell'estetica medievale Todorov recognises L'opera movimento coscienza epoca Stockhausen Berio Boulez Mallarmé Calder Pousseur Bohr Heisenberg Finnegans Peirce's semiosis interpretant analysed langue Hjelmslev's organisation Saussure's Quillian languageuser semiotically shiftings subcodes facilis difficilis behaviour conventionalised Gombrich's Dürer conventionalisation analogical digitalisation labour recognised Ostension stylisation Kristeva's revitalisation Porphyrian differentiae centre aporia rhizomatic globality philosophes

    73

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:34 -0500 14 Feb 1997 22:35:34 -0500 N miatopia help/postimpressionism.html ~$SPELLING Mispelled words: Bonnard Cezanne Gauguin Odilon Redon Georges Seurat Henri Gogh Picasso Braque Gauguin's Gogh's Fauves

    74

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:36 -0500 14 Feb 1997 22:35:36 -0500 N miatopia help/brownian_motion.html ~$SPELLING Mispelled words: Smoluchowski

    75

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:37 -0500 14 Feb 1997 22:35:37 -0500 N miatopia help/Furness.html ~$SPELLING Mispelled words: Furness Fraser Grec Ruskin's Furness's

    76

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:40 -0500 14 Feb 1997 22:35:40 -0500 N miatopia index.html ~$SPELLING Mispelled words: Paragone Paragone's XXth interiority deconstructivism intersubjective Monod Vico Verum ipsum factum Cezanne Cezanne's Hayden metonymic deconstructions synecdochic prerational defamiliarizes Merleau-Ponty Husserl's Husserl hornless Merleau-Ponty's Cogito intellectualist involvements cogito Montaigne's chiasm subjectivities Deleuze Leibniz Serres Thales Bucsescu

    77

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:44 -0500 14 Feb 1997 22:35:44 -0500 N miatopia readings/thermodynamics.html ~$SPELLING Mispelled words: Asimov impingements Dewar Sadi Carnot Carnot's interconversion Helmholtz Clausius th radiational Rumford Bavaria Lavoisier Rumford's Boltzmann Ockham's differentiations Cajod Flodan Feynman

    78

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:46 -0500 14 Feb 1997 22:35:46 -0500 N miatopia readings/physics.html ~$SPELLING Mispelled words: Asimov nonrational palmy physikos B.C. Ockham Ockham's Archimedes A.D. Galilei

    79

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:49 -0500 14 Feb 1997 22:35:49 -0500 N miatopia readings/Berkeley.html ~$SPELLING Mispelled words: unperceivable juster Philosophiae Naturalis Mathematica Schol Def soever

    80

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:51 -0500 14 Feb 1997 22:35:51 -0500 N miatopia help/Chomsky.html ~$SPELLING Mispelled words: Lechte Routledge Naom Chomsky Noam Bloomfield behaviourist Zellig Chomsky's Habermas's Bourdieu's habitus Faurisson's Morpho Quine Kripke Lakatós Hintikka idealisation realised formalised Saussure's structuralist Saussure langue idealised Kristeva realisation Benveniste grammaticalness behaviourism

    81

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:53 -0500 14 Feb 1997 22:35:53 -0500 N miatopia help/biology.html ~$SPELLING Mispelled words: algology taxa MONERA PROTISTA postembryological HIPPOCRATES Leonardo da VESALIUS Fabrica AAAS AIBS des Galilei Stelluti microscopists MALPIGHI Antoni LEEUWENHOEK SWAMMERDAM HOOKE Nehemiah Malpighi's Hooke's Micrographia Systematics genos eidoes NEWTON's von Linne Latinized Carolus LINNAEUS Baptiste LAMARCK Georges CUVIER Mollusca Articulata Radiata JENNER's EHRLICH Schleiden SCHWANN THEODOR JAKOB Schwann histologist Baptista HELMONT Ingenhousz Sachs Nathanael Pringshem Blackman chloroplasts chloroplast WARBURG KREBS BAYLISS preformationists animalculist's ovist's BAER embryogenesis SPEMANN's organizer"area Gregor Johann MENDEL Mendel's VRIES Correns Gustav Tschermak Seysenegg Vries beadlike Wilhelm Weinberg Bateson Theodosius DOBZHANSKY's Garrod's TATUM MONOD Francois subunits

    82

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:55 -0500 14 Feb 1997 22:35:55 -0500 N miatopia help/time_concept.html ~$SPELLING Mispelled words: resonances UTC

    83

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:57 -0500 14 Feb 1997 22:35:57 -0500 N miatopia help/Poincare.html ~$SPELLING Mispelled words: Henri Poincare Ecole Polytechnique des Sorbonne Abelian Hermite DiophantineI codiscoverer Hendrik Lorentz Lecons mecanique celeste

    84

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:00 -0500 14 Feb 1997 22:36:00 -0500 N miatopia help/architecture.html ~$SPELLING Mispelled words: Vitruvius Wotton utilitas firmitas venustas commodotie delighte Daedalus Minotaur ecole des Jakob Burckhardt Siegfried Giedion Nikolaus Pevsner Heinrich Wolfflin Ptolemaic Ur Assyria Bas-Relief Assyrian Persepolis Minoan Knossos Phaistos Minoans Mycenaeans corbeled Atreus Mycenae Tiryns Tuscan columned Parthenon Anatolia Maison Carre Nimes thermae Caracalla Colosseum triforium basilican Byzantium Constantinople Sant Apollinare Classe Ravenna Hagia Merovingian Carolingian Ottonian traceried Suger Amiens Sainte-Chapelle Pubblico Siena Valentre Cahors Francois Mansart Inigo Spirito Filippo Brunelleschi Brunelleschi's degli Angeli Duomo Battista Alberti Michelozzo Donato Bramante Giulio Romano Lorenzo Bernini Borromini Wurzburg Residenz Palladian Romanized Charlemagne's Gropius Corbusier Mies der Rohe Mies's Kenzo Tange Alvar Aalto Eliel Eero Saarinen Venturi

    85

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:02 -0500 14 Feb 1997 22:36:02 -0500 N miatopia help/evidence.html ~$SPELLING Mispelled words: exlusionary declarant nonjudicial Fulminante

    86

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:04 -0500 14 Feb 1997 22:36:04 -0500 N miatopia head_trauma_clinic.html ~$SPELLING Mispelled words: Bucsescu *Autonomous morphocenters* diagramatically invariants

    87

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:06 -0500 14 Feb 1997 22:36:06 -0500 N miatopia help/sociology.html ~$SPELLING Mispelled words: nonliterate interlinked subfields sociologies Sigmund subfield hermeneutical Hegelian Wittgensteinian Hobbes Locke Giambattista Vico Auguste Comte Comte's Henri Tocqueville Emile Durkheim Georg Simmel Spencerians Sumner Spencerian Comtean interactionism Blumer microsociological Erving Goffman Talcott Vilfredo Pareto singlehandedly Pitirim Sorokin Lazarsfeld Jurgen Habermas Giddens Lukes macrosociology ethnomethodology

    88

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:08 -0500 14 Feb 1997 22:36:08 -0500 N miatopia help/Merleau-Ponty.html ~$SPELLING Mispelled words: Lechte Routledge Merleau-Ponty Husserl Saussure Saussure's Lévi Collège Barthes's Merleau-Ponty's Lycées Janson-de-Sailly Ecole Normale Supérieure d'Ulm Sorbonne Les Modernes Sartrian Descombes interworld emphasises epoché givenness Husserl's disconnexion Descartes's cogito imbrication phenomenologist universalisable perspectival être unreflected aporias Brunschvicg Algirdas-Julien Greimas Saussurian structuralist diachronical langue favour phenomenologist's otherness pluralising homogenising

    89

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:10 -0500 14 Feb 1997 22:36:10 -0500 N miatopia help/Hawking.html ~$SPELLING Mispelled words: Gehrig's Hawking's nontechnical

    90

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:12 -0500 14 Feb 1997 22:36:12 -0500 N miatopia help/Leibniz.html ~$SPELLING Mispelled words: Gottfried Wilhelm von Leibniz animistically Candide Altdorf Rosicrucian XIV Malebranche Arnauld Huygens Hanovers Brandenburg Locke's tabula rasa Leibniz's Essais Theodicee Monadology Wolff

    91

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:14 -0500 14 Feb 1997 22:36:14 -0500 N miatopia help/non-euclidean_geometry.html ~$SPELLING Mispelled words: geometries hyberbolic deg reductio absurdum Girolamo Saccheri ABCD Saccheri's Janos Bolyai Nicolai Lobachevsky Georg Riemann Cayley

    92

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:16 -0500 14 Feb 1997 22:36:16 -0500 N miatopia help/Template.html ~$SPELLING Mispelled words: Lechte Routledge

    93

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:19 -0500 14 Feb 1997 22:36:19 -0500 N miatopia readings/Heidegger.html ~$SPELLING Mispelled words: Heidegger Hofstadter Bauen buan bauen Nachbar neahgehur neah gebur Nachgebur Nachgebauer buri büren beuren beuron bhu beo ich bist bis colere cultura aedificare Gewohnte buildingthat wuon wunian Friede das Frye presencing Lessing unhoped fourfold's Raum peras horismos stadion spatium extensio Heidelberg onefold thingly tikto techne tec Totenbaum

    94

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:22 -0500 14 Feb 1997 22:36:22 -0500 N miatopia help/ethics.html ~$SPELLING Mispelled words: Metaethics metaethics cognitivism intuitionism nonnaturalistic cognitivist noncognitivist Intuitionists Prichard emotivism imperativism Ayer Carnap noncognitivism metaethical emotivist consequentialist nonconsequentialist deontological Consequentialism nonhedonistic Bentham consequentialism Rashdall realizationism Augustine Paley nonreflective Whately nontheists Immanuel Kant Hobbes Kantianism intuitionist nonnaturalist Rawls's bioethics

    95

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:24 -0500 14 Feb 1997 22:36:24 -0500 N miatopia help/Heidegger.html ~$SPELLING Mispelled words: Heidegger Freiburg Husserl Marburg Heidegger's Soren Kierkegaard Friedrich Nietzsche Sein Dasein Socratics Parmenides Holderlin Tillich

    96

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:26 -0500 14 Feb 1997 22:36:26 -0500 N miatopia help/geometry.html ~$SPELLING Mispelled words: geometries Thales Miletus Pythagoras Samos nn Apollonius Perga Oresme Fermat perspectivities projectivities Archimedes infinitesimals equiareal affine bicontinuous breadthless noncommutative symplectic

    97

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:28 -0500 14 Feb 1997 22:36:28 -0500 N miatopia help/positivism.html ~$SPELLING Mispelled words: Comte Auguste sociocracy

    98

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:30 -0500 14 Feb 1997 22:36:30 -0500 N miatopia help/empiricism.html ~$SPELLING Mispelled words: Spinoza Leibniz Locke Locke's esse est percipere

    99

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:32 -0500 14 Feb 1997 22:36:32 -0500 N miatopia help/Popper.html ~$SPELLING Mispelled words: Raimund Eccles interactionism

    100

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:34 -0500 14 Feb 1997 22:36:34 -0500 N miatopia help/Meyer.html ~$SPELLING Mispelled words: Ferdinand Jakob Burckhardt Becket

    101

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:36 -0500 14 Feb 1997 22:36:36 -0500 N miatopia help/Lobachevsky.html ~$SPELLING Mispelled words: Nikolai Ivanovich Lobachevsky N.S. Lobachevskian Geometriya

    102

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:38 -0500 14 Feb 1997 22:36:38 -0500 N miatopia help/Shapiro.html ~$SPELLING Mispelled words: Schapiro Shavly N.S. Gogh Cezanne

    103

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:40 -0500 14 Feb 1997 22:36:40 -0500 N miatopia help/uncertainty_principle.html ~$SPELLING Mispelled words: Heisenberg

    104

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:42 -0500 14 Feb 1997 22:36:42 -0500 N miatopia help/two_body_problem.html ~$SPELLING Mispelled words: Mathematica Keplerian Kepler Kepler's

    105

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:44 -0500 14 Feb 1997 22:36:44 -0500 N miatopia help/deconstruction.html ~$SPELLING Mispelled words: Derrida textuality deconstructionist intertext Derrida's deconstructions Heidegger logocentrism logocentric phallocentric phallocentrism

    106

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:46 -0500 14 Feb 1997 22:36:46 -0500 N miatopia stage_manager.html ~$SPELLING Mispelled words: Paragone

    107

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:48 -0500 14 Feb 1997 22:36:48 -0500 N miatopia help/Husserl.html ~$SPELLING Mispelled words: Husserl Gottingen Freiburg Brentano Husserl's Lebenswelt Heidegger significances

    108

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:50 -0500 14 Feb 1997 22:36:50 -0500 N miatopia help/reference_pages.html ~$SPELLING Mispelled words: Theodor Adorno Asimov Barthes Catastrophy Bataille Clive Henri Bergson Georges Braque Georg Cezanne Chabrol Naom Chomsky Deleuze Jaques Derrida Occam's Operon Duchamp Umberto Foucault Sigmund Galilei Socratics Godel Heidegger Husserl Immanuel Kant Lacan Gottfried Wilhelm Leibniz Nikolai Ivanovich Lobachevsky Ferdinand Merleau-Ponty Monod Friedrich Nietzsche Panovsky Poincare Raimund Riemann Serres Spinoza Giambattista Vico

    109

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:52 -0500 14 Feb 1997 22:36:52 -0500 N miatopia help/planar_motion.html ~$SPELLING Mispelled words: Zeno Elea dr dt vv vt tt XaX mi resistances

    110

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:55 -0500 14 Feb 1997 22:36:55 -0500 N miatopia help/physical_units.html ~$SPELLING Mispelled words: quantitate SI Systeme d'Unites CGS MKS Gaussian newton deg ss Coulomb'S statcoulomb abcoulomb fector MKSA gaussian kelvin mol cd

    111

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:57 -0500 14 Feb 1997 22:36:57 -0500 N miatopia help/set_theory.html ~$SPELLING Mispelled words: Georg aRb injective bijective

    112

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:00 -0500 14 Feb 1997 22:37:00 -0500 N miatopia help/Adorno.html ~$SPELLING Mispelled words: Lechte Routledge Theodor Adorno Wiesengrund Siegfried Kracauer Adomo Alban Schönberg irrationalism Habilitationschrift Kant Kierkegaard Horkheimer Zürich Larzarsfeld Doktor Faustus Adorno's centred structuralist Kristeva Derrida Gödel undecidability positivise terrorised semblances analysed unfree Simmel unfreedom Lacan Foucault socialised limitedness Hegel's positivity conceptualisation telos conceptualise conceptualising Minima Moralia Webern homogenising commercialisation deforce reappropriation Lyotard Bataille's Osborne normalised efficacity

    113

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:03 -0500 14 Feb 1997 22:37:03 -0500 N miatopia help/hybrid.html ~$SPELLING Mispelled words: Brangus Transgenesis heterosis Gertrudis

    114

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:05 -0500 14 Feb 1997 22:37:05 -0500 N miatopia help/Cezanne.html ~$SPELLING Mispelled words: Cezanne Aix Emile Pissarro paintwork Auvers Musee d'Orsay lifes Mont Sainte-Victoire Cezanne's Fauves

    115

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:07 -0500 14 Feb 1997 22:37:07 -0500 N miatopia help/consciousness.html ~$SPELLING Mispelled words: Locke unscanned Wundt Titchener Sigmund replicability Ryle U.T. introspectable Broadbent Dennett's Ulric Neisser

    116

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:09 -0500 14 Feb 1997 22:37:09 -0500 N miatopia help/Godel.html ~$SPELLING Mispelled words: Godel Godel's undecidability N.J.

    117

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:13 -0500 14 Feb 1997 22:37:13 -0500 N miatopia readings/Leibniz.html ~$SPELLING Mispelled words: Monadology Gottfried Wilhelm Leibniz Latta Theod aggregatum un ce esprits Entelechies Appetition l'appetit Bayle Rorarius echousi enteles autarkeia appetits flavoured consecutiveness imite Discours Conformite ss empirics reflexion reasonings Abrege connexion perfections sqq Poiret convenance perfectihabiae Hermolaus Barbarus patir passivities rendre perspectivement vont symbolisent avec mediately sympnoia panta Hippocrates entelechy entelechies unembodied envelopments diminutions preformation elus naturellement slough des depouilles organiques conformite appetitions echantillons unrewarded

    118

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:17 -0500 14 Feb 1997 22:37:17 -0500 N miatopia readings/mathematics_and_philosophy.html ~$SPELLING Mispelled words: Thales Serres Harari Josue Hieronymus Diogenes Laertius Plutarch isoceles Auguste Comte Aristarchus Samos Proclus Eudemus Geometrie grecque fluminis variatio Junius Nipsus organon Bergsonian gnomonic homothetic homothesis Khephren Mykirionos Cheops articulatory blindings mensuration faber propaedeutic Ptolemaic perspectival instauration geometers Desargues Monge Gergonne scenography unanalogous metry mythification Ra Husserl arcana involuted etat ichnography stereometry explicitations transcendency Timaeus diachrony trans shadowless noesis knowns virtualities noemes Arno Presocratic Speusippus Philosophie Cours lecons Francois Dagognet Alial Sinaceur Troisieme lecon Onzieme Herodotus Henri Bergson André Robinet Universitaires isomegethes Gaspar tenebres Dumezil Theaetetus Liddell pyr Pappus Pauly-Wissow

    119

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:19 -0500 14 Feb 1997 22:37:19 -0500 N miatopia help/Vico.html ~$SPELLING Mispelled words: Vico Battista Giambattista Scienza nuova Hobbes Baruch Spinoza Michelet

    120

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:21 -0500 14 Feb 1997 22:37:21 -0500 N miatopia help/group_theory.html ~$SPELLING Mispelled words: gh hk eg ge xy yx semigroup Semigroups abelian Galois homomorphism Homomorphisms

    121

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:24 -0500 14 Feb 1997 22:37:24 -0500 N miatopia help/psycholinguistics.html ~$SPELLING Mispelled words: mand Noam Chomsky mentalistic goed mouses

    122

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:26 -0500 14 Feb 1997 22:37:26 -0500 N miatopia help/Ruskin.html ~$SPELLING Mispelled words: Ruskin Spenser Ruskin's Effie Fors Clavigera McNeill Praeterita

    123

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:28 -0500 14 Feb 1997 22:37:28 -0500 N miatopia help/dialectics.html ~$SPELLING Mispelled words: Zeno Elea Parmenides Kant Fichte Schelling

    124

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:31 -0500 14 Feb 1997 22:37:31 -0500 N miatopia theory.html ~$SPELLING Mispelled words: Wallece Xn

    125

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:33 -0500 14 Feb 1997 22:37:33 -0500 N miatopia outline.html ~$SPELLING Mispelled words: Monod Arnheim Asimov Deleuze Serres Burgin Kernes chp Heidegger Piaget Sheldrake Morphic Gottfried Wilhelm Leibniz Monodology Henri Poincare Bergson Bergsonism Reichenbach Coordinative Husserl Merleau-Ponty TBA Geometry:Space Heelan Multiplicitous *class

    126

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:36 -0500 14 Feb 1997 22:37:36 -0500 N miatopia help/machine.html ~$SPELLING Mispelled words: multiplications kinematic

    127

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:38 -0500 14 Feb 1997 22:37:38 -0500 N miatopia help/Descartes.html ~$SPELLING Mispelled words: Galilei Touraine Fleche Poitiers Beeckman Berulle Dioptrics Archimedean enquiry

    128

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:41 -0500 14 Feb 1997 22:37:41 -0500 N miatopia help/operon.html ~$SPELLING Mispelled words: Operon operon Francois Monod galactosidase galactose polymerase i inducer mRNA histidine corepressor CR Eukaryotes eukaryotes zeta

    129

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:43 -0500 14 Feb 1997 22:37:43 -0500 N miatopia help/Riemann.html ~$SPELLING Mispelled words: Georg Friedrich Riemann Uber Hypothesen welche der Geometrie zu Grunde liegen

    131

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:48 -0500 14 Feb 1997 22:37:48 -0500 N miatopia help/icon.html ~$SPELLING Mispelled words: eikon Constantinople Iconostasis Neoplatonic Tretyakov Umileniye

    133

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:53 -0500 14 Feb 1997 22:37:53 -0500 N miatopia help/Gleizes.html ~$SPELLING Mispelled words: Gleizes Cezanne Georges Braque Picasso Metzinger cubisme Gleize's

    135

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:58 -0500 14 Feb 1997 22:37:58 -0500 N miatopia other.html ~$SPELLING Mispelled words: Heidegger Norberg Frampton Muntagnola Bucsescu Vico Bergson Knesel Barthes Polany Bachelard Husserl Merleau-Ponty Bataille Hayden nomological Habermas Metatron Yurick

    136

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 06:56:36 -0500 17 Feb 1997 06:56:36 -0500 N ? index.html ~~http://www.pratt.edu/ Broken URL is http://www.pratt.edu/

    137

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:37 -0500 17 Feb 1997 07:24:37 -0500 N ? index.html ~~help/physics.html Broken URL is help/physics.html

    138

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:45 -0500 17 Feb 1997 07:24:45 -0500 N ? index.html ~~help/psychology.html Broken URL is help/psychology.html

    139

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:51 -0500 17 Feb 1997 07:24:51 -0500 N ? index.html ~~help/literarary_criticism.html Broken URL is help/literarary_criticism.html

    141

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:25:01 -0500 17 Feb 1997 07:25:01 -0500 N ? projects.html ~~guestbook.html Broken URL is guestbook.html

    142

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:25:06 -0500 17 Feb 1997 07:25:06 -0500 N ? index.html ~~help/Friedman.html Broken URL is help/Friedman.html
    ent Dennett's Ulric Neisser

    116

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:09 -0500 14 Feb 1997 22:37:09 -0500 N miatopia help/Godel.html ~$SPELLING Mispelled wordspublic_html/_vti_pvt/_x_todo.htm010064400017520000001000002162310712642300500204300ustar00matthewsother00001460002002 Active To Do List

    Active To Do List

    Number Task Pri Author Created By Tool Created On Modified On Completed Modified By Assigned To Link To Magic Description

    3

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:49 -0500 14 Feb 1997 22:33:49 -0500 N miatopia readings/Lynn.html ~$SPELLING Mispelled words: Multiplicitous

    5

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:53 -0500 14 Feb 1997 22:33:53 -0500 N miatopia readings/Burgin.html ~$SPELLING Mispelled words: Burgin Cornford centre supercelestial omnivoyant Foucault localisation Husserl Augustine Brunelleschi theocentric Empedocles Minkowski Aristotelianism centres Lissitsky Lobachevsky Riemann Vertov aeroplanes perspectival technologism Virilio Bolter Soweto irruptions geometries Mobius Kant Derridean intravagination Debord

    6

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:54 -0500 14 Feb 1997 22:33:54 -0500 N miatopia help/Monod.html ~$SPELLING Mispelled words: Monod Andre Lwoff Francois

    7

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:55 -0500 14 Feb 1997 22:33:55 -0500 N miatopia help/Le-duc.html ~$SPELLING Mispelled words: Viollet-le-Duc Vezelay Sainte-Chapelle Notre Lassus Carcassone Pierrefonds Ecole des Beaux-Arts

    8

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:55 -0500 14 Feb 1997 22:33:55 -0500 N miatopia help/Braque.html ~$SPELLING Mispelled words: Georges Braque Picasso Havre Academie Humbert Ecole des Beaux-Arts Bonnat Braque's Andre Derain Henri Matisse Vlaminck Fauve Fauves Cezanne d'Automne Bernheim-Jeune geometrization Les d'Avignon nonillusionistic nonimitative Kunstmuseum Basel ochers Louvre Vence

    9

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:56 -0500 14 Feb 1997 22:33:56 -0500 N miatopia help/analog.html ~$SPELLING Mispelled words: springweight nomography y=f planimeters retranslation microcircuitry

    10

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:57 -0500 14 Feb 1997 22:33:57 -0500 N miatopia syllabus.html ~$SPELLING Mispelled words: interactionist Leibniz Poincare Piaget Heelian Hillier morphic Bergson Husserl Deleuze

    11

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:58 -0500 14 Feb 1997 22:33:58 -0500 N miatopia help/Serres.html ~$SPELLING Mispelled words: Lechte Routledge Serres Serres's Sadi Carnot Carnot's Helmholtz Clausius stochastics Bourdieu Gaston Bachelard enquiry Agen Ecole Normale Supérieure d'Ulm agrégation Leibniz's Foucault Clermont-Ferrand Vincennes Sorbonne analysed Fontaine traduire characterises structuralist analogically similia facilia Saussure Bourbaki Georges Dumézil's Dumézil analogon organises loganalyse comparativist virtuality emphasised poeticising fictionalising Emile endeavour replac ing Dysfunctioning traveller Lucretius rerum natura Lucretius's clinamen endeavours

    12

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:59 -0500 14 Feb 1997 22:33:59 -0500 N miatopia help/Bell.html ~$SPELLING Mispelled words: Clive Bloomsbury Woolf Cezanne Proust

    13

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:00 -0500 14 Feb 1997 22:34:00 -0500 N miatopia help/pyschology.html ~$SPELLING Mispelled words: neuroanatomy neurophysiology Comparatie Ethology outpoint Psychometricians ethologists Konrad Sigmund reconstructions Piaget

    14

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:02 -0500 14 Feb 1997 22:34:02 -0500 N miatopia help/Bataille.html ~$SPELLING Mispelled words: Lechte Routledge Bataille Georges Billon paralysed Auch Granero emphasises Lascaux André Breton Adrien Borel analysand theorise Blanchot Barthes Foucault Derrida Reims Lycée Epernay baccalauréat demobilised Ecole des Chartes Hautes Hispaniques Nietzsche Médailles Bibliothèque Nationale Alexandre Kojève Picasso Icarus Hegelian horizontality homogenising unassimilable disequilibrium Gogh Mauss analysed Laplace limitedness analogically Hollier isn contestation amor fati otherness

    15

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:02 -0500 14 Feb 1997 22:34:02 -0500 N miatopia help/euclidean_geometry.html ~$SPELLING Mispelled words: Hilbert

    16

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:03 -0500 14 Feb 1997 22:34:03 -0500 N miatopia help/Berkeley.html ~$SPELLING Mispelled words: Cloyne Locke esse est percipi Lockean

    17

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:04 -0500 14 Feb 1997 22:34:04 -0500 N miatopia help/Newton.html ~$SPELLING Mispelled words: N.S. O.S. Woolsthorpe Grantham Lincolnshire Gassendi Vieta Leibniz fluxions maxima minima Lucasian Hooke Huygens alchemical Opticks Kepler's inertially Hooke's Halley Halley's Philosophiae naturalis mathematica nonresisting pendula Kepler unreconciled recoinage singlehandedly

    18

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:05 -0500 14 Feb 1997 22:34:05 -0500 N miatopia help/transformation.html ~$SPELLING Mispelled words: x'=x+y x'x'+y'y x+y

    19

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:07 -0500 14 Feb 1997 22:34:07 -0500 N miatopia help/history_of_mathematics.html ~$SPELLING Mispelled words: ARITHMEtic Rhind Golonishev sexagesimal Hammurabic Pythagoras Samos atomism Zeno Elea Zeno's Pythagoreans Eudoxus Cnidus Pythagoras's axiomatization Archimedes Apollonius Perga Aristarchus Hipparchus Nicaea Claudius Ptolemy geometers Pappus Almagest sines Menelaus Byzantines Constantinople Isfahan Jundishapir Farazi's Siddhantas Khwarizmi's Ptolemy's Battani Khayyam Haitham Alhazen Abul-Wafa Leonardo Pisano Fibonacci Liber Oresme Bradwardine Georg von Peuerbach Regiomontanus Vitrivius da Battista Alberti Piero della Niccolo Tartaglia Scipione Gerolamo Cardano Ars Rafaello Bombelli Francois Viete Viete's Stevin Napier Kepler Discours methode Geometrie Bonaventura Cavalieri Fermat Huygens Gottfried Wilhelm Leibniz integrations differentiations fluxional quadrature Leibniz's dx dy Jakob Johann Leonhard Euler Euler's Comte Lagrange Laplace Traite mecanique celeste Friedrich geodosy Augustin Cauchy Ecole Polytechnique Legendre Gaspard Monge Lacroix Monge's Biot Poncelet Dupin Coriolis Poinsot Dirichlet Jacobi Riemann Riemann's nondifferentiable Theodor Weierstrass Leopold Kronecker Kronecker's Dedekind Gergonne Steiner Staudt Ferdinand Mobius Plucker Chasles Cayley geometries Nikolai Ivanovich Lobachevsky Bolyai Grassman affine situs Liouville Hermite Lindemann Baire Emile Borel Hadamard Lebesgue Picard Henri Poincare Babbage Boole Bertrand Evariste Galois Helmholtz Sophus Elie Cartan Gottlob Frege Giuseppe Peano Augustus logicism logicist Mathematica Hilbert Hilbert's Neumann Godel Brouwer intuitionism

    20

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:08 -0500 14 Feb 1997 22:34:08 -0500 N miatopia help/Cantor.html ~$SPELLING Mispelled words: Georg Ferdinand Philipp nondenumerability Halle Hilbert Bertrand Zermelo

    21

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:09 -0500 14 Feb 1997 22:34:09 -0500 N miatopia help/aesthetics.html ~$SPELLING Mispelled words: nonartistic counterposition nondiscursive Immanuel Kant's Kant Santayana Santayana's

    22

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:10 -0500 14 Feb 1997 22:34:10 -0500 N miatopia help.html ~$SPELLING Mispelled words: Bucsescu resouces Socratics Parmenides B.C. Heraclitus Zeno Elea

    23

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:11 -0500 14 Feb 1997 22:34:11 -0500 N miatopia readings/Poincare.html ~$SPELLING Mispelled words: Henri Poincare générale des geometricians tabula geometrician L'Espace géométrie métaphysique t.iii Ryding

    24

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:14 -0500 14 Feb 1997 22:34:14 -0500 N miatopia readings/Monod.html ~$SPELLING Mispelled words: Monod teleonomy morphogenesis Austryn Wainhouse artificialness geometries Fontainebleau Barbizon Apremont translational paleolithic morphogenetic ne varietur teleonomic exorcizing structuration Escherichia coli undemonstrable consubstantial projectively

    25

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:15 -0500 14 Feb 1997 22:34:15 -0500 N miatopia help/Deleuze.html ~$SPELLING Mispelled words: Lechte Routledge Deleuze Lecercle délire Nietzsche Kant Bergson Spinoza Différence répétition Logique sens Félix Guattari Kafka Foucault Derrida travelled Lycée Carnot Sorbonne Butor Tournier Châtelet Ferdinand Aliquié Georges Canguilhem Hyppolite agrégation lycées Centre Recherche Scientifique CNRS Vincennes horizontality Deleuzian emphasising Nietzschean antidialectical favour Proust Leibniz unities Lacan Antonin Artaud rhizomatic harbour Nietzscheanism organised

    26

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:17 -0500 14 Feb 1997 22:34:17 -0500 N miatopia help/Einstein.html ~$SPELLING Mispelled words: Ulm N.J. Aarau cantonal privatdocent Wilhelm Gesellschaft luminiferous Hendrik Antoon Lorentz's nonaccelerated Maxwellian Boltzmann Gibbs Boltzmann's von Smoluchowski Perrin Grossmann Tullio Civita Gregorio Ricci-Curbastro Minkowski's Philipp Lenard Szilard Leopold Infeld Banesh Hoffmann Heisenberg Niels Bohr

    27

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:18 -0500 14 Feb 1997 22:34:18 -0500 N miatopia help/logical_positivism.html ~$SPELLING Mispelled words: Moritz Schlick Carnap Godel Gottlob Frege Bertrand Ayer's tautologous aesthetical

    28

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:19 -0500 14 Feb 1997 22:34:19 -0500 N miatopia help/black_hole.html ~$SPELLING Mispelled words: Laplace Laplace's Schwarzschild mi nonspherical Cygni Hubble

    29

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:20 -0500 14 Feb 1997 22:34:20 -0500 N miatopia help/Hegel.html ~$SPELLING Mispelled words: Georg Wilhelm Friedrich Tubingen Jena Heidelberg Immanuel Kant Weltgeist Hegelian Hegel's nonrational subjectivistic Hegelians Soren Kierkegaard

    30

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:22 -0500 14 Feb 1997 22:34:22 -0500 N miatopia help/Nietzsche.html ~$SPELLING Mispelled words: Lechte Routledge Friedrich Nietzsche Nietzsche's Foucault Saxony Kaufmann's Pforta maths Schopenhauer Basel structuralist horizontality homogenising ideolectal Dionysian Apollonian Schlegel Nietzschean ressentiment Zarathustra calculability favour characterised Kant disequilibrium centred Amor fati siécle philosophising Kristeva

    31

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:22 -0500 14 Feb 1997 22:34:22 -0500 N miatopia help/Bergson.html ~$SPELLING Mispelled words: Henri Bergson Clermont-Ferrand UNESCO

    32

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:24 -0500 14 Feb 1997 22:34:24 -0500 N miatopia help/Spinoza.html ~$SPELLING Mispelled words: Baruch Spinoza Kabbalah Maimonides Gersonides Crescas Neoplatonism Rijnsburg Leiden Oldenburg Voorsburg Heidelberg Gottfried Wilhelm von Leibniz Descartes's philosophiae Spinoza's Cogitata metaphysica Tractatus theologico-politicus posthuma emendatione intellectus Ethica ordine geometrico demonstrata Elwes scholia lemmata Encyclopedists Goethe Coleridge

    33

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:27 -0500 14 Feb 1997 22:34:27 -0500 N miatopia help/philosophy.html ~$SPELLING Mispelled words: philosophos Socratics Bertrand Montaigne Zeno Elea Atomism neurophysiologists Irrationalist Soren Kierkegaard Pythagoras Samos Baruch Spinoza Gottfried Wilhelm von Leibniz Kepler Anaxagoras Augustine Immanuel Kant nonrational episteme Miletus Anatolia Thales Anaximender Anaximenes Milesian Anaximander Heraclitus Parmenides Delphic Neoplatonism telos Nicolaus turmoils Philo Saadia ben Gaon Neoplatonist Ibn Gabirol Maimonides Kabbalah Kindi Farabi Avicenna ibn Sina intuitionist Ghazali Avicenna's Ghazali's Averroes Rushd Khaldun Origen Plotinus Anselm Abelard Albertus Scotus Occam Occam's Aristotelianism Descartes's Spinoza's preestablished Locke Locke's esse est percipere Kant's Georg Friedrich Hegel's Hegelianism Hegelian Kierkegaard's Husserl Heidegger Vedic nonorthodox Samkhya Vaisheshika Nyaya Mimamsa Charvaka Jainism Kapila prakriti purusha Patanjali Isvara Kanada Gantama Purva Uttara Jainini Kumarila Bhatta Prabhakara Dharma Vedantic Badarayana's atman nondualist advaita Shankara maya nondualism vishishtadvaita Ramanuja dualist dvaita Madhva atomism dharma Dharmas coorigination anatta skandhas Mahasanghikas Sthaviras Mahayana Theravada Pudgalavadins Vaibhashika Sautrantika pudgala Vaibhashikas Saravastivadin dharmas Sautrantikas Yogacara Madhyamika Nagarjuna Ching Mencius Hsun-tzu nonabsoluteness Hsun-tzu's Neoconfucianism Neoconfucians Neoconfucian Te semilegendary Tzu Chuang-tzu Chuang-Tzu Moists

    34

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:28 -0500 14 Feb 1997 22:34:28 -0500 N miatopia help/pre-socratics.html ~$SPELLING Mispelled words: Socratics Miletus Anatolia Thales Anaximander Anaximenes Milesian Heraclitus Parmenides

    35

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:29 -0500 14 Feb 1997 22:34:29 -0500 N miatopia help/phenomenology.html ~$SPELLING Mispelled words: Husserl Husserl's presuppositionless noesis noema Scheler Heidegger Merleau-Ponty Binswanger Thomist phenomenalism

    36

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:31 -0500 14 Feb 1997 22:34:31 -0500 N miatopia help/Barthes.html ~$SPELLING Mispelled words: Lechte Routledge Barthes André Gide A.J Greimas Ecole des Hautes Sociales Collège fictionalises Godard's personalised semiotician Barthes's Michelet's analyse criticise modelled Saussure's langue imperiality sui generis naturalised unanalysable centre centred Camus naturalisation semiotician's formalisation scientificity Semiology Saussure mobilises tusser rationalisations Sarrasine semic proairetic analysing Sade Logothetes jouissance

    37

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:33 -0500 14 Feb 1997 22:34:33 -0500 N miatopia readings/origin_of_language.html ~$SPELLING Mispelled words: Serres Harari Josue logico Spinoza Leibniz Laplace Carnot stateurs fixity stabilities Laplace's Bergson's Bergsonism entropic negentropy invariances hypercomplex genotypical homeorrhetic chreodes Heraclitus Parmenides homeorrhesis syrrhesis diarrhesis quasistable aleatory upsteam negentropic phylogenesis rhesis multitemporality Boltzmann neurovegetal homeorhesis homoiothermal globalizing Francois psychologies intropathy proprioceptivity coenesthesia functionings vagosympathetic integrations chiasms readaptation rebalancing proto stereospecific inorganization unconsciouses eros organon meanderings presences palais des merveilles Sur les XVIIe philosophiques homos rhysis syrrhein diarrhein histanai Naissance dans texte Lucrece Fleuves turbulences Minuit Lucretius Homoiothermy poikilothermal homoiothernial homeology Spillman Henri Atlan L'Organisation biologique theorie l'information Organization,"Journal Entre cristal fumee Essai sur l'organisation Seuil Urbana Sigmund Strachey Hogarth

    38

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:35 -0500 14 Feb 1997 22:34:35 -0500 N miatopia readings/Newton.html ~$SPELLING Mispelled words: Scholium Philosophiae Naturalis Mathematica Motte Florian Cajori unequable disquisitions effectually

    39

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:37 -0500 14 Feb 1997 22:34:37 -0500 N miatopia readings/Deleuze.html ~$SPELLING Mispelled words: Deleuze Leibniz Conley diadoche multiplications pregiven Timaeus possibles compossibles fuscum subnigrum aleatory Leibniz's submultiples intensions prehension prehends prehend prehensions prehended prehending superject subjectification Bergson fluvia Virtualities virtualities incompossible intraworldly prehensive compossible bifurcations incompossibilities chaosmos Leblanc Borges Gombrowicz fibered dissonances Sextus Lucretia Rubicon Boulez

    40

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:39 -0500 14 Feb 1997 22:34:39 -0500 N miatopia help/Derrida.html ~$SPELLING Mispelled words: Lechte Routledge Derrida deconstructive grammatology Ecole Normale Supérieure Ulm Bertrand aporias phenomenologists recognises différance Saussurian structuralist Saussure structuralists unconceptualisable conceptualisable différer pharmakon Lévi grammalogist endeavours unpresentable ideographic Glas Sorbonne Derridean Laclau im Ponge éponge Wordsworth Signéponge iterability Culler Searl J.L performatives performative

    41

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:40 -0500 14 Feb 1997 22:34:40 -0500 N miatopia help/Asimov.html ~$SPELLING Mispelled words: Asimov Asimov's

    42

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:41 -0500 14 Feb 1997 22:34:41 -0500 N miatopia help/ontology.html ~$SPELLING Mispelled words: Wolff Wolff's Immanuel Kant Heidegger Quine Anselm's Wilhelm Friedrich

    43

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:42 -0500 14 Feb 1997 22:34:42 -0500 N miatopia help/gestalt_psychology.html ~$SPELLING Mispelled words: Koffka Kohler Wertheimer Duncker Friedrich Perls Gestalten

    44

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:44 -0500 14 Feb 1997 22:34:44 -0500 N miatopia help/structuralism.html ~$SPELLING Mispelled words: structuralist Ferdinand Saussure Saussure's langue Trubetzkoy Jakobson singlemindedly narratology narratologists Barthes antihumanistic semiology Peirce Deleuze's schizoanalysis Derrida's Foucault's Kristeva's semanalysis poststructuralism *Also

    45

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:45 -0500 14 Feb 1997 22:34:45 -0500 N miatopia help/idealism.html ~$SPELLING Mispelled words: epistemologist esse est percipi immaterialism Immanuel Kant Kant's Johann Gottlieb Fichte Fichte's Hegel's Hegelian

    46

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:46 -0500 14 Feb 1997 22:34:46 -0500 N miatopia markers.html ~$SPELLING Mispelled words: interactionist Corbusier Norberg Eisenman Piaget euclidian Heelan

    47

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:51 -0500 14 Feb 1997 22:34:51 -0500 N miatopia readings/Arnheim.html ~$SPELLING Mispelled words: Arnheim Blaise Pensees Butor Kohler gestalten naturphilosophische equilibria Voigt lucite Angrist Hepler Tyndall Auguste Traite des degenerescences intellectuelles morales espece humaine Baudelaire's Fleurs Clausius Boltzmann mori Nordau siecle Lombroso nystagmus retinae Whyte Kasimir Malevich's Suprematist lifes Hogarth Kostelanetz Smithson's Tuming Landsberg geometrician Apollinare Nuovo Ravenna Warhol microstates macrostate micromoment micromoments Lecomte Nouy Eddington interrelational Rubens Piero della Verteilungscharakter Pollock's Arp reliefs selfcontained Bork macrostates Schrodinger Kepler's macrostructures microevents Hagia Poussin Poussin's Gombrich Bonnencontre

    48

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:52 -0500 14 Feb 1997 22:34:52 -0500 N miatopia help/Chabrol.html ~$SPELLING Mispelled words: Chabrol Hitchcock Cahiers Les Biches infidele avant nuit d'orgueil

    49

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:53 -0500 14 Feb 1997 22:34:53 -0500 N miatopia help/Duchamp.html ~$SPELLING Mispelled words: Duchamp Cezanne Fauve Eadweard MuyBridge's Picabia Guillaume Apollinaire Duchamp's Arensberg illusionistic Etant Donnes

    50

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:55 -0500 14 Feb 1997 22:34:55 -0500 N miatopia help/Freud.html ~$SPELLING Mispelled words: Lechte Routledge Sigmund vitalism unanalysable emphasised Lacan Laplanche chiasmus Thanatos Freiburg Anschluss Berggasse Charcot Salpetrière Brücke Brücke's Helmholtz Gustav Fechner Breuer physicalist vitalist Fliess behaviourist centre positivistically imbricated meagre overdetermination ideolect analysand Pontalis meta

    51

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:57 -0500 14 Feb 1997 22:34:57 -0500 N miatopia help/theory_of_relativity.html ~$SPELLING Mispelled words: microworld Space-Time Eddington Eddington's Galilean Minkowski WEP Friedrich Bessel von Eotvos EEP gh blueshifted precisions Brans Dicke Shapiro Nordtvedt landers mi supermassive schwarzschild nonrotating Kerr

    52

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:34:58 -0500 14 Feb 1997 22:34:58 -0500 N miatopia help/realism.html ~$SPELLING Mispelled words: Nominalism Abelard Occam

    53

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:00 -0500 14 Feb 1997 22:35:00 -0500 N miatopia help/Kant.html ~$SPELLING Mispelled words: Immanuel Kant Konigsberg pietists Collegium Fridiricianum Wolff Gottfried Wilhelm von Leibniz Kant's Principiorum Primorum Cognitiones Metaphysicae Dilucidato Leibnizian LaPlace Monadology Wolffian Enquiry Descartes's nonempirical teleologic contentless prestructured Noumenon spatiotemporal purposiveness Johann Gottlieb Fichte Friedrich Schelling Schopenhauer Cassirer

    54

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:01 -0500 14 Feb 1997 22:35:01 -0500 N miatopia help/absolute.html ~$SPELLING Mispelled words: Johann Gottlieb Fichte Friedrich Schelling Hegelian

    55

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:04 -0500 14 Feb 1997 22:35:04 -0500 N miatopia readings/origin_of_geometry.html ~$SPELLING Mispelled words: Serres Harari Josue Renan Thales Pythagoras doxography Diogenes Laertius Plutarch Athenaeus Proclus Simplicius diaIogue prosopopoeias the,powers resemblances Meno Timaeus Parmenides agonal geometer Ra stereometric diaphaneity Leibniz Pythagoreans Democritus scriptive signaletiques tum wom Phaethon doxographies geometers arithmeticians Rosetta Delos apagogic scholium Hippasus Metapontum scholia alogon Theaetetus Corinth metrological Callicles otherness commensurability demonstate undecidable undecidably Theodorus Pythagoreanism irrationals Girard thematized intersubjective sacrifical Pontifex thatjoins Grasset explaiiatioii Origine geometrie Nord-Ouest Minuit reductio absurduni Girard's Epicurus Lucretius Rerum Natura Iphigenia phvsics Naissance dans texte Luctice Fleuves el turbulences

    56

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:05 -0500 14 Feb 1997 22:35:05 -0500 N miatopia help/Tzara.html ~$SPELLING Mispelled words: Tristan Tzara Hulsenbeck Andre Breton Aragon aventure celeste Antipyrine coeur gaz Dadaism

    57

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:06 -0500 14 Feb 1997 22:35:06 -0500 N miatopia help/causality.html ~$SPELLING Mispelled words: Galilei Immanuel Kant

    58

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:08 -0500 14 Feb 1997 22:35:08 -0500 N miatopia help/Lacan.html ~$SPELLING Mispelled words: Lechte Routledge Lacan Sorbonne Gaëtan Clérambault Roudinesco Lacan's Sainte Garbo Arturo Toscanini Alexandre Kojève's Hegelian intersubjective Hegel's subversiveness behaviour Heinze Hartmann centre structuralist enfans Saussurian significations analysand resonances misreadings analysed Jakobson's connexion decentres mis-recognises méconnaît Durkheim symbolised formalised Poe's Tbe fulfilment Lévi n'existe n'est toute symbolise Frege Gödel Roudinesco's

    59

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:10 -0500 14 Feb 1997 22:35:10 -0500 N miatopia help/metaphysics.html ~$SPELLING Mispelled words: Milesian Heraclitus Parmenides Pythagoras Samos Anaxagoras Empedocles Baruch Spinoza Immanuel Kant Gottfried von Leibniz atomists Hobbes Johann Gottlieb Fichte teleologic Spinoza's Hegel's undemonstrable phenomenologists

    60

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:11 -0500 14 Feb 1997 22:35:11 -0500 N miatopia help/epistemology.html ~$SPELLING Mispelled words: knower episteme Protagoras objectivism Theaetetus Dualisms substantivized Sextus Empiricus Baruch Spinoza von Leibniz Locke Immanuel Kant Noumenon Neorealists

    61

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:13 -0500 14 Feb 1997 22:35:13 -0500 N miatopia help/materialism.html ~$SPELLING Mispelled words: Democritus Atomism Democritus's Epicurus Lucretius rerum natura Gassendi Hobbes d'Holbach Ryle physicalism

    62

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:14 -0500 14 Feb 1997 22:35:14 -0500 N miatopia help/Panovsky.html ~$SPELLING Mispelled words: Panofsky iconology N.J. Netherlandish Panofsky's Albrecht Durer Renascences

    63

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:15 -0500 14 Feb 1997 22:35:15 -0500 N miatopia help/linear_algebra.html ~$SPELLING Mispelled words: x,y x',y x+x y+y ax,ay x'y v+v av aT

    64

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:18 -0500 14 Feb 1997 22:35:18 -0500 N miatopia help/art.html ~$SPELLING Mispelled words: ars Vasari Johann Winckelmann Heinrich Wolfflin Xenocrates Plotinus Neoplatonism Leonardo da Vasari's Neoplatonic Diderot Georg Wilhelm Friedrich Delacroix Academie des Baudelaire intentionality Clive Theodor Adorno oppositional poststructuralism Monticello Augustus Pugin's Paxton's Gropius's Dessau Mies Der Rohe's reposeful Auguste Rodin Constantin Brancusi's Aleksandr Archipenko Naum Gabo isms Monet's Louvre Georges Seurat Gauguin Gogh Cezanne Picasso's d'Avignon Armand Batos Piet Mondrian neoplastic Stijl Willem Kooning Kline Motherwell Rothko Clyfford Merisi Caravaggio Gustave Courbet Velazquez nonescapist Nochlin contemporaneity Gemaldegalerie Proudhon Honore Daumier Francois Edouard Manet Courbet's von Menzel Ruskin Madox Burne Rossetti Rennie Voysey Mackmurdo Maybeck nonimitative Picasso Braque lifes duced geometrization Les Vauxcelles Independants Braque's ochers papiers colles illusionistic Gris Fernand Leger Gleizes Metzinger Delaunay Duchamp Miro Amedee Ozenfant Chagall Henri Laurens Lipchitz

    65

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:20 -0500 14 Feb 1997 22:35:20 -0500 N miatopia help/harmonic_motion.html ~$SPELLING Mispelled words: Hooke Hooke's inextensible massless deg cos Lissajous

    66

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:21 -0500 14 Feb 1997 22:35:21 -0500 N miatopia help/topology.html ~$SPELLING Mispelled words: crinkly homeomorphic torus invariants Euler invariations Poincare Henri homotopy Poincare's

    67

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:23 -0500 14 Feb 1997 22:35:23 -0500 N miatopia help/rationalism.html ~$SPELLING Mispelled words: Aristotelianism Kabbalah Montaigne Descartes's Baruch Spinoza Spinoza's Gottfried Wilhelm von Leibniz preestablished

    68

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:25 -0500 14 Feb 1997 22:35:25 -0500 N miatopia help/literary_criticism.html ~$SPELLING Mispelled words: krinein kritikos LONGINUS Johann Gottfried von Schlegel Immanuel KANT COLERIDGE HAZLITT PATER Hippolyte Adolphe TAINE JUNG's VALERY FRYE Lovejoy Cleanth Wellek repr Balakian Daiches Empson Frye Leitch Nabokov Woolf

    69

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:27 -0500 14 Feb 1997 22:35:27 -0500 N miatopia help/language.html ~$SPELLING Mispelled words: monogenesis subpopulations polygenesis epicommunicational transcode perro chien Hund sobaka kelev mbwa animush inu implicational Sociolinguistics transdisciplinary

    70

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:28 -0500 14 Feb 1997 22:35:28 -0500 N miatopia help/political_science.html ~$SPELLING Mispelled words: subdiscipline Nicolo Machiavelli Auguste Comte Vilfredo Pareto Duguit Hauriou Jellinek behavioralist Lasswell Lippmann Wallas Behavioralists behavioralists behavioralism

    71

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:30 -0500 14 Feb 1997 22:35:30 -0500 N miatopia help/Foucault.html ~$SPELLING Mispelled words: Lechte Routledge Foucault Poitiers agrégation Uppsala Folie déraison Histoire folie âge classique doctorat état Georges Canguilhem alia systematicity Saussure langue ahistorical Nietzsche endeavour Nietzschean analysand realised Bachelard Cavaillès recognises analysed Mauss endeavours immortalised Sébastian Brant Stulifera navis Hieronymous Bosch behaviour medicalisation Hôpital général Tuke Pinel structuralist philosophico centralised Damiens emphasised Bentham Panoptican juridico realisation realisable

    72

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:33 -0500 14 Feb 1997 22:35:33 -0500 N miatopia help/Eco.html ~$SPELLING Mispelled words: Lechte Routledge Umberto Foucault's Sherlock Hermeticum semiotician specialising Sviluppo dell'estetica medievale Todorov recognises L'opera movimento coscienza epoca Stockhausen Berio Boulez Mallarmé Calder Pousseur Bohr Heisenberg Finnegans Peirce's semiosis interpretant analysed langue Hjelmslev's organisation Saussure's Quillian languageuser semiotically shiftings subcodes facilis difficilis behaviour conventionalised Gombrich's Dürer conventionalisation analogical digitalisation labour recognised Ostension stylisation Kristeva's revitalisation Porphyrian differentiae centre aporia rhizomatic globality philosophes

    73

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:34 -0500 14 Feb 1997 22:35:34 -0500 N miatopia help/postimpressionism.html ~$SPELLING Mispelled words: Bonnard Cezanne Gauguin Odilon Redon Georges Seurat Henri Gogh Picasso Braque Gauguin's Gogh's Fauves

    74

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:36 -0500 14 Feb 1997 22:35:36 -0500 N miatopia help/brownian_motion.html ~$SPELLING Mispelled words: Smoluchowski

    75

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:37 -0500 14 Feb 1997 22:35:37 -0500 N miatopia help/Furness.html ~$SPELLING Mispelled words: Furness Fraser Grec Ruskin's Furness's

    76

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:40 -0500 14 Feb 1997 22:35:40 -0500 N miatopia index.html ~$SPELLING Mispelled words: Paragone Paragone's XXth interiority deconstructivism intersubjective Monod Vico Verum ipsum factum Cezanne Cezanne's Hayden metonymic deconstructions synecdochic prerational defamiliarizes Merleau-Ponty Husserl's Husserl hornless Merleau-Ponty's Cogito intellectualist involvements cogito Montaigne's chiasm subjectivities Deleuze Leibniz Serres Thales Bucsescu

    77

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:44 -0500 14 Feb 1997 22:35:44 -0500 N miatopia readings/thermodynamics.html ~$SPELLING Mispelled words: Asimov impingements Dewar Sadi Carnot Carnot's interconversion Helmholtz Clausius th radiational Rumford Bavaria Lavoisier Rumford's Boltzmann Ockham's differentiations Cajod Flodan Feynman

    78

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:46 -0500 14 Feb 1997 22:35:46 -0500 N miatopia readings/physics.html ~$SPELLING Mispelled words: Asimov nonrational palmy physikos B.C. Ockham Ockham's Archimedes A.D. Galilei

    79

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:49 -0500 14 Feb 1997 22:35:49 -0500 N miatopia readings/Berkeley.html ~$SPELLING Mispelled words: unperceivable juster Philosophiae Naturalis Mathematica Schol Def soever

    80

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:51 -0500 14 Feb 1997 22:35:51 -0500 N miatopia help/Chomsky.html ~$SPELLING Mispelled words: Lechte Routledge Naom Chomsky Noam Bloomfield behaviourist Zellig Chomsky's Habermas's Bourdieu's habitus Faurisson's Morpho Quine Kripke Lakatós Hintikka idealisation realised formalised Saussure's structuralist Saussure langue idealised Kristeva realisation Benveniste grammaticalness behaviourism

    81

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:53 -0500 14 Feb 1997 22:35:53 -0500 N miatopia help/biology.html ~$SPELLING Mispelled words: algology taxa MONERA PROTISTA postembryological HIPPOCRATES Leonardo da VESALIUS Fabrica AAAS AIBS des Galilei Stelluti microscopists MALPIGHI Antoni LEEUWENHOEK SWAMMERDAM HOOKE Nehemiah Malpighi's Hooke's Micrographia Systematics genos eidoes NEWTON's von Linne Latinized Carolus LINNAEUS Baptiste LAMARCK Georges CUVIER Mollusca Articulata Radiata JENNER's EHRLICH Schleiden SCHWANN THEODOR JAKOB Schwann histologist Baptista HELMONT Ingenhousz Sachs Nathanael Pringshem Blackman chloroplasts chloroplast WARBURG KREBS BAYLISS preformationists animalculist's ovist's BAER embryogenesis SPEMANN's organizer"area Gregor Johann MENDEL Mendel's VRIES Correns Gustav Tschermak Seysenegg Vries beadlike Wilhelm Weinberg Bateson Theodosius DOBZHANSKY's Garrod's TATUM MONOD Francois subunits

    82

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:55 -0500 14 Feb 1997 22:35:55 -0500 N miatopia help/time_concept.html ~$SPELLING Mispelled words: resonances UTC

    83

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:35:57 -0500 14 Feb 1997 22:35:57 -0500 N miatopia help/Poincare.html ~$SPELLING Mispelled words: Henri Poincare Ecole Polytechnique des Sorbonne Abelian Hermite DiophantineI codiscoverer Hendrik Lorentz Lecons mecanique celeste

    84

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:00 -0500 14 Feb 1997 22:36:00 -0500 N miatopia help/architecture.html ~$SPELLING Mispelled words: Vitruvius Wotton utilitas firmitas venustas commodotie delighte Daedalus Minotaur ecole des Jakob Burckhardt Siegfried Giedion Nikolaus Pevsner Heinrich Wolfflin Ptolemaic Ur Assyria Bas-Relief Assyrian Persepolis Minoan Knossos Phaistos Minoans Mycenaeans corbeled Atreus Mycenae Tiryns Tuscan columned Parthenon Anatolia Maison Carre Nimes thermae Caracalla Colosseum triforium basilican Byzantium Constantinople Sant Apollinare Classe Ravenna Hagia Merovingian Carolingian Ottonian traceried Suger Amiens Sainte-Chapelle Pubblico Siena Valentre Cahors Francois Mansart Inigo Spirito Filippo Brunelleschi Brunelleschi's degli Angeli Duomo Battista Alberti Michelozzo Donato Bramante Giulio Romano Lorenzo Bernini Borromini Wurzburg Residenz Palladian Romanized Charlemagne's Gropius Corbusier Mies der Rohe Mies's Kenzo Tange Alvar Aalto Eliel Eero Saarinen Venturi

    85

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:02 -0500 14 Feb 1997 22:36:02 -0500 N miatopia help/evidence.html ~$SPELLING Mispelled words: exlusionary declarant nonjudicial Fulminante

    86

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:04 -0500 14 Feb 1997 22:36:04 -0500 N miatopia head_trauma_clinic.html ~$SPELLING Mispelled words: Bucsescu *Autonomous morphocenters* diagramatically invariants

    87

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:06 -0500 14 Feb 1997 22:36:06 -0500 N miatopia help/sociology.html ~$SPELLING Mispelled words: nonliterate interlinked subfields sociologies Sigmund subfield hermeneutical Hegelian Wittgensteinian Hobbes Locke Giambattista Vico Auguste Comte Comte's Henri Tocqueville Emile Durkheim Georg Simmel Spencerians Sumner Spencerian Comtean interactionism Blumer microsociological Erving Goffman Talcott Vilfredo Pareto singlehandedly Pitirim Sorokin Lazarsfeld Jurgen Habermas Giddens Lukes macrosociology ethnomethodology

    88

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:08 -0500 14 Feb 1997 22:36:08 -0500 N miatopia help/Merleau-Ponty.html ~$SPELLING Mispelled words: Lechte Routledge Merleau-Ponty Husserl Saussure Saussure's Lévi Collège Barthes's Merleau-Ponty's Lycées Janson-de-Sailly Ecole Normale Supérieure d'Ulm Sorbonne Les Modernes Sartrian Descombes interworld emphasises epoché givenness Husserl's disconnexion Descartes's cogito imbrication phenomenologist universalisable perspectival être unreflected aporias Brunschvicg Algirdas-Julien Greimas Saussurian structuralist diachronical langue favour phenomenologist's otherness pluralising homogenising

    89

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:10 -0500 14 Feb 1997 22:36:10 -0500 N miatopia help/Hawking.html ~$SPELLING Mispelled words: Gehrig's Hawking's nontechnical

    90

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:12 -0500 14 Feb 1997 22:36:12 -0500 N miatopia help/Leibniz.html ~$SPELLING Mispelled words: Gottfried Wilhelm von Leibniz animistically Candide Altdorf Rosicrucian XIV Malebranche Arnauld Huygens Hanovers Brandenburg Locke's tabula rasa Leibniz's Essais Theodicee Monadology Wolff

    91

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:14 -0500 14 Feb 1997 22:36:14 -0500 N miatopia help/non-euclidean_geometry.html ~$SPELLING Mispelled words: geometries hyberbolic deg reductio absurdum Girolamo Saccheri ABCD Saccheri's Janos Bolyai Nicolai Lobachevsky Georg Riemann Cayley

    92

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:16 -0500 14 Feb 1997 22:36:16 -0500 N miatopia help/Template.html ~$SPELLING Mispelled words: Lechte Routledge

    93

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:19 -0500 14 Feb 1997 22:36:19 -0500 N miatopia readings/Heidegger.html ~$SPELLING Mispelled words: Heidegger Hofstadter Bauen buan bauen Nachbar neahgehur neah gebur Nachgebur Nachgebauer buri büren beuren beuron bhu beo ich bist bis colere cultura aedificare Gewohnte buildingthat wuon wunian Friede das Frye presencing Lessing unhoped fourfold's Raum peras horismos stadion spatium extensio Heidelberg onefold thingly tikto techne tec Totenbaum

    94

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:22 -0500 14 Feb 1997 22:36:22 -0500 N miatopia help/ethics.html ~$SPELLING Mispelled words: Metaethics metaethics cognitivism intuitionism nonnaturalistic cognitivist noncognitivist Intuitionists Prichard emotivism imperativism Ayer Carnap noncognitivism metaethical emotivist consequentialist nonconsequentialist deontological Consequentialism nonhedonistic Bentham consequentialism Rashdall realizationism Augustine Paley nonreflective Whately nontheists Immanuel Kant Hobbes Kantianism intuitionist nonnaturalist Rawls's bioethics

    95

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:24 -0500 14 Feb 1997 22:36:24 -0500 N miatopia help/Heidegger.html ~$SPELLING Mispelled words: Heidegger Freiburg Husserl Marburg Heidegger's Soren Kierkegaard Friedrich Nietzsche Sein Dasein Socratics Parmenides Holderlin Tillich

    96

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:26 -0500 14 Feb 1997 22:36:26 -0500 N miatopia help/geometry.html ~$SPELLING Mispelled words: geometries Thales Miletus Pythagoras Samos nn Apollonius Perga Oresme Fermat perspectivities projectivities Archimedes infinitesimals equiareal affine bicontinuous breadthless noncommutative symplectic

    97

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:28 -0500 14 Feb 1997 22:36:28 -0500 N miatopia help/positivism.html ~$SPELLING Mispelled words: Comte Auguste sociocracy

    98

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:30 -0500 14 Feb 1997 22:36:30 -0500 N miatopia help/empiricism.html ~$SPELLING Mispelled words: Spinoza Leibniz Locke Locke's esse est percipere

    99

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:32 -0500 14 Feb 1997 22:36:32 -0500 N miatopia help/Popper.html ~$SPELLING Mispelled words: Raimund Eccles interactionism

    100

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:34 -0500 14 Feb 1997 22:36:34 -0500 N miatopia help/Meyer.html ~$SPELLING Mispelled words: Ferdinand Jakob Burckhardt Becket

    101

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:36 -0500 14 Feb 1997 22:36:36 -0500 N miatopia help/Lobachevsky.html ~$SPELLING Mispelled words: Nikolai Ivanovich Lobachevsky N.S. Lobachevskian Geometriya

    102

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:38 -0500 14 Feb 1997 22:36:38 -0500 N miatopia help/Shapiro.html ~$SPELLING Mispelled words: Schapiro Shavly N.S. Gogh Cezanne

    103

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:40 -0500 14 Feb 1997 22:36:40 -0500 N miatopia help/uncertainty_principle.html ~$SPELLING Mispelled words: Heisenberg

    104

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:42 -0500 14 Feb 1997 22:36:42 -0500 N miatopia help/two_body_problem.html ~$SPELLING Mispelled words: Mathematica Keplerian Kepler Kepler's

    105

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:44 -0500 14 Feb 1997 22:36:44 -0500 N miatopia help/deconstruction.html ~$SPELLING Mispelled words: Derrida textuality deconstructionist intertext Derrida's deconstructions Heidegger logocentrism logocentric phallocentric phallocentrism

    106

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:46 -0500 14 Feb 1997 22:36:46 -0500 N miatopia stage_manager.html ~$SPELLING Mispelled words: Paragone

    107

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:48 -0500 14 Feb 1997 22:36:48 -0500 N miatopia help/Husserl.html ~$SPELLING Mispelled words: Husserl Gottingen Freiburg Brentano Husserl's Lebenswelt Heidegger significances

    108

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:50 -0500 14 Feb 1997 22:36:50 -0500 N miatopia help/reference_pages.html ~$SPELLING Mispelled words: Theodor Adorno Asimov Barthes Catastrophy Bataille Clive Henri Bergson Georges Braque Georg Cezanne Chabrol Naom Chomsky Deleuze Jaques Derrida Occam's Operon Duchamp Umberto Foucault Sigmund Galilei Socratics Godel Heidegger Husserl Immanuel Kant Lacan Gottfried Wilhelm Leibniz Nikolai Ivanovich Lobachevsky Ferdinand Merleau-Ponty Monod Friedrich Nietzsche Panovsky Poincare Raimund Riemann Serres Spinoza Giambattista Vico

    109

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:52 -0500 14 Feb 1997 22:36:52 -0500 N miatopia help/planar_motion.html ~$SPELLING Mispelled words: Zeno Elea dr dt vv vt tt XaX mi resistances

    110

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:55 -0500 14 Feb 1997 22:36:55 -0500 N miatopia help/physical_units.html ~$SPELLING Mispelled words: quantitate SI Systeme d'Unites CGS MKS Gaussian newton deg ss Coulomb'S statcoulomb abcoulomb fector MKSA gaussian kelvin mol cd

    111

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:36:57 -0500 14 Feb 1997 22:36:57 -0500 N miatopia help/set_theory.html ~$SPELLING Mispelled words: Georg aRb injective bijective

    112

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:00 -0500 14 Feb 1997 22:37:00 -0500 N miatopia help/Adorno.html ~$SPELLING Mispelled words: Lechte Routledge Theodor Adorno Wiesengrund Siegfried Kracauer Adomo Alban Schönberg irrationalism Habilitationschrift Kant Kierkegaard Horkheimer Zürich Larzarsfeld Doktor Faustus Adorno's centred structuralist Kristeva Derrida Gödel undecidability positivise terrorised semblances analysed unfree Simmel unfreedom Lacan Foucault socialised limitedness Hegel's positivity conceptualisation telos conceptualise conceptualising Minima Moralia Webern homogenising commercialisation deforce reappropriation Lyotard Bataille's Osborne normalised efficacity

    113

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:03 -0500 14 Feb 1997 22:37:03 -0500 N miatopia help/hybrid.html ~$SPELLING Mispelled words: Brangus Transgenesis heterosis Gertrudis

    114

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:05 -0500 14 Feb 1997 22:37:05 -0500 N miatopia help/Cezanne.html ~$SPELLING Mispelled words: Cezanne Aix Emile Pissarro paintwork Auvers Musee d'Orsay lifes Mont Sainte-Victoire Cezanne's Fauves

    115

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:07 -0500 14 Feb 1997 22:37:07 -0500 N miatopia help/consciousness.html ~$SPELLING Mispelled words: Locke unscanned Wundt Titchener Sigmund replicability Ryle U.T. introspectable Broadbent Dennett's Ulric Neisser

    116

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:09 -0500 14 Feb 1997 22:37:09 -0500 N miatopia help/Godel.html ~$SPELLING Mispelled words: Godel Godel's undecidability N.J.

    117

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:13 -0500 14 Feb 1997 22:37:13 -0500 N miatopia readings/Leibniz.html ~$SPELLING Mispelled words: Monadology Gottfried Wilhelm Leibniz Latta Theod aggregatum un ce esprits Entelechies Appetition l'appetit Bayle Rorarius echousi enteles autarkeia appetits flavoured consecutiveness imite Discours Conformite ss empirics reflexion reasonings Abrege connexion perfections sqq Poiret convenance perfectihabiae Hermolaus Barbarus patir passivities rendre perspectivement vont symbolisent avec mediately sympnoia panta Hippocrates entelechy entelechies unembodied envelopments diminutions preformation elus naturellement slough des depouilles organiques conformite appetitions echantillons unrewarded

    118

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:17 -0500 14 Feb 1997 22:37:17 -0500 N miatopia readings/mathematics_and_philosophy.html ~$SPELLING Mispelled words: Thales Serres Harari Josue Hieronymus Diogenes Laertius Plutarch isoceles Auguste Comte Aristarchus Samos Proclus Eudemus Geometrie grecque fluminis variatio Junius Nipsus organon Bergsonian gnomonic homothetic homothesis Khephren Mykirionos Cheops articulatory blindings mensuration faber propaedeutic Ptolemaic perspectival instauration geometers Desargues Monge Gergonne scenography unanalogous metry mythification Ra Husserl arcana involuted etat ichnography stereometry explicitations transcendency Timaeus diachrony trans shadowless noesis knowns virtualities noemes Arno Presocratic Speusippus Philosophie Cours lecons Francois Dagognet Alial Sinaceur Troisieme lecon Onzieme Herodotus Henri Bergson André Robinet Universitaires isomegethes Gaspar tenebres Dumezil Theaetetus Liddell pyr Pappus Pauly-Wissow

    119

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:19 -0500 14 Feb 1997 22:37:19 -0500 N miatopia help/Vico.html ~$SPELLING Mispelled words: Vico Battista Giambattista Scienza nuova Hobbes Baruch Spinoza Michelet

    120

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:21 -0500 14 Feb 1997 22:37:21 -0500 N miatopia help/group_theory.html ~$SPELLING Mispelled words: gh hk eg ge xy yx semigroup Semigroups abelian Galois homomorphism Homomorphisms

    121

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:24 -0500 14 Feb 1997 22:37:24 -0500 N miatopia help/psycholinguistics.html ~$SPELLING Mispelled words: mand Noam Chomsky mentalistic goed mouses

    122

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:26 -0500 14 Feb 1997 22:37:26 -0500 N miatopia help/Ruskin.html ~$SPELLING Mispelled words: Ruskin Spenser Ruskin's Effie Fors Clavigera McNeill Praeterita

    123

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:28 -0500 14 Feb 1997 22:37:28 -0500 N miatopia help/dialectics.html ~$SPELLING Mispelled words: Zeno Elea Parmenides Kant Fichte Schelling

    124

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:31 -0500 14 Feb 1997 22:37:31 -0500 N miatopia theory.html ~$SPELLING Mispelled words: Wallece Xn

    125

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:33 -0500 14 Feb 1997 22:37:33 -0500 N miatopia outline.html ~$SPELLING Mispelled words: Monod Arnheim Asimov Deleuze Serres Burgin Kernes chp Heidegger Piaget Sheldrake Morphic Gottfried Wilhelm Leibniz Monodology Henri Poincare Bergson Bergsonism Reichenbach Coordinative Husserl Merleau-Ponty TBA Geometry:Space Heelan Multiplicitous *class

    126

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:36 -0500 14 Feb 1997 22:37:36 -0500 N miatopia help/machine.html ~$SPELLING Mispelled words: multiplications kinematic

    127

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:38 -0500 14 Feb 1997 22:37:38 -0500 N miatopia help/Descartes.html ~$SPELLING Mispelled words: Galilei Touraine Fleche Poitiers Beeckman Berulle Dioptrics Archimedean enquiry

    128

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:41 -0500 14 Feb 1997 22:37:41 -0500 N miatopia help/operon.html ~$SPELLING Mispelled words: Operon operon Francois Monod galactosidase galactose polymerase i inducer mRNA histidine corepressor CR Eukaryotes eukaryotes zeta

    129

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:43 -0500 14 Feb 1997 22:37:43 -0500 N miatopia help/Riemann.html ~$SPELLING Mispelled words: Georg Friedrich Riemann Uber Hypothesen welche der Geometrie zu Grunde liegen

    131

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:48 -0500 14 Feb 1997 22:37:48 -0500 N miatopia help/icon.html ~$SPELLING Mispelled words: eikon Constantinople Iconostasis Neoplatonic Tretyakov Umileniye

    133

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:53 -0500 14 Feb 1997 22:37:53 -0500 N miatopia help/Gleizes.html ~$SPELLING Mispelled words: Gleizes Cezanne Georges Braque Picasso Metzinger cubisme Gleize's

    135

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:58 -0500 14 Feb 1997 22:37:58 -0500 N miatopia other.html ~$SPELLING Mispelled words: Heidegger Norberg Frampton Muntagnola Bucsescu Vico Bergson Knesel Barthes Polany Bachelard Husserl Merleau-Ponty Bataille Hayden nomological Habermas Metatron Yurick

    136

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 06:56:36 -0500 17 Feb 1997 06:56:36 -0500 N ? index.html ~~http://www.pratt.edu/ Broken URL is http://www.pratt.edu/

    137

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:37 -0500 17 Feb 1997 07:24:37 -0500 N ? index.html ~~help/physics.html Broken URL is help/physics.html

    138

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:45 -0500 17 Feb 1997 07:24:45 -0500 N ? index.html ~~help/psychology.html Broken URL is help/psychology.html

    139

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:51 -0500 17 Feb 1997 07:24:51 -0500 N ? index.html ~~help/literarary_criticism.html Broken URL is help/literarary_criticism.html

    141

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:25:01 -0500 17 Feb 1997 07:25:01 -0500 N ? projects.html ~~guestbook.html Broken URL is guestbook.html

    142

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:25:06 -0500 17 Feb 1997 07:25:06 -0500 N ? index.html ~~help/Friedman.html Broken URL is help/Friedman.html
    ent Dennett's Ulric Neisser

    116

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:09 -0500 14 Feb 1997 22:37:09 -0500 N miatopia help/Godel.html ~$SPELLING Mispelled words: Godel public_html/_vti_pvt/_x_todoh.bak010064400017520000001000000041400712642300500205370ustar00matthewsother00001460002002 To Do List History

    To Do List History

    Number Task Pri Author Created By Tool Created On Modified On Completed Modified By Assigned To Link To Magic Description

    1

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:46 -0500 14 Feb 1997 22:40:08 -0500 Y miatopia miatopia terminals.html ~$SPELLING Mispelled words: Haresh Lalvani Vitrivius Krier Stijl Eisenman Puriny Husserl Breuer Vico Aldo

    134

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:55 -0500 14 Feb 1997 22:44:17 -0500 Y miatopia miatopia projects.html ~$SPELLING Mispelled words: Paragone ACB abc AC=k ab AB=k AB=ab noetic Wittgensteinian horizontalize oregon Vitruvius Galilean Brecht Novum Organum mathematization functionalization Durand Perrault Louvre Rykwert chp Francois Blondel's Bachelard p.XI p.XIII Rorty universalist Schumpeter Heidegger's scientized

    132

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:50 -0500 17 Feb 1997 07:33:12 -0500 Y ? miatopia help/fractal_geometry.html ~$SPELLING Mispelled words: translational Mandelbrot frangere fractus Georg noninteger Hausdorff Besicovitch Hausdorff's Hubbard Adrien Douady Gaston attractors attractor anomolous lifes
    public_html/_vti_pvt/_x_todoh.htm010064400017520000001000000047110712642300500205760ustar00matthewsother00001460002002 To Do List History

    To Do List History

    Number Task Pri Author Created By Tool Created On Modified On Completed Modified By Assigned To Link To Magic Description

    1

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:33:46 -0500 14 Feb 1997 22:40:08 -0500 Y miatopia miatopia terminals.html ~$SPELLING Mispelled words: Haresh Lalvani Vitrivius Krier Stijl Eisenman Puriny Husserl Breuer Vico Aldo

    134

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:55 -0500 14 Feb 1997 22:44:17 -0500 Y miatopia miatopia projects.html ~$SPELLING Mispelled words: Paragone ACB abc AC=k ab AB=k AB=ab noetic Wittgensteinian horizontalize oregon Vitruvius Galilean Brecht Novum Organum mathematization functionalization Durand Perrault Louvre Rykwert chp Francois Blondel's Bachelard p.XI p.XIII Rorty universalist Schumpeter Heidegger's scientized

    132

    Fix misspelled words 2 miatopia Explorer's Verify Spelling 14 Feb 1997 22:37:50 -0500 17 Feb 1997 07:33:12 -0500 Y ? miatopia help/fractal_geometry.html ~$SPELLING Mispelled words: translational Mandelbrot frangere fractus Georg noninteger Hausdorff Besicovitch Hausdorff's Hubbard Adrien Douady Gaston attractors attractor anomolous lifes

    140

    Fix broken hyperlink 2 ? Verify Hyperlinks 17 Feb 1997 07:24:56 -0500 17 Feb 1997 08:16:30 -0500 Y ? ? help/reference_pages.html ~~help/history_of_geometry.html Broken URL is help/history_of_geometry.html
    public_html/_vti_pvt/access.cnf010064400017520000001000000000260712642300500202050ustar00matthewsother00001460002002vti_encoding:SR|utf8 public_html/_vti_pvt/botinfs.cnf010064400017520000001000000000260712642300600204110ustar00matthewsother00001460002002vti_encoding:SR|utf8 public_html/_vti_pvt/bots.cnf010064400017520000001000000000260712642300600177140ustar00matthewsother00001460002002vti_encoding:SR|utf8 public_html/_vti_pvt/deptodoc.btr010064400017520000001000000222760712642300600206020ustar00matthewsother00001460002002$ 5Dl , Wren.html head_trauma_clinic.html help.html Neta.html outline.html projects.html Craig.html readings/Burgin.html guestbook.htmltmlDD|help/absolute.htmlD|index.htmlD|readings/Arnheim.htmlWren.html head_trauma_clinic.html help.html Neta.html outline.html projects.html Craig.html readings/Burgin.html guestbook.html addguest.html document1.html Italian_passport.html bureau_diploma.html stage_manager.html who_am_I.htmlhelp/Cantor.html help/catastrophy_theory.html help/deconstruction.html help/history_of_mathematics.html help/hybrid.html help/linear_algebra.html help/occam's_razor.html help/Barthes.html help/two_body_problem.html help/uncertainty_principle.html help/euclidean_geometry.html help/Adorno.html help/set_theory.html help/transformation.html help/operon.html help/time_concept.html help/physical_units.html help/theory_of_relativity.html help/group_theory.html help/non-euclidean_geometry.html help/topology.html help/planar_motion.html help/reference_pages.html help/Newton.html help/Asimov.html help/Berkeley.html help/Bataille.html help/geometry.html help/Bergson.html help/causality.html help/Descartes.html help/biology.html help/perpetual_motion_machine.html help/Vico.htmlcxpWren.html head_trauma_clinic.html help.html Neta.html outline.html projects.html Craig.html readings/Burgin.htmlTKreadings/Berkeley.html readings/Deleuze.html readings/Whitehead.html readings/physics.html readings/origin_of_geometry.html readings/Monod.html readings/Newton.html readings/Park.html readings/mathematics_and_philosophy.html readings/Poincare.html readings/Leibniz.html readings/thermodynamics.html readings/origin_of_language.html vhelp/harmonic_motion.html help/fractal_geometry.html help/consciousness.html help/aesthetics.html help/analog.html help/architecture.html help/art.html help/Bell.html help/black_hole.html help/Braque.html help/brownian_motion.html help/Cantor.html help/catastrophy_theory.html help/deconstruction.html help/history_of_mathematics.html help/hybrid.html help/linear_algebra.html help/occam's_razor.html help/Barthes.html help/two_body_problem.html help/uncertainty_principle.html help/euclidean_geometry.html help/Adorno.html help/set_theory.html help/transformation.html help/operon.html help/time_concept.html help/physical_units.html help/theory_of_relativity.html help/group_theory.html help/non-euclidean_geometry.html help/topology.html help/planar_motion.html help/reference_pages.html help/Newton.html help/Asimov.html help/Berkeley.html help/Bataille.html help/geometry.html help/Bergson.html help/causality.html help/Descartes.html help/biology.html help/perpetual_motion_machine.html help/Vico.html help/metaphysics.html help/empiricism.html help/dialectics.html help/materialism.html help/logical_positivism.html help/epistemology.html help/gestalt_psychology.html help/icon.html help/idealism.html help/ontology.html help/phenomenology.html help/positivism.html help/postimpressionism.html help/pre-socratics.html help/psycholinguistics.html help/rationalism.html help/realism.html help/structuralism.html help/Chabrol.html help/Chomsky.html help/Deleuze.html help/Derrida.html help/Duchamp.html help/Eco.html help/Einstein.html help/Foucault.html help/Freud.html help/Godel.html help/Hawking.html help/Hegel.html help/Heidegger.html help/Husserl.html help/Kant.html help/Lacan.html help/Leibniz.html help/Lobachevsky.html help/Meyer.html help/Merleau-Ponty.html help/Monod.html help/Nietzsche.html help/Panovsky.html help/Poincare.html help/Popper.html help/Riemann.html help/Spinoza.html help/Serres.html help/machine.html help/political_science.html help/Le-duc.html help/philosophy.html help/pyschology.html help/Tzara.html help/language.html help/evidence.html help/Ruskin.html help/Cezanne.html help/sociology.html help/ethics.html help/Shapiro.htmlpublic_html/_vti_pvt/diskweb.cnf010064400017520000001000000000000712642300600203650ustar00matthewsother00001460002002public_html/_vti_pvt/doctodep.btr010064400017520000001000001713240712642300600206010ustar00matthewsother00001460002002 5 ,d+ aytl0tk\|V A0$@\xCraig.htmlItalian_passport.htmlNeta.htmlWren.htmladdguest.htmlbureau_diploma.htmldocument1.htmlguestbook.htmlguestlog.htmlhead_trauma_clinic.htmlhelp.htmlhelp/Adorno.htmlhelp/Asimov.htmlhelp/Barthes.htmlhelp/Cantor.htmlhelp/Cezanne.htmlhelp/Chabrol.htmlhelp/Chomsky.htmlhelp/Deleuze.htmlhelp/Derrida.html D|index.html D|index.html D|index.html D|index.html D|index.html D|index.html D|index.htmlD|help/absolute.htmlD|help/absolute.html,@H@d@@̫@@(A@DAdHh|khelp/aesthetics.htmlhelp/analog.htmlhelp/architecture.htmlhelp/art.htmlhelp/biology.htmlhelp/black_hole.htmlhelp/brownian_motion.htmlhelp/catastrophy_theory.htmlhelp/causality.htmlhelp/consciousness.htmlhelp/deconstruction.htmlhelp/dialectics.htmlhelp/empiricism.htmlhelp/epistemology.htmlhelp/ethics.htmlhelp/euclidean_geometry.htmlhelp/evidence.htmlstage_manager.htmlsyllabus.htmltemplate.html HVx|Axk@,@help/Bataille.htmlhelp/Descartes.htmlhelp/Meyer.htmlhelp/absolute.htmlhelp/fractal_geometry.htmlhelp/metaphysics.htmlhelp/pre-socratics.htmlhelp/topology.htmlreadings/Heidegger.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.html\`A(V DV4Ѐ\help/geometry.htmlhelp/gestalt_psychology.htmlhelp/group_theory.htmlhelp/harmonic_motion.htmlhelp/history_of_mathematics.htmlhelp/hybrid.htmlhelp/icon.htmlhelp/idealism.htmlhelp/language.htmlhelp/linear_algebra.htmlhelp/literary_criticism.htmlhelp/logical_positivism.htmlhelp/machine.htmlhelp/materialism.htmlhelp/materialism.htmlhelp/operon.htmlhelp/phenomenology.htmlhelp/physical_units.htmlhelp/planar_motion.htmlhelp/positivism.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.html <Xtl8help/Duchamp.htmlhelp/Eco.htmlhelp/Einstein.htmlhelp/Foucault.htmlhelp/Freud.htmlhelp/Furness.htmlhelp/Gleizes.htmlhelp/Godel.htmlhelp/Hawking.htmlhelp/Hegel.htmlhelp/Heidegger.htmlhelp/Husserl.htmlhelp/Kant.htmlhelp/Lacan.htmlhelp/Le-duc.htmlhelp/Leibniz.htmlhelp/Lobachevsky.htmlhelp/Merleau-Ponty.htmlhelp/Leibniz.htmlhelp/Leibniz.htmlD|help/absolute.htmlD|help/absolute.html $`LVDXhelp/psycholinguistics.htmlhelp/psychology.htmlhelp/pyschology.htmlhelp/rationalism.htmlhelp/realism.htmlhelp/reference_pages.htmlhelp/set_theory.htmlhelp/sociology.htmlhelp/structuralism.htmlhelp/theory_of_relativity.htmlhelp/time_concept.htmlhelp/time_concept.htmlhelp/uncertainty_principle.htmlindex.htmloutline.htmlprojects.htmlsemester_projects.htmlstage_manager.htmlsyllabus.htmltemplate.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.html $`V(DЀ\P`|help/non-euclidean_geometry.htmlhelp/occam's_razor.htmlhelp/ontology.htmlhelp/operon.htmlhelp/perpetual_motion_machine.htmlhelp/phenomenology.htmlhelp/philosophy.htmlhelp/physical_units.htmlhelp/physics.htmlhelp/planar_motion.htmlhelp/political_science.htmlhelp/positivism.htmlhelp/postimpressionism.htmlhelp/pre-socratics.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.html T@phelp/Monod.htmlhelp/Newton.htmlhelp/Nietzsche.htmlhelp/Panovsky.htmlhelp/Poincare.htmlhelp/Popper.htmlhelp/Riemann.htmlhelp/Ruskin.htmlhelp/Serres.htmlhelp/Shapiro.htmlhelp/Spinoza.htmlhelp/Tzara.htmlhelp/Vico.htmlhelp/Vico.htmlhelp/Vico.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.html |VVDX `@help/transformation.htmlhelp/two_body_problem.htmlhelp/uncertainty_principle.htmlindex.htmlindex_for_dbucsesc.htmloutline.htmlprojects.htmlreadings/Arnheim.htmlreadings/Berkeley.htmlreadings/Burgin.htmlreadings/Deleuze.htmlreadings/Monod.htmlreadings/Newton.htmlreadings/Whitehead.htmlreadings/origin_of_geometry.htmlreadings/physics.htmlsemester_projects.htmlstage_manager.htmlsyllabus.htmltemplate.htmlD|help/absolute.html D|readings/Arnheim.html D|index.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html ` @ttons1.gif L|../readings/Leibniz.htmlreadings/Monod.htmlreadings/Newton.htmlreadings/Park.htmlreadings/Poincare.htmlreadings/Whitehead.htmlreadings/mathematics_and_philosophy.htmlreadings/origin_of_geometry.htmlreadings/origin_of_language.htmlreadings/physics.htmlreadings/thermodynamics.htmlsemester_projects.htmlstage_manager.htmlsyllabus.htmltemplate.htmlwho_am_I.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.html D|readings/Arnheim.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.htmlD|help/absolute.html D|index.html D|index.html @x$@ A0$@\xelp/architecture.html help/art.html helphelp/Bell.htmlhelp/Bergson.htmlhelp/Berkeley.htmlhelp/Braque.htmlhelp/Cantor.htmlhelp/Cezanne.htmlhelp/Chabrol.htmlhelp/Chomsky.htmlhelp/Deleuze.htmlhelp/Derrida.html D|index.html D|index.html D|index.html D|index.html D|index.htmlreadings/physics.htmlpublic_html/_vti_pvt/frontpg.lck010064400017520000001000000000000712642300600204170ustar00matthewsother00001460002002public_html/_vti_pvt/service.cnf010064400017520000001000000014210712642300600204050ustar00matthewsother00001460002002vti_encoding:SR|utf8 vti_textextensions:SX|.txt.txt. vti_extenderversion:SR|2.0.2.1112 vti_httpdversion:SX|FrontPage DBW vti_longfilenames:IX|1 vti_htmlextensions:SX|.htm.html.htm.html.htx.asp. vti_defaultcharset:SR|iso-8859-1 vti_title:SR|ARCH 543P vti_webservertype:SR|diskweb vti_restartmanual:IX|0 vti_dependenciesood:IR|0 vti_defaultlanguage:SR|en vti_autorecalc:IX|1 vti_timecreated:TR|13 Feb 1997 10:35:22 +0200 vti_casesensitiveurls:IX|0 vti_oldestcompatibleversion:SR|2.0.0.0 vti_welcomenames:VX|index.htm index.html default.htm default.html welcome.htm welcome.html home.htm home.html index.htm index.html default.htm default.html welcome.htm welcome.html home.htm home.html vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirExec vti_hassearchbot:BR|false public_html/_vti_pvt/service.lck010064400017520000001000000000000712642300600204000ustar00matthewsother00001460002002public_html/_vti_pvt/services.cnf010064400017520000001000000000110712642300600205620ustar00matthewsother00001460002002/ /New public_html/addguest.html010064400017520000001000000123060712642301000171100ustar00matthewsother00001460002002 Add Your Comments
         

    Post Your Comments and Questions

    Fill in the blanks below and then press the "submit comments" button. The only blanks that you have to fill in are the comments and name section.
    -Thank you


    Your Name:
    E-Mail:
    URL:
    City: State: Country:
    Comments:
     
       

     


     

    1996 vico65@aol.com

    public_html/bureau_diploma.html010064400017520000001000000011600712642301000202740ustar00matthewsother00001460002002 Bureau Diploma

    Document 2:

    Bureau Diploma

    public_html/document1.html010064400017520000001000000016500712642301000172070ustar00matthewsother00001460002002 Document 1

    Document 1:

    The Italian Passport

     

    public_html/guestbook.html010064400017520000001000000103560712642301000173150ustar00matthewsother00001460002002 Comments
         

     

    Weekly Student Commentary on the Course

     

    Please click on "add comments" button below to submit your questions and comments on the course readings and lecture. You may also post any questions you have.

    Comments from visitors are welcome as well.

    Thank you for visiting the virtual site of ARCH 543P.



    1996 vico65@aol.com

    public_html/guestlog.html010064400017520000001000000007120712642301000171370ustar00matthewsother00001460002002 Guestbook Short Log

    Short Log of Guestbook Entries

    Below are the entries to the guestbook by domain and time. Included are those that had errors and are noted by ERR.


    public_html/head_trauma_clinic.html010064400017520000001000000321610712642301000211040ustar00matthewsother00001460002002 Head Trauma Clinic
         

     

    Head Trauma Clinic

    (X) to the power of n is its smallest unit of analysis.
    This unit was developed to serve as a key code for an architectural head trauma clinic.

    (X)n:

    the unit of analysis of lived architectural experience with identifiable boundaries in space and time, and with an internal structure which interrelates elements from Popper’s worlds 1, 2, and 3. These are:

    1. physical entities,
    2. mental states such as emotional and psychological states,
    3. the world of the products of the human mind such as stories, explanatory myths, scientific theories (whether true or false), technological problems, social institutions and works of art (Bucsescu 1975).

    The elements of this unit of analysis are markers and terminals (terms defined by William Mitchell). The central operational device is contingency.

     

    Theory

    by Wallece Stevens
      (M-Marker, T-Terminal)
    I am what is around me. (M)
    Women understand this. (M)
    One is not a duchess (T)
    A hundred yards away from a carriage. (T)
    These, than are portraits: (T)
    A black vestibule; (T)
    A high bed sheltered by curtains. (T)
    These are merely instances. (Xn)


    Other Related Concepts

     
     
    • an act of making (Pratt Journal 3)
    • place (Aristotle, Heidegger, Norberg-Schulz, Frampton, Muntagnola, Bucsescu 1975)
    • poetic logic, rhetoric (Vico)
    • “elan vital”, intuition (Bergson)
    • double arrow/bodily thinking (Knesel)
    • “concrete abstraction” (Barthes)
    • tacit knowledge (Polany)
    • world (Nelson Goodman)
    • poetic image independent of causality (Bachelard)
    • the thing itself (Husserl, Merleau-Ponty)
    • eroticism (Bataille)
    • tropical mode (Hayden White)
    • pictorial form (Wittgenstein)
    • nomological knowledge (Habermas)
    • move (S. Friedman)
    • Metatron (Sol Yurick)


    Markers

     
    Method-System Tools
    *Autonomous morphocenters*

    Markers have interface requirements and functions, represented diagramatically by boundary conditions and points. The details of the elements shape and internal organization are left unspecified. (William J. Mitchell)

    Epistemological Relationships (How do we know?) and Strategies

    • sensate (empiricist, materialist, phenomenological/ontological)
    • idealist (essentialist, fundamentalist, ontological, theological)
    • interactionist (method, systematic, dialectical, schizophrenic, pragmatic, poetic, tropical or rational modes - Deconstruction?)

    Space/Time Relationships

    • Spatial Operations:
      • sensory-motor
      • concrete operations
      • formal abstract operations
    • Spatial Syntactical Relationships (Le Corbusier, Colin Rowe, Norberg-Schulz, Eisenman 72 et al.):
      • topological (Piaget)
      • projective (Piaget)
      • euclidian (Piaget)
      • non-euclidian (Heelan)
    • Spatial Reference Systems:(Piaget)
      • egocentric action space
      • fixed-external, path-type
      • survey multiple coordinated system of reference
      • time relationships: synchronic, diachronic
      • Movement (change of position) and acts of Measurement

    Semantic Relationships (Nelson Goodman)

    • denotation
    • exemplification
    • expression
    • mediated reference


    Terminals

     
    Matter-invariants

    Terminals have known geometry and behaviors, in other words, they have identity. That is they can be drawn in complete details, and do not contain terms with unknown values. The functional description of a terminal represents empirical knowledge (including experience or world 2 and 3) of how this type of element actually behaves. (William J. Mitchell)

    Form

    • Geometry/Morphology (B. Fuller, Haresh Lalvani)
      • architectural syntax and typology (Vitrivius, Leon Krier, De Stijl, Eisenman, Puriny, Lynch)
      • ontological/phenomenological and all other perceptual building blocks (Mach, Husserl)
      • technology/structural systems (B. Fuller, Haresh)
      • material (Breuer)
      • site: underground, over, edge, terraced

    Behavior

    • known human experience/culture
    • small economy of meaning
    • narrative/precedent/fact/the made (Vico)
    • episodes/places/sample/diagrams
      • World 2 (Popper)
        • mental states: emotional/psychological states
        • personal memory (Aldo Rossi)
      • World 3 (Popper)
        • the world of the products of human mind such as stories, explanatory myths, religion, scientific theories (whether true or false), building technology, recording devices, computers
        • social institutions
        • architectural program
        • works of art and architecture
        • psycho-analytic theories
        • ideology-political

     

     

    1996 vico65@aol.com

    public_html/help/004075500017520000001000000000000712642277600153755ustar00matthewsother00001460002002public_html/help/absolute.html010064400017520000001000000033700712642276400200760ustar00matthewsother00001460002002 Absolute

    Note: the following has been abstracted from the Grolier Encyclopedia.

    Absolute

    Absolute: The word absolute is used by philosophers and by theologians to indicate ultimate reality conceived as an all-inclusive whole. This reality is considered to be both the source of and the sum total of everything that exists physically, mentally, and spiritually. The absolute is self-sufficient and unconditional; it is not influenced or affected by anything external. It is distinguished from the relative, for whatever is relative depends on and is conditioned by that which lies outside itself.

    The phrase the absolute became prominent through the writings of the 18th- and 19th-century German idealists Johann Gottlieb Fichte, Friedrich W. J. Schelling, and especially G. W. F. Hegel. In Hegelian idealism the absolute is interpreted as rational mind. Hegel, however, emphasized that the absolute can be known and analyzed only as it is manifested in human experience and history. The term is prominent in the writings of the English idealist F. H. Bradley and the American philosopher Josiah Royce.

    In logic, absolute means certain or indubitable, as opposed to probable and hypothetical. In theology, the absolute is sometimes viewed as a personal creator (God) who is the "ground of being" and the source of value.

    public_html/help/aesthetics.html010064400017520000001000000214770712642276400204240ustar00matthewsother00001460002002 Aesthetics

    Note: the following has been abstracted from the Grolier Encyclopedia.

    Aesthetics

    Aesthetics is the branch of philosophy that aims to establish the general principles of art and beauty. It can be divided into the philosophy of art and the philosophy of beauty. Although some philosophers have considered one of these a subdivision of the other, the philosophies of art and beauty are essentially different. The philosophy of beauty recognizes aesthetic phenomena outside of art, as in nature or in nonartistic cultural phenomena such as morality, science, or mathematics; it is concerned with art only insofar as art is beautiful. The history of the arts in the West, however, has made it increasingly clear that there is much more to art than beauty and that art often has little or nothing to do with beauty. Until the 18th century, the philosophy of beauty was generally given more attention than the philosophy of art. Since that time, aestheticians have devoted more energy to the philosophy of art.

    Philosophy of Art:

    Metaphysics of Art:

    Aestheticians ask two main questions about the metaphysics of art: (1) What is the ontological status of works of art, or what kind of entity is a work of art? (2) What access, if any, does art give the viewer or hearer to reality, or what kind of knowledge, if any, does art yield? The first question arises, in part, because some works of art, such as sculptures, are much like ordinary physical objects; others, such as paintings, have aspects that suggest that not all works of art can be merely physical objects. A painting, for example, is typically flat, but it can represent spatial depth; and what the painting represents often seems more relevant aesthetically than its physical dimensions. To some aestheticians, the representational character seems to be what is essential to a painting as a work of art. Some philosophers have therefore concluded that works of art are mental entities of some sort, because it is mental entities, such as visions and dreams, that are typically representational. Other philosophers, who have noticed that artists can and do express some of their own attitudes, emotions, and personality traits in their art, have concluded that art works belong in a category with nonverbal communications rather than with physical objects.

    A different line of thought suggests that works of art are not like objects even on a first impression. For example, the score of a symphony is not the same as the symphony. The score is a set of directions for playing the music, but the musical work can exist even if no one ever plays the score. Considerations such as these have led many philosophers to say that works of art exist only in the minds of their creators and of their hearers, viewers, or readers.

    The question whether art can provide knowledge of, or insight into, reality is as old as philosophy itself. Plato argued in The Republic that art has the power to represent only the appearances of reality. According to this theory, a painter reproduces (imitates) a subject on canvas. The counterposition, that art can yield insight into the real, is commonly held by modern philosophers, artists, and critics. Many critics, in fact, allege that art offers a special, nondiscursive, and intuitive knowledge of reality that science and philosophy cannot achieve.

    Experience of Art

    Modern discussions about how art is experienced have been dominated by theories devised in the 18th century to describe the experience of beauty. As a consequence, many philosophers still think of the typical experience of art as distanced, disinterested, or contemplative. This experience is supposed to be different, and removed, from everyday affairs and concerns. A few modern aestheticians, especially John Dewey, have stressed the continuity between aesthetic experience and everyday experience and have claimed for the experience of art a psychologically integrative function.

    Judgments and Interpretations

    The study of critics' judgments and interpretations of art tries to specify the kind of reasoning involved in such opinions. One question is whether evaluative judgments can be backed by strictly deductive reasoning based on premises descriptive of the art-work.

    A radical position on this issue is that evaluative judgments are merely expressions of preference and thus cannot be considered either true or false. With respect to critical interpretations of a work, as distinct from evaluations, a basic question is whether conflicts over interpretations of a work can be definitively settled by facts about the work, or whether more than one incompatible but reasonable interpretation of the same work is possible. A related concern is what the criteria of relevance are for justifying an interpretation or evaluation. Some aestheticians in this century, for example, have argued that appeals to the artist's intentions about a work are never relevant in such contexts.

    Production of Art

    Philosophical speculation about the production of art centers primarily on the following questions: What is the role of genius, or innate ability, in artistic production? What is the meaning of creativity? How do the conditions for producing fine art differ from those for producing crafts? On the last issue, ancient and medieval philosophers assumed the same model for producing fine art and crafts; they had no conception that the two are distinct. The present distinction between the two emerged in Western culture after the Renaissance; nearly all aestheticians now assume that something is unique about producing fine and especially great art.

    Definition of Art

    Attempts to define art generally aim at establishing a set of characteristics applicable to all fine arts as well as the differences that set them apart. By the middle of the 20th century, aestheticians had not agreed upon a definition of art, and a skeptical position became popular, holding that it is impossible in principle to define art. This skepticism has an interesting parallel in the 18th century when, after many unsuccessful attempts to define beauty, most philosophers agreed that beauty could not be defined in terms of the qualities shared by all beautiful objects.

    Philosophy Of Beauty

    The skepticism about beauty culminated in the Critique of Judgment (1790), Immanuel Kant's contribution to aesthetics. In that work, Kant analyzed the "judgment of taste," that is, the judgment that a thing is beautiful. He asserted that the judgment of beauty is subjective. Before Kant, the common assumption was that "beauty" designated some objective feature of things. Most earlier theories of beauty had held that beauty was a complex relation between parts of a whole. Some philosophers called this relation "harmony." From the time of the Greeks, a common assumption was that beauty applied not only, or primarily, to art, but that it manifested itself in cultural institutions and moral character as well as in natural and artificial objects. By the end of the 18th century, however, the range of accepted beautiful things was becoming more and more restricted to natural things and artworks.

    Whereas theorists of beauty had generally admitted that the perception of beauty always gives pleasure to the perceiver, Kant turned the pleasure into the criterion of beauty. According to Kant, people can judge a thing beautiful only if they take pleasure of a certain kind in experiencing it. The American philosopher George Santayana took this subjectivism a step further by declaring that beauty is the same as pleasure--but pleasure then can be seen as "objectified" in things. Santayana's work (1896) marked the virtual end, until recently, of aestheticians' serious theoretical interest in beauty.

Metaphysics of Art:

Aestheticians ask two main questions about the metaphysics of art: (1) What is the ontological status of works of art, opublic_html/help/analog.html010064400017520000001000000157200712642276400175230ustar00matthewsother00001460002002 Analog

Note: the following has been abstracted from the Grolier Encyclopedia.

Analog

Analog Devices

An analog device is an apparatus that uses a continuously variable physical phenomenon to describe, imitate, or reproduce another dynamic phenomenon. An example is a mercury thermometer, in which a rising or falling (expanding or contracting) column of mercury represents a rising or falling temperature. Other examples of analog devices are standard rotary clocks, rotary automobile speedometers, and phonograph records. Since the time of Isaac Newton it has been understood that phenomena are properly analogous when mathematical analysis reveals similar underlying formulas. Analog devices can be contrasted with digital devices, which employ a limited number of discrete bits of information to approximate continuous phenomena.

Many early measurement instruments were analog devices. In the sun dial, the movement of a shadow represented the passage of time (actually the rotation of the Earth). On a springweight scale, an old device still in use, a stretched spring, along with a pointing device and an analog scale, indicates the weight of a suspended object. A Slide Rule, which performs mathematical calculations using analog scales, is a simple analog computer.

Analog Computers

An analog computer is an apparatus that employs continuously variable physical phenomena, such as mechanical motions, flows of fluids, or currents of electricity, to make computations. It may be contrasted with the digital computer, which makes use of digital, or discrete, elements to make computations. A primitive example of an analog computer is the immersion of an object of irregular shape in water contained in a graduated vessel to determine the volume of the irregular object. The displaced volume of water is equal to the volume of the object. This example uses continuously variable magnitudes as input data, as well as throughout the computational process and even to convey the outcome.

Addition and subtraction of continuously variable magnitudes may easily be done using sliding mechanical displacements. The logarithmic slide rule, invented about 1620 and still used, adds or subtracts two input lengths by straight-line sliding of one part relative to another so that the output length equals their sum or difference. The two inputs are set in according to logarithmic scales, and the output read from a logarithmic scale, so that what is read is equivalent to multiplication of division of numbers. Such displacements and measurements, applied to more-complicated scales and graphed curves, brought about a branch of computational mathematics known as nomography. In mechanical form, these techniques gave rise to a class of analog computing devices known as computing linkages.

The two basic operations of calculus (differentiation and integration) can be viewed as finding the tangent to a curve at each point, and as finding the area under a curve y=f(x) From a to b, where a and b are two values of x. Integration can be performed by a simple and elegant mechanism, known since about 1800, called a disk-and-wheel integrator, which acts like a transmission having a continuously variable ratio. The independent variable x turns a shaft carrying a disk much like a phonograph turntable. A small follower wheel is maintained at disk radius equal to the variable y and is turned by friction contact with the disk at that radius, so that if the wheel is of unit radius, it turns y times as much as the x shaft and thus turns in proportion to the area.

Many varieties of the disk-and-wheel integrator have been developed, the simplest being manually operable on graphed curves; they are called planimeters. Apparatuses involving several such devices in combination with other mechanisms were developed to perform harmonic (Fourier) analysis and also to solve differential equations automatically. These are called differential analyzers of the Kelvin and Bush types and were used during World War II to calculate ballistic trajectories; disk integrators were also used in gunfire directors and in airborne bombsights. Electric, and most recently electronic, analog computers have supplanted the earlier mechanical machines. The most widely used analog computer, the domestic electric watt-hour meter, computes the sum over time of the product of two continuously variable vectors--current and voltage; this quantity, which is the definite integral of power, is the energy consumed.

Analog Versus Digital

Today many analog devices have been replaced by digital devices, manly because digital instruments can better deal with the problem of unwanted information, or noise. This is illustrated by the technologies employed in recording sound on disc and reproducing it. on a phonograph record, sounds are encoded in a groove that varies continuously in width and shape. when a stylus passes along the groove, the analog information is picked up and then electronically amplified in order to reproduce the original sounds. Any number of minor imperfections in the record will be translated by the player into additional sounds, or noise. In the digital technology of the compact disc, sounds are translated into binary code, and recorded on the disc as discrete pits. Noise is less of a problem because most noise will not be encoded initially, and noise that does get encoded is easily recognized and eliminated during the retranslation process. A digital process has one drawback, however, in that it cannot be expected to reproduce every single aspect of a continuous phenomenon. An analog device, although subject to noise propagation, will produce a more complete, or truer, rendering of a continuous phenomenon.

In the field of computer processing, electronic analog computers continue to be used in certain applications, although the major data-processing tasks of modern technologies are met by electronic digital computers. As the limits placed on the powers of ordinary digital computers by the physical aspects of microcircuitry begin to be reached, computer designers are now exploring and employing the techniques of parallel processing, in which numerous processors operate in tandem.

public_html/help/architecture.html010064400017520000001000000643060712642276400207500ustar00matthewsother00001460002002 Architecture

Note: the following has been abstracted from the Grolier Encyclopedia.

Architecture

Architecture is probably the oldest of the fine arts. Certainly it is the most useful and in some respects is a prerequisite for the other arts. Most early sacred texts associate buildings with deities; architecture was not only considered the highest art form, to which other arts were adornments, but some buildings were viewed as representing another, higher realm. In medieval illuminated manuscripts, God was frequently shown armed with compasses and a mason's square, as Architect of the Universe.

Architecture can be defined in at least four ways, all valid, all interrelated, and none truly satisfactory. It is the art and method of erecting structures; it is a planned entity, the result of a conscious act; it is a body or corpus of work; it is a way to build. A good definition was provided by the Roman architect Vitruvius in the 1st century AD and was translated from the Latin into English during the 17th century by Sir Henry Wotton (1568-1639). Vitruvius said that architecture was a building that incorporated utilitas, firmitas, and venustas, which Wotton translated as "commodotie, firmness, and delighte." This definition recognizes that architecture embraces functional, technological, and aesthetic requirements: it must have commodotie (utilitarian qualities), firmness (structural stability and sound construction), and delighte (attractive appearance). Because the history of architecture concerns buildings substantial enough to survive (at least in part) or important enough to be recorded in some way (by drawings or written description), in practice it has been the history of significant buildings, and major institutional monuments.

This discussion will concentrate on the development of Western architecture. Nonwestern architecture, as well as more detailed consideration of each epoch in Western architecture, are treated elsewhere in the encyclopedia and may be found by culture, by country, by style, by type, by architect, and by building or monument.

Architects

Much more is known of ancient buildings than of the people who designed and built them. The names of a few Egyptian, Greek, and Roman architects have survived, but the identities of the great cathedral builders of the Middle Ages are mostly unknown. They are generally described as master masons, but they regarded themselves as architects and sometimes incorporated a labyrinth in their own memorial plaques to signify a link with Daedalus, the legendary first architect of the Greek world and the designer of the labyrinth of the Minotaur.

The names of architects first began to be known in Italy during the renaissance in the 15th and 16th centuries. The idea of a professional architect with formal training and academic qualifications is a product of the 19th century. In 1819 architecture courses were instituted at the ecole des beaux- arts (School of Fine Arts) in Paris; in 1847 a night school was established at the Architectural Association in London; courses in architecture were first offered at the Massachusetts Institute of Technology in 1868, at Cornell University in 1871, and at the University of Illinois in 1873. Until World War I, however, most architects were trained while working in the offices of practicing architects, and governments were slow to insist upon qualification tests. The state of Illinois passed the first licensing law for architects in 1897; Great Britain did not have such a law until 1931.

The Study of Architecture

Just as the architect as a professional is a recent phenomenon, so too is the evaluation of architecture itself. Not until the late 18th century did ancient Greek and Roman architecture cease to be regarded as an unassailable criterion of excellence throughout the Western world. Only when the hegemony of the classical styles began to be challenged did architects and scholars begin to consider the whole of the subject. The traditional approach was based on a closely observed study of architectural style, with considerable emphasis on the differences of detail treatment from one country to another.

An alternate approach based on determinism has been developed over many years by a group of German-speaking scholars (including Jakob Burckhardt, Siegfried Giedion, Sir Nikolaus Pevsner, and Heinrich Wolfflin) who established an interpretation of architecture as an expression of the Zeitgeist, or spirit of the age. Burckhardt and Wolfflin introduced the Zeitgeist concept in their studies of the Italian Renaissance, but Giedion and Pevsner applied it to Modern Architecture, which they saw as expressing the spirit of a technological era. Another approach seeks to understand architecture in the same way as did the people who built it. During the 19th century this associative school of thought became central to architectural theory. Contemporary architects and scholars emphasize the influences of technology on the development of buildings. The use of iron and steel beams and columns released the wall from its traditional load-bearing function and allowed architects to incorporate enormous windows and wide, open-plan floors, two of the most significant characteristics of modern architecture. No large modern building, however, would be practicable without the parallel development of the elevator, central ventilation and heating, and electric lighting devices.

ARCHITECTURAL HISTORY

Architecture is most readily grasped by studying its development in successive historical periods, noting the general characteristic of each, the development of building techniques from one era to the next as well as from one culture to the next, and noting the evolution of each successive architectural style. Following are brief summaries of the ten major cultural epochs in Western architecture from ancient Egypt and the Near East to the present time.

Ancient Egyptian and Near Eastern Architecture

The construction of the most famous Egyptian structures, the pyramids, began in the 3d and 4th Dynasties of the Old Kingdom (c.2686-2498 BC). Temples in stone were built during the Middle Kingdom (c.2133-1786 BC), but most of the surviving examples date from the New Kingdom (1570-1085 BC) and the Ptolemaic Period (323-30 BC). Permanent building in stone was restricted to the tomb, temple, and the associated statuary (obelisk and avenues of sphinx and lion), but the forms of these monumental stone structures seem to have been influenced by those of primitive Egyptian domestic architecture. Houses were formed of mud-brick walls with columns made from bundles of reeds lashed together. Thus, the walls of stone buildings were generally battered (thicker at the base and tapered), and the columns were short in proportion, seldom more than six times their diameters. The column heads or capitals were carved to represent lotus flowers or buds, palm leaves, and papyrus heads; the column shafts often had decorative bindings recalling the primitive lashed reeds.

Stone and timber were rare in the alluvial plains of the Tigris and Euphrates rivers; so Mesopotamian Architecture was necessarily based on the use of clay brick with an outer skin of often highly colored glazed bricks, exemplified by the Ziggurat at Ur (c.2500 BC). Farther up the Mesopotamian rivers in Assyria, stone was available, but it was used primarily as a wall covering to be decorated with Bas-Relief sculpture and inscriptions, from which much of the knowledge of Assyrian history is derived. The architecture of both the Babylonian (c.1900-c.1550 BC) and the Assyrian empires (c.1100-612 BC) was based on massive brick platforms raised above the floodplain and often further terraced to give the characteristic ziggurat form. The ancient Persian Empire (538-333 BC) adopted these features and supplemented them with the extensive use of columns, as in the palaces at Persepolis (518-c.460 BC)

Greek Architecture

Any consideration of Greek architecture must begin with mention of Aegean Civilization, typified by the great Minoan palaces on the island of Crete, in particular the huge complex of Knossos and the magnificently sited structures at Phaistos (both c.1700 -c.1400 BC). Constructed of massive masonry, they were several stories high and incorporated large pillared halls, dozens of labyrinthine smaller rooms, sweeping terraces looking to the sea, and plumbing arrangements of astonishing modernity. The walls were decorated with brilliantly colored frescoes and stucco bas-reliefs. The Minoans were conquered by the Mycenaeans of mainland Greece, whose architecture was subsequently strongly influenced by Cretan prototypes.

This early Greek architecture (3000-700 BC) is characterized by the use of massive stone blocks for walls and by the occasional use of corbeled masonry to make primitive forms of vaults and domes, as in the Lion Gate and so-called Treasury of Atreus at Mycenae (1400-1200 BC). Columns sometimes were also used to frame doors and gateways and to provide internal colonnades for palaces, as in the courtyard at Tiryns. It was, however, the column and the beam--Post And Lintel--that formed the basis of classical Greek architecture and that give it the simple, straightforward character that, together with its details, has led many scholars to speculate on its origins in the construction of primitive wooden huts.

The Greeks developed a vocabulary of architectural detail in stone that was fundamental to European architecture for more than 2,000 years. The Greek "language of architecture" reached its zenith during the 5th century BC. Classical Greek architecture consisted of three orders--the Doric, Ionic, and Corinthian. Each represented the assembly of the basic components of a simple rectangular building with a pitched roof, that is, column, capital (or column head), entablature (the "beam" connecting the columns), and pediment the triangular gable of the roof). Different proportions and decorative conventions imparted a distinctive character to each order, regardless of the bright colors applied to the original buildings or the subject matter of the sculptured decoration along the frieze or in the triangular pediment (tympanum). The proportions of each order were fixed within narrow limits, and, strictly speaking, the components of each order could be correctly assembled in only one way. The Greeks never mixed different orders on the same building. This, and other rules, were modified in Roman architecture. The Romans created two additional orders, the Tuscan and the Composite, and employed all five orders as decoration for buildings constructed on principles different from those the Greeks used.

The basic building material of the classical period was marble, a strong stone that could be shaped to give great precision of line and detail. The basic temple form was also very simple: a rectangular chamber with a shallow-pitched gabled roof, surrounded by a row of columns (or fronted by a columned porch), standing on a podium of three steps. Given the simplicity of the construction system and the building form, the essential achievement of the Greeks was the refinement of the building and its components into an architectural system of proportion and decoration--exemplified by the buildings on the Athens Acropolis, in particular the Parthenon (447-32 BC)--that remained the basis of the Western European architectural tradition until the mid-19th century.

Roman Architecture

During the 2d century BC the Romans, in conquering North Africa, Greece, Anatolia, and Spain, absorbed the architectural traditions of those areas (most significantly that of Greece), to which they added the constructional skills of the Etruscans, their immediate neighbors in central Italy. The most significant achievements of the Romans were in their technology of building, their use of a much wider range of materials (including concrete, terra-cotta, and fired bricks), and their refinements of the arch and vault and the dome--all of which had been pioneered by the Etruscans. Roman temples generally remained modeled on those of Greece, with the common addition of a high plinth (base or platform) and the frequent omission of the side and rear columns, typified by the Maison Carre at Nimes, France.

Roman civic monuments included a number of building types of unprecedented size and complexity, which could not have been built using the Greek beam-and-column construction system. The Aqueduct, thermae (such as the Baths of Caracalla), Basilica (law court), theater, Triumphal Arch, amphitheater (such as the Colosseum), circuses, and palaces involved enclosing much larger spaces or bridging much greater distances than could be achieved by the use of timber or stone beams. The Roman use of domed construction in mass concrete is best represented by the well-preserved Pantheon in Rome (constructed AD 120-24), which subsequently became a Christian church. Later Roman or Early Christian churches, however, generally took their form from the basilica, whose central nave, side aisles, triforium, and apse became characteristic features of the Romanesque and Gothic church. Emperor Constantine I built huge basilican churches at all the major Christian sites in the Roman Empire in the 4th century, thus firmly establishing the basilica as the predominant form of Christian church architecture.

Byzantine Architecture

Byzantine architecture developed in the Byzantine Empire founded by Constantine I when he moved the capital from Rome to Byzantium (subsequently Constantinople--present-day Istanbul) in the 4th century. In southern and eastern Europe, in particular in those parts of Italy, Greece, and Anatolia that remained under the sway of the Byzantine Empire, the continuity of Roman plans and techniques was strong. Only slightly modified Roman basilican plans were used for such Italian churches as Sant' Apollinare in Classe, Ravenna (534-39); in Constantinople itself huge domed churches, such as Hagia Sophia (532-37), were built on a scale far larger than anything achieved by the Western Roman Empire.

Romanesque Architecture

In northern Europe, where Roman remains were less frequently encountered, greater freedom of experiment existed in Merovingian, Carolingian, and Ottonian architecture, as the early periods are known. From the mid-10th to the mid-12th century greater progress was made toward the development of a successor style--the Gothic. The primary characteristics of Romanesque architecture (or Norman architecture, as northern Romanesque is often known) were Roman in origin, however: large internal spaces were spanned by barrel vaults on thick, squat columns and piers, windows and doors had round-headed arches, and most of the major churches were laid out on the basilican plan, modified by the addition of the buttress, transept, and tower. The buildings are solid, heavy, and, because of the comparatively small windows, dimly lighted, exemplified by Durham Cathedral (begun 1023) in England. Portals, capitals, and altars are embellished with sculpture of superlative skill and powerful effect; stained glass first appeared in Europe, but on a limited scale, because of the restricted size of window openings.

Gothic Architecture

From the mid-12th century to the 16th century northern European architecture was characterized by the use of flying buttresses, pointed arches, ribbed vaults, and traceried windows. The thin walls, slender columns, and the very large areas of glass in Gothic buildings gave an impression of lightness that contrasted markedly with the Romanesque. Gothic architecture originated at the royal abbey church of St. Denis, built by Abbot Suger between 1137 and 1144. It was refined in the great churches of northern and central France, such as Amiens Cathedral (1220-70), notable for its great height and the slenderness of its columns, and the Sainte-Chapelle in Paris (1247-48), in which exceptionally large wall areas were filled with glass and tracery. Indeed, Gothic architecture was most fully developed in France and England, where the style spread in the late 12th century. The spread of Gothic to Germany was delayed until the mid-13th century, and in this country only a few cathedrals, such as the one in Cologne (begun 1248), approached the size and quality of the northern French prototypes. The most thorough application of northern Gothic to Italy was in the Milan Cathedral, built at the end of the 14th century by French and German masons. In general, the Italians tended to use Gothic as a decorative feature rather than as a total building system.

Many Gothic secular buildings survive, some of the finest examples being the Bruges Town Hall (1376-1420) in Belgium, the Palazzo Pubblico (begun 1298) in Siena, Italy, and the Pont Valentre (early 14th century) in Cahors, France. The greatest concentration of Gothic secular buildings is in Belgium, in what was then the most prosperous part of northwest Europe.

Renaissance Architecture

During the early 15th century, European culture became inspired by the rediscovery, known as the Renaissance, of classical literature, art, and architecture. Italy was the center of this rebirth, and in Florence, where the movement started, architecture was influenced by the use of the orders, the round arch, the barrel vault, and the dome--all Roman features. In northern Europe, where Gothic continued to flourish well into the 16th century, the Renaissance at first made only a superficial impact and was for a much longer time confined to decorative changes. In both France and England a truly classical style was not established until the first half of the 17th century: in France by Francois Mansart and in England by Inigo Jones.

The Florentine Renaissance did not initially mean the complete break with traditional practice that was implied in the Gothic north. For the church of Santo Spirito (begun c.1436), Filippo Brunelleschi used a basilican plan, round arches, and a flat ceiling; but these traditional Italian Romanesque elements were combined with a new sense of proportion, the use of Corinthian columns, and a dome over the crossing of nave and transepts. Brunelleschi's later design for the vast, still unfinished cathedral of Santa Maria degli Angeli (also called the Duomo of Florence) took the form of a domed octagon with eight radiating chapels, a centralized plan that became the ideal among his contemporaries in Florence (Leon Battista Alberti and Michelozzo) and his followers in Rome.

There, during the 16th century, a more monumental version of the style was developed by Donato Bramante, Raphael, and Michelangelo, as in their various plans for Saint Peter's Basilica.

Baroque and Rococo Architecture

In the 15th century Florentine architecture relied for effect upon proportion, simple straight lines, and the correct use of classical details. During the 16th century, however, architects such as Michelangelo and Giulio Romano abandoned this restraint for a more exciting, idiosyncratic version of the style, now called Mannerism, in which the classical rules were deliberately flouted for effect. Giovanni Lorenzo Bernini and Francesco Borromini further developed the style by introducing curvilinear forms and by incorporating sculpture and painting in their buildings to give a rich and dynamic version, known as Baroque, which spread during the 17th and 18th centuries from Rome to much of southern Europe and to South America. In northern Europe, especially in Austria and Germany, baroque architecture achieved an exuberance and freedom unmatched elsewhere, climaxing in the Rococo, as in the Wurzburg Residenz in West Germany. In France baroque and rococo were tempered by Neoclassicism, with a resultant elegance and refinement in both architecture and decoration, exemplified by the 18th-century sections of the palace of Versailles. The spread of neoclassical architecture during the 17th and 18th centuries was due in no small measure to the illustrated books that brought it to the attention of educated patrons. Although fine architecture has never been created by untalented architects, the rules of the classical orders enforced systematic convention in design that enabled many moderately competent architects to produce well-proportioned and finely detailed buildings. In part this explains the extraordinary success of the Palladian interpretation of Romanized Greek architecture. It was, for example, the source of almost all country-house building in England during the 18th century, as well as of numerous mansions, courthouses, state capitols, and universities along the eastern seaboard of North America.

The Age of Revivals

During the late 18th and 19th centuries, Europe and America witnessed a series of stylistic revivals. The period was dominated by the proponents of the classical (themselves split between "Greeks" and "Romans") and the northern Gothic. Buildings were also designed in self-conscious imitation of Byzantine, Oriental, Egyptian, Venetian Gothic, and Florentine Renaissance architecture, however. This was not, of course, the first time that ancient styles had been revived; the Italians of the 15th century and the architects of Charlemagne's court in the 9th century had incorporated classical motifs in their buildings. Both the revived classical and the Gothic Revival, however, were essentially different from the architecture that inspired them.

The country mansion of England and colonial America bore a classical portico, but it was attached to a type of building never seen in ancient Rome or Greece. The revived Gothic applied during the 19th century to private houses, office buildings, railroad stations, hospitals, and waterworks was by no means the same as the Gothic architecture of the northern medieval cathedrals. New engineering techniques and modern materials--in particular in cast-iron architecture--removed many of the age-old practical constraints on building design. Rapid urban growth during the 19th century produced a great many fine and essentially original buildings, the quality of which is only beginning to be appreciated.

Modern Architecture

Contemporary architecture takes a bewildering variety of forms and makes use of a far wider range of materials than ever before. The International Style, promulgated by Walter Gropius, Le Corbusier, and Ludwig Mies van der Rohe in theory and practice, has dominated architecture in this century until very recently. Most of the earlier buildings by these architects were small private houses, usually rectangular, with undecorated walls, flat roofs, and large areas of glass set in metal frames. Conscious avoidance of any previous styles or recognizable antecedents was combined with highly sophisticated proportioning to achieve sleek, elegant structures, such as Mies's German Pavilion for the 1929 Barcelona Exhibition. To the dismay of its originators, the International Style was enthusiastically adopted by far lesser talents and profit- minded builders to produce numerous "modern" office buildings, apartment complexes, hospitals, and motels all over the world.

Not all contemporary architects subscribed to Mies's dictum of "less is more," and hence their work is difficult to classify as "modern."

Frank Lloyd Wright, probably the outstanding native American architect of this century, Kenzo Tange of Japan, Alvar Aalto of Finland, and the Finnish-Americans Eliel and Eero Saarinen produced many buildings of great beauty and originality.

Although some of their work does reflect the International Style, most of their buildings are instantly recognizable in their individuality, as were the great buildings of the past. In short, these architects and others like them seem to be part of a continuing architectural tradition rejected by the practitioners of the International Style.

The social turmoil of the 1960s was emphatically reflected in architecture. Complexity and Contradiction in Modern Architecture (1968) by the architect Robert Venturi was a revolt against the ubiquitous glass boxes of the modernists, and it signaled the emergence of Postmodern Architecture. Since that time, architects have found new strength in the traditions of the past, as well as in the vernacular architecture seen all about them.

n known) were Roman in origin, however: large internal spaces were spanned by barrel vaults on thick, squat columns and piers, windows and doors had round-headed arches, and most of the major churches were laid out on the basilican plan, modified by the addition of the buttress, transept, and tower. The buildpublic_html/help/art.html010064400017520000001000000637210712642276500170550ustar00matthewsother00001460002002 Art

Note: the following has been abstracted from the Grolier Encyclopedia.

Art

All cultures throughout history have produced art. The impulse to create, to realize form and order out of mere matter--to recognize order in the world or to generate it oneself--is universal and perpetual.

Aspects Of Art

Every work of art has two aspects: it is a present experience as well as a record of the past, and it is valued, preserved, and studied for both identities. As present experience, artworks afford people the pleasures, the tensions, the dramas, and ultimately the satisfaction to the senses of pure form--in the visual arts the relationships among colors, lines, and masses in space.

Art History and Its Methods

The meaning of the word art, derived from the Latin ars, meaning "skill," has changed through history. In medieval Europe, proficiency in the "liberal arts" was the goal of an educated person; only by the 19th century did the word come to denote painting, drawing, sculpture, graphic arts, and decorative arts. A distinction then arose between artist and artisan, the latter denoting a skilled manual worker, the former connoting capacity for imaginative invention. Although the arts may be taken today as comprising the musical and verbal as well as the visual, art or fine arts is usually assumed to mean the visual arts--painting, sculpture, architecture, and, by extension, printmaking, drawing, decorative arts, and photography.

The concept of a history of art is relatively recent. In the mid-16th century Giorgio Vasari compiled information about Renaissance artists' lives and works in Lives of the Artists. Modern art history may be thought of as beginning in the mid-18th century with Johann Joachim Winckelmann, who applied a conception of history as cyclical to what remained of the art of ancient Greece and Rome. From the philosopher G. W. F. Hegel onward, much of the theoretical support of art history was supplied by German historians and philosophers. Heinrich Wolfflin provided, in the early 20th century, a technique for understanding style by comparing two works of different periods and noting their differences; this is still the most widely used heuristic (interpretative) approach today.

Art history, congealing as a distinct discipline in the humanities in the late 19th century, is now largely non-theoretical. Historians examine works and documents about the works in order to place them appropriately in the present set of recognized groupings. Broadly, the four most general categories for Western art are ancient, medieval, Renaissance, and modern. In the past, the humanistic, classical art of Greece served as a positive standard by which works were judged. Today, art historians are neutral with regard to different styles--none is superior or inferior; all are worthy of study.

Art Criticism

Art criticism may be defined as the process of judging the aesthetic qualities of visual art, chiefly painting, sculpture, and architecture, but also including craft objects. This has become a specialized field in the modern era, but judgments about works of art have appeared since ancient times in descriptive and poetic writings, histories, technical treatises on art, and philosophical discussions of aesthetics.

In the Western world, reflection on art began with the philosophers of ancient Greece. Plato discussed proportion as the source of beauty, and mimesis, or imitation, as the primary mode of art. Aristotle identified different kinds of imitation, and Xenocrates wrote technical treatises on painting and sculpture discussing the ideal synthesis of proportion and imitation in terms of the lives of classical Greek artists.

Later, in the 3rd century AD, Plotinus combined mysticism and Neoplatonism to give images a divine source and interpretation. This, together with the Byzantine use of light and color to evoke spiritual transcendence, underlay the symbolic, allegorical, and decorative character of medieval Christian art. The Italian Renaissance of the 15th and 16th centuries reinstated classical mimesis as the basis of art. Leonardo da Vinci wrote that painting brings the senses together with reason and mathematics in a scientific practice. Giorgio Vasari's Lives of the Artists (1550), on the other hand, emphasized artistic personalities and technical progress as the measure of art, the pinnacle of which he saw in the genius of Michelangelo. Vasari's concept of genius was Neoplatonic, holding that the inspired artist creates earthly beauty as a reflection of the Absolute. This ideal characterized the Baroque art and architecture of the 17th century. In the mid-18th century a rationalist tendency toward order and restraint combined with interest generated by the excavation of Roman remains inspired a Neoclassicism that emphasized fidelity to Greek and Roman models. Art history, museums, and the first regular public exhibitions of art also had their origin in the 18th century. Reviews of these exhibitions, such as those by Denis Diderot, began art criticism as it is now known.

By the early 19th century, Romanticism, a reaction against neoclassical strictures, had taken root across Europe. In England landscape painting and Gothic revival architecture explored the Sublime, an exalted feeling embodied in the awesome and even horrific aspect of nature. In Germany the idealist philosopher Georg Wilhelm Friedrich Hegel transcended the revivalist history of neoclassicism with his dialectical history of art, which has been of singular importance in the subsequent development of art history and theory. For Hegel, the classical sculptors had achieved a perfect balance between idea and material, but in romantic art the idea predominates over the material, allowing the artist to seek the revelation of Spirit. In France, Eugene Delacroix challenged the neoclassical doctrines upheld by the Academie des Beaux Arts with his romantic paintings, and was championed in the critical writings of Charles Baudelaire, who placed the highest value on the faculty of imagination. Other French artists espoused Realism, creating socially critical images of both the urban and peasant life of their own times and rejecting classical and allegorical subjects. Many others, in France and elsewhere, came to believe in art for art's sake. In the second half of the century, the impressionists and postimpressionists, rejected by the artistic establishment, formed the modernist avant-garde, which became the dominant influence in 20th-century art.

In recent times art has become a frequent subject in philosophical theories of knowledge, generating a broad range of new critical viewpoints. Freudian psychology and phenomenological theories of intentionality have recast ideas of the subjective experience of both artist and viewer, and suggest new levels of meaning and new forms of art. Another pervasive idea is that art constitutes a mode of experience similar to language in its operation. Formalist criticism develops this notion, advancing through its defense of abstract painting and sculpture. Notable formalist critics such as Clive Bell and Clement Greenberg have argued for the significance of the very elements of form, such as color, line, and composition, and have contended that representational content is secondary, even distracting. Attacking formalism as rarified and socially unresponsive, Marxist criticism has become increasingly influential through the writings of such theorists as Theodor Adorno and Walter Benjamin. Contemporary Marxist criticism attempts to go beyond the sociological critiques explored in the 19th century to understand the dialectical interactions of artistic form, the conditions of its production, and the interpretation of content, often employing the methods of structural linguistics and anthropology. A widespread critical attitude in the 1980s is that the oppositional role of the modernist avant-garde is over, leading to the current eclectic condition designated postmodernism. Recent theories of poststructuralism and interpretation theory propose strategies of critical evaluation that incorporate multiple viewpoints and accept a basic indeterminacy in meaning.

19th Century Art

The profusion and diversity of styles in the 19th century is reflected in its architecture. The austerity of neoclassicism followed on the heels of rococo indulgence and spread rapidly from France to England and then to the United States, exemplified by buildings such as Thomas Jefferson's Monticello in Charlottesville, Va. Revivalism caused a recapitulation of recent, older, and exotic styles, including the Gothic Revival, as seen in Sir Charles Barry's and Augustus Pugin's Houses of Parliament in London (begun 1836), which found wide favor for the first time since it was eclipsed by the Renaissance.

The 19th century was characterized by stylistic upheavals for another reason--the Industrial Revolution and modern technology had begun to change the way structures could be built and hence changed how they looked. Sir Joseph Paxton's Crystal Palace (1851; destroyed 1936) utilized the tensile strength of iron to free the walls from the function of support and thus allowed enormous areas of glass. In the modern world, regularity, uniformity, order, and a frequent respect for the structural properties of materials has created economical, functional buildings. This is true of Walter Gropius's Bauhaus buildings at Dessau (1925-26) as well as of Ludwig Mies Van Der Rohe's Lake Shore Drive apartments (1948-51) in Chicago, which achieve a reposeful monumentality and feature a predominantly glass curtain wall with understated vertical shafts.

Academic sculpture, reiterating classical works by rote, was shaken up in the late 19th century by the powerful presence of Auguste Rodin, who invested bronze sculpture in particular with new energy and new freedom in handling. Balzac (1892-97; Museum of Modern Art, New York) is a virtual column of upward force, a singular mass, with facial features deeply cut and intensely expressive. With the 20th century, direct carving of stone regained its popularity, and modeling in clay for bronze casting declined. The new aesthetic brought with it geometric abstraction and resulted in sculpture with the grace and refinement of Constantin Brancusi's yellow marble Bird in Space (1919; Philadelphia Museum of Art), in which the subject is pared down to its formal essence. The third way of making sculpture--assembling different materials and constructing it--was explored by Aleksandr Archipenko, Naum Gabo, and many others, who brought new materials into the sculptor's vocabulary--glass, plastic, sheet metal, and the like. The metal constructions of David Smith followed in that modernist tradition.

The late 19th century was also characterized by the rise of the avant-garde in the arts and by the birth of the "isms" that named the principal trends. Claude Monet's Water Lilies (1899; Louvre, Paris) shows his and the other impressionists' concern with light--the way it can change from hour to hour or day to day, the idea that material things are known to us only by light in its infinite permutations and hence may seem no more substantial than the atmosphere around them. The artists who matured after the first wave of Impressionism altered its rationale. Georges Seurat attempted to measure scientifically the effects of light, Paul Gauguin and Vincent Van Gogh explored the mysteries of the self, and Paul Cezanne created a painted structure echoing the structure of the visible world. All four are now considered leaders of Post Impressionism.

In the first decade of this century abstraction, oriented toward problems of composition or pictorial structure, was the preeminent artistic movement, originating, as had most of the important developments of the previous century, in Paris. Cubism had by far the greatest impact. Pablo Picasso's Demoiselles d'Avignon (1906-07; Museum of Modern Art, New York) creates a new logic of structure for the figures--one that does not depend on their relative appearance from any one point. The rebuilding of the figures also allows new boldness in composition, now that color and shape are freed from functioning purely for description. Also evident is Picasso's interest in African art, in particular carved masks and wood sculptures, reflected in the grotesque faces of the women.

Composition with Red, Blue, and Yellow (1930; Collection of Mr. and Mrs. Armand P. Batos, New York) by Piet Mondrian, one of the founders of the neoplastic De Stijl group and also working in Paris, gives up representation entirely for an abstract art dependent on pure relationships of forms and primary colors. In Fauvism and Expressionism artists sought to utilize the medium for subjective expression and evidence of personal involvement, while Mondrian and other artists created works that eschewed such features for those of reflective tranquility and formal precision. In a sense, the painting of this century may be understood as progressive self-examination and reduction, in quest of the deepest innate character of the medium. Alternatively, it may be seen as a response to the new, industrial, fast-paced, insecure world, or as the revelation of intuitions no longer suppressed by convention, as in SURREALISM, in which the inner world becomes the real world.

American artists began their own experiments in what came to be called Modern Art a few years after such work appeared in Europe, sparked by New York's famous Armory Show of 1913. This culminated with the emergence of New York as the artistic world capital, supplanting Paris, with the development of Abstract Expressionism after World War II. Willem de Kooning, Franz Kline, Robert Motherwell, Jackson Pollock, Mark Rothko, and Clyfford Still were among the pioneers of this dynamic movement.

Today, the distinction between media is being blurred; sculpture seems an outmoded term for assembled pieces, and painting no longer applies if only a document is left, the artwork having become an act rather than an artifact. With such vanguard movements as Conceptual Art and, certainly, Earthworks, the work transcends gallery walls. These and additional recent trends, including Performance Art and Video Art, not only further the distinction between media but also extend the traditional definitions of art.

Realism in Art

In relation to the fine arts the term realism has conveyed a number of different meanings. Until the end of the 19th century it most often connoted naturalism, or the representation of the external world as it is actually seen. Such an approach stresses perceptual experience as opposed to suggestive expression through metaphor or abstraction. In this sense, the term may be used to describe the naturalism of the Italian painter Michelangelo Merisi da Caravaggio and his followers, which appeared at the end of the 16th century.

During recent decades of the 20th century the term realism has been used to describe the movement away from abstraction and toward representational art. The same word, however, is also used to describe that abstract art which sees reality as inner truth and opposes "mere appearances."

The art-historical definition of realism originated in the movement that was dominant primarily in France from about 1840 to 1870-80 and that is identified particularly with the work of Gustave Courbet. The main precedents for 19th-century French realism are found in the work of artists painting in the tradition of Caravaggio, including the 17th-century Spanish painter Diego Velazquez. Realism, however, was decidedly an outgrowth of its particular time--one of great political and social upheaval. This unrest stirred the realists to reject prevailing canons of academic and romantic art and to undertake instead a nonescapist, democratic, empirical investigation of life as it existed around them. They painted ordinary people leading their everyday lives. Although other artists had depicted similar subjects in earlier times, the realists took a fresh and unemotional view, feeling that the detailed observation of contemporary existence was the only valid approach to art in their time.

This attitude was connected both with a strong awareness of contemporary political and social events and the conviction that the realist approach was of central historical significance. As other artists continued to depict scenes of daily life from the past, Courbet said, "I hold the artists of one century basically incapable of reproducing the aspect of a past or future century." This insistence on what the art historian Linda Nochlin calls "contemporaneity" sets the realists apart from other artists of their time.

In 1846, when Charles Baudelaire called for painting that dealt with the "heroism of modern life," it was his friend Courbet who most readily took up the challenge. In The Stone Breakers (1850; formerly Dresden Gemaldegalerie, destroyed 1945), Courbet realized his goal. His association with Baudelaire and with the anarchist philosopher Pierre Joseph Proudhon exemplifies the realist painters' close connections with the literary and intellectual vanguard of the time.

Realism was most emphatically proclaimed in 1855, when Courbet, having been rejected for the Paris Exposition, arranged a private showing of his paintings that centered on his huge The Artist's Studio (1855; Louvre, Paris). He also distributed a manifesto of realism outlining his program. Among the other realists were Honore Daumier, most noted for his incisive mockery of the petty bourgeoisie, and Jean Francois Millet, whose peasant scenes are more reflective on tone than those of Courbet. The early works of Edouard Manet and Edgar Degas (1860s and 70s) are realist, and, like Courbet's, contain elements that prefigure impressionism. The art of the Pre-Raphaelites in England and of Adolph von Menzel in Germany is also related to the realist movement.

Arts and Crafts Movement

The Arts and Crafts movement originated in England in the second half of the 19th century as a revolt against the mass-produced furniture, household objects, and architecture that flooded the country following the Great Exhibition of 1851 at the Crystal Palace in London. The theorists of the movement were the writer John Ruskin and the artist-poet William Morris, who, with the Pre-Raphaelite artists Ford Madox Brown, Edward Burne-Jones, and Dante Gabriel Rossetti and the architect Philip Webb, preached a return to the traditions of anonymous medieval artisans and recently discovered Japanese artists and craftsmen. Their aim was "honest" art, that is, superior design and execution applied to utilitarian objects--furniture, household utensils, and architecture--as well as to decorative objects--jewelry, books, textiles, and wallpaper. The beauty and high quality of the work they produced was undeniable and is still admired, but critics of the time felt that their quality made them costly and impractical in a machine-age world, "the work of a few for the few."

Just as the movement seemed to fail, the Arts and Crafts Exhibition Society emerged in London. Beginning in 1888, it launched a series of exhibitions that finally aroused broad public interest in superior craftsmanship and design. The movement's time had come, and it spread rapidly to Europe and the United States. In England and Scotland its principles were evident in the work of such architect-designers as Charles Rennie Mackintosh, C. F. A. Voysey, and Arthur H. Mackmurdo. In the United States the movement's influence is most evident in the Chicago School of Architecture--particularly in the work of Louis Sullivan and Frank Lloyd Wright--and in California somewhat later, as expressed in the architecture of Greene and Greene (the brothers Charles and Henry Greene) and Bernard Maybeck. By the turn of the century the Arts and Crafts movement had become a major influence throughout the Western world and had led to the widespread popularity of Art Nouveau. The arts and crafts lost much popular appeal in subsequent decades, but interest in good design and craftsmanship is now flourishing.

Cubism

Cubism was a completely new, nonimitative style of painting and sculpture that was co-founded by Pablo Picasso and Georges Braque in 1908 and survived in its purest form until the mid-1920s. Cubism had an impact on art in general that extended far beyond the existence of the painting style itself; it paved the way for other art revolutions, such as Dada and Surrealism, and was seminal to much of Abstract Art. It also fostered newer modes of art, such as Orphism and Futurism, and even affected the formal structure of styles whose origins had predated cubism, such as expressionism.

Picasso and Braque found the precedents and initial concepts for cubism in two art sources. One was primitive art--African tribal masks, Iberian sculpture, and Egyptian bas-reliefs. The other influence was the work of Paul Cezanne, especially his late still lifes and landscapes. Cezanne had intro-duced a new geometrization of forms as well as new spatial relationships that finally broke with the Renaissance traditions of perspective. In 1907, Picasso synthesized these two sources in his seminal painting Les Demoiselles d'Avignon (1906-07; Museum of Modern Art, New York). Braque, one of the few artists to see and understand Picasso's painting at the time, immediately transformed his style from a Fauvist (see FAUVISM) to an early cubist idiom. In March 1909 the French critic Louis Vauxcelles, reviewing the Salon des Independants, referred disparagingly to Braque's style as one that "reduces everything to little cubes," and thus gave the new style its name.

Cubism developed from the early phase of 1908-09 to the more complex and systematic style of 1910-12, known as analytic cubism, implying intense analysis of all elements in a painting. It consisted of facets, or cubes, arranged in superimposed, transparent planes with clearly defined edges that established mass, space, and the implication of movement. During this period, Picasso and Braque employed a palette of muted greens, grays, browns, and ochers. Despite this radical method of painting, the subject matter consisted of traditional landscapes, portraits, and still lifes. Fragments of the faces, guitars, or wine glasses that were the subject of these works can be detected through the shifting facets or contours.

When Picasso and Braque invented Collages and papiers colles in 1912, they initiated the study of color and light within a cubist oil painting, a stage known as synthetic cubism (1912-14). The introduction of bright color resulted in the further flattening of space and the elaboration of the picture surface with such decorative devices as the stippling technique derived from Pointillism. Broken brush strokes, tone and shadow, and distance between denser planes introduced light. Synthetic cubism is the result of the desire to create or describe visual reality without resorting to illusionistic painting. The artist does this by synthesizing the object, even to the point of including real components of it in a collage, thus creating a new, separate reality for it.

By 1910 other painters had joined the cubist movement, including Juan Gris, Fernand Leger, Albert Gleizes, and Jean Metzinger. Others, such as Robert Delaunay, Marcel Duchamp, Joan Miro, Amedee Ozenfant, moved through cubism into exceptionally personal styles. The individual styles of Marc Chagall and Piet Mondrian were somewhat affected by cubism, although neither was a cubist. The cubist fragmentation of form was employed by the Italian futurists, who found it useful in their concept of dynamic motion. Cubism was introduced to the United States with the Armory Show of 1913. Notable American cubists included Max Weber and Stuart Davis.

In 1909, Picasso began to create a cubist sculpture. Other sculptors who followed in the cubist idiom were Aleksandr Archipenko, Henri Laurens, and Jacques Lipchitz.

A Cubist painting of 1910 had the appearance of the box-kite construction of an early airplane or the steel-frame construction of a skyscraper. The dissolving, overlapping shapes of these paintings have suggested to some scholars that the objects were seen from multiple viewpoints at the same time. Picasso and Braque, however, frequently denied the notion of multiple viewpoints; they explained that the cubist structure was developed as a means of providing all the essential information regarding a three-dimensional object within a two-dimensional canvas. Nevertheless, one finds in cubist art an implication of the mechanical and scientific achievements of this century.

ry.

During recent decades of the 20tpublic_html/help/background.jpg010064400017520000001000000132200712642276500202070ustar00matthewsother00001460002002JFIFHH4Photoshop 3.08BIMHH8BIM8BIM' 8BIMH/fflff/ff2Z5-8BIMp8BIMAdobed            "?   3!1AQa"q2B#$Rb34rC%Scs5&DTdE£t6UeuF'Vfv7GWgw5!1AQaq"2B#R3$brCScs4%&5DTdEU6teuFVfv'7GWgw ?6s։1v?B;[`Ac^Hэԟi"xIϗzl{ osZ#Bhfg5s[."3kfĠX荭RTѫ|>mo*s4“kk['Lh%"-$NZ9p$o{息r3cFpvXFI;kiS0$hq; tH%d5t׵kDi=QRuvWkw`~ ;(tIWvBso$%ݽ*ϬZ"x 2IуZCDx9\ &5t|CZwO(;C)IKnCߥĩ>>WK@mms%$ h kw9O )phs5Ԏ@I%?Gm#9ܔ6 OfŭIɁ ls%/esSVs ZQ M꒙Z9;ַ479I=mk.RS7X N!9q#5>ֹ{p8CkK\}IKC[I EFu(h$7Gjy)) ٲnt(48=u6{GO!%& h6#9'_&8c%/s9FEl 9IIZd Iqv\)͛CL:9))5B.q|<pd;ַ^i)h;Zݱ˔hhi )Y\dJpLIL}1< M @1Jgo"'Nx$.]ۡohaݫ$vh.){.x95pK~ve6i$ȉ@. ;tԠYsL;-%%.9!@s`A9-kFS6I(5D-ptԅ4Ď):#lѧNA0;$ZeѩILXo&uGkyXk%18vricIql 8v\[%/N׹SkAq'@5% s\\*Ms7s|R]2$'A$%hÏޡmv)`~tLZֵyM)s juC'JKhֆΏՠhwsRAiIOv-?8Q{\9qq ,s$ {Cw\גw\I oFk[ݤ$m\"@~ B-toRkw5'SR`kGǂŭ9NA4<5h*$JJQt8ڸ9"vt;[9SNp)qIsNjT9$ >:%2kCZJ#Zb5NƒuSXh%"t 7u<OhВkĩ_2|R vֶ?m-wh\`Jzhwˠ`ֵ=ܔbˊ#G$.Hk~ $wmw$|R7sĺ;xcGnIkC))#Z֗8 *M.p@ֆljM4Tִ4yی4x>h(l9JO-ܤֆ˦ ʋFIѣǺ\7\xIL\΀=~WXd#d9S20CZvRkw45y>(պnsd ':AYuaN`֗9nM sEsjRIOG:84HVX.qkdE kD7RR=dpsAԤ֎9*PΧIL-s SO Nqh.w$p{}S \U֘hS@#RsNLIJs87%A MK:qܤ7Zd\ 59 5U8op qԷIN7i<%'HRS7s-ku'$x'scO89cJc85pkvI<8V n7oA!% fݡS΃;WT[wSF\!@II*p`CGAkFwBu@w%%ֆt*JV90L   Ƶ?G8| ;\))ֹsDh;Y q >1nJS '5cZ=꓋Zh I )shpt;A١5n"^I-V8qIJȸkFEsis!Emmq6ܤMrS{Jw5Ѡ;m%$5 %H!6Ӵ 'IK4&'T֘N֏{IqIoJfַvaE<g81QqRR\G!:Nѷd|Sw Ά(`hn'1si+8 )ipi.Pԑt>h{cckWsi>lI%?Hh:wZ=9RIO`;sA/IOA `P^vwI)hhɄ $2I)V47805fI%?KkFyr;IkGn䯘RIOM\OCm;y|)$\rRi0@K*I)kFA684o_1$ HP^=hu!|ʒJ~c'hCQ\4_-\洆$$^I%?public_html/help/Bell.html010064400017520000001000000023300712642276500171320ustar00matthewsother00001460002002 Clive Bell

Note: the following has been abstracted from the Grolier Encyclopedia.

Clive Bell

The English art and literary critic Clive Bell, b. Sept. 16, 1881, d. Sept. 18, 1964, figured prominently in the Bloomsbury Group. Educated at Cambridge, he married (1907) Vanessa Stephen, a painter who was a daughter of the editor Sir Leslie Stephen and the sister of the writer Virginia Woolf. Some of Bell's most admired criticism is found in Art (1914), in which he expounded on his theory of "significant form," and in Since Cezanne (1922), in which he particularly championed modernism in art. His other writings include Proust (1929) and Old Friends (1956). Quentin Bell, his son, wrote about his parents in Bloomsbury (1968).

public_html/help/black_hole.html010064400017520000001000000135620712642276500203500