Skip to content

dylan-k/basinski-book-reviews

Repository files navigation

Michael Basinski's Book Reviews

Michael Basinski contributed nearly 300 reviews of poetry publications to a webzine called The Hold, from 2000-2005. He was the Associate Curator of The Poetry/Rare Books Collection SUNY at Buffalo.

The reviews describe the works of poets and publishers at a time right before the web became ubiquitous, providing a useful archive and an enjoyable read.

Copyright (c) 2005 Michael Basinski. Reproduced here and released under MIT License with permission of the author.

Usage

The index.md should be a perfectly workable way to read through the book reviews, using any text editor or markdown viewer.

You can build an html version, to include a table of contents using Jekyll and the command jekyll serve. Results will look something like the page at https://nocategories.net/basinski-book-reviews/

You can build an EPUB version using

pandoc -o michael-basinski-book-reviews.epub index.md  --epub-cover-image=basinski-reviews-cover.png --toc

to get something like https://nocategories.net/assets/epub/michael-basinski-book-reviews.epub

TODO

  • one file per review
  • yaml data for title, author, desc
  • yaml data for isbn, issn
  • yaml data for publisher
  • eventually.. contribute book records to openlibrary.org

Potential Upgrades

Any other ideas from the community?

Most links' URLs are outdated, so they've all been repointed to archived versions, but in some cases there may be newer links to information about the books, on google books perhaps, or worldcat, etc.

Normalize the title of each review. Probably best to use simply "{book} by {author}" since that's already most common.

Structuring the book data into YAML or JSON would allow for embedded metadata, to provide better search visibility for the books. A template:

{
  "@context": "https://schema.org/",
  "@type": "CriticReview",
  "datePublished": "2000-01",
  "reviewBody": "text of review",
  "description": "use the cite info from yaml",
  "publisher": "The Hold",
  "url": "#",
  "author": {
    "@type": "Person",
    "name": "Michael Basinski",
    "SameAs": [
      "https://en.wikipedia.org/wiki/Michael_Basinski",
      "https://www.poetryfoundation.org/poets/michael-basinski",
      "http://www.ubu.com/contemp/basinski/index.html",
      "https://jacket2.org/content/michael-basinski"
    ]
  },
  "itemReviewed": {
    "@type": "Book",
    "isbn": "00000000",
    "name": "title of book",
    "author": { 
      "@type": "Person",
      "name": "book author",
      "sameAs": "#"
    },
    "numberOfPages": "99",
    "datePublished": "2000",
    "publisher": {
      "@type": "Organization",
      "name": "publisher name",
      "address": "publisher address",
      "url": "http://www.example.com/",
      "email": "test@example.com"
    }
  }
}

Releases

No releases published

Packages

No packages published

Languages