This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix premis: <http://www.loc.gov/premis/rdf/v1#> . | |
@prefix nt: <http://www.jcp.org/jcr/nt/1.0> . | |
@prefix ns022: <http://www.loc.gov/mods/rdf/v1#> . | |
@prefix ns021: <http://scholarsphere.psu.edu/ns#> . | |
@prefix ns020: <http://iiif.io/api/presentation/2#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix ns004: <http://projecthydra.org/works/models#> . | |
@prefix ns003: <info:fedora/fedora-system:def/model#> . | |
@prefix ns002: <http://fedora.info/definitions/1/0/access/> . | |
@prefix ns001: <http://purl.org/dc/terms/> . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Hybag | |
class BagImportError < StandardError | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://mellenpress.com/mellenpress.cfm?pc=26 | |
Hello, I am an academic librarian in the USA, and I am writing to urge you to drop all your legal proceedings against Dale Askey. I am not a specialist in the fields your authors cover, nor do I have any opinion about the scholarly quality about your published titles. As a research university librarian, however, I personally believe that your lawsuits against Mr. Askey and McMaster University are an affront to academic freedom and scholarship in general. You have many options for fora within which to disprove your critics that fall well within the sphere of scholarly communication and gracious professional discourse. But by slapping down lawsuits in reaction to what appears to be reasoned, polite criticism, you have crossed the boundary into unacceptable behavior. | |
I urge you to reconsider and to drop all of your legal actions against Mr. Askey immediately. | |
Thank you for your consideration, -Daniel Chudnov |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GTFO < Exception; end | |
def gtfo | |
raise GTFO, caller.join("\n") | |
end | |
a = 1 | |
b = 2 | |
a == b or gtfo |