The Interpretive Work of Digital History

One of the most vocal criticisms of the digital humanities is their supposed lack of interpretation. As interpretation remains the bedrock of the humanities, the argument goes, the digital humanities represent, at best, a degradation of the humanities or, at worst, something antithetical to them. For a recent example of this criticism, consider the words of Daniel Allington, Sarah Brouillette, and David Golumbia in the Los Angeles Review of Books earlier this year (and alluded to in one of our classes):

Digital Humanities has often tended to be anti-interpretive, especially when interpretation is understood as a political activity. Digital Humanities instead aims to archive materials, produce data, and develop software, while bracketing off the work of interpretation to a later moment or leaving it to other scholars — or abandoning it altogether for those who argue that we ought to become “postcritical.” (Allington et al.)

For the authors, the digital humanities clearly concern themselves with archival, data, and software development—tasks more suited to corporations than to scholars. Pitted against the digital humanities, there exists the critical, political, and interpretative work that should define the humanities. Does this definition of the digital humanities, and its comparison to the political work within the humanities, seem limited or even inaccurate?1

Viewing the digital humanities through the lens of digital history, I think this definition does seem limited and maybe inaccurate. As Stephen Brier argues, historians “made a substantial and quite different contribution to the emergence of the Digital Humanities” than certain literary scholars that the digital-humanities-as-anti-interpretation critics often highlight (1). For Brier, there exists another digital humanities emergence story where social history—“recounting what happened in the past ‘from the bottom up’” by emphasizing the voices of marginalized peoples—and public history—making the past relevant to those “that could and would benefit from exposure to and knowledge about their ‘lost’ pasts”—play major roles (2, 4). Together, these modes of history concern themselves with both the interpretive and the political. Moreover, in seeking to elevate the voices of the marginalized or to reach marginalized peoples, social and public historians were comfortable with new modes of investigation and “new, non-print” forms of communications such as radio broadcasts, television series, and films (4). As precursors to digital historians and digital humanists, then, they envisioned a fruitful relationship between interpretation and new tools of scholarly production.

This fruitful relationship becomes more apparent when we consider more recent projects in digital history. For example, Timothy Mahoney’s Gilded Age Plains City expands a peer-reviewed essay on a murder trial and 19th-century urban culture in Lincoln, Nebraska into a “self-directed exploration of the social, cultural, legal, and political concerns raised in the course of the trial providing insight into understanding the origins of Progressivism and modernity” (Seefeldt and Thomas). By augmenting his textual “spatial narratives” with interactive mapping tools, Mahoney seeks to generate a better understanding of his subjects. Similarly, Crandall Shifflett’s essay on the construction of Virtual Jamestown reveals how a consideration of information architecture and the development of mapping visualizations transformed a “digital archive” into “a far more interpretive site” about interactions among Native Americans, Africans, and Europeans in Jamestown (Shifflett). Not until Shifflett and his team had to organize an archive of materials in a digital space did they fully determine how to interpret those materials. As Shifflett himself concludes, “presentation may be the area where new technologies have the greatest potential for the practice of history” (Shifflett).

This interplay between interpretation and new tools of scholarly production suggests that digital historians do not necessarily archive materials, produce data, and develop software in “bracketed off” and “postcritical” spaces. Rather, these tasks are integral to the production of scholarship and the critical work contained therein. If we expand our definition of the digital humanities to encompass digital history, and its interpretive and politically-engaged influences, then distinction between critical humanistic work and newer digital tools seems more complicated.

Note

1. The evidence the authors use to arrive at this definition does, at the very least, seem limited but not inaccurate: in the section of “Neoliberal Tools (and Archives): A Political History of Digital Humanities” in which this excerpt appears, they discuss, almost exclusively, the English department at the University of Virginia.

Works Cited

Allington, Daniel et al. “Neoliberal Tools (and Archives): A Political History of Digital Humanities.” Los Angeles Review of Books, 1 May 2016, https://lareviewofbooks.org/article/neoliberal-tools-archives-political-history-digital-humanities/.

Brier, Stephen. “Confessions of a Premature Digital Humanist” (draft).

Seefeldt, Douglas and William Thomas. “What is Digital History?” Perspectives on History, 1 May 2009, https://www.historians.org/publications-and-directories/perspectives-on-history/may-2009/intersections-history-and-new-media/what-is-digital-history.

Shifflett, Crandall. “The Problem of Design and Navigation: A Case Study from Virtual Jamestown.” http://digitalhistory.unl.edu/essays/shifflettessay.php.

Posted in Student Post, Uncategorized | Comments closed

The New and Improved HTML

Near the end of the last class, there was a discussion about markup and why we use HTML in web design. I wanted to share a little about what I know then, but decided that a more detailed blog post would be more appropriate. A short comment on it in class wouldn’t scratch the surface. This is a large topic, so what I’m going to lay out is a short history of HTML and a little about how the newest version is being tailored for a more semantic web.

I work as a web developer and use HTML, JavaScript, and plenty of other web-based technologies on a daily basis. Through that and my time in undergrad a few years ago, I learned about the newest form of markup: HTML5.

For those that don’t know, HTML stands for HyperText Markup Language. I like to think of it as the girders or bones that hold a webpage together (the skin of which is the content and styling). On the technological level, HTML acts as a system of tags that tells the browser what to display for the user. Most browsers allow you to actually look at the front-end code. You can do this by right-clicking anywhere on the page and choosing “Inspect,” “Inspect Element,” or “View Source.” You’ll probably see a lot of <div> and <p>. Those are two of the most common tags.

Prior to HTML5, tags were mostly disconnected from what content they were around. For example, the body of an article would be within a <div> (the common divider tag – used to make sections out of the page) and each paragraph would have a <p> around it. However, the header at the top, the navigation bar on the side, the footer at the bottom, and every other aspect of the page would contain <div>’s and <p>’s. Using such nondescript tags put the onus on the content itself to explain what it was.

HTML5 brought a whole new set of tags to design. Instead of <div> to section off a page, you can use <section>; instead of <div> for a header, you can use <header>; the navigation bar is <nav>; an article is <article>; a fragment of code is <code>; and so on. You can see a full list of these tags at the Mozilla Developer Network. Now a tag can roughly explain what’s in the middle of it. Below is a basic example of the difference between the two methods.

HTML4:

<div> Brian’s Website </div>

<div>

<button> Home </button>

<button> Blog </button>

<button> About Me </button>

<button> Contact Me </button>

</div>

<div>

<div>

<p> Hello, welcome to my site. </p>

<p> This is designed with HTML4.1 </p>

</div>

</div>

<div> Created by Brian Hamilton </div>

HTML5:

<header> Brian’s Website </header>

<nav>

<button> Home </button>

<button> Blog </button>

<button> About Me </button>

<button> Contact Me </button>

</nav>

<main>

<article>

<p> Hello, welcome to my site. </p>

<p> This is designed with HTML5 </p>

</article>

</main>

<footer> Created by Brian Hamilton </footer>

The reason behind this change is the move towards the semantic web. The term was first used by Tim Berners-Lee fifteen years ago in an article of Scientific American. In it, he described the semantic web as “an extension of the current web in which information is given well-defined meaning, better enabling computers and people to work in cooperation.” From just that definition, you can see how prior versions of HTML worked against that idea. The idea is to interconnect the web, allowing for search engines and the like to more easily parse the website.

Unfortunately, I don’t exactly do as I preach. Most of my personal and work-related projects still use <div>. Old habits die hard. That sort of thing is just one of the hurdles a semantic web needs to get over in order to succeed in its mission.

There’s so much more to this and I’d recommend doing some more research on your own about the other benefits of using HTML5 that goes beyond the front-end design.

 

Works Cited

“The Semantic Web Made Easy”. World Wide Web Consortium. n.d. https://www.w3.org/RDF/Metalog/docs/sw-easy

Posted in Uncategorized | Comments closed

Producing, Publishing

During our last class, much of the discussion—about Google Books, funding for projects, the potential need for advertising—gravitated towards questions of producing and publishing scholarship in the contemporary digital environment. This prompted me to think more about the difference between “producing” and “publishing” and how the digital humanities can illuminate and maybe even change it. In this context, “producing” refers to a scholar’s, or a group of scholars’, presentation of research in written, visual, or some other computational form, while “publishing” refers to larger project of designing, distributing, and monetizing these presentations. Ultimately, though, the emphases on method and openness central to the digital humanities might collapse this difference and introduce some simpler, more transparent production and publishing processes.

Both producing and publishing rely on a multitude of proprietary software products to accomplish their respective tasks. For example, a scholar might use Word to write an article; a publisher might then use InDesign to typeset that article and place it within a journal. And, while Microsoft and Adobe try to make these products seem as transparent and usable as possible, “what you see is not what you get,” as Dennis Tenen and Grant Wythoff argue in “Sustainable Authorship in Plain Text using Pandoc and Markdown” (Tenen and Wythoff). Underlying the seemingly simple graphical user interfaces of these products exist “complicated layer[s] of code understandable only to machines” that encode the actual scholarship in convoluted markup languages difficult and time-consuming to clean and decode for human readers (Tenen and Wythoff). Proprietary software, in other words, inhibits the open exchange of scholarship between its producers and publishers.

How, though, can the digital humanities address this problem? Emphasis on method seems like a good start. Tom Scheinfeldt, confronting the argument that the digital humanities (in 2012) might not argue anything, articulates a case for a tools-oriented approach—“one of the things digital humanities shares with the sciences is a heavy reliance on instruments, on tools”—that turns “scholarly attention” onto the “tools themselves and the whiz-bang effects they produce” (Scheinfeldt). While Scheinfeldt suggests that digital humanists should build and study their own tools in this passage, we should expand the scope of his call to “scholarly attention” to the tools we use so commonly when producing and publishing scholarship. What are the whiz-bang effects of proprietary software like Microsoft Word, Google Docs, or Adobe InDesign? Do they articulate or contradict the values of the digital humanities?

One of the values that seems consistent across the multiple areas of inquiry that comprise the digital humanities is openness. Lisa Spiro, in fact, lists openness as the first proposed value in her 2012 essay “‘This Is Why We Fight’: Defining the Values of the Digital Humanities”: “Openness operates on several levels in the digital humanities, describing a commitment to the open exchange of ideas, the development of open content and software, and transparency” (Spiro). By connecting openness to “exchange of ideas,” “content,” and “software,” Spiro suggests the if the digital humanities can adopt central values, they might influence not only scholarly ideas but the infrastructure that supports the exchange, production, and publication of those ideas. As digital humanists have promoted, and continue to promote, greater inclusiveness in the years since 2012, they have preserved and solidified the value of openness. Consider, for example, the following conditions for apps from “QueerOS: A User’s Manual” in the 2016 edition of Debates in the Digital Humanities:

Promiscuity: the ability to move and interact across platforms, devices, users, and geographical regions unrestricted.

Commons: contra the “app store” ethos driven by finance and conservative social investments, QueerOS apps exist in a space of free exchange, sharing, and open development. (Barnett et al.)

Here, the authors emphasize unrestricted movement and “free exchange.” Though the focus of digital humanities seems to have changed from 2012 to 2016 from definition to the inclusion of cultural criticism and historically marginalized voices, openness remains a prominent value.

If we think of the difference between producing and publishing in the context of Scheinfeldt’s tools-based and methodological approach and the integral digital humanities value of openness it seems that we need to rethink some of the infrastructure that supports scholarship. A simple markup language, like Markdown, could eliminate the complicated encodings of Word or Google documents, for example (Tenen and Wythoff). Authors, editors, and publishers could exchange files without the need to waste hours reformatting work. Meanwhile software like Pandoc or LaTeX could reduce the effort required to convert documents from one format to another and allow for the simpler creation of well-designed publications (Tenen and Wythoff). Authors, editors, and publishers could run straightforward commands, instead of labyrinthine scripts, to transform and style scholarship for readers. While such work requires some technical know-how, it relies on simple encoding and open-source tools that do not divide producing and publishing labor as sharply as proprietary software does. By blurring the difference between producing and publishing with these open-source tools, we might develop an infrastructure more hospitable to the digital humanities values of openness and transparency.

Works Cited

Barnett, Fiona et al. “QueerOS: A User’s Manual.” Debates in the Digital Humanities, edited by Matthew K. Gold and Lauren F. Klein, University of Minnesota Press, 2016, http://dhdebates.gc.cuny.edu/debates/text/56.

Scheinfeldt, Tom. “Where’s the Beef? Does Digital Humanities Have to Answer Questions?.” Debates in the Digital Humanities, edited by Matthew K. Gold, University of Minnesota Press, 2012, http://dhdebates.gc.cuny.edu/debates/text/13.

Spiro, Lisa. “‘This Is Why We Fight’: Defining the Values of the Digital Humanities.” Debates in the Digital Humanities, edited by Matthew K. Gold, University of Minnesota Press, 2012, http://dhdebates.gc.cuny.edu/debates/text/13.

Tenen, Dennis and Grant Wythoff. “Sustainable Authorship in Plain Text using Pandoc and Markdown.” The Programming Historian, 19 March 2014, http://programminghistorian.org/lessons/sustainable-authorship-in-plain-text-using-pandoc-and-markdown.

Posted in Student Post, Uncategorized | Comments closed

People with Finger and Toes | Lower East Side Librarian

This post is about the readings for and class discussion on September 7, 2016.

I’m calling this post “People with Fingers and Toes” because when I announced on Facebook that I was starting a program in digital humanities, and I inevitably got the “what does that mean?” question and didn’t have a great answer, one of my friends suggested it was the study of humans’ digits–people with fingers and toes. That may not be an original joke, but it was new-to-me, and while I didn’t laugh myself silly over it as my friend Kate did, I thought it was cute. What I didn’t think was that it had any bearing on the topics I’d be exposed to in class.

photo of feet in striped toe socks

Striped Toe Socks by Raïssa from Wikimedia Commons, CC-BY-2.0
Thing I learned: it’s not so easy to find an image of non-white appearing fingers and toes that’s licensed for reuse.

To keep reading, go to: http://lowereastsidelibrarian.info/dhpraxis16/peoplewithfingersandtoes

Please comment here, though. I haven’t figure out the right captcha yet on my blog, so comments are disabled.

 

Posted in PressForward, Uncategorized | Tagged , , , | Comments closed

Editors’ Choice: Counting words in HathiTrust with Python and MPI

Lisa’s note: This post was featured as an Editors’ Choice on Digital Humanities Now. We won’t be talking about NLP projects or the HathiTrust for a couple of weeks, but if you’re interested in text analysis, this piece by David McClure helps talk through some existing projects step-by-step.

~~~~~~~~~~~~~

In recent months we’ve been working on a couple of projects here in the Lab that are making use of the Extracted Features data set from HathiTrust. This is a fantastic resource, and I owe a huge debt of gratitude to everyone at HTRC for putting it together and maintaining it. The extracted features are essentially a set of very granular word counts, broken out for each physical page in the corpus and by part-of-speech tags assigned by the OpenNLP parser. With just the per-page token counts, it is possible to do a really wide range of interesting things – tracking large-scale changes in word usage over time, looking at how cohorts of words do or don’t hang together at different points in history, etc. It’s an interesting constraint – the macro (or at least meso) scale is more strictly enforced, since it’s harder to dip back down into a chunk of text that can actually be read, in the regular sense of the idea.

Continue reading: here.

Posted in Uncategorized | Comments closed

PressForward Posts

Occasionally, there are timely and relevant posts, articles, talks, or other kinds of gray literature about digital humanities shared on the web that we may find that could be useful to the whole class. I encourage you to share content that you may find of interest to the class through our group site.

Rather than simply emailing everyone the link or copying and pasting the item into our own site (which erases all the metadata about the post), we have a plugin installed on the site called PressForward, which will help us to publish snippets of the post with some introductory framing / contextualizing information.

PressForward,” the plugin that we’ll be using, creates a “news aggregator” in the WordPress dashboard. I have started to populate the reader by adding RSS / Atom feeds to the  “Add Feeds” section. You are also welcome to add feeds from sites that you think regularly post content that you think is relevant to the Praxis Seminar. You can either add the RSS feed or you can use the “Nominate This” bookmarklet (under Tools) to select single articles, webpages, sites… basically anything with a URL to add directly to our WordPress site by “Sending to Draft.”

 

If you’d like to share content, I suggest you take a brief look at the User Guide for PressForward. You do not need to “nominate” a post, but can send it directly to draft. When you’ve sent a post to “draft,” please do the following:

  1. Go to the top of the WordPress Dashboard and click on the “Screen Options” drop down window. Put a check next to the “Custom Fields” box.
  2. Write a brief paragraph to introduce your selection. Include your name, the reason  you thought the group would like the post, and why you were interested in it yourself.
  3. Provide just a snippet of the actual post itself (maybe 1-3 paragraphs depending on the length of the post), and then cut the rest out.
  4. Place “To keep reading, go to: ” and then add a link to the post. You can find the link to the post in the custom field information below your post draft next to the name “item_link”
  5. On the far right hand side, under Categories, select “PressForward.”
  6. Publish.

I look forward to seeing what everyone finds out there on the web to share with the group!

 

 

Posted in PressForward, Uncategorized | Comments closed

Syllabus for Teaching Digital Public History · Jason Heppler

Lisa’s note: The following piece is an introduction to Jason Heppler’s syllabus on Digital Public History. Since we’ll be looking at a number of digital history projects over the next 2 weeks, Heppler’s syllabus demonstrates one approach to teaching digital humanities and to digital pedagogy in an undergraduate context. Have a look and see what you think!

~~~~~~~~~~~~~

This fall quarter I am teaching my digital history course. You can find the draft of the syllabus here. While the title of the course hasn’t changed since the last time I taught it, I’ve made two substantial changes to the overall structure of the course. First, the course focuses more heavily on public history instead of a range of digital methodologies. Part of this is self-serving—I’ve always wanted to teach a public history course, and the opportunity to combine public and digital was a welcome opportunity.

 

Continue reading: Syllabus for Teaching Digital Public History · Jason Heppler

Posted in PressForward, Uncategorized | Comments closed

Hacking Web Archives

Lisa’s note: The first PressForward post I want to share comes from Jefferson Bailey, who discusses the various ways in which library and archive datasets have been encouraging researchers to use their datasets. I’m sharing this post with you because it gives an interesting insight into some of the places where you might look for “datasets’ to include in your dataset project. It also offers a first-hand account of the kind of work that becomes possible when data from libraries and archives is made available to the public.

~~~~~~~~~~~~~~~

Excerpt: 

The awkward teenage years of the web archive are over. It is now 27 years since Tim Berners-Lee created the web and 20 years since we at Internet Archive set out to systematically archive web content. As the web gains evermore “historicity” (i.e., it’s old and getting older — just like you!), it is increasingly recognized as a valuable historical record of interest to researchers and others working to study it at scale.

Thus, it has been exciting to see — and for us to support and participate in — a number of recent efforts in the scholarly and library/archives communities to hold hackathons and datathons focused on getting web archives into the hands of research and users. The events have served to help build a collaborative framework to encourage more use, more exploration, more tools and services, and more hacking (and similar levels of the sometime-maligned-but-ever-valuable yacking) to support research use of web archives. Get the data to the people!


Read more at: https://blog.archive.org/2016/08/31/hacking-web-archives/

Posted in PressForward | Comments closed

About GC Library Chromebooks

Hello classmates!

I just wanted to follow up with additional information about the Chromebooks that are available for loan at the GC library. The loan period is indeed 3 weeks. You can’t download or save anything locally to the Chromebooks BUT they are great for your everyday web-based activities like internet browsing, checking your email, using Google apps (no surprise)… and they *should* also work well for cloud-computing, for example working with the tools in DH Box  🙂

If anyone tries out one of these for class I would be interested in hearing about your experience!

And here are some of the other types of equipment available for loan at the library: http://libguides.gc.cuny.edu/librarytech/equipment.

Have a good weekend and see you next week!

Posted in Uncategorized | Comments closed

Hello world!

Welcome to CUNY Academic Commons. This is your first post. Edit or delete it, then start blogging!

Posted in Uncategorized | Comments closed
  • Archives

  • Welcome to Digital Praxis 2016-2017

    Encouraging students think about the impact advancements in digital technology have on the future of scholarship from the moment they enter the Graduate Center, the Digital Praxis Seminar is a year-long sequence of two three-credit courses that familiarize students with a variety of digital tools and methods through lectures offered by high-profile scholars and technologists, hands-on workshops, and collaborative projects. Students enrolled in the two-course sequence will complete their first year at the GC having been introduced to a broad range of ways to critically evaluate and incorporate digital technologies in their academic research and teaching. In addition, they will have explored a particular area of digital scholarship and/or pedagogy of interest to them, produced a digital project in collaboration with fellow students, and established a digital portfolio that can be used to display their work. The two connected three-credit courses will be offered during the Fall and Spring semesters as MALS classes for master’s students and Interdisciplinary Studies courses for doctoral students.

    The syllabus for the course can be found at cuny.is/dps17.

  • Categories

Skip to toolbar