Skip to content

Instantly share code, notes, and snippets.

View sangimed's full-sized avatar

Mohamed I. sangimed

View GitHub Profile
@sangimed
sangimed / add_trips_and_diaries
Last active February 21, 2017 15:54
[Travel_Project]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX users: <http://travel.univ-rouen.fr/ontologies/users/>
PREFIX trips: <http://travel.univ-rouen.fr/ontologies/trips/>
PREFIX travelers: <http://travel.univ-rouen.fr/ontologies/travelers/>
PREFIX global: <http://travel.univ-rouen.fr/ontologies/global/>
PREFIX travel: <http://travel.univ-rouen.fr/>
PREFIX text: <http://jena.apache.org/text#>
PREFIX tr: <http://www.thomsonreuters.com/>
PREFIX trips: <http://travel.univ-rouen.fr/ontologies/trips/>
SELECT * WHERE {
?diary trips:associatedTrip <http://travel.univ-rouen.fr/triamh21667rza6r>;
trips:isCollaborative ?diary_isCollaborative;
trips:public ?diary_public;
trips:ownerId "ow4557de".
}
@sangimed
sangimed / stb-html.xsl
Last active March 7, 2016 10:57
XML to HTML (TP3LW2)
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Root element -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Output element -->
<xsl:output
method="html"
encoding="UTF-8"
doctype-public="-//W3C//DTD HTML 4.01//EN"