This file contains 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 vlueprint: <https://vlueprint.org/schema/> | |
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
select ?LABEL ?ORGLABEL { | |
?uri rdf:type vlueprint:VirtualBeing. | |
?uri rdfs:label ?LABEL. | |
?uri vlueprint:belongTo ?orgUri. | |
?orgUri rdfs:label ?ORGLABEL. | |
} |
This file contains 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 vlueprint: <https://vlueprint.org/schema/> | |
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
select ?LABEL ?TWITTER { | |
?uri rdf:type vlueprint:VirtualBeing. | |
?uri rdfs:label ?LABEL. | |
?uri vlueprint:twitterAccount ?TWITTER. | |
} |
This file contains 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 vlueprint: <https://vlueprint.org/schema/> | |
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
select ?YOUTTUBE { | |
?uri vlueprint:youtubeChannelId ?YOUTTUBE. | |
?uri rdfs:label "月ノ美兎". | |
} |
This file contains 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
// これを全てコピーしてjavascriptコンソールに貼り付けて実行します | |
setInterval(() => { | |
const video = document.getElementById("player-embed-videoid_html5_api"); | |
if(video.currentTime>1088) video.currentTime=954; | |
}, 1000); |
This file contains 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
// これを全てコピーしてjavascriptコンソールに貼り付けて実行します | |
setInterval(() => { | |
const video = document.getElementById("player-embed-videoid_html5_api"); | |
if(video.currentTime>1088) video.currentTime=954; | |
}, 1000); |
This file contains 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
var nsDefault = XmlService.getNamespace("urn:yahoo:jp:jlp:FuriganaService"); | |
function parseXml() { | |
var url = 'http://jlp.yahooapis.jp/FuriganaService/V1/furigana'; | |
var params = [ | |
'appid=XXXXXXXXXXXXXXXXXXXX', | |
'sentence=' + encodeURIComponent('初音ミクさんを忘れないでください'), | |
'grade=1' | |
] | |
var xml = UrlFetchApp.fetch(url + '?' + params.join('&') ).getContentText(); |
This file contains 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
# coding: utf-8 | |
import requests | |
import xmltodict | |
import fileinput | |
def getAccess(url, **option): | |
r = requests.get(url, params=option) | |
return r.text |
This file contains 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 prism: <https://prismdb.takanakahiko.me/prism-schema.ttl#> | |
PREFIX imas: <https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#> | |
PREFIX toaru: <https://metadata.moe/toaru-sparql/elements/> | |
SELECT distinct (?prism_cv as ?cv) { | |
service<https://sparql.crssnky.xyz/spql/imas/query>{ | |
?imas imas:cv ?imas_cv. | |
} | |
?prism prism:cv ?prism_cv. | |
filter((str(?prism_cv)=str(?imas_cv))) | |
} |
This file contains 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 prism: <https://prismdb.takanakahiko.me/prism-schema.ttl#> | |
SELECT ?n ?st ?title | |
WHERE { | |
?live a prism:Live; | |
prism:performer "solami_smile"; | |
prism:songPerformed/prism:name ?title; | |
prism:liveOfEpisode ?ep. | |
?ep a prism:Episode; | |
prism:話数 ?n; |
We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 1 column, instead of 3 in line 4.
This file contains 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
a: unk | |
b: tnk | |
c: mnk | |
--- | |
a,b,c | |
1,2,3 | |
1,2,3 |
NewerOlder