Skip to content

Instantly share code, notes, and snippets.

View mjgiarlo's full-sized avatar
:shipit:
not updating my status

Michael J. Giarlo mjgiarlo

:shipit:
not updating my status
View GitHub Profile
@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/> .
@no-reply
no-reply / bag_import_error.rb
Created August 5, 2013 19:16
Blobs of bagit-for-hydra stuff
module Hybag
class BagImportError < StandardError
end
end
@dchud
dchud / gist:5090701
Created March 5, 2013 14:35
I stand with Dale Askey.
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
@mbklein
mbklein / gtfo_assert.rb
Last active December 12, 2015 00:28
Ruby assertions, 4chan style.
class GTFO < Exception; end
def gtfo
raise GTFO, caller.join("\n")
end
a = 1
b = 2
a == b or gtfo