-
Prerequisite: OpenJDK 11. If you run ubuntu with root you can use
apt-get install default-jdk
Otherwise, consider using docker : https://hub.docker.com/_/openjdk
-
Prerequisite: OpenJDK 11. If you run ubuntu with root you can use
apt-get install default-jdk
Otherwise, consider using docker : https://hub.docker.com/_/openjdk
Lately I've been using Virtuoso for running some SPARQL
.
Here is my quick setup. (This has been posted also on my personal page)
docker pull openlink/virtuoso-opensource-7:latest
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
graph G { | |
node [shape=box, fixedsize=true, width=0.7, fontname="Arial"] | |
size="10,10"; | |
edge[arrowhead="none"]; | |
ratio=compress; | |
subgraph cluster_0 { | |
node [style="rounded,filled",color=lightblue]; | |
style=""; | |
9 |
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 customCss = 'svg{border:1px solid red;display:block;background:#fcfcff}' | |
+'.node circle{fill:#aaa;stroke:#fff;stroke-width:1px}.link{stroke:#335;stroke-width:1px}' | |
+'.red circle{fill:#439}.node text{pointer-events:none;font:12px sans-serif;fill:#338}'; | |
document.write("<style>"+customCss+"</style>"); | |
var head = document.getElementsByTagName('head')[0]; | |
var s = document.createElement('style'); | |
s.setAttribute('type', 'text/css'); | |
if (s.styleSheet) { // IE |
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
Sub EditLink() | |
' Edit links of some types | |
' Little error checking. It works or not. No harm if not. | |
Dim sLinkSource As String | |
Dim sOriginalLinkSource As String | |
If ActiveWindow.Selection.ShapeRange.Count <> 1 Then | |
MsgBox ("Please select one and only one shape, then try again.") | |
Exit Sub |
I hereby claim:
- I am kuzeko on github.
- I am kuzeko (https://keybase.io/kuzeko) on keybase.
- I have a public key whose fingerprint is 9B42 DC62 FB5F 3F03 1FFA 07E4 68B2 E1BB DB1B F4EC
To claim this, I am signing this object:
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 titles = []; | |
$('#bodyContent a[title], .toctext') | |
.not('[title*=":"]') | |
.each(function(){ | |
if($(this).text().length > 2) { | |
titles.push($(this).text()) | |
} | |
}); | |
var rexp = new RegExp("\\\"(.+)\\\"", "g"); |