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
rdf shacl --input-format turtle --shape ./metric.shacl ./metric.ttl |
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
Run Power Shell script on comand line "./access-export-to-csv-power-shell.ps1" | |
Requirements | |
Database1 file or rename database name on script | |
Export query created as module on the DB | |
Public Sub export_query() | |
DoCmd.TransferText transferType:=acExportDelim, TableName:="Table1", FileName:="D:\Exported.csv", HasFieldNames:=True | |
DoCmd.Quit | |
End Sub |
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
# /usr/share/doc/lighttpd/proxy.txt | |
server.modules += ( "mod_proxy" ) | |
## Balance algorithm, possible values are: "hash", "round-robin" or "fair" (default) | |
# proxy.balance = "hash" | |
$HTTP["host"] == "subdomain.domain.org" { | |
# proxy.balance = "hash" | |
proxy.server = ( "" => |
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
{ | |
// IntelliSense を使用して利用可能な属性を学べます。 | |
// 既存の属性の説明をホバーして表示します。 | |
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Local File", | |
"type": "Ruby", | |
"request": "launch", |
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
import json | |
import requests | |
import re | |
serviceURL = "http://localhost:8080/index.rb" | |
evaluatorURL ="http://localhost:3000/FAIR_Evaluator/metrics" | |
headers = {"Accept": "application/json", "Content-type": "application/json"} | |
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
require 'yaml' | |
require 'sparql/client' | |
require 'ro_crate_ruby' | |
require 'rdf' | |
require 'json' | |
require 'rdf/json' | |
require 'json/ld' | |
require 'json/ld/preloaded' | |
require 'rdf/trig' | |
require 'rdf/raptor' |