datalog-theme 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +162 -0
- data/CITATION.cff +29 -0
- data/LICENSE +21 -0
- data/README.md +257 -0
- data/_data/academic.yml +217 -0
- data/_data/cdn-integrity.yml +51 -0
- data/_data/config/author.yml +121 -0
- data/_data/config/features.yml +262 -0
- data/_data/config/site.yml +42 -0
- data/_data/config/theme.yml +181 -0
- data/_data/datasets.yml +28 -0
- data/_data/i18n/en.yml +438 -0
- data/_data/i18n/es.yml +438 -0
- data/_data/i18n/pt.yml +438 -0
- data/_data/js_manifest.json +22 -0
- data/_data/js_meta.json +371 -0
- data/_data/navigation.yml +145 -0
- data/_data/projects.yml +41 -0
- data/_data/publications.yml +28 -0
- data/_data/social.yml +73 -0
- data/_data/visualizations.yml +51 -0
- data/_includes/analytics/dashboard.html +149 -0
- data/_includes/analytics.html +9 -0
- data/_includes/components/academic-dashboard.html +347 -0
- data/_includes/components/advanced-search.html +682 -0
- data/_includes/components/api-function.html +94 -0
- data/_includes/components/author-bio.html +166 -0
- data/_includes/components/bookmark-system.html +96 -0
- data/_includes/components/breadcrumbs.html +89 -0
- data/_includes/components/citation-tools.html +94 -0
- data/_includes/components/comments.html +244 -0
- data/_includes/components/content-provenance.html +43 -0
- data/_includes/components/content-recommendations.html +228 -0
- data/_includes/components/difficulty-badge.html +84 -0
- data/_includes/components/email-preferences.html +200 -0
- data/_includes/components/enhanced-code-block.html +212 -0
- data/_includes/components/enhanced-metadata.html +228 -0
- data/_includes/components/enhanced-toc.html +209 -0
- data/_includes/components/hero.html +15 -0
- data/_includes/components/language-switcher.html +396 -0
- data/_includes/components/math-fallback.html +19 -0
- data/_includes/components/navigation-enhancements.html +454 -0
- data/_includes/components/newsletter-signup.html +178 -0
- data/_includes/components/open-science-badges.html +16 -0
- data/_includes/components/package-install.html +194 -0
- data/_includes/components/performance-monitor.html +170 -0
- data/_includes/components/popular-posts.html +233 -0
- data/_includes/components/post-hero.html +62 -0
- data/_includes/components/reading-progress.html +133 -0
- data/_includes/components/reading-time.html +121 -0
- data/_includes/components/responsive-image.html +63 -0
- data/_includes/components/search-facets.html +307 -0
- data/_includes/components/series-navigation.html +124 -0
- data/_includes/components/social-proof.html +34 -0
- data/_includes/components/social-share.html +119 -0
- data/_includes/components/user-preferences.html +566 -0
- data/_includes/components/visualization-card.html +24 -0
- data/_includes/components/viz-table-fallback.html +19 -0
- data/_includes/critical-css/default.html +0 -0
- data/_includes/critical-css/home.html +0 -0
- data/_includes/critical-css/post.html +0 -0
- data/_includes/csp-meta.html +17 -0
- data/_includes/footer/nav-column.html +31 -0
- data/_includes/footer.html +76 -0
- data/_includes/head.html +337 -0
- data/_includes/header/navigation.html +48 -0
- data/_includes/header.html +70 -0
- data/_includes/helpers/array-to-sentence.html +21 -0
- data/_includes/helpers/date-format.html +16 -0
- data/_includes/helpers/link-with-icon.html +26 -0
- data/_includes/layouts/default/article.html +67 -0
- data/_includes/meta/language-attributes.html +25 -0
- data/_includes/meta/math-config.html +21 -0
- data/_includes/meta/schema.html +153 -0
- data/_includes/meta/scripts-loader.html +52 -0
- data/_includes/post/related-posts.html +63 -0
- data/_includes/scripts.html +72 -0
- data/_includes/skip-link.html +1 -0
- data/_includes/toc.html +2 -0
- data/_layouts/archive.html +282 -0
- data/_layouts/dataset.html +52 -0
- data/_layouts/default.html +33 -0
- data/_layouts/home.html +48 -0
- data/_layouts/notebook.html +173 -0
- data/_layouts/package.html +238 -0
- data/_layouts/page.html +16 -0
- data/_layouts/portfolio.html +41 -0
- data/_layouts/post-sidebar.html +183 -0
- data/_layouts/post.html +338 -0
- data/_layouts/project.html +252 -0
- data/_layouts/research.html +504 -0
- data/_plugins/analytics_dashboard.rb +315 -0
- data/_plugins/config_validator.rb +397 -0
- data/_plugins/csp_generator.rb +115 -0
- data/_plugins/datalog_bibliography.rb +19 -0
- data/_plugins/datalog_comments.rb +18 -0
- data/_plugins/datalog_slides.rb +20 -0
- data/_plugins/front_matter_compat.rb +109 -0
- data/_plugins/i18n.rb +160 -0
- data/_plugins/image_optimizer.rb +445 -0
- data/_plugins/math_preprocessor.rb +185 -0
- data/_plugins/notebook_converter.rb +1107 -0
- data/_plugins/plugin_loader.rb +185 -0
- data/_plugins/publications_generator.rb +234 -0
- data/_plugins/reading_time.rb +15 -0
- data/_plugins/search_normalizer.rb +74 -0
- data/_plugins/sri_filter.rb +18 -0
- data/_plugins/toc_filter.rb +68 -0
- data/_plugins/warning_filter.rb +3 -0
- data/_sass/_base.scss +142 -0
- data/_sass/_components.scss +2380 -0
- data/_sass/_header.scss +470 -0
- data/_sass/_interactive.scss +344 -0
- data/_sass/_layout.scss +1760 -0
- data/_sass/_mathematical.scss +368 -0
- data/_sass/_mixins.scss +99 -0
- data/_sass/_package-docs.scss +715 -0
- data/_sass/_phase1-enhancements.scss +721 -0
- data/_sass/_phase3-enhancements.scss +874 -0
- data/_sass/_phase4-enhancements.scss +1214 -0
- data/_sass/_phase5-enhancements.scss +414 -0
- data/_sass/_search.scss +654 -0
- data/_sass/_syntax-highlighting.scss +128 -0
- data/_sass/_theme.scss +79 -0
- data/_sass/_typography.scss +148 -0
- data/_sass/_utilities.scss +334 -0
- data/_sass/_variables.scss +153 -0
- data/_sass/_visualizations.scss +242 -0
- data/assets/css/main.scss +4 -0
- data/assets/img/20220607123041_detail.001.png +0 -0
- data/assets/img/favicons/android-chrome-192x192.png +0 -0
- data/assets/img/favicons/android-chrome-512x512.png +0 -0
- data/assets/img/favicons/apple-touch-icon.png +0 -0
- data/assets/img/favicons/favicon-16x16.png +0 -0
- data/assets/img/favicons/favicon-32x32.png +0 -0
- data/assets/img/favicons/favicon.ico +0 -0
- data/assets/img/favicons/site.webmanifest +21 -0
- data/assets/img/portfolio-placeholder.svg +20 -0
- data/assets/js/academic.js +262 -0
- data/assets/js/analytics-dashboard.js +382 -0
- data/assets/js/core/dark-mode.js +79 -0
- data/assets/js/core/github-cards.js +123 -0
- data/assets/js/core/language-filter.js +69 -0
- data/assets/js/core/navigation.js +184 -0
- data/assets/js/core/scroll-progress.js +45 -0
- data/assets/js/core/search-hotkeys.js +62 -0
- data/assets/js/core/skip-links.js +62 -0
- data/assets/js/loader.js +163 -0
- data/assets/js/main.js +23 -0
- data/assets/js/math.js +818 -0
- data/assets/js/notebook.js +158 -0
- data/assets/js/search/analytics.js +91 -0
- data/assets/js/search/app.js +271 -0
- data/assets/js/search/autocomplete.js +120 -0
- data/assets/js/search/engine.js +260 -0
- data/assets/js/search/filters.js +38 -0
- data/assets/js/search/render.js +217 -0
- data/assets/js/search/utils.js +99 -0
- data/assets/js/search.js +354 -0
- data/assets/js/visualizations.js +816 -0
- data/assets/publications/datalog-publications.bib +8 -0
- data/assets/publications/datalog-publications.ris +9 -0
- data/assets/publications/publications.bib +30 -0
- data/assets/templates/diogo-ribeiro-cv.md +31 -0
- data/assets/templates/diogo-ribeiro-cv.tex +32 -0
- data/bin/datalog +26 -0
- data/datalog-theme.gemspec +72 -0
- data/lib/datalog/cli.rb +563 -0
- data/lib/datalog/plugin_system/dependency_resolver.rb +223 -0
- data/lib/datalog/plugin_system.rb +237 -0
- data/lib/datalog/plugins/citations.rb +182 -0
- data/lib/datalog/plugins/comments.rb +183 -0
- data/lib/datalog/plugins/search.rb +45 -0
- data/lib/datalog/plugins/slides.rb +121 -0
- data/lib/datalog/theme/theme.rb +18 -0
- data/lib/datalog/theme/version.rb +7 -0
- data/lib/datalog/warning_filter.rb +28 -0
- data/lib/datalog-theme.rb +17 -0
- metadata +555 -0
data/_data/js_meta.json
ADDED
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
{
|
|
2
|
+
"inputs": {
|
|
3
|
+
"assets/js/core/dark-mode.js": {
|
|
4
|
+
"bytes": 2141,
|
|
5
|
+
"imports": [],
|
|
6
|
+
"format": "esm"
|
|
7
|
+
},
|
|
8
|
+
"assets/js/core/github-cards.js": {
|
|
9
|
+
"bytes": 3529,
|
|
10
|
+
"imports": [],
|
|
11
|
+
"format": "esm"
|
|
12
|
+
},
|
|
13
|
+
"assets/js/core/language-filter.js": {
|
|
14
|
+
"bytes": 544,
|
|
15
|
+
"imports": [],
|
|
16
|
+
"format": "esm"
|
|
17
|
+
},
|
|
18
|
+
"assets/js/core/navigation.js": {
|
|
19
|
+
"bytes": 4931,
|
|
20
|
+
"imports": [],
|
|
21
|
+
"format": "esm"
|
|
22
|
+
},
|
|
23
|
+
"assets/js/core/scroll-progress.js": {
|
|
24
|
+
"bytes": 1533,
|
|
25
|
+
"imports": [],
|
|
26
|
+
"format": "esm"
|
|
27
|
+
},
|
|
28
|
+
"assets/js/core/search-hotkeys.js": {
|
|
29
|
+
"bytes": 1697,
|
|
30
|
+
"imports": [],
|
|
31
|
+
"format": "esm"
|
|
32
|
+
},
|
|
33
|
+
"assets/js/core/skip-links.js": {
|
|
34
|
+
"bytes": 1541,
|
|
35
|
+
"imports": [],
|
|
36
|
+
"format": "esm"
|
|
37
|
+
},
|
|
38
|
+
"assets/js/main.js": {
|
|
39
|
+
"bytes": 769,
|
|
40
|
+
"imports": [
|
|
41
|
+
{
|
|
42
|
+
"path": "assets/js/core/dark-mode.js",
|
|
43
|
+
"kind": "import-statement",
|
|
44
|
+
"original": "./core/dark-mode.js"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"path": "assets/js/core/github-cards.js",
|
|
48
|
+
"kind": "import-statement",
|
|
49
|
+
"original": "./core/github-cards.js"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "assets/js/core/language-filter.js",
|
|
53
|
+
"kind": "import-statement",
|
|
54
|
+
"original": "./core/language-filter.js"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "assets/js/core/navigation.js",
|
|
58
|
+
"kind": "import-statement",
|
|
59
|
+
"original": "./core/navigation.js"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"path": "assets/js/core/scroll-progress.js",
|
|
63
|
+
"kind": "import-statement",
|
|
64
|
+
"original": "./core/scroll-progress.js"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "assets/js/core/search-hotkeys.js",
|
|
68
|
+
"kind": "import-statement",
|
|
69
|
+
"original": "./core/search-hotkeys.js"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"path": "assets/js/core/skip-links.js",
|
|
73
|
+
"kind": "import-statement",
|
|
74
|
+
"original": "./core/skip-links.js"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"format": "esm"
|
|
78
|
+
},
|
|
79
|
+
"assets/js/loader.js": {
|
|
80
|
+
"bytes": 4855,
|
|
81
|
+
"imports": [],
|
|
82
|
+
"format": "esm"
|
|
83
|
+
},
|
|
84
|
+
"assets/js/search/analytics.js": {
|
|
85
|
+
"bytes": 2144,
|
|
86
|
+
"imports": [],
|
|
87
|
+
"format": "esm"
|
|
88
|
+
},
|
|
89
|
+
"assets/js/search/utils.js": {
|
|
90
|
+
"bytes": 2571,
|
|
91
|
+
"imports": [],
|
|
92
|
+
"format": "esm"
|
|
93
|
+
},
|
|
94
|
+
"assets/js/search/autocomplete.js": {
|
|
95
|
+
"bytes": 3285,
|
|
96
|
+
"imports": [
|
|
97
|
+
{
|
|
98
|
+
"path": "assets/js/search/utils.js",
|
|
99
|
+
"kind": "import-statement",
|
|
100
|
+
"original": "./utils.js"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"format": "esm"
|
|
104
|
+
},
|
|
105
|
+
"assets/js/search/engine.js": {
|
|
106
|
+
"bytes": 7382,
|
|
107
|
+
"imports": [
|
|
108
|
+
{
|
|
109
|
+
"path": "assets/js/search/utils.js",
|
|
110
|
+
"kind": "import-statement",
|
|
111
|
+
"original": "./utils.js"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"format": "esm"
|
|
115
|
+
},
|
|
116
|
+
"assets/js/search/filters.js": {
|
|
117
|
+
"bytes": 1089,
|
|
118
|
+
"imports": [],
|
|
119
|
+
"format": "esm"
|
|
120
|
+
},
|
|
121
|
+
"assets/js/search/render.js": {
|
|
122
|
+
"bytes": 7229,
|
|
123
|
+
"imports": [
|
|
124
|
+
{
|
|
125
|
+
"path": "assets/js/search/utils.js",
|
|
126
|
+
"kind": "import-statement",
|
|
127
|
+
"original": "./utils.js"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"format": "esm"
|
|
131
|
+
},
|
|
132
|
+
"assets/js/search/app.js": {
|
|
133
|
+
"bytes": 8173,
|
|
134
|
+
"imports": [
|
|
135
|
+
{
|
|
136
|
+
"path": "assets/js/search/analytics.js",
|
|
137
|
+
"kind": "import-statement",
|
|
138
|
+
"original": "./analytics.js"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"path": "assets/js/search/autocomplete.js",
|
|
142
|
+
"kind": "import-statement",
|
|
143
|
+
"original": "./autocomplete.js"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"path": "assets/js/search/engine.js",
|
|
147
|
+
"kind": "import-statement",
|
|
148
|
+
"original": "./engine.js"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"path": "assets/js/search/filters.js",
|
|
152
|
+
"kind": "import-statement",
|
|
153
|
+
"original": "./filters.js"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"path": "assets/js/search/render.js",
|
|
157
|
+
"kind": "import-statement",
|
|
158
|
+
"original": "./render.js"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"format": "esm"
|
|
162
|
+
},
|
|
163
|
+
"assets/js/search.js": {
|
|
164
|
+
"bytes": 10374,
|
|
165
|
+
"imports": [
|
|
166
|
+
{
|
|
167
|
+
"path": "assets/js/search/app.js",
|
|
168
|
+
"kind": "import-statement",
|
|
169
|
+
"original": "./search/app.js"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"format": "esm"
|
|
173
|
+
},
|
|
174
|
+
"assets/js/math.js": {
|
|
175
|
+
"bytes": 27298,
|
|
176
|
+
"imports": [],
|
|
177
|
+
"format": "esm"
|
|
178
|
+
},
|
|
179
|
+
"assets/js/visualizations.js": {
|
|
180
|
+
"bytes": 27138,
|
|
181
|
+
"imports": [],
|
|
182
|
+
"format": "esm"
|
|
183
|
+
},
|
|
184
|
+
"assets/js/notebook.js": {
|
|
185
|
+
"bytes": 5385,
|
|
186
|
+
"imports": [],
|
|
187
|
+
"format": "esm"
|
|
188
|
+
},
|
|
189
|
+
"assets/js/academic.js": {
|
|
190
|
+
"bytes": 8818,
|
|
191
|
+
"imports": [],
|
|
192
|
+
"format": "esm"
|
|
193
|
+
},
|
|
194
|
+
"assets/js/analytics-dashboard.js": {
|
|
195
|
+
"bytes": 12542,
|
|
196
|
+
"imports": [],
|
|
197
|
+
"format": "esm"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"outputs": {
|
|
201
|
+
"assets/js/dist/core.js": {
|
|
202
|
+
"imports": [],
|
|
203
|
+
"exports": [
|
|
204
|
+
"initializeCore"
|
|
205
|
+
],
|
|
206
|
+
"entryPoint": "assets/js/main.js",
|
|
207
|
+
"inputs": {
|
|
208
|
+
"assets/js/core/dark-mode.js": {
|
|
209
|
+
"bytesInOutput": 630
|
|
210
|
+
},
|
|
211
|
+
"assets/js/core/github-cards.js": {
|
|
212
|
+
"bytesInOutput": 1333
|
|
213
|
+
},
|
|
214
|
+
"assets/js/core/language-filter.js": {
|
|
215
|
+
"bytesInOutput": 163
|
|
216
|
+
},
|
|
217
|
+
"assets/js/core/navigation.js": {
|
|
218
|
+
"bytesInOutput": 1851
|
|
219
|
+
},
|
|
220
|
+
"assets/js/core/scroll-progress.js": {
|
|
221
|
+
"bytesInOutput": 518
|
|
222
|
+
},
|
|
223
|
+
"assets/js/core/search-hotkeys.js": {
|
|
224
|
+
"bytesInOutput": 563
|
|
225
|
+
},
|
|
226
|
+
"assets/js/core/skip-links.js": {
|
|
227
|
+
"bytesInOutput": 537
|
|
228
|
+
},
|
|
229
|
+
"assets/js/main.js": {
|
|
230
|
+
"bytesInOutput": 125
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"bytes": 5749
|
|
234
|
+
},
|
|
235
|
+
"assets/js/dist/loader.js": {
|
|
236
|
+
"imports": [],
|
|
237
|
+
"exports": [
|
|
238
|
+
"bootstrapFeatures"
|
|
239
|
+
],
|
|
240
|
+
"entryPoint": "assets/js/loader.js",
|
|
241
|
+
"inputs": {
|
|
242
|
+
"assets/js/loader.js": {
|
|
243
|
+
"bytesInOutput": 1534
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"bytes": 1566
|
|
247
|
+
},
|
|
248
|
+
"assets/js/dist/search.js": {
|
|
249
|
+
"imports": [],
|
|
250
|
+
"exports": [
|
|
251
|
+
"debounce",
|
|
252
|
+
"setupSearchEnhancements",
|
|
253
|
+
"updateLiveRegion"
|
|
254
|
+
],
|
|
255
|
+
"entryPoint": "assets/js/search.js",
|
|
256
|
+
"inputs": {
|
|
257
|
+
"assets/js/search/analytics.js": {
|
|
258
|
+
"bytesInOutput": 955
|
|
259
|
+
},
|
|
260
|
+
"assets/js/search/utils.js": {
|
|
261
|
+
"bytesInOutput": 1374
|
|
262
|
+
},
|
|
263
|
+
"assets/js/search/autocomplete.js": {
|
|
264
|
+
"bytesInOutput": 1566
|
|
265
|
+
},
|
|
266
|
+
"assets/js/search/engine.js": {
|
|
267
|
+
"bytesInOutput": 2886
|
|
268
|
+
},
|
|
269
|
+
"assets/js/search/filters.js": {
|
|
270
|
+
"bytesInOutput": 603
|
|
271
|
+
},
|
|
272
|
+
"assets/js/search/render.js": {
|
|
273
|
+
"bytesInOutput": 3641
|
|
274
|
+
},
|
|
275
|
+
"assets/js/search/app.js": {
|
|
276
|
+
"bytesInOutput": 3441
|
|
277
|
+
},
|
|
278
|
+
"assets/js/search.js": {
|
|
279
|
+
"bytesInOutput": 4357
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"bytes": 18899
|
|
283
|
+
},
|
|
284
|
+
"assets/js/dist/math.js": {
|
|
285
|
+
"imports": [],
|
|
286
|
+
"exports": [],
|
|
287
|
+
"entryPoint": "assets/js/math.js",
|
|
288
|
+
"inputs": {
|
|
289
|
+
"assets/js/math.js": {
|
|
290
|
+
"bytesInOutput": 14151
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"bytes": 14152
|
|
294
|
+
},
|
|
295
|
+
"assets/js/dist/visualizations.js": {
|
|
296
|
+
"imports": [],
|
|
297
|
+
"exports": [],
|
|
298
|
+
"entryPoint": "assets/js/visualizations.js",
|
|
299
|
+
"inputs": {
|
|
300
|
+
"assets/js/visualizations.js": {
|
|
301
|
+
"bytesInOutput": 12621
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"bytes": 12622
|
|
305
|
+
},
|
|
306
|
+
"assets/js/dist/notebook.js": {
|
|
307
|
+
"imports": [],
|
|
308
|
+
"exports": [
|
|
309
|
+
"annotateCells",
|
|
310
|
+
"handleScrollSpy",
|
|
311
|
+
"initNotebookFeatures",
|
|
312
|
+
"initPlotly",
|
|
313
|
+
"initVega",
|
|
314
|
+
"loadScript"
|
|
315
|
+
],
|
|
316
|
+
"entryPoint": "assets/js/notebook.js",
|
|
317
|
+
"inputs": {
|
|
318
|
+
"assets/js/notebook.js": {
|
|
319
|
+
"bytesInOutput": 2548
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"bytes": 2669
|
|
323
|
+
},
|
|
324
|
+
"assets/js/dist/academic.js": {
|
|
325
|
+
"imports": [],
|
|
326
|
+
"exports": [
|
|
327
|
+
"attachCopyHandler",
|
|
328
|
+
"initAcademicFeatures",
|
|
329
|
+
"initCalendarFilter",
|
|
330
|
+
"initCopyHandlers",
|
|
331
|
+
"initOpenScienceBadges",
|
|
332
|
+
"initSubmissionFilter",
|
|
333
|
+
"populateCitationMetrics",
|
|
334
|
+
"populateCitationTimeline",
|
|
335
|
+
"populatePublicationCitations"
|
|
336
|
+
],
|
|
337
|
+
"entryPoint": "assets/js/academic.js",
|
|
338
|
+
"inputs": {
|
|
339
|
+
"assets/js/academic.js": {
|
|
340
|
+
"bytesInOutput": 3573
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
"bytes": 3823
|
|
344
|
+
},
|
|
345
|
+
"assets/js/dist/analytics-dashboard.js": {
|
|
346
|
+
"imports": [],
|
|
347
|
+
"exports": [
|
|
348
|
+
"ensurePlaceholder",
|
|
349
|
+
"formatDateLabel",
|
|
350
|
+
"formatNumber",
|
|
351
|
+
"onReady",
|
|
352
|
+
"parseRows",
|
|
353
|
+
"render",
|
|
354
|
+
"renderEngagementChart",
|
|
355
|
+
"renderKeyEvents",
|
|
356
|
+
"renderMonthlyReports",
|
|
357
|
+
"renderScholar",
|
|
358
|
+
"renderSearchTerms",
|
|
359
|
+
"renderTopPosts",
|
|
360
|
+
"renderVisitorChart"
|
|
361
|
+
],
|
|
362
|
+
"entryPoint": "assets/js/analytics-dashboard.js",
|
|
363
|
+
"inputs": {
|
|
364
|
+
"assets/js/analytics-dashboard.js": {
|
|
365
|
+
"bytesInOutput": 6918
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"bytes": 7189
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
header:
|
|
2
|
+
- title: Blog
|
|
3
|
+
description: Tutorials, walkthroughs, and code-along guides
|
|
4
|
+
title_key: navigation.header.blog.title
|
|
5
|
+
description_key: navigation.header.blog.description
|
|
6
|
+
url: /blog/
|
|
7
|
+
section: blog
|
|
8
|
+
- title: Research
|
|
9
|
+
description: Papers, replication studies, and documentation
|
|
10
|
+
title_key: navigation.header.research.title
|
|
11
|
+
description_key: navigation.header.research.description
|
|
12
|
+
url: /research/
|
|
13
|
+
section: research
|
|
14
|
+
- title: Projects
|
|
15
|
+
description: Interactive case studies with GitHub integration
|
|
16
|
+
title_key: navigation.header.projects.title
|
|
17
|
+
description_key: navigation.header.projects.description
|
|
18
|
+
url: /portfolio/
|
|
19
|
+
section: portfolio
|
|
20
|
+
- title: Datasets
|
|
21
|
+
description: Curated data sources with licensing metadata
|
|
22
|
+
title_key: navigation.header.datasets.title
|
|
23
|
+
description_key: navigation.header.datasets.description
|
|
24
|
+
url: /datasets/
|
|
25
|
+
section: datasets
|
|
26
|
+
- title: Visualizations
|
|
27
|
+
description: Plotly, D3, and Observable notebooks
|
|
28
|
+
title_key: navigation.header.visualizations.title
|
|
29
|
+
description_key: navigation.header.visualizations.description
|
|
30
|
+
url: /visualizations/
|
|
31
|
+
section: visualizations
|
|
32
|
+
- title: Packages
|
|
33
|
+
description: Software packages, libraries, and tools
|
|
34
|
+
title_key: navigation.header.packages.title
|
|
35
|
+
description_key: navigation.header.packages.description
|
|
36
|
+
url: /packages/
|
|
37
|
+
section: packages
|
|
38
|
+
- title: Academic Ops
|
|
39
|
+
description: Citation metrics, submissions, and collaboration hub
|
|
40
|
+
title_key: navigation.header.academic.title
|
|
41
|
+
description_key: navigation.header.academic.description
|
|
42
|
+
url: /academic/
|
|
43
|
+
section: academic
|
|
44
|
+
- title: About
|
|
45
|
+
description: Research profile, credentials, and contact
|
|
46
|
+
title_key: navigation.header.about.title
|
|
47
|
+
description_key: navigation.header.about.description
|
|
48
|
+
url: /about/
|
|
49
|
+
section: about
|
|
50
|
+
|
|
51
|
+
quick_links:
|
|
52
|
+
- title: Getting started with the DataLog workflow
|
|
53
|
+
title_key: navigation.quick_links.getting_started
|
|
54
|
+
url: /getting-started/
|
|
55
|
+
- title: Publish a Jupyter notebook as a post
|
|
56
|
+
title_key: navigation.quick_links.publish_notebook
|
|
57
|
+
url: /notebooks/
|
|
58
|
+
- title: Explore predictive modeling projects
|
|
59
|
+
title_key: navigation.quick_links.predictive_modeling
|
|
60
|
+
url: /portfolio/#predictive-modeling
|
|
61
|
+
- title: Research methodology checklist
|
|
62
|
+
title_key: navigation.quick_links.research_checklist
|
|
63
|
+
url: /research/#methodology
|
|
64
|
+
- title: Track conference submissions
|
|
65
|
+
title_key: navigation.quick_links.submission_tracker
|
|
66
|
+
url: /academic/#submission-tracker
|
|
67
|
+
|
|
68
|
+
footer:
|
|
69
|
+
- title: Privacy
|
|
70
|
+
title_key: navigation.footer.privacy
|
|
71
|
+
url: /privacy/
|
|
72
|
+
- title: Accessibility
|
|
73
|
+
title_key: navigation.footer.accessibility
|
|
74
|
+
url: /accessibility/
|
|
75
|
+
- title: Tutorials index
|
|
76
|
+
title_key: navigation.footer.tutorials
|
|
77
|
+
url: /tutorials/
|
|
78
|
+
- title: Archive by topic
|
|
79
|
+
title_key: navigation.footer.archive
|
|
80
|
+
url: /archives/topics/
|
|
81
|
+
- title: Contact
|
|
82
|
+
title_key: navigation.footer.contact
|
|
83
|
+
url: mailto:dfr@esmad.ipp.pt
|
|
84
|
+
|
|
85
|
+
content_overview:
|
|
86
|
+
research_areas:
|
|
87
|
+
title: Research areas
|
|
88
|
+
title_key: navigation.content.research_areas.title
|
|
89
|
+
items:
|
|
90
|
+
- label: Machine Learning
|
|
91
|
+
label_key: navigation.content.research_areas.machine_learning.label
|
|
92
|
+
description: Supervised, unsupervised, and deep learning case studies
|
|
93
|
+
description_key: navigation.content.research_areas.machine_learning.description
|
|
94
|
+
url: /tags/#machine-learning
|
|
95
|
+
- label: Statistics
|
|
96
|
+
label_key: navigation.content.research_areas.statistics.label
|
|
97
|
+
description: Experimental design, inference, and hypothesis testing
|
|
98
|
+
description_key: navigation.content.research_areas.statistics.description
|
|
99
|
+
url: /tags/#statistics
|
|
100
|
+
- label: Data Visualization
|
|
101
|
+
label_key: navigation.content.research_areas.visualization.label
|
|
102
|
+
description: Storytelling dashboards and narrative graphics
|
|
103
|
+
description_key: navigation.content.research_areas.visualization.description
|
|
104
|
+
url: /tags/#visualization
|
|
105
|
+
- label: Reproducibility
|
|
106
|
+
label_key: navigation.content.research_areas.reproducibility.label
|
|
107
|
+
description: Open science workflows and methodology best practices
|
|
108
|
+
description_key: navigation.content.research_areas.reproducibility.description
|
|
109
|
+
url: /tags/#reproducibility
|
|
110
|
+
methodologies:
|
|
111
|
+
title: Methodologies
|
|
112
|
+
title_key: navigation.content.methodologies.title
|
|
113
|
+
items:
|
|
114
|
+
- label: Experimental design
|
|
115
|
+
label_key: navigation.content.methodologies.experimental_design
|
|
116
|
+
url: /tags/#experimental-design
|
|
117
|
+
- label: Bayesian modeling
|
|
118
|
+
label_key: navigation.content.methodologies.bayesian
|
|
119
|
+
url: /tags/#bayesian
|
|
120
|
+
- label: Exploratory data analysis
|
|
121
|
+
label_key: navigation.content.methodologies.eda
|
|
122
|
+
url: /tags/#eda
|
|
123
|
+
- label: Causal inference
|
|
124
|
+
label_key: navigation.content.methodologies.causal_inference
|
|
125
|
+
url: /tags/#causal-inference
|
|
126
|
+
|
|
127
|
+
languages:
|
|
128
|
+
title: Programming Languages
|
|
129
|
+
title_key: navigation.languages.title
|
|
130
|
+
items:
|
|
131
|
+
- label: Python
|
|
132
|
+
label_key: navigation.languages.items.python
|
|
133
|
+
url: /tags/#python
|
|
134
|
+
- label: R
|
|
135
|
+
label_key: navigation.languages.items.r
|
|
136
|
+
url: /tags/#r
|
|
137
|
+
- label: SQL
|
|
138
|
+
label_key: navigation.languages.items.sql
|
|
139
|
+
url: /tags/#sql
|
|
140
|
+
- label: Julia
|
|
141
|
+
label_key: navigation.languages.items.julia
|
|
142
|
+
url: /tags/#julia
|
|
143
|
+
- label: JavaScript
|
|
144
|
+
label_key: navigation.languages.items.javascript
|
|
145
|
+
url: /tags/#javascript
|
data/_data/projects.yml
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
showcase:
|
|
2
|
+
- id: predictive-energy
|
|
3
|
+
title: Predictive Modeling for Energy Demand
|
|
4
|
+
summary: Gradient boosted models and probabilistic forecasts for campus energy systems.
|
|
5
|
+
github:
|
|
6
|
+
owner: DiogoRibeiro7
|
|
7
|
+
repo: analytics-blog-jekyll
|
|
8
|
+
tags:
|
|
9
|
+
- predictive-modeling
|
|
10
|
+
- energy
|
|
11
|
+
demo_url: https://example.com/demos/energy-demand
|
|
12
|
+
featured_metrics:
|
|
13
|
+
- label: RMSE
|
|
14
|
+
value: 1.82 kWh
|
|
15
|
+
- label: MAPE
|
|
16
|
+
value: 4.2%
|
|
17
|
+
- id: experimental-design-lab
|
|
18
|
+
title: Experimental Design Lab Platform
|
|
19
|
+
summary: Interactive notebooks guiding randomized controlled experiments.
|
|
20
|
+
github:
|
|
21
|
+
owner: DiogoRibeiro7
|
|
22
|
+
repo: experimental-design-lab
|
|
23
|
+
tags:
|
|
24
|
+
- experimental-design
|
|
25
|
+
- reproducibility
|
|
26
|
+
demo_url: https://example.com/demos/design-lab
|
|
27
|
+
- id: viz-hub
|
|
28
|
+
title: Visualization Storytelling Hub
|
|
29
|
+
summary: Observable notebooks and Plotly dashboards for exploratory narratives.
|
|
30
|
+
github:
|
|
31
|
+
owner: DiogoRibeiro7
|
|
32
|
+
repo: visualization-gallery
|
|
33
|
+
tags:
|
|
34
|
+
- visualization
|
|
35
|
+
- storytelling
|
|
36
|
+
demo_url: https://example.com/demos/visualization
|
|
37
|
+
|
|
38
|
+
preferences:
|
|
39
|
+
github_cache_ttl: 43200
|
|
40
|
+
show_language_icons: true
|
|
41
|
+
allow_external_contributors: true
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
settings:
|
|
2
|
+
title: Selected publications
|
|
3
|
+
bibtex_source: assets/publications/publications.bib
|
|
4
|
+
group_by: year
|
|
5
|
+
sort: descending
|
|
6
|
+
display_fields:
|
|
7
|
+
- title
|
|
8
|
+
- authors
|
|
9
|
+
- venue
|
|
10
|
+
- year
|
|
11
|
+
- doi
|
|
12
|
+
fallback_message: "Upload a BibTeX file to populate the publication list automatically."
|
|
13
|
+
|
|
14
|
+
manual_entries:
|
|
15
|
+
- id: datalog2024
|
|
16
|
+
title: "Reproducible Energy Demand Forecasting"
|
|
17
|
+
authors:
|
|
18
|
+
- Diogo Ribeiro
|
|
19
|
+
- Ana Silva
|
|
20
|
+
venue: Journal of Sustainable Analytics
|
|
21
|
+
year: 2024
|
|
22
|
+
doi: 10.1234/jsa.2024.001
|
|
23
|
+
url: https://doi.org/10.1234/jsa.2024.001
|
|
24
|
+
tags:
|
|
25
|
+
- machine-learning
|
|
26
|
+
- energy
|
|
27
|
+
abstract: >-
|
|
28
|
+
A benchmarking study of probabilistic forecasting pipelines for urban energy systems using reproducible workflows.
|
data/_data/social.yml
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
primary:
|
|
2
|
+
- id: twitter
|
|
3
|
+
label: Twitter
|
|
4
|
+
url: https://twitter.com/DiogoRibeiro7
|
|
5
|
+
rel: noopener
|
|
6
|
+
- id: linkedin
|
|
7
|
+
label: LinkedIn
|
|
8
|
+
url: https://www.linkedin.com/in/diogoribeiro
|
|
9
|
+
rel: noopener
|
|
10
|
+
- id: github
|
|
11
|
+
label: GitHub
|
|
12
|
+
url: https://github.com/DiogoRibeiro7
|
|
13
|
+
rel: noopener
|
|
14
|
+
- id: kaggle
|
|
15
|
+
label: Kaggle
|
|
16
|
+
url: https://www.kaggle.com/diogoribeiro
|
|
17
|
+
rel: noopener
|
|
18
|
+
|
|
19
|
+
academic:
|
|
20
|
+
- id: orcid
|
|
21
|
+
label: ORCID
|
|
22
|
+
url: https://orcid.org/0009-0001-2022-7072
|
|
23
|
+
rel: me noopener
|
|
24
|
+
- id: google-scholar
|
|
25
|
+
label: Google Scholar
|
|
26
|
+
url: https://scholar.google.com/citations?user=example
|
|
27
|
+
rel: noopener
|
|
28
|
+
- id: researchgate
|
|
29
|
+
label: ResearchGate
|
|
30
|
+
url: https://www.researchgate.net/profile/Diogo-Ribeiro
|
|
31
|
+
rel: noopener
|
|
32
|
+
- id: academia
|
|
33
|
+
label: Academia.edu
|
|
34
|
+
url: https://www.academia.edu
|
|
35
|
+
rel: noopener
|
|
36
|
+
|
|
37
|
+
community:
|
|
38
|
+
- label: Papers with Code
|
|
39
|
+
url: https://paperswithcode.com
|
|
40
|
+
- label: OpenML
|
|
41
|
+
url: https://openml.org
|
|
42
|
+
- label: Data Science Stack Exchange
|
|
43
|
+
url: https://datascience.stackexchange.com
|
|
44
|
+
- label: Open Data Stack Exchange
|
|
45
|
+
url: https://opendata.stackexchange.com
|
|
46
|
+
|
|
47
|
+
contact:
|
|
48
|
+
- type: professional
|
|
49
|
+
label: Professional inquiries
|
|
50
|
+
value: dfr@esmad.ipp.pt
|
|
51
|
+
url: mailto:dfr@esmad.ipp.pt
|
|
52
|
+
- type: general
|
|
53
|
+
label: General contact
|
|
54
|
+
value: diogo.debastos.ribeiro@gmail.com
|
|
55
|
+
url: mailto:diogo.debastos.ribeiro@gmail.com
|
|
56
|
+
|
|
57
|
+
rss:
|
|
58
|
+
- label: Main feed
|
|
59
|
+
url: /feed.xml
|
|
60
|
+
- label: Research
|
|
61
|
+
url: /feed/research.xml
|
|
62
|
+
- label: Tutorials
|
|
63
|
+
url: /feed/tutorials.xml
|
|
64
|
+
- label: Datasets
|
|
65
|
+
url: /datasets/feed.xml
|
|
66
|
+
|
|
67
|
+
integrity:
|
|
68
|
+
statement: >-
|
|
69
|
+
All published material follows academic citation standards. When reusing code or analyses, attribute sources and include DOIs where possible.
|
|
70
|
+
dataset_guidance: >-
|
|
71
|
+
Datasets are provided with explicit licenses. Refer to each dataset entry for permitted uses and citation language.
|
|
72
|
+
reproducibility: >-
|
|
73
|
+
Every project highlights datasets, computational environments, and validation metrics to encourage transparent, reproducible research.
|