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/academic.yml
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
profiles:
|
|
2
|
+
google_scholar:
|
|
3
|
+
label: "Google Scholar"
|
|
4
|
+
url: "https://scholar.google.com/citations?user=example"
|
|
5
|
+
user_id: "example"
|
|
6
|
+
last_synced: "2024-03-01"
|
|
7
|
+
auto_update: true
|
|
8
|
+
orcid:
|
|
9
|
+
label: "ORCID"
|
|
10
|
+
url: "https://orcid.org/0009-0001-2022-7072"
|
|
11
|
+
sync:
|
|
12
|
+
enabled: true
|
|
13
|
+
last_synced: "2024-03-01"
|
|
14
|
+
scope:
|
|
15
|
+
- "funding"
|
|
16
|
+
- "works"
|
|
17
|
+
- "peer-review"
|
|
18
|
+
researchgate:
|
|
19
|
+
label: "ResearchGate"
|
|
20
|
+
url: "https://www.researchgate.net/profile/Diogo-Ribeiro"
|
|
21
|
+
projects:
|
|
22
|
+
- "Predictive Energy Demand Modeling"
|
|
23
|
+
- "Open Visualization Systems"
|
|
24
|
+
academia:
|
|
25
|
+
label: "Academia.edu"
|
|
26
|
+
url: "https://www.academia.edu"
|
|
27
|
+
collections:
|
|
28
|
+
- "Reproducible Analytics Playbook"
|
|
29
|
+
- "Teaching Portfolio"
|
|
30
|
+
|
|
31
|
+
citations:
|
|
32
|
+
reporting_period: "2024"
|
|
33
|
+
metrics:
|
|
34
|
+
total: 245
|
|
35
|
+
h_index: 9
|
|
36
|
+
i10_index: 12
|
|
37
|
+
since_2019:
|
|
38
|
+
total: 210
|
|
39
|
+
h_index: 8
|
|
40
|
+
i10_index: 11
|
|
41
|
+
per_publication:
|
|
42
|
+
datalog2024:
|
|
43
|
+
total: 37
|
|
44
|
+
last_updated: "2024-02-01"
|
|
45
|
+
open_science2023:
|
|
46
|
+
total: 64
|
|
47
|
+
last_updated: "2024-01-12"
|
|
48
|
+
accessible_viz2022:
|
|
49
|
+
total: 48
|
|
50
|
+
last_updated: "2023-11-30"
|
|
51
|
+
yearly_totals:
|
|
52
|
+
"2019": 12
|
|
53
|
+
"2020": 24
|
|
54
|
+
"2021": 38
|
|
55
|
+
"2022": 51
|
|
56
|
+
"2023": 62
|
|
57
|
+
"2024": 58
|
|
58
|
+
|
|
59
|
+
bibliography:
|
|
60
|
+
preferred_style: "apa"
|
|
61
|
+
exports:
|
|
62
|
+
- format: "bibtex"
|
|
63
|
+
filename: "datalog-publications.bib"
|
|
64
|
+
- format: "ris"
|
|
65
|
+
filename: "datalog-publications.ris"
|
|
66
|
+
|
|
67
|
+
submissions:
|
|
68
|
+
- title: "Hierarchical Forecasting under Climate Volatility"
|
|
69
|
+
venue: "International Conference on Smart Energy Systems"
|
|
70
|
+
type: "conference"
|
|
71
|
+
deadline: "2024-04-15"
|
|
72
|
+
status: "In review"
|
|
73
|
+
submitted: "2024-03-18"
|
|
74
|
+
collaborators:
|
|
75
|
+
- "Ana Silva"
|
|
76
|
+
- "Hugo Martins"
|
|
77
|
+
notes: "Awaiting reviewer assignment."
|
|
78
|
+
- title: "Accessible Visualization Platforms for Civic Data"
|
|
79
|
+
venue: "Journal of Open Visualization Research"
|
|
80
|
+
type: "journal"
|
|
81
|
+
deadline: "2024-05-10"
|
|
82
|
+
status: "Drafting"
|
|
83
|
+
submitted: ~
|
|
84
|
+
collaborators:
|
|
85
|
+
- "Rita Almeida"
|
|
86
|
+
notes: "Finalizing reproducibility appendix."
|
|
87
|
+
- title: "Open Science Practices for Applied Analytics Teams"
|
|
88
|
+
venue: "ReScience C"
|
|
89
|
+
type: "journal"
|
|
90
|
+
deadline: "2024-06-01"
|
|
91
|
+
status: "Revision requested"
|
|
92
|
+
submitted: "2024-02-07"
|
|
93
|
+
collaborators:
|
|
94
|
+
- "João Santos"
|
|
95
|
+
notes: "Address reviewer feedback on dataset licensing section."
|
|
96
|
+
|
|
97
|
+
workflow:
|
|
98
|
+
peer_review:
|
|
99
|
+
- title: "Bayesian Hierarchical Modeling for Energy Demand"
|
|
100
|
+
journal: "Journal of Sustainable Analytics"
|
|
101
|
+
status: "Reviewer invited"
|
|
102
|
+
assigned_date: "2024-03-02"
|
|
103
|
+
due_date: "2024-03-30"
|
|
104
|
+
notes: "Emphasize reproducibility checklist in review."
|
|
105
|
+
- title: "Robust Visualization Evaluation Metrics"
|
|
106
|
+
journal: "VIS4GOOD Proceedings"
|
|
107
|
+
status: "Completed"
|
|
108
|
+
assigned_date: "2024-01-12"
|
|
109
|
+
due_date: "2024-02-05"
|
|
110
|
+
notes: "Submitted structured review with replication package checklist."
|
|
111
|
+
collaborations:
|
|
112
|
+
- name: "Climate Resilience Analytics Consortium"
|
|
113
|
+
role: "Co-investigator"
|
|
114
|
+
stage: "Proposal development"
|
|
115
|
+
contact: "consortium@climateanalytics.org"
|
|
116
|
+
notes: "Coordinate dataset harmonization workshop."
|
|
117
|
+
- name: "EU Data Stories Mentorship Program"
|
|
118
|
+
role: "Mentor"
|
|
119
|
+
stage: "Active"
|
|
120
|
+
contact: "mentorship@eudatastories.eu"
|
|
121
|
+
notes: "Monthly office hours supporting reproducible storytelling."
|
|
122
|
+
|
|
123
|
+
calendar:
|
|
124
|
+
description: "Upcoming academic commitments, conferences, and submission deadlines."
|
|
125
|
+
events:
|
|
126
|
+
- name: "Smart Energy Systems Conference"
|
|
127
|
+
type: "conference"
|
|
128
|
+
start_date: "2024-07-10"
|
|
129
|
+
end_date: "2024-07-13"
|
|
130
|
+
location: "Copenhagen, Denmark"
|
|
131
|
+
submission_deadline: "2024-04-15"
|
|
132
|
+
- name: "Data Visualization for Social Good Workshop"
|
|
133
|
+
type: "workshop"
|
|
134
|
+
start_date: "2024-05-28"
|
|
135
|
+
end_date: "2024-05-29"
|
|
136
|
+
location: "Porto, Portugal"
|
|
137
|
+
submission_deadline: "2024-04-01"
|
|
138
|
+
- name: "ReScience C Special Issue Deadline"
|
|
139
|
+
type: "journal"
|
|
140
|
+
start_date: "2024-06-01"
|
|
141
|
+
end_date: "2024-06-01"
|
|
142
|
+
location: "Remote"
|
|
143
|
+
submission_deadline: "2024-06-01"
|
|
144
|
+
- name: "Horizon Europe Call: Digital Resilience"
|
|
145
|
+
type: "funding"
|
|
146
|
+
start_date: "2024-09-05"
|
|
147
|
+
end_date: "2024-09-05"
|
|
148
|
+
location: "Brussels, Belgium"
|
|
149
|
+
submission_deadline: "2024-09-05"
|
|
150
|
+
|
|
151
|
+
funding:
|
|
152
|
+
- title: "Horizon Europe Digital Resilience Pilot"
|
|
153
|
+
agency: "European Commission"
|
|
154
|
+
amount: "€450,000"
|
|
155
|
+
role: "Co-PI"
|
|
156
|
+
status: "Under consideration"
|
|
157
|
+
deadline: "2024-09-05"
|
|
158
|
+
focus: "Building reproducible analytics infrastructure for climate resilience."
|
|
159
|
+
- title: "National Science Foundation Data Literacy Grant"
|
|
160
|
+
agency: "NSF"
|
|
161
|
+
amount: "$120,000"
|
|
162
|
+
role: "Senior Personnel"
|
|
163
|
+
status: "Awarded"
|
|
164
|
+
period: "2023-2025"
|
|
165
|
+
focus: "Mentorship and curriculum development for applied data science."
|
|
166
|
+
|
|
167
|
+
collaboration_opportunities:
|
|
168
|
+
- title: "Reproducible Energy Benchmarking Collective"
|
|
169
|
+
description: "Seeking partners to contribute datasets and evaluation metrics for open benchmarking of energy demand models."
|
|
170
|
+
contact: "reproducibility@datalog.dev"
|
|
171
|
+
tags:
|
|
172
|
+
- "energy"
|
|
173
|
+
- "reproducibility"
|
|
174
|
+
- "benchmarking"
|
|
175
|
+
- title: "Civic Data Visualization Fellows"
|
|
176
|
+
description: "Recruiting designers and analysts to co-create accessible dashboards for public policy audiences."
|
|
177
|
+
contact: "vizfellows@datalog.dev"
|
|
178
|
+
tags:
|
|
179
|
+
- "visualization"
|
|
180
|
+
- "accessibility"
|
|
181
|
+
- "civic-tech"
|
|
182
|
+
|
|
183
|
+
mentorship:
|
|
184
|
+
- program: "Applied Data Science Residency"
|
|
185
|
+
offering: "6-week guided mentorship on experiment design and reporting."
|
|
186
|
+
cohorts: "Spring, Autumn"
|
|
187
|
+
application_deadline: "2024-04-30"
|
|
188
|
+
contact: "mentorship@datalog.dev"
|
|
189
|
+
- program: "Open Science Clinic"
|
|
190
|
+
offering: "Drop-in sessions for reproducibility audits and tooling support."
|
|
191
|
+
schedule: "Monthly (first Thursday)"
|
|
192
|
+
contact: "openscience@datalog.dev"
|
|
193
|
+
|
|
194
|
+
badges:
|
|
195
|
+
- label: "Open Data"
|
|
196
|
+
description: "Dataset and code repository published with permissive license."
|
|
197
|
+
criteria: "Public repository, DOI issued, README with reproduction steps."
|
|
198
|
+
- label: "Reproducible Workflow"
|
|
199
|
+
description: "Containerized environment and automated tests provided."
|
|
200
|
+
criteria: "Continuous integration pipeline with reproducibility checks."
|
|
201
|
+
- label: "Transparent Peer Review"
|
|
202
|
+
description: "Peer review reports archived with DOI and linked to article."
|
|
203
|
+
criteria: "Open peer review statement and archived reports on Zenodo."
|
|
204
|
+
|
|
205
|
+
networking:
|
|
206
|
+
platforms:
|
|
207
|
+
- name: "IEEE Data Science Community"
|
|
208
|
+
role: "Member"
|
|
209
|
+
url: "https://datascience.ieee.org"
|
|
210
|
+
- name: "Lisbon Data Science Meetup"
|
|
211
|
+
role: "Organizer"
|
|
212
|
+
url: "https://www.meetup.com/lisbon-data-science"
|
|
213
|
+
mentorship_channels:
|
|
214
|
+
- channel: "Slack"
|
|
215
|
+
description: "Private workspace for mentee discussions and resource sharing."
|
|
216
|
+
- channel: "Office hours"
|
|
217
|
+
description: "Bi-weekly Zoom sessions focused on paper feedback and reproducibility planning."
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js:
|
|
2
|
+
crossorigin: anonymous
|
|
3
|
+
integrity: sha384-e6nUZLBkQ86NJ6TVVKAeSaK8jWa3NhkYWZFomE39AvDbQWeie9PlQqM3pmYW5d1g
|
|
4
|
+
https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js:
|
|
5
|
+
crossorigin: anonymous
|
|
6
|
+
integrity: sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05
|
|
7
|
+
https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css:
|
|
8
|
+
crossorigin: anonymous
|
|
9
|
+
integrity: sha384-n8MVd4RsNIU0tAv4ct0nTaAbDJwPJzDEaqSD1odI+WdtXRGWt2kTvGFasHpSy3SV
|
|
10
|
+
https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js:
|
|
11
|
+
crossorigin: anonymous
|
|
12
|
+
integrity: sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8
|
|
13
|
+
https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js:
|
|
14
|
+
crossorigin: anonymous
|
|
15
|
+
integrity: sha384-AHAnt9ZhGeHIrydA1Kp1L7FN+2UosbF7RQg6C+9Is/a7kDpQ1684C2iH2VWil6r4
|
|
16
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-javascript.min.js:
|
|
17
|
+
crossorigin: anonymous
|
|
18
|
+
integrity: sha384-D44bgYYKvaiDh4cOGlj1dbSDpSctn2FSUj118HZGmZEShZcO2v//Q5vvhNy206pp
|
|
19
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-julia.min.js:
|
|
20
|
+
crossorigin: anonymous
|
|
21
|
+
integrity: sha384-joWnGJCIIBw7UmQ231RAVzCNiATJS38xk7yfiIDHRBJeYiBPvacMLMvx9d49VnrH
|
|
22
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-python.min.js:
|
|
23
|
+
crossorigin: anonymous
|
|
24
|
+
integrity: sha384-WJdEkJKrbsqw0evQ4GB6mlsKe5cGTxBOw4KAEIa52ZLB7DDpliGkwdme/HMa5n1m
|
|
25
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-r.min.js:
|
|
26
|
+
crossorigin: anonymous
|
|
27
|
+
integrity: sha384-a0dW6ZXBBtsBzzpPHKLx+AdpKmRJXfTGeCGNpzDA83/BoZoTUknyIAwMDuOTBfkS
|
|
28
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-sql.min.js:
|
|
29
|
+
crossorigin: anonymous
|
|
30
|
+
integrity: sha384-/MKWdycCDliku23mP5sYXbZNuXrzgmQO/jsVxwPFn99dVOaXRyKsqDjarqpueGAp
|
|
31
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/plugins/line-numbers/prism-line-numbers.min.css:
|
|
32
|
+
crossorigin: anonymous
|
|
33
|
+
integrity: sha384-nUkTNLI8COlMCRJ0FHIdX76If83145OTCLUx4gQyfnO0gGeO/sD9czGEUBxtkcUv
|
|
34
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/plugins/normalize-whitespace/prism-normalize-whitespace.min.js:
|
|
35
|
+
crossorigin: anonymous
|
|
36
|
+
integrity: sha384-1Q1Kn1ruXt6wc5JfXB25OWRaEVBJ5OQ0gfL/pneNkXoVmWmhkBacvG9Rls1+yB2h
|
|
37
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/prism.min.js:
|
|
38
|
+
crossorigin: anonymous
|
|
39
|
+
integrity: sha384-BGaNxfftg+9+TtC098wxawPFVEUpKYvaiCgbB0iqAMjK/4jDdmUY+oGxrPNvnXEf
|
|
40
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism-coy.css:
|
|
41
|
+
crossorigin: anonymous
|
|
42
|
+
integrity: sha384-/HnXSmP1Tv+9YA13kJX5sL1eVi3XeI57BUEGl+PiVlv6pPcxsbVrHaiw+OepvnSd
|
|
43
|
+
https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism-tomorrow.css:
|
|
44
|
+
crossorigin: anonymous
|
|
45
|
+
integrity: sha384-RCpAEDK2BSI4uVvV9kefzLdwlNUNZkCZJdOE2LkEa3jtLRcv2YrEVSbM4vwbCCW2
|
|
46
|
+
https://giscus.app/client.js:
|
|
47
|
+
crossorigin: anonymous
|
|
48
|
+
integrity: sha384-UwLZGbJGvkTzz0719+xEzUm/idqwzs0yZN8aB9Se5vUXHbyRyDWw9yqZTIsOsJ7x
|
|
49
|
+
https://utteranc.es/client.js:
|
|
50
|
+
crossorigin: anonymous
|
|
51
|
+
integrity: sha384-fu37qCdzTFjEWsnuik0ASdJij1SVwzCpeltZfuSulYExo7P5sTcD0aG6ECQHQR62
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# Author Configuration
|
|
3
|
+
# =============================================================================
|
|
4
|
+
# Your personal/professional information displayed throughout the site.
|
|
5
|
+
# This information appears in author bios, citations, and metadata.
|
|
6
|
+
#
|
|
7
|
+
# Documentation: https://github.com/DiogoRibeiro7/analytics-blog-jekyll/docs/configuration.md
|
|
8
|
+
# =============================================================================
|
|
9
|
+
|
|
10
|
+
# Basic information
|
|
11
|
+
name: Diogo Ribeiro
|
|
12
|
+
title: Data Scientist
|
|
13
|
+
affiliation: ESMAD - Instituto Politécnico do Porto
|
|
14
|
+
location: Porto, Portugal
|
|
15
|
+
email: dfr@esmad.ipp.pt
|
|
16
|
+
professional_email: dfr@esmad.ipp.pt
|
|
17
|
+
photo: # e.g. /assets/img/author-photo.jpg once the file exists; leave unset for the initial-letter placeholder
|
|
18
|
+
|
|
19
|
+
# Biography
|
|
20
|
+
biography: >
|
|
21
|
+
Data Scientist and researcher specializing in predictive modeling,
|
|
22
|
+
statistical analysis, and reproducible analytics. Passionate about
|
|
23
|
+
turning complex data into actionable insights and building open-source
|
|
24
|
+
tools for the data science community.
|
|
25
|
+
|
|
26
|
+
# Extended bio for the author page
|
|
27
|
+
bio_extended: >
|
|
28
|
+
With a background in data science and multimedia technology, I work at the
|
|
29
|
+
intersection of statistical modeling, machine learning, and data storytelling.
|
|
30
|
+
My research focuses on building reproducible analytics pipelines, probabilistic
|
|
31
|
+
forecasting for critical infrastructure, and accessible visualization systems
|
|
32
|
+
that bridge the gap between quantitative insights and decision-making.
|
|
33
|
+
|
|
34
|
+
# Skills & expertise
|
|
35
|
+
skills:
|
|
36
|
+
languages:
|
|
37
|
+
- Python
|
|
38
|
+
- R
|
|
39
|
+
- SQL
|
|
40
|
+
- Julia
|
|
41
|
+
- JavaScript
|
|
42
|
+
frameworks:
|
|
43
|
+
- scikit-learn
|
|
44
|
+
- TensorFlow
|
|
45
|
+
- PyTorch
|
|
46
|
+
- pandas
|
|
47
|
+
- tidyverse
|
|
48
|
+
- Plotly
|
|
49
|
+
- D3.js
|
|
50
|
+
tools:
|
|
51
|
+
- Jupyter
|
|
52
|
+
- Docker
|
|
53
|
+
- Git
|
|
54
|
+
- MLflow
|
|
55
|
+
- DuckDB
|
|
56
|
+
- PostgreSQL
|
|
57
|
+
domains:
|
|
58
|
+
- Predictive Modeling
|
|
59
|
+
- Time Series Forecasting
|
|
60
|
+
- Experimental Design
|
|
61
|
+
- Bayesian Statistics
|
|
62
|
+
- Natural Language Processing
|
|
63
|
+
- Data Visualization
|
|
64
|
+
|
|
65
|
+
# Education
|
|
66
|
+
education:
|
|
67
|
+
- degree: MSc in Data Science
|
|
68
|
+
institution: ESMAD - Instituto Politécnico do Porto
|
|
69
|
+
year: 2020
|
|
70
|
+
- degree: BSc in Multimedia Technology
|
|
71
|
+
institution: ESMAD - Instituto Politécnico do Porto
|
|
72
|
+
year: 2018
|
|
73
|
+
|
|
74
|
+
# Experience highlights
|
|
75
|
+
experience:
|
|
76
|
+
- role: Data Scientist & Researcher
|
|
77
|
+
organization: ESMAD - Instituto Politécnico do Porto
|
|
78
|
+
period: 2020 — present
|
|
79
|
+
description: Leading research in predictive analytics, energy demand forecasting, and open science methodologies.
|
|
80
|
+
- role: Visiting Researcher
|
|
81
|
+
organization: Centre for Applied AI
|
|
82
|
+
period: 2022 — present
|
|
83
|
+
description: Collaborative research on accessible visualization platforms and reproducible ML pipelines.
|
|
84
|
+
|
|
85
|
+
# Academic/Professional profiles
|
|
86
|
+
profiles:
|
|
87
|
+
orcid: https://orcid.org/0009-0001-2022-7072
|
|
88
|
+
github: DiogoRibeiro7
|
|
89
|
+
twitter: DiogoRibeiro7
|
|
90
|
+
linkedin: diogoribeiro
|
|
91
|
+
kaggle: diogoribeiro
|
|
92
|
+
google_scholar: "" # Optional: Add your Google Scholar profile URL
|
|
93
|
+
researchgate: https://www.researchgate.net/profile/Diogo-Ribeiro
|
|
94
|
+
academia: https://www.academia.edu
|
|
95
|
+
|
|
96
|
+
# Research focus areas (displayed in author cards and used for content filtering)
|
|
97
|
+
research_areas:
|
|
98
|
+
- id: machine-learning
|
|
99
|
+
title: Machine Learning
|
|
100
|
+
url: /tags/#machine-learning
|
|
101
|
+
- id: statistics
|
|
102
|
+
title: Statistics
|
|
103
|
+
url: /tags/#statistics
|
|
104
|
+
- id: visualization
|
|
105
|
+
title: Data Visualization
|
|
106
|
+
url: /tags/#visualization
|
|
107
|
+
- id: reproducibility
|
|
108
|
+
title: Reproducible Research
|
|
109
|
+
url: /tags/#reproducibility
|
|
110
|
+
|
|
111
|
+
# Methodologies you use (displayed in author cards)
|
|
112
|
+
methodologies:
|
|
113
|
+
- id: experimental-design
|
|
114
|
+
title: Experimental Design
|
|
115
|
+
url: /tags/#experimental-design
|
|
116
|
+
- id: bayesian
|
|
117
|
+
title: Bayesian Modeling
|
|
118
|
+
url: /tags/#bayesian
|
|
119
|
+
- id: eda
|
|
120
|
+
title: Exploratory Data Analysis
|
|
121
|
+
url: /tags/#eda
|
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# Feature Configuration
|
|
3
|
+
# =============================================================================
|
|
4
|
+
# Enable/disable features and customize their behavior.
|
|
5
|
+
# Features are organized by release phase for easy understanding.
|
|
6
|
+
#
|
|
7
|
+
# Documentation: https://github.com/DiogoRibeiro7/analytics-blog-jekyll/docs/configuration.md
|
|
8
|
+
# =============================================================================
|
|
9
|
+
|
|
10
|
+
# -----------------------------------------------------------------------------
|
|
11
|
+
# Core Feature Flags
|
|
12
|
+
# -----------------------------------------------------------------------------
|
|
13
|
+
core:
|
|
14
|
+
mathjax: true
|
|
15
|
+
math_toolkit: true
|
|
16
|
+
math_search: true
|
|
17
|
+
search: true
|
|
18
|
+
accessibility_skip_link: true
|
|
19
|
+
dark_mode_toggle: true
|
|
20
|
+
notebook_support: true
|
|
21
|
+
portfolio: true
|
|
22
|
+
datasets: true
|
|
23
|
+
visualizations: true
|
|
24
|
+
academic_dashboard: true
|
|
25
|
+
citation_tracking: true
|
|
26
|
+
academic_calendar: true
|
|
27
|
+
|
|
28
|
+
# -----------------------------------------------------------------------------
|
|
29
|
+
# Critical CSS
|
|
30
|
+
# -----------------------------------------------------------------------------
|
|
31
|
+
critical_css:
|
|
32
|
+
enabled: true
|
|
33
|
+
dimensions:
|
|
34
|
+
- width: 1920
|
|
35
|
+
height: 1080
|
|
36
|
+
- width: 375
|
|
37
|
+
height: 667
|
|
38
|
+
penthouse_options:
|
|
39
|
+
timeout: 30000
|
|
40
|
+
|
|
41
|
+
# -----------------------------------------------------------------------------
|
|
42
|
+
# Phase 1: Social & Navigation
|
|
43
|
+
# -----------------------------------------------------------------------------
|
|
44
|
+
social_sharing:
|
|
45
|
+
enabled: true
|
|
46
|
+
platforms:
|
|
47
|
+
- twitter
|
|
48
|
+
- linkedin
|
|
49
|
+
- facebook
|
|
50
|
+
- reddit
|
|
51
|
+
- email
|
|
52
|
+
- copy
|
|
53
|
+
show_count: false
|
|
54
|
+
|
|
55
|
+
breadcrumbs:
|
|
56
|
+
enabled: true
|
|
57
|
+
separator: " / "
|
|
58
|
+
show_home: true
|
|
59
|
+
show_current: true
|
|
60
|
+
|
|
61
|
+
author_bio:
|
|
62
|
+
enabled: true
|
|
63
|
+
position: after_content # before_content, after_content
|
|
64
|
+
show_avatar: true
|
|
65
|
+
show_social: true
|
|
66
|
+
show_research_areas: true
|
|
67
|
+
compact: false
|
|
68
|
+
|
|
69
|
+
enhanced_toc:
|
|
70
|
+
enabled: true
|
|
71
|
+
sticky: true
|
|
72
|
+
show_progress: true
|
|
73
|
+
collapsible: true
|
|
74
|
+
h_min: 2
|
|
75
|
+
h_max: 4
|
|
76
|
+
default_heading: "Table of Contents"
|
|
77
|
+
|
|
78
|
+
difficulty_badges:
|
|
79
|
+
enabled: true
|
|
80
|
+
default_level: beginner
|
|
81
|
+
show_icon: true
|
|
82
|
+
show_description: false
|
|
83
|
+
|
|
84
|
+
# -----------------------------------------------------------------------------
|
|
85
|
+
# Phase 2: Layout & Search
|
|
86
|
+
# -----------------------------------------------------------------------------
|
|
87
|
+
sidebar_layout:
|
|
88
|
+
enabled: true
|
|
89
|
+
show_toc: true
|
|
90
|
+
show_info_card: true
|
|
91
|
+
show_newsletter: true
|
|
92
|
+
show_related: true
|
|
93
|
+
|
|
94
|
+
series:
|
|
95
|
+
enabled: true
|
|
96
|
+
show_progress: true
|
|
97
|
+
show_list: true
|
|
98
|
+
|
|
99
|
+
search_facets:
|
|
100
|
+
enabled: true
|
|
101
|
+
show_tags: true
|
|
102
|
+
show_categories: true
|
|
103
|
+
show_difficulty: true
|
|
104
|
+
show_dates: true
|
|
105
|
+
show_authors: true
|
|
106
|
+
|
|
107
|
+
code_sharing:
|
|
108
|
+
enabled: true
|
|
109
|
+
show_copy: true
|
|
110
|
+
show_download: true
|
|
111
|
+
show_playground: true
|
|
112
|
+
show_share: true
|
|
113
|
+
|
|
114
|
+
newsletter:
|
|
115
|
+
enabled: false # Enable when newsletter service is configured
|
|
116
|
+
provider: "custom" # mailchimp, convertkit, buttondown, custom
|
|
117
|
+
action_url: ""
|
|
118
|
+
success_message: "Thanks for subscribing!"
|
|
119
|
+
privacy_url: "/privacy"
|
|
120
|
+
|
|
121
|
+
# -----------------------------------------------------------------------------
|
|
122
|
+
# Phase 3: Reading Experience
|
|
123
|
+
# -----------------------------------------------------------------------------
|
|
124
|
+
archive:
|
|
125
|
+
enabled: true
|
|
126
|
+
group_by: year # year, month, category, tag
|
|
127
|
+
show_statistics: true
|
|
128
|
+
show_filters: true
|
|
129
|
+
show_excerpts: true
|
|
130
|
+
posts_per_month: true
|
|
131
|
+
|
|
132
|
+
reading_progress:
|
|
133
|
+
enabled: true
|
|
134
|
+
position: top # top, bottom, sticky
|
|
135
|
+
show_time: true
|
|
136
|
+
show_percentage: true
|
|
137
|
+
words_per_minute: 200
|
|
138
|
+
|
|
139
|
+
reading_time:
|
|
140
|
+
enabled: true
|
|
141
|
+
words_per_minute: 200
|
|
142
|
+
show_word_count: false
|
|
143
|
+
default_variant: inline # inline, badge, detailed
|
|
144
|
+
|
|
145
|
+
recommendations:
|
|
146
|
+
enabled: true
|
|
147
|
+
max_recommendations: 3
|
|
148
|
+
algorithm: hybrid # tag-based, category-based, hybrid
|
|
149
|
+
layout: grid # grid, list, compact
|
|
150
|
+
show_view_all: true
|
|
151
|
+
show_score: false
|
|
152
|
+
|
|
153
|
+
comments:
|
|
154
|
+
enabled: true
|
|
155
|
+
provider: giscus # giscus, utterances, disqus, commento, custom, none
|
|
156
|
+
lazy_load: true
|
|
157
|
+
show_count: true
|
|
158
|
+
show_privacy_notice: true
|
|
159
|
+
privacy_url: "/privacy"
|
|
160
|
+
giscus:
|
|
161
|
+
repo: "DiogoRibeiro7/analytics-blog-jekyll"
|
|
162
|
+
repo_id: "" # Get from https://giscus.app
|
|
163
|
+
category: "General"
|
|
164
|
+
category_id: "" # Get from https://giscus.app
|
|
165
|
+
mapping: pathname
|
|
166
|
+
strict: 0
|
|
167
|
+
reactions_enabled: 1
|
|
168
|
+
emit_metadata: 0
|
|
169
|
+
input_position: bottom
|
|
170
|
+
theme: preferred_color_scheme
|
|
171
|
+
lang: en
|
|
172
|
+
loading: lazy
|
|
173
|
+
utterances:
|
|
174
|
+
repo: "DiogoRibeiro7/analytics-blog-jekyll"
|
|
175
|
+
issue_term: pathname
|
|
176
|
+
label: comment
|
|
177
|
+
theme: github-light
|
|
178
|
+
disqus:
|
|
179
|
+
shortname: ""
|
|
180
|
+
commento:
|
|
181
|
+
url: "https://cdn.commento.io"
|
|
182
|
+
no_fonts: false
|
|
183
|
+
hide_deleted: false
|
|
184
|
+
auto_init: true
|
|
185
|
+
custom_html: ""
|
|
186
|
+
|
|
187
|
+
# -----------------------------------------------------------------------------
|
|
188
|
+
# Phase 4: User Experience
|
|
189
|
+
# -----------------------------------------------------------------------------
|
|
190
|
+
user_preferences:
|
|
191
|
+
enabled: true
|
|
192
|
+
show_theme_toggle: true
|
|
193
|
+
show_font_size: true
|
|
194
|
+
show_reading_mode: true
|
|
195
|
+
show_layout: true
|
|
196
|
+
position: floating # floating, sidebar
|
|
197
|
+
|
|
198
|
+
popular_posts:
|
|
199
|
+
enabled: true
|
|
200
|
+
max_posts: 5
|
|
201
|
+
sort_by: recent # recent, comments, trending
|
|
202
|
+
show_stats: true
|
|
203
|
+
show_thumbnail: true
|
|
204
|
+
layout: list # list, grid, compact
|
|
205
|
+
show_view_all: true
|
|
206
|
+
|
|
207
|
+
navigation:
|
|
208
|
+
back_to_top:
|
|
209
|
+
enabled: true
|
|
210
|
+
threshold: 300 # pixels scrolled before showing
|
|
211
|
+
keyboard_shortcuts:
|
|
212
|
+
enabled: true
|
|
213
|
+
|
|
214
|
+
social_proof:
|
|
215
|
+
enabled: true
|
|
216
|
+
show_views: true
|
|
217
|
+
show_trending: true
|
|
218
|
+
show_readers: true
|
|
219
|
+
show_completion: true
|
|
220
|
+
compact: false
|
|
221
|
+
|
|
222
|
+
enhanced_metadata:
|
|
223
|
+
enabled: true
|
|
224
|
+
show_updated_date: true
|
|
225
|
+
show_tags_cloud: true
|
|
226
|
+
show_category_path: true
|
|
227
|
+
show_reading_level: true
|
|
228
|
+
show_word_count: true
|
|
229
|
+
layout: inline # inline, stacked, card
|
|
230
|
+
|
|
231
|
+
# -----------------------------------------------------------------------------
|
|
232
|
+
# Phase 5: Advanced Features
|
|
233
|
+
# -----------------------------------------------------------------------------
|
|
234
|
+
i18n:
|
|
235
|
+
enabled: true
|
|
236
|
+
default_language: en
|
|
237
|
+
languages: [en, es, fr, de, pt]
|
|
238
|
+
show_flags: true
|
|
239
|
+
position: header
|
|
240
|
+
|
|
241
|
+
advanced_search:
|
|
242
|
+
enabled: true
|
|
243
|
+
show_filters: true
|
|
244
|
+
show_sort: true
|
|
245
|
+
highlight_matches: true
|
|
246
|
+
results_per_page: 10
|
|
247
|
+
|
|
248
|
+
bookmarks:
|
|
249
|
+
enabled: true
|
|
250
|
+
storage: localStorage
|
|
251
|
+
max_bookmarks: 100
|
|
252
|
+
|
|
253
|
+
performance:
|
|
254
|
+
enabled: true
|
|
255
|
+
track_core_web_vitals: true
|
|
256
|
+
track_resource_timing: true
|
|
257
|
+
report_to_analytics: false
|
|
258
|
+
|
|
259
|
+
email_preferences:
|
|
260
|
+
enabled: true
|
|
261
|
+
topics: [ml, statistics, visualization, python]
|
|
262
|
+
subscription_types: [weekly_digest, new_posts, comments, newsletter]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# Site Configuration
|
|
3
|
+
# =============================================================================
|
|
4
|
+
# Basic site settings and branding. Edit these values to customize your site.
|
|
5
|
+
#
|
|
6
|
+
# Documentation: https://github.com/DiogoRibeiro7/analytics-blog-jekyll/blob/develop/docs/configuration-reference.md
|
|
7
|
+
# =============================================================================
|
|
8
|
+
|
|
9
|
+
# Brand identity
|
|
10
|
+
brand:
|
|
11
|
+
tagline: "Transform data into impactful stories and reproducible research."
|
|
12
|
+
accent_symbol: "∀ data · Σ insights"
|
|
13
|
+
|
|
14
|
+
# Contact information
|
|
15
|
+
contact:
|
|
16
|
+
collaboration: diogo.debastos.ribeiro@gmail.com
|
|
17
|
+
media: dfr@esmad.ipp.pt
|
|
18
|
+
|
|
19
|
+
# SEO metadata
|
|
20
|
+
seo:
|
|
21
|
+
type: "ResearchProject"
|
|
22
|
+
name: "DataLog"
|
|
23
|
+
description: "Jekyll theme for data science and research communication"
|
|
24
|
+
|
|
25
|
+
# Social media links (for site-wide social sharing)
|
|
26
|
+
social:
|
|
27
|
+
twitter: datalog_theme
|
|
28
|
+
github: DiogoRibeiro7
|
|
29
|
+
linkedin: diogoribeiro
|
|
30
|
+
default_image: /assets/img/social-card.png
|
|
31
|
+
|
|
32
|
+
# Analytics configuration
|
|
33
|
+
analytics:
|
|
34
|
+
# Google Analytics 4
|
|
35
|
+
ga4_property_id: "" # Set to your GA4 property ID to enable the analytics dashboard
|
|
36
|
+
ga4_credentials_path: "" # Path to Google service account credentials JSON
|
|
37
|
+
# Leave both empty to disable analytics
|
|
38
|
+
|
|
39
|
+
# Repository information
|
|
40
|
+
repository:
|
|
41
|
+
url: https://github.com/DiogoRibeiro7/analytics-blog-jekyll
|
|
42
|
+
branch: develop
|