I hereby claim:
- I am colinmaudry on github.
- I am colinmaudry (https://keybase.io/colinmaudry) on keybase.
- I have a public key whose fingerprint is 7F25 373D 576C B436 449D 843C 90C8 0CB7 D462 C5C3
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#Cats on Wikidata | |
#From https://blog.wikimedia.de/2016/10/30/10-cool-queries-for-wikidata-that-will-blow-your-mind-number-7-will-shock-you/ | |
SELECT ?item ?itemLabel | |
WHERE | |
{ | |
?item wdt:P31 wd:Q146 . | |
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } | |
} |
{ | |
"@context": { | |
"@vocab": "http://www.w3.org/ns/dcat#", | |
"dp": "http://dataportals.net/ns/dp#", | |
"schema": "http://schema.org/", | |
"rdfs": "http://www.w3.org/2000/01/rdf-schema#", | |
"xsd": "http://www.w3.org/2001/XMLSchema#", | |
"url": "@id", | |
"linked_portals": { |
@prefix dbpedia-owl: <http://dbpedia.org/ontology/> . | |
@prefix dbpedia-fr: <http://fr.dbpedia.org/resource/> . | |
dbpedia-fr:District_de_Vervins dbpedia-owl:wikiPageWikiLink dbpedia-fr:Canton_de_Marly . | |
<http://fr.dbpedia.org/resource/Administration_de_l\u0027Aisne> dbpedia-owl:wikiPageWikiLink dbpedia-fr:Canton_de_Marly . | |
dbpedia-fr:Marly dbpedia-owl:wikiPageDisambiguates dbpedia-fr:Canton_de_Marly ; | |
dbpedia-owl:wikiPageWikiLink dbpedia-fr:Canton_de_Marly . | |
dbpedia-fr:Autreppes dbpedia-owl:wikiPageWikiLink dbpedia-fr:Canton_de_Marly . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
dbpedia-fr:Canton_de_Marly rdf:type dbpedia-owl:Territory . | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . |
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:fo="http://www.w3.org/1999/XSL/Format" | |
xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
version="2.0" | |
exclude-result-prefixes="xs"> | |
<xsl:template match="*[contains(@class,' pr-d/codeblock ')]"> | |
<xsl:call-template name="generateAttrLabel"/> | |
<fo:block xsl:use-attribute-sets="codeblock"> | |
<xsl:call-template name="commonattributes"/> |
description "Tomcat 7 service" | |
#So that you remember what the services does | |
start on runlevel [2345] | |
# When the service should start. 2, 3, 4 and 5 are | |
# runlevels that are various flavours of system startup. | |
stop on runlevel [06] | |
# 0 is for system halt and 6 is for system reboot |
#List of all the named graphs in the repository. <http://www.data.maudry.com/uk> is the named | |
#graph where most of the data is stored. | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
PREFIX dcat: <http://www.w3.org/ns/dcat#> | |
PREFIX dgfr: <http://colin.maudry.com/ontologies/dgfr#> | |
select distinct ?graph where { | |
graph ?graph { |
#Stats on resources (dcat:Distribution): availability, format, response time | |
#Statistiques sur les ressources (dcat:Distribution): disponibilité, format, temps de réponse | |
PREFIX dct: <http://purl.org/dc/terms/> | |
PREFIX dcat: <http://www.w3.org/ns/dcat#> | |
PREFIX dgfr: <http://colin.maudry.com/ontologies/dgfr#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
select ?organizationLabel ?datasetLabel ?datasetUrl ?resourceTitle ?url |
http://opendata.paris.fr/opendata/document?id=150&id_attribute=64 HTTP/1.1 404 NOT FOUND | |
http://opendata.paris.fr/opendata/document?id=148&id_attribute=64 HTTP/1.1 404 NOT FOUND | |
http://www.nosdonnees.fr/fr/storage/f/2013-03-15T102507/fondsstrat_2012_section1.csv HTTP/1.1 404 Not Found | |
http://www.nosdonnees.fr/fr/storage/f/2013-03-15T102836/fondsstrat_2012_section2.csv HTTP/1.1 404 Not Found | |
http://www.nosdonnees.fr/fr/storage/f/2013-03-15T103218/fondsstrat_2012_section3.csv HTTP/1.1 404 Not Found | |
http://www.nosdonnees.fr/wiki/images/7/74/500_signatures_de_1995_%C3%A0_2007.csv.gz HTTP/1.1 200 OK | |
http://data.paysdelaloire.fr/api/publication/23440003400026_J060/Abris_Velos_table/content/?format=csv HTTP/1.1 200 OK | |
http://parisdata.opendatasoft.com/api/records/1.0/download?dataset=accessibilite_des_equipements_de_la_ville_de_paris&csv_separator=%2C&format=csv HTTP/1.1 200 OK | |
http://opendata.paris.fr/explore/dataset/accessibilite_des_equipements_de_la_ville_de_paris/download?format=csv HTTP/1.1 200 OK | |
http://opend |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX phdd: <http://rdf-vocabulary.ddialliance.org/phdd#> | |
SELECT ?type ?definition ?property ?propertyLabel WHERE { | |
?column a phdd:Column ; | |
rdfs:label ?label ; | |
data:hasProperty ?property ; | |
data:hasType ?type . | |
?property rdfs:label ?propertyLabel . | |
?type rdfs:comment ?definition . | |
} |