]> Lady’s Gitweb - Fortune/commitdiff
Wrap <cit> contents in <quote> current
authorLady <redacted>
Sun, 22 Sep 2024 19:09:28 +0000 (15:09 -0400)
committerLady <redacted>
Sun, 22 Sep 2024 19:09:28 +0000 (15:09 -0400)
This seems to better match current T·E·I guidelines. This change also
allows nested quotes (for block quotations within texts).

14 files changed:
DTD
GNUmakefile
README.markdown
data/NAFUS_Dawn__2011__PatchesGender/bibl [new file with mode: 0644]
data/NAFUS_Dawn__2011__PatchesGender/fortunes/AWayOfCuttingTies [new file with mode: 0644]
data/NAFUS_Dawn__2011__PatchesGender/fortunes/DownrightFreedFromIt [new file with mode: 0644]
data/NAFUS_Dawn__2011__PatchesGender/fortunes/LikeASystemOfScience [new file with mode: 0644]
data/NAFUS_Dawn__2011__PatchesGender/info [new file with mode: 0644]
data/TURKLE_Sherry__1986__CompuReticence/fortunes/ACompletelyDifferentThing
data/TURKLE_Sherry__1986__CompuReticence/fortunes/ArtisticAndPersonal
data/TURKLE_Sherry__1986__CompuReticence/fortunes/IfOnlyItWereALanguage
data/TURKLE_Sherry__1986__CompuReticence/fortunes/NeverLove
data/TURKLE_Sherry__1986__CompuReticence/fortunes/SomethingAboutThemselvesAsWomen
data/TURKLE_Sherry__1986__CompuReticence/fortunes/WhatTheyReallyPrefer

diff --git a/DTD b/DTD
index 4786781140c5f8eeebc9b9d181aaaadaec90accb..671b3c4a1bd9168557bdef6397aee219bcdcd9e0 100644 (file)
--- a/DTD
+++ b/DTD
@@ -13,15 +13,25 @@ Users of this corpus should check for additions and changes to this D·T·D when
 <!--
 The following are “ordinary” phrase‐level elements usable inside of paragraphs.
 -->
-<!ELEMENT seg (#PCDATA|soCalled|pc)*>
-<!ATTLIST seg
-       type (callout) #IMPLIED
+<!ELEMENT abbr (#PCDATA)>
+<!ELEMENT emph (#PCDATA)>
+<!ELEMENT gap (#PCDATA)>
+<!ATTLIST gap
+       reason (editorial) #REQUIRED
+>
+<!ELEMENT note (p)>
+<!ATTLIST note
+       n CDATA #IMPLIED
 >
-<!ELEMENT soCalled (#PCDATA)>
 <!ELEMENT pc (#PCDATA)>
 <!ATTLIST pc
        unit (paragraph|phrase|sentence) #REQUIRED
 >
+<!ELEMENT seg (#PCDATA|emph)*>
+<!ATTLIST seg
+       type (callout) #IMPLIED
+>
+<!ELEMENT soCalled (#PCDATA)>
 
 <!--
 The following encode links.
@@ -32,6 +42,13 @@ The following encode links.
        mimeType CDATA #IMPLIED
 >
 
+<!--
+The following encode choices.
+-->
+<!ELEMENT metamark (#PCDATA)>
+<!ELEMENT supplied (#PCDATA)>
+<!ELEMENT ellipsis (metamark,supplied?)>
+
 <!--
 The following encode names and name components.
 -->
@@ -107,7 +124,8 @@ For single pages, `@from´ and `@to´ should be equal.
 <!--
 The following are paragraph‐level elements.
 -->
-<!ELEMENT p (#PCDATA|pc|ptr|seg)*>
+<!ELEMENT p (#PCDATA|abbr|ellipsis|emph|gap|note|pc|ptr|seg)*>
+<!ELEMENT quote (p|quote)+>
 
 <!--
 The following encapsulate paragraph information within bibliographies.
@@ -117,7 +135,7 @@ The following encapsulate paragraph information within bibliographies.
 <!--
 The following provide structured bibliographic information.
 -->
-<!ELEMENT analytic (title,idno*,author*,editor*,availability?)>
+<!ELEMENT analytic (title,idno*,author*,editor*,availability?,date?)>
 <!ELEMENT monogr (title,idno*,author*,editor*,availability?,imprint,biblScope*)>
 <!ELEMENT series (title,idno*,editor*,availability?,biblScope*)>
 
@@ -136,7 +154,7 @@ All of these require an `@xmlns´ which provides the T·E·I namespace, and an `
        xmlns CDATA #FIXED 'http://www.tei-c.org/ns/1.0'
        xml:lang NMTOKEN #REQUIRED
 >
-<!ELEMENT cit (p+,bibl*)>
+<!ELEMENT cit (quote,bibl*)>
 <!ATTLIST cit
        xmlns CDATA #FIXED 'http://www.tei-c.org/ns/1.0'
        xml:lang NMTOKEN #REQUIRED
index c583687ced9a0163f3c49fe1fecac38021a352a3..188e0eee3f070872cb2d87a62b7ef25f6461f22e 100644 (file)
@@ -14,5 +14,8 @@ lint : $(foreach xml,$(xmls),lint][$(xml)) ;
 
 $(foreach xml,$(xmls),lint][$(xml)) : lint][% :
        @xmllint --valid --noout '$*'
+       @$(if $(findstring /fortunes/,$*),if ! xmllint --xpath '//*[local-name()="seg" and namespace-uri()="http://www.tei-c.org/ns/1.0" and @type="callout"]' '$*' >/dev/null 2>/dev/null; then printf '%s\n' 'No callout in file <$*>'; false; fi; if xmllint --xpath '//*[local-name()="seg" and namespace-uri()="http://www.tei-c.org/ns/1.0" and @type="callout"][2]' '$*' >/dev/null 2>/dev/null; then printf '%s\n' 'Multiple callouts in file <$*>'; false; fi,:)
 
-.PHONY : lint $(foreach xml,$(xmls),lint][$(xml))
+.IGNORE : $(foreach xml,$(xmls),lint][$(xml)) ;
+
+.PHONY : lint $(foreach xml,$(xmls),lint][$(xml)) ;
index d4c748170ee6c9b4f31d40e3b72b700c0ebedcad..7ca6626e9547704fa641c0e7a6e039c4dd94ff00 100644 (file)
@@ -8,19 +8,27 @@ SPDX-License-Identifier: CC0-1.0
 
 ## Directory Structure
 
-Each fortune source (in `data/`) is provided in directory of the
-  form `AUTHOR__YEAR__IDENTIFIER`, where :⁠—
-
-- **`AUTHOR`** is the author of the work.
-  For people, the family name is given first, in all capitals, followed
-    by their personal name(s).
-
-- **`YEAR`** is the copyright year of the work.
+Each fortune source (in `data/`) is provided in directory whose name
+  has the form `CREATOR__YEAR__IDENTIFIER`, where :⁠—
+
+- **`CREATOR`** is the creator of the work.
+  Typically, this is the author, translator, producer, or otherwise
+    entity who is most directly responsible for the work existing in a
+    given form.
+  For people with multiple names, family name(s) are given first, in
+    all capitals, followed by their personal name(s).
+  Names in other languages are not romanized, except when the romanized
+    form is considered a distinct, and applicable, alias.
+
+- **`YEAR`** is the (most recent) copyright year of the work.
+  This is, generally speaking, the year that the work was first
+    published.
 
 - **`IDENTIFIER`** is a humanreadable identifier uniquely identifying
     the work among all the sources.
+  Typically it is an abbreviated form of the work’s title.
 
-Within this directory, the following files can be found :⁠—
+Within each source directory, the following files can be found :⁠—
 
 - **`bibl`:**
   The bibliographic citation for the source.
diff --git a/data/NAFUS_Dawn__2011__PatchesGender/bibl b/data/NAFUS_Dawn__2011__PatchesGender/bibl
new file mode 100644 (file)
index 0000000..a4e6739
--- /dev/null
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<!--
+SPDX-FileCopyrightText: 2024 Lady <https://www.ladys.computer/about/#lady>
+SPDX-License-Identifier: CC0-1.0
+-->
+<!DOCTYPE biblStruct SYSTEM "../../DTD">
+<biblStruct xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
+       <analytic>
+               <title level="a">
+                       <title type="main">
+                               <soCalled>Patches don’t have gender</soCalled>
+                       </title>
+                       <title type="sub">
+                               <seg>What is not open in open source software</seg>
+                       </title>
+               </title>
+               <idno type="DOI">10.1177/1461444811422887</idno>
+               <author>
+                       <persName>
+                               <forename>Dawn</forename>
+                               <surname>Nafus</surname>
+                       </persName>
+               </author>
+               <date when="2011"/>
+       </analytic>
+       <monogr>
+               <title level="j">
+                       <seg>new media &amp; society</seg>
+               </title>
+               <imprint>
+                       <date when="2012"/>
+               </imprint>
+               <biblScope unit="volume" from="14" to="14"/>
+               <biblScope unit="issue" from="4" to="4"/>
+               <biblScope unit="page" from="669" to="683"/>
+       </monogr>
+</biblStruct>
diff --git a/data/NAFUS_Dawn__2011__PatchesGender/fortunes/AWayOfCuttingTies b/data/NAFUS_Dawn__2011__PatchesGender/fortunes/AWayOfCuttingTies
new file mode 100644 (file)
index 0000000..7af9f50
--- /dev/null
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<!DOCTYPE cit SYSTEM "../../../DTD">
+<cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
+       <quote>
+               <p>
+                       In the gift economies to which F/LOSS is often compared, gifts are given to create ties and obligations among people<pc unit="sentence">.</pc>
+                       But in F/LOSS, code was just as readily given away as <seg type="callout">a way of cutting ties</seg><pc unit="sentence">.</pc>
+                       <gap reason="editorial"/>
+               </p>
+               <p>
+                       <gap reason="editorial"/>
+                       Community members are decidedly <emph>not</emph> free to build ties that might oblige others to explain themselves, which is exactly what women’s groups do, and exactly why they are considered problematic<pc unit="sentence">.</pc>
+                       If someone does not like being in one software project, the accepted course of action is to simply start another project elsewhere, not create an obligation for that community to include you<pc unit="sentence">.</pc>
+                       This particular form of exchange means that others can push the technology along further only <emph>as</emph> individually willful agents who have taken it upon themselves to ‘read the f<ellipsis>
+                               <metamark>***</metamark>
+                               <supplied>uck</supplied>
+                       </ellipsis>ing manual.’<pc unit="sentence"/>
+               </p>
+       </quote>
+       <bibl>
+               <citedRange unit="page" from="680" to="680"/>
+       </bibl>
+</cit>
diff --git a/data/NAFUS_Dawn__2011__PatchesGender/fortunes/DownrightFreedFromIt b/data/NAFUS_Dawn__2011__PatchesGender/fortunes/DownrightFreedFromIt
new file mode 100644 (file)
index 0000000..7cc219c
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<!DOCTYPE cit SYSTEM "../../../DTD">
+<cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
+       <quote>
+               <p>
+                       In <abbr>F/LOSS</abbr>, openness relies on a steadfastly closed epistemological frame that not only constitutes technology as apart from persons, but shapes this separability in such a way that code is more than just outside the realm of the social: it is <seg type="callout">downright <emph>freed</emph> from it</seg><pc unit="sentence">.</pc>
+                       The social here is not exactly orthogonal to the technical as <abbr>F/LOSS</abbr> imagination has it; rather, social forms shape how ties are <emph>severed</emph>, as well as how they are built, between people<pc unit="sentence">.</pc>
+                       Not needing to know with whom code is being exchanged, or having a stake in their concerns, is as central to <abbr>F/LOSS</abbr> as open scrutiny to improve code quality<pc unit="sentence">.</pc>
+               </p>
+       </quote>
+       <bibl>
+               <citedRange unit="page" from="680" to="680"/>
+       </bibl>
+</cit>
diff --git a/data/NAFUS_Dawn__2011__PatchesGender/fortunes/LikeASystemOfScience b/data/NAFUS_Dawn__2011__PatchesGender/fortunes/LikeASystemOfScience
new file mode 100644 (file)
index 0000000..0a4169d
--- /dev/null
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+<!DOCTYPE cit SYSTEM "../../../DTD">
+<cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
+       <quote>
+               <p>
+                       Other researchers have likened software production to craft production<note n="2">
+                               <p>
+                                       Here <abbr>F/LOSS</abbr>ers are drawing on the masculinity of the eighteenth century blacksmith or woodworker, an image that evokes a self‐sufficient individualist without posing a threat to male dominance.
+                               </p>
+                       </note> (Coleman, 2001) or pleasurable play (Klief and Faulkner, 2002)<pc unit="sentence">.</pc>
+                       In our study this is indeed part of coders’ imagination<pc unit="sentence">.</pc>
+                       Members often describe their work as ‘scratching an itch’ by producing something tangible and craft‐like<pc unit="sentence">.</pc>
+                       Scratching an itch is a common reason why people become involved with communities and why they stay<pc unit="sentence">.</pc>
+                       Yet tradition and repetition, key elements of other forms of craft production, have no place other than as building blocks upon which to take one’s own work further<pc unit="sentence">.</pc>
+                       Re‐doing work similar to that of other coders does not scratch the itch satisfactorily, whereas it generally does among craftspeople<pc unit="sentence">.</pc>
+                       In this way, the craft system looks suspiciously <seg type="callout">like a system of science</seg><pc unit="sentence">.</pc>
+               </p>
+       </quote>
+       <bibl>
+               <citedRange unit="page" from="677" to="677"/>
+       </bibl>
+</cit>
diff --git a/data/NAFUS_Dawn__2011__PatchesGender/info b/data/NAFUS_Dawn__2011__PatchesGender/info
new file mode 100644 (file)
index 0000000..4c9a04c
--- /dev/null
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+<!--
+SPDX-FileCopyrightText: 2024 Lady <https://www.ladys.computer/about/#lady>
+SPDX-License-Identifier: CC-BY-SA-4.0
+-->
+<!DOCTYPE div SYSTEM "../../DTD">
+<!--
+This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
+To view a copy of this license, visit <https://creativecommons.org/licenses/by-sa/4.0/>.
+-->
+<div xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
+       <p>
+               Altho it does serve as a fair analysis of the lack of gender diversity in free ∣ libre ∣ opensource software, the underlying critique in this piece could have been made stronger:
+               The individualistic liberal ideals of the free software move·ment actively work to disrupt socialist, and solidarity‐oriented, modes of producing software.
+               This naturally re·inforces (as it simultaneously obfuscates) existing hierarchies—which happen to be white and male—but I think it’s important to note that, even if the free software move·ment were to miraculously diversify in terms of gender and race, inequality would persist for as long as this liberal frame remained unchallenged.
+       </p>
+</div>
index 32adb7a7a8d7b91c7ab28053aa5c8559a3a1f226..cee99f0abc8ffe5c27f4088fac096e4aff6213a1 100644 (file)
@@ -1,11 +1,13 @@
 <?xml version="1.0"?>
 <!DOCTYPE cit SYSTEM "../../../DTD">
 <cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
-       <p>
-               I ask Robin to talk to me about her relationship with her piano, a machine, but she insists that it was <seg type="callout">a completely different thing</seg><pc unit="sentence">.</pc>
-               The piano took her away from people, but then it brought her closer to them<pc unit="sentence">.</pc>
-               The involvements of her male peers with the computer only shut people out<pc unit="sentence">.</pc>
-       </p>
+       <quote>
+               <p>
+                       I ask Robin to talk to me about her relationship with her piano, a machine, but she insists that it was <seg type="callout">a completely different thing</seg><pc unit="sentence">.</pc>
+                       The piano took her away from people, but then it brought her closer to them<pc unit="sentence">.</pc>
+                       The involvements of her male peers with the computer only shut people out<pc unit="sentence">.</pc>
+               </p>
+       </quote>
        <bibl>
                <citedRange unit="page" from="47" to="47"/>
        </bibl>
index 2cf6c655c6d5ea3e78210294ec871c33ccb99221..fe7327e2a9e0289b4793ece3d0460bc3635179eb 100644 (file)
@@ -1,17 +1,19 @@
 <?xml version="1.0"?>
 <!DOCTYPE cit SYSTEM "../../../DTD">
 <cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
-       <p>
-               We know that pencils, oil paints and brushes are ‘just tools.’<pc unit="sentence"/>
-               And yet, we appreciate that the artist’s encounter with his or her tools is close and relational<pc unit="sentence">.</pc>
-               It may shut people out, temporarily, but the work itself can bring one closer to oneself, and ultimately to others<pc unit="sentence">.</pc>
-               In the right settings, people develop relationships with computers that feel <seg type="callout">artistic and personal</seg><pc unit="sentence">.</pc>
-               And yet, for most people, and certainly for the women I studied, this was rare<pc unit="sentence">.</pc>
-               When they began to approach the computer in their own style, they got their wrists slapped, and were told that they were not doing things ‘right.’<pc unit="sentence"/>
-       </p>
-       <p>
-               When this happens, many people drop out<pc unit="sentence">.</pc>
-       </p>
+       <quote>
+               <p>
+                       We know that pencils, oil paints and brushes are ‘just tools.’<pc unit="sentence"/>
+                       And yet, we appreciate that the artist’s encounter with his or her tools is close and relational<pc unit="sentence">.</pc>
+                       It may shut people out, temporarily, but the work itself can bring one closer to oneself, and ultimately to others<pc unit="sentence">.</pc>
+                       In the right settings, people develop relationships with computers that feel <seg type="callout">artistic and personal</seg><pc unit="sentence">.</pc>
+                       And yet, for most people, and certainly for the women I studied, this was rare<pc unit="sentence">.</pc>
+                       When they began to approach the computer in their own style, they got their wrists slapped, and were told that they were not doing things ‘right.’<pc unit="sentence"/>
+               </p>
+               <p>
+                       When this happens, many people drop out<pc unit="sentence">.</pc>
+               </p>
+       </quote>
        <bibl>
                <citedRange unit="page" from="58" to="58"/>
        </bibl>
index a5a9f12f23e6439ffd555c11845791f4ea498c2a..acbe0ca24aac56ad12d6d1686c980c320ea80eb9 100644 (file)
@@ -1,12 +1,14 @@
 <?xml version="1.0"?>
 <!DOCTYPE cit SYSTEM "../../../DTD">
 <cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
-       <p>
-               Lisa reacted with irritation when her high school teachers tried to get her interested in mathematics by calling it a language<pc unit="sentence">.</pc>
-               ‘People were always yakking at me about how math is a language—it’s got punctuation marks and all that stuff<pc unit="sentence">.</pc>
-               I thought they were fools and I told them so<pc unit="sentence">.</pc>
-               I told them that <seg type="callout">if only it were a language</seg>, if only it had some nuance, then perhaps I could relate to it.’<pc unit="sentence"/>
-       </p>
+       <quote>
+               <p>
+                       Lisa reacted with irritation when her high school teachers tried to get her interested in mathematics by calling it a language<pc unit="sentence">.</pc>
+                       ‘People were always yakking at me about how math is a language—it’s got punctuation marks and all that stuff<pc unit="sentence">.</pc>
+                       I thought they were fools and I told them so<pc unit="sentence">.</pc>
+                       I told them that <seg type="callout">if only it were a language</seg>, if only it had some nuance, then perhaps I could relate to it.’<pc unit="sentence"/>
+               </p>
+       </quote>
        <bibl>
                <citedRange unit="page" from="55" to="55"/>
        </bibl>
index 397109460556f28178fc89cbbec00806c0e511be..3cf2aa796841615023f5599c1530705337162cf6 100644 (file)
@@ -1,9 +1,11 @@
 <?xml version="1.0"?>
 <!DOCTYPE cit SYSTEM "../../../DTD">
 <cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
-       <p>
-               Simulated thinking may be thinking, but simulated love is <seg type="callout">never love</seg><pc unit="sentence">.</pc>
-       </p>
+       <quote>
+               <p>
+                       Simulated thinking may be thinking, but simulated love is <seg type="callout">never love</seg><pc unit="sentence">.</pc>
+               </p>
+       </quote>
        <bibl>
                <citedRange unit="page" from="55" to="55"/>
        </bibl>
index 567d01410e1e2ff2142e01ff2a6ba83b1dc24470..767dd5a58d3e8cf3d701a151b67566d90a7780f9 100644 (file)
@@ -1,14 +1,16 @@
 <?xml version="1.0"?>
 <!DOCTYPE cit SYSTEM "../../../DTD">
 <cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
-       <p>
-               First, insisting that the computer is just a tool is a defense against the experience of the computer as the opposite, as an intimate machine<pc unit="sentence">.</pc>
-               It is a way to say that it is not appropriate to have a close relationship with a machine<pc unit="sentence">.</pc>
-               Computers with their plasticity and malleability are compelling media<pc unit="sentence">.</pc>
-               They have a psychological ‘holding power.’<pc unit="sentence"/>
-               Women use their rejection of computer holding power to assert <seg type="callout">something about themselves as women</seg><pc unit="sentence">.</pc>
-               Being a woman is opposed to a compelling relationship with a thing that shuts people out<pc unit="sentence">.</pc>
-       </p>
+       <quote>
+               <p>
+                       First, insisting that the computer is just a tool is a defense against the experience of the computer as the opposite, as an intimate machine<pc unit="sentence">.</pc>
+                       It is a way to say that it is not appropriate to have a close relationship with a machine<pc unit="sentence">.</pc>
+                       Computers with their plasticity and malleability are compelling media<pc unit="sentence">.</pc>
+                       They have a psychological ‘holding power.’<pc unit="sentence"/>
+                       Women use their rejection of computer holding power to assert <seg type="callout">something about themselves as women</seg><pc unit="sentence">.</pc>
+                       Being a woman is opposed to a compelling relationship with a thing that shuts people out<pc unit="sentence">.</pc>
+               </p>
+       </quote>
        <bibl>
                <citedRange unit="page" from="50" to="50"/>
        </bibl>
index 27cdd73a3729e2d056f1dd502461d7fb79d62623..0f57c9ad8c9ad29818a0dd86b34375137a65fda6 100644 (file)
@@ -1,16 +1,18 @@
 <?xml version="1.0"?>
 <!DOCTYPE cit SYSTEM "../../../DTD">
 <cit xmlns="http://www.tei-c.org/ns/1.0" xml:lang="en">
-       <p>
-               To take an analogy from the world of the computer’s second cousins, the video games: it is almost impossible to learn to play a video game if you try to understand first and play second<pc unit="sentence">.</pc>
-               Girls are often perceived as preferring the ‘easier’ video games<pc unit="sentence">.</pc>
-               When I have looked more closely at <seg type="callout">what they really prefer</seg>, it is games where they can understand ‘the rules’ before play begins<pc unit="sentence">.</pc>
-               Both Lisa and Robin crave transparent understanding of the computer<pc unit="sentence">.</pc>
-               For example, although both apologize for their behavior as ‘silly,’ both like to program the computer to do everything they need to build their larger programs, even when these smaller, ‘building‐block’ procedures are in program libraries at their disposal<pc unit="sentence">.</pc>
-               It makes their job harder, but both say that it gives them a more satisfying understanding<pc unit="sentence">.</pc>
-               They don’t like taking risks at the machine<pc unit="sentence">.</pc>
-               What they most want to avoid is error messages<pc unit="sentence">.</pc>
-       </p>
+       <quote>
+               <p>
+                       To take an analogy from the world of the computer’s second cousins, the video games: it is almost impossible to learn to play a video game if you try to understand first and play second<pc unit="sentence">.</pc>
+                       Girls are often perceived as preferring the ‘easier’ video games<pc unit="sentence">.</pc>
+                       When I have looked more closely at <seg type="callout">what they really prefer</seg>, it is games where they can understand ‘the rules’ before play begins<pc unit="sentence">.</pc>
+                       Both Lisa and Robin crave transparent understanding of the computer<pc unit="sentence">.</pc>
+                       For example, although both apologize for their behavior as ‘silly,’ both like to program the computer to do everything they need to build their larger programs, even when these smaller, ‘building‐block’ procedures are in program libraries at their disposal<pc unit="sentence">.</pc>
+                       It makes their job harder, but both say that it gives them a more satisfying understanding<pc unit="sentence">.</pc>
+                       They don’t like taking risks at the machine<pc unit="sentence">.</pc>
+                       What they most want to avoid is error messages<pc unit="sentence">.</pc>
+               </p>
+       </quote>
        <bibl>
                <citedRange unit="page" from="49" to="49"/>
        </bibl>
This page took 0.048752 seconds and 4 git commands to generate.