I hereby claim:
- I am cbeer on github.
- I am cbeer (https://keybase.io/cbeer) on keybase.
- I have a public key ASBTnRdXnwr4Tl54H5ESYNubL0mw7TpbARvBfut3vkwBmQo
To claim this, I am signing this object:
| { | |
| "@context": "http://iiif.io/api/image/2/context.json", | |
| "@id": "https://gist.githubusercontent.com/cbeer/dcd7b120bf211aa5e87a6140baca450b/raw/2fb919751a9a86b536211fdb20fc957c58470796/iiif-example.json", | |
| "height": 3393, | |
| "profile": [ | |
| "http://iiif.io/api/image/2/level2.json" | |
| ], | |
| "protocol": "http://iiif.io/api/image", | |
| "service": { | |
| "@context": "http://iiif.io/api/auth/1/context.json", |
| begin | |
| require 'bundler/inline' | |
| rescue LoadError => e | |
| $stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
| raise e | |
| end | |
| gemfile(true) do | |
| source 'https://rubygems.org' | |
| gem 'rails', '5.1.0' # use correct rails version |
I hereby claim:
To claim this, I am signing this object:
| MIT License | |
| Copyright (c) 2016 Jack Reed | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| # curl -X PUT "http://localhost:4567/netWorth/nw1/" -d @nw1 -H "Content-Type: text/turtle" | |
| <> a <http://example.org/ontology#NetWorth> . |
@prefix gn: <http://www.geonames.org/ontology#> ;
title = gn:name :: xsd:string ;
postcodes = gn:postalCode :: xsd:integer ;
parentFeature = gn:parentFeature :: xsd:string ;
| #/bin/bash | |
| # Dependencies: | |
| # jq: https://github.com/stedolan/jq | |
| # hub: https://github.com/defunkt/hub | |
| cat > /tmp/LICENSE <<EOF | |
| ©yyyy The Board of Trustees of the Leland Stanford Junior University. | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. |
| input { stdin { } } | |
| filter { | |
| grok { | |
| match => { "message" => "%{COMMONAPACHELOG} %{QS:agent} %{QS:referrer}" } | |
| } | |
| date { | |
| match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ] | |
| } |
| module BlacklightConfigurationHelper | |
| include Blacklight::ConfigurationHelperBehavior | |
| def default_sort_field | |
| if params.has_key? :q | |
| active_sort_fields.select { |k,config| config.default_for_user_query }.first || super | |
| else | |
| super | |
| end | |