https://github.com/dylan-k/basinski-book-reviews
reviews of small press literary publications. 2000-2005.
https://github.com/dylan-k/basinski-book-reviews
book-reviews chapbooks poetry rare-books zines
Last synced: about 1 month ago
JSON representation
reviews of small press literary publications. 2000-2005.
- Host: GitHub
- URL: https://github.com/dylan-k/basinski-book-reviews
- Owner: dylan-k
- License: mit
- Created: 2018-11-20T14:48:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-10T18:46:12.000Z (almost 3 years ago)
- Last Synced: 2025-01-30T00:33:59.496Z (3 months ago)
- Topics: book-reviews, chapbooks, poetry, rare-books, zines
- Language: HTML
- Homepage: https://nocategories.net/basinski-book-reviews/
- Size: 8.19 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Michael Basinski's Book Reviews
[Michael Basinski](https://www.poetryfoundation.org/poets/michael-basinski) contributed nearly 300 reviews of poetry publications to a webzine called [The Hold](https://web.archive.org/web/20090301055656/http://the-hold.com:80/index1.html), from 2000-2005. He was the Associate Curator of [The Poetry/Rare Books Collection SUNY at Buffalo](https://library.buffalo.edu/pl/about/).
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](https://jekyllrb.com/) 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
```bash
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
- [x] 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.orgPotential 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:
```json
{
"@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": "[email protected]"
}
}
}
```