-
Notifications
You must be signed in to change notification settings - Fork 0
/
ucds-20230308.html
136 lines (110 loc) · 4.7 KB
/
ucds-20230308.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nanopublishing Pilot at Data Science: Info for Editors</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="_common/reveal-4.4.0/dist/reset.css">
<link rel="stylesheet" href="_common/reveal-4.4.0/dist/reveal.css">
<link rel="stylesheet" href="_common/css/kpxl_20230308.css" id="theme">
<script src="https://cdnjs.cloudflare.com/ajax/libs/json2html/2.1.0/json2html.min.js"></script>
<script>
var getJson = function(url, callback) {
var request = new XMLHttpRequest();
request.open('GET', url, true);
request.responseType = 'json';
request.onload = function() {
var status = request.status;
if (status === 200) {
callback(null, request.response);
} else {
callback(status, request.response);
}
};
request.send();
};
var populate = function(elementId, apiUrl, template) {
getJson(apiUrl,
function(error, response) {
if (error == null) {
document.getElementById(elementId).innerHTML = json2html.render(response, template);
} else {
document.getElementById(elementId).innerHTML = "<li><em>error: something went wrong with calling the API</en></li>";
}
}
);
};
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown>
## Nanopublishing at Knowledge Pixels
Talk at UCDS group meeting
**by Tobias Kuhn**
Amsterdam/Zurich, 8 March 2023
these slides: [https://knowledgepixels.com/slides/ucds-20230308.html](https://knowledgepixels.com/slides/ucds-20230308.html)
</section>
<section>
<img src="https://knowledgepixels.com/assets/img/knowledge-pixels-logo-rgb.svg" alt="Knowledge Pixels logo" style="height: 180px; margin: 0 auto 4rem auto; background: transparent;">
<p>Yay, I have co-founded a start-up 🥳
<p><a href="https://knowledgepixels.com">https://knowledgepixels.com</a></p>
</section>
<section data-markdown>
### ... that means:
- less teaching, supervision, etc.
- in general fewer meetings (for now...)
- much more coding and technical work
- legal and admin work (mostly by the other co-founder)
- we still need a business plan... 😁
</section>
<section>
<h3>Vision: Knowledge Space</h3>
<img src="https://www.tkuhn.org/knowledge-space/images/full.svg" alt="Knowledge Space overview" style="height: 500px; margin: 0; background: transparent;">
<p style="font-size: 80%;"><code><a href="https://w3id.org/knowledge-space/">https://w3id.org/knowledge-space/</a></code></p>
</section>
<section data-markdown>
### First Steps
- two smaller scientific publishers as **investors** (... who are also our prototypical future customers)
- we provide them with **services** to attach nanopublications to the articles of their journals
- starting with **pilots** on four journals in the coming weeks
- getting more funding later this year, hopefully
</section>
<section>
<h3>Nanobench is now called</h3>
<img src="https://nanodash.petapico.org/images/logo.svg" alt="Nanodash logo" style="height: 180px; margin: 0 auto 4rem auto; background: transparent;" class="demo-logo">
<p><a target="_blank" href="https://nanodash.petapico.org/">Nanodash</a> is a web tool to browse and publish <strong>nanopublications</strong> with (relatively) user-friendly web forms.</p>
</section>
<section>
<h3>Try it out Yourself!</h3>
<p>This list of participants of this talk is queried from the nanopublication network:</p>
<ul id="list-of-participants" style="font-size: 80%;">
<li><em>retrieving...</em></li>
</ul>
<script>
populate("list-of-participants",
'https://grlc.petapico.org/api-git/tkuhn/nanopub-queries/ucds-20230308-participants',
{'<>':'li','html':'<code><a href="${id}">${person}</a></code>'});
</script>
<p style="font-size: 80%;">Add your name to the list:<br><a href="https://tinyurl.com/participation-in-ucds-20230308">https://tinyurl.com/participation-in-ucds-20230308</a></p>
</section>
<section data-markdown>
### Pilots
- **Journals:** Data Science, RIO Journal, FAIR Connect, Biodiversity Data Journal
- **Connector page** on Nanodash where users publish nanopublications
- **Shallow integration** at first (copying nanopublication links to submission system)
- **Goals:** get first experience / users / evaluation results
</section>
<section data-markdown>
## Thank you for Your Attention!
</section>
</div>
</div>
<script src="_common/reveal-4.4.0/dist/reveal.js"></script>
<script src="_common/reveal-4.4.0/plugin/markdown/markdown.js"></script>
<script>Reveal.initialize({ controls: true, progress: true, center: true, hash: true, plugins: [ RevealMarkdown ] });</script>
</body>
</html>