Skip to content

Instantly share code, notes, and snippets.

View ncarboni's full-sized avatar

Nicola Carboni ncarboni

View GitHub Profile
@ncarboni
ncarboni / appellation.ttl
Last active July 8, 2019 20:49
Modelling of diverse types of appellations in CIDOC-CRM
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> .
@prefix sari: <http://w3id.org/sari#> .
<http://example.com/500020981> a crm:E21_Person ;
crm:P1_is_identified_by <http://example.com/500020981/appellation/name> , <http://example.com/500020981/appellation/surname> , <http://example.com/500020981/appellation/full> .
<http://example.com/500020981/appellation/name>
a crm:E41_Appellation ;
@ncarboni
ncarboni / feature.ttl
Created January 7, 2019 17:00
Modelling of a watermark and a signature in CIDOC-CRM
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> .
@prefix sari: <http://w3id.org/sari#> .
<https://example.sikart.ch/work/6004987> a crm:E22_Man-Made_Object ;
crm:P56_bears_feature <https://example.sikart.ch/6004987/feature/1> , <https://example.sikart.ch/6004987/feature/2> .
<https://example.sikart.ch/6004987/feature/1> a crm:E26_Physical_Feature ;
crm:P128_carries <https://example.sikart.ch/text_object/1> ;
@ncarboni
ncarboni / technique.ttl
Last active January 8, 2019 15:17
Modelling of a technique with CIDOC-CRM
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> .
@prefix sari: <http://w3id.org/sari#> .
<https://example.com/work/6004987> a crm:E22_Man-Made_Object ;
crm:P108i_was_produced_by <https://example.sikart.ch/production_activity/1> .
<https://example.com/production_activity/1> a crm:E12_Production ;
crm:P33_used_specific_technique <https://example.sikart.ch/technique/1> .
@ncarboni
ncarboni / production_role.ttl
Last active November 24, 2022 11:30
Modelling of the role of an agent in a production event with CIDOC-CRM
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> .
@prefix sari: <http://w3id.org/sari#> .
<https://example.com/production_activity/17762> a crm:E12_Production ;
crm:P01i_is_domain_of <http://example.com/production/0766> .
<http://example.com/production/0766> a crm:PC14_carried_out_by ;
crm:p02_has_range <http://example.com/person/134> ;
@ncarboni
ncarboni / agency.ttl
Last active January 8, 2019 15:17
The agency in the activity modelled with CIDOC-CRM
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> .
@prefix sari: <http://w3id.org/sari#> .
<https://example.com/work/6004987> a crm:E22_Man-Made_Object ;
crm:P16i_was_used_for <https://example.sikart.ch/publication_activity/1> .
<https://example.com/publication_activity/1> a crm:E7_Activity ;
crm:P14_carried_out_by <https://example.sikart.ch/person/135> .
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ncarboni
ncarboni / gist:e44e746a5716b48e14ea
Last active August 29, 2015 14:14
Applescript for automatically send message with Orange Flag to omnifocus (with link to the original message in note) and change the flag to Yellow
on run
-- based on Hunter Hillegas' original script at https://github.com/HunterHillegas/OmniFocusMailFlags
-- and on David Timothy Duval https://gist.github.com/dtduval/7866363
if application "Mail" is running then tell application "Mail"
set _msgs_to_capture to (every message of inbox whose flag index is 1)
repeat with eachMessage in _msgs_to_capture
set theStart to missing value
set theDue to missing value