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
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Cloning VM... | |
[K==> default: Matching MAC address for NAT networking... | |
==> default: Checking if box 'bento/ubuntu-18.04' version '201812.27.0' is up to date... | |
==> default: Setting the name of the VM: aperture-dev | |
==> default: Clearing any previously set network interfaces... | |
==> default: Preparing network interfaces based on configuration... | |
default: Adapter 1: nat | |
==> default: Forwarding ports... |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
dspace: | |
image: tomcat:7-jre7 | |
hostname: dspace | |
domainname: data.rpi.edu | |
ports: | |
- "127.0.0.1:8880:8080" | |
links: | |
- db | |
environment: | |
- DB_PORT=tcp://db:5432 |
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
import csv | |
from rdflib import Graph, Literal, URIRef, Namespace, RDF, RDFS | |
base_uri = "http://www.iana.org/assignments/media-types/" | |
DCT = Namespace("http://purl.org/dc/terms/") | |
DCTYPE = Namespace("http://purl.org/dc/dcmitype/") | |
DCAM = Namespace("http://purl.org/dc/dcam/") | |
g = Graph() |
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
package edu.rpi.tw.dco.usermgmt.service; | |
import com.hp.hpl.jena.rdf.model.Model; | |
import com.hp.hpl.jena.rdf.model.Resource; | |
import com.hp.hpl.jena.rdf.model.ResourceFactory; | |
import com.hp.hpl.jena.vocabulary.RDF; | |
import com.hp.hpl.jena.vocabulary.RDFS; | |
import edu.rpi.tw.dco.usermgmt.DcoUserManagementApplication; | |
import edu.rpi.tw.dco.usermgmt.model.mongo.Country; | |
import org.junit.Test; |