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
MATCH (pway:Path{prefName:"chlorophyll a biosynthesis I"}) - [po:part_of] - (comp) | |
RETURN * | |
LIMIT 20 |
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 bk: <http://www.ondex.org/bioknet/terms/> | |
PREFIX bkr: <http://www.ondex.org/bioknet/resources/> | |
PREFIX bka: <http://www.ondex.org/bioknet/terms/attributes/> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
PREFIX dc: <http://purl.org/dc/elements/1.1/> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
PREFIX agri: <http://agrischemas.org/> | |
PREFIX bioschema: <http://bioschemas.org/> |
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
Il citato metodo della somma funziona con i numeri, ma anche con algebre che supportano operazioni analoghe a | |
somma e differenza. Es, con le stringhe (scusate, non ricordo bene il C): | |
a = a0; b = b0 // initial values | |
a += b // now it's a0 + b0 | |
b = substr ( a, 0, len ( b ) ) // i.e., b = a0 + b0 - b0 = a0 | |
a = substr ( min ( len ( b ), len ( a ) - 1 ) ) // i.e., a = a0 + b0 - b0 | |
Stessa roba si potrebbe fare con array e liste. |
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
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "Organization", | |
"url": "http://www.your-company-site.com", | |
"logo": "http://www.example.com/logo.png", | |
"contactPoint": [{ | |
"@type": "ContactPoint", | |
"telephone": "+1-401-555-1212", | |
"contactType": "customer service" |
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
# Composers of Italian movies, who was born in places having more than 100k inhabitants | |
# Usage: paste it into http://it.dbpedia.org/sparql and then hit 'Run Query' | |
# | |
PREFIX dbp-onto: <http://dbpedia.org/ontology/> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
SELECT DISTINCT ?composerName ?birthplaceName | |
WHERE | |
{ | |
# Movies from italy and their music composers |
NewerOlder