- Customizing Vim
- Mappings
- Commands
- Batching with Vim
- Case: plugin
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
from rdflib import * | |
SDO = Namespace("http://schema.org/") | |
datatype_coerce_map = { | |
#SDO.Number: XSD.double, | |
SDO.Date: 'xsd:date', | |
SDO.DateTime: "xsd:dateTime", | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Using about with a table</title> | |
</head> | |
<body> | |
<table vocab="http://schema.org/"> | |
<tr> | |
<th>Who</th> |
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 owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | |
@prefix dc: <http://purl.org/dc/terms/> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
@prefix pto: <http://www.productontology.org/id/> . | |
@prefix : <http://schema.org/> . | |
## Altered parts of <http://www.oclc.org/content/dam/research/publications/library/2013/2013-05.pdf> ## |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<base href="http://d.lib.ncsu.edu/collections/catalog/mc00096-001-ff0155-000-001_0001" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width; initial-scale=1.0"> | |
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
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Dynamics of Intraocular IFN-?, IL-17 and IL-10-Producing Cell Populations during Relapsing and Monophasic Rat Experimental Autoimmune Uveitis.</title> | |
<link rel="alternate" href="http://dx.doi.org/10.1371/journal.pone.0049008"/> | |
<link rel="canonical" href="http://pubmed.gov/23155443"/> | |
</head> | |
<body> | |
<article resource="info:pmid:23155443" vocab="http://schema.org/" typeof="MedicalScholarlyArticle"> | |
<header><h1 property="name"><a property="url" href="http://pubmed.gov/23155443">Dynamics of Intraocular ...</a></h1> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body vocab="http://schema.org/"> | |
<div resource="_:TShirtModel"> | |
<div property="owl:unionOf" inlist typeof> | |
<link property="owl:onProperty" resource="schema:name"/> |
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
#!/bin/bash | |
if [[ $# -lt 1 ]]; then | |
echo "Usage: $(basename $0) [pause|play|next track|previous track|set sound volume to [0-100]] [HOST]" | |
exit 0 | |
fi | |
action=$1 | |
host=$2 | |
cmd="osascript -e 'tell application \"iTunes\" to $action'" |
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
{ | |
"@context": { | |
"uri": "@id", | |
"type": "@type", | |
"xsd": "http://www.w3.org/2001/XMLSchema#", | |
"dc": "http://purl.org/dc/terms/", | |
"ore": "http://www.openarchives.org/ore/terms/", | |
"bibo": "http://purl.org/ontology/bibo/", | |
"name": {"@id": "http://www.w3.org/2000/01/rdf-schema#label", "@language": "en"}, | |
"created": {"@id": "dc:created", "@type": "xsd:dateTime"}, |
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 sys | |
from rdflib import * | |
fpath = sys.argv[1] | |
prefix = sys.argv[2] | |
g = Graph().parse(fpath, format='n3' if fpath.endswith(('.n3', '.ttl')) else 'xml') | |
def name_pair(item): | |
qname = item.qname() |