Short Name | Name | SPARQL endpoint | Category | Country | Service | Status |
---|---|---|---|---|---|---|
CIDOC-CRM | CIDOC_Conceptual_Reference_Model | http://crm.rkbexplorer.com/sparql/ | Model | - | SPARQL | alive |
AAT | Art & Architecture Thesaurus | http://vocab.getty.edu/sparql | Thesaurus | - | SPARQL | alive |
Munnin | First World War (Muninn project) | http://rdf.muninn-project.org/sparql | War | CA | SPARQL | alive |
CL_library | Biblioteca del Congreso de Chile |
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
<!-- copy this to YOUR_THEME.tmTheme--> | |
<dict> | |
<key>name</key> | |
<string>diff: deleted</string> | |
<key>scope</key> | |
<string>markup.deleted</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#EAE3CA</string> |
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
#! /usr/bin/env python | |
from os import fork, chdir, setsid, umask | |
from sys import exit | |
def main(): | |
while 1: | |
#main daemon process loop | |
# Dual fork hack to make process run as a daemon |