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.
Files changed (180) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +162 -0
  3. data/CITATION.cff +29 -0
  4. data/LICENSE +21 -0
  5. data/README.md +257 -0
  6. data/_data/academic.yml +217 -0
  7. data/_data/cdn-integrity.yml +51 -0
  8. data/_data/config/author.yml +121 -0
  9. data/_data/config/features.yml +262 -0
  10. data/_data/config/site.yml +42 -0
  11. data/_data/config/theme.yml +181 -0
  12. data/_data/datasets.yml +28 -0
  13. data/_data/i18n/en.yml +438 -0
  14. data/_data/i18n/es.yml +438 -0
  15. data/_data/i18n/pt.yml +438 -0
  16. data/_data/js_manifest.json +22 -0
  17. data/_data/js_meta.json +371 -0
  18. data/_data/navigation.yml +145 -0
  19. data/_data/projects.yml +41 -0
  20. data/_data/publications.yml +28 -0
  21. data/_data/social.yml +73 -0
  22. data/_data/visualizations.yml +51 -0
  23. data/_includes/analytics/dashboard.html +149 -0
  24. data/_includes/analytics.html +9 -0
  25. data/_includes/components/academic-dashboard.html +347 -0
  26. data/_includes/components/advanced-search.html +682 -0
  27. data/_includes/components/api-function.html +94 -0
  28. data/_includes/components/author-bio.html +166 -0
  29. data/_includes/components/bookmark-system.html +96 -0
  30. data/_includes/components/breadcrumbs.html +89 -0
  31. data/_includes/components/citation-tools.html +94 -0
  32. data/_includes/components/comments.html +244 -0
  33. data/_includes/components/content-provenance.html +43 -0
  34. data/_includes/components/content-recommendations.html +228 -0
  35. data/_includes/components/difficulty-badge.html +84 -0
  36. data/_includes/components/email-preferences.html +200 -0
  37. data/_includes/components/enhanced-code-block.html +212 -0
  38. data/_includes/components/enhanced-metadata.html +228 -0
  39. data/_includes/components/enhanced-toc.html +209 -0
  40. data/_includes/components/hero.html +15 -0
  41. data/_includes/components/language-switcher.html +396 -0
  42. data/_includes/components/math-fallback.html +19 -0
  43. data/_includes/components/navigation-enhancements.html +454 -0
  44. data/_includes/components/newsletter-signup.html +178 -0
  45. data/_includes/components/open-science-badges.html +16 -0
  46. data/_includes/components/package-install.html +194 -0
  47. data/_includes/components/performance-monitor.html +170 -0
  48. data/_includes/components/popular-posts.html +233 -0
  49. data/_includes/components/post-hero.html +62 -0
  50. data/_includes/components/reading-progress.html +133 -0
  51. data/_includes/components/reading-time.html +121 -0
  52. data/_includes/components/responsive-image.html +63 -0
  53. data/_includes/components/search-facets.html +307 -0
  54. data/_includes/components/series-navigation.html +124 -0
  55. data/_includes/components/social-proof.html +34 -0
  56. data/_includes/components/social-share.html +119 -0
  57. data/_includes/components/user-preferences.html +566 -0
  58. data/_includes/components/visualization-card.html +24 -0
  59. data/_includes/components/viz-table-fallback.html +19 -0
  60. data/_includes/critical-css/default.html +0 -0
  61. data/_includes/critical-css/home.html +0 -0
  62. data/_includes/critical-css/post.html +0 -0
  63. data/_includes/csp-meta.html +17 -0
  64. data/_includes/footer/nav-column.html +31 -0
  65. data/_includes/footer.html +76 -0
  66. data/_includes/head.html +337 -0
  67. data/_includes/header/navigation.html +48 -0
  68. data/_includes/header.html +70 -0
  69. data/_includes/helpers/array-to-sentence.html +21 -0
  70. data/_includes/helpers/date-format.html +16 -0
  71. data/_includes/helpers/link-with-icon.html +26 -0
  72. data/_includes/layouts/default/article.html +67 -0
  73. data/_includes/meta/language-attributes.html +25 -0
  74. data/_includes/meta/math-config.html +21 -0
  75. data/_includes/meta/schema.html +153 -0
  76. data/_includes/meta/scripts-loader.html +52 -0
  77. data/_includes/post/related-posts.html +63 -0
  78. data/_includes/scripts.html +72 -0
  79. data/_includes/skip-link.html +1 -0
  80. data/_includes/toc.html +2 -0
  81. data/_layouts/archive.html +282 -0
  82. data/_layouts/dataset.html +52 -0
  83. data/_layouts/default.html +33 -0
  84. data/_layouts/home.html +48 -0
  85. data/_layouts/notebook.html +173 -0
  86. data/_layouts/package.html +238 -0
  87. data/_layouts/page.html +16 -0
  88. data/_layouts/portfolio.html +41 -0
  89. data/_layouts/post-sidebar.html +183 -0
  90. data/_layouts/post.html +338 -0
  91. data/_layouts/project.html +252 -0
  92. data/_layouts/research.html +504 -0
  93. data/_plugins/analytics_dashboard.rb +315 -0
  94. data/_plugins/config_validator.rb +397 -0
  95. data/_plugins/csp_generator.rb +115 -0
  96. data/_plugins/datalog_bibliography.rb +19 -0
  97. data/_plugins/datalog_comments.rb +18 -0
  98. data/_plugins/datalog_slides.rb +20 -0
  99. data/_plugins/front_matter_compat.rb +109 -0
  100. data/_plugins/i18n.rb +160 -0
  101. data/_plugins/image_optimizer.rb +445 -0
  102. data/_plugins/math_preprocessor.rb +185 -0
  103. data/_plugins/notebook_converter.rb +1107 -0
  104. data/_plugins/plugin_loader.rb +185 -0
  105. data/_plugins/publications_generator.rb +234 -0
  106. data/_plugins/reading_time.rb +15 -0
  107. data/_plugins/search_normalizer.rb +74 -0
  108. data/_plugins/sri_filter.rb +18 -0
  109. data/_plugins/toc_filter.rb +68 -0
  110. data/_plugins/warning_filter.rb +3 -0
  111. data/_sass/_base.scss +142 -0
  112. data/_sass/_components.scss +2380 -0
  113. data/_sass/_header.scss +470 -0
  114. data/_sass/_interactive.scss +344 -0
  115. data/_sass/_layout.scss +1760 -0
  116. data/_sass/_mathematical.scss +368 -0
  117. data/_sass/_mixins.scss +99 -0
  118. data/_sass/_package-docs.scss +715 -0
  119. data/_sass/_phase1-enhancements.scss +721 -0
  120. data/_sass/_phase3-enhancements.scss +874 -0
  121. data/_sass/_phase4-enhancements.scss +1214 -0
  122. data/_sass/_phase5-enhancements.scss +414 -0
  123. data/_sass/_search.scss +654 -0
  124. data/_sass/_syntax-highlighting.scss +128 -0
  125. data/_sass/_theme.scss +79 -0
  126. data/_sass/_typography.scss +148 -0
  127. data/_sass/_utilities.scss +334 -0
  128. data/_sass/_variables.scss +153 -0
  129. data/_sass/_visualizations.scss +242 -0
  130. data/assets/css/main.scss +4 -0
  131. data/assets/img/20220607123041_detail.001.png +0 -0
  132. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  133. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  134. data/assets/img/favicons/apple-touch-icon.png +0 -0
  135. data/assets/img/favicons/favicon-16x16.png +0 -0
  136. data/assets/img/favicons/favicon-32x32.png +0 -0
  137. data/assets/img/favicons/favicon.ico +0 -0
  138. data/assets/img/favicons/site.webmanifest +21 -0
  139. data/assets/img/portfolio-placeholder.svg +20 -0
  140. data/assets/js/academic.js +262 -0
  141. data/assets/js/analytics-dashboard.js +382 -0
  142. data/assets/js/core/dark-mode.js +79 -0
  143. data/assets/js/core/github-cards.js +123 -0
  144. data/assets/js/core/language-filter.js +69 -0
  145. data/assets/js/core/navigation.js +184 -0
  146. data/assets/js/core/scroll-progress.js +45 -0
  147. data/assets/js/core/search-hotkeys.js +62 -0
  148. data/assets/js/core/skip-links.js +62 -0
  149. data/assets/js/loader.js +163 -0
  150. data/assets/js/main.js +23 -0
  151. data/assets/js/math.js +818 -0
  152. data/assets/js/notebook.js +158 -0
  153. data/assets/js/search/analytics.js +91 -0
  154. data/assets/js/search/app.js +271 -0
  155. data/assets/js/search/autocomplete.js +120 -0
  156. data/assets/js/search/engine.js +260 -0
  157. data/assets/js/search/filters.js +38 -0
  158. data/assets/js/search/render.js +217 -0
  159. data/assets/js/search/utils.js +99 -0
  160. data/assets/js/search.js +354 -0
  161. data/assets/js/visualizations.js +816 -0
  162. data/assets/publications/datalog-publications.bib +8 -0
  163. data/assets/publications/datalog-publications.ris +9 -0
  164. data/assets/publications/publications.bib +30 -0
  165. data/assets/templates/diogo-ribeiro-cv.md +31 -0
  166. data/assets/templates/diogo-ribeiro-cv.tex +32 -0
  167. data/bin/datalog +26 -0
  168. data/datalog-theme.gemspec +72 -0
  169. data/lib/datalog/cli.rb +563 -0
  170. data/lib/datalog/plugin_system/dependency_resolver.rb +223 -0
  171. data/lib/datalog/plugin_system.rb +237 -0
  172. data/lib/datalog/plugins/citations.rb +182 -0
  173. data/lib/datalog/plugins/comments.rb +183 -0
  174. data/lib/datalog/plugins/search.rb +45 -0
  175. data/lib/datalog/plugins/slides.rb +121 -0
  176. data/lib/datalog/theme/theme.rb +18 -0
  177. data/lib/datalog/theme/version.rb +7 -0
  178. data/lib/datalog/warning_filter.rb +28 -0
  179. data/lib/datalog-theme.rb +17 -0
  180. metadata +555 -0
@@ -0,0 +1,181 @@
1
+ # =============================================================================
2
+ # Theme Configuration
3
+ # =============================================================================
4
+ # Visual and behavioral settings for the DataLog theme.
5
+ # Customize colors, typography, math rendering, and syntax highlighting.
6
+ #
7
+ # Documentation: https://github.com/DiogoRibeiro7/analytics-blog-jekyll/docs/configuration.md
8
+ # =============================================================================
9
+
10
+ # -----------------------------------------------------------------------------
11
+ # Academic styling
12
+ # -----------------------------------------------------------------------------
13
+ academic:
14
+ color_schemes:
15
+ light: "#0b1d3d"
16
+ dark: "#f5f7ff"
17
+ accent: "#3277f6"
18
+ typography:
19
+ body: "Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif"
20
+ headings: "Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif"
21
+ code: "'Fira Code', 'Source Code Pro', monospace"
22
+ layout:
23
+ max_width: 80rem
24
+ column_gap: 2.5rem
25
+
26
+ # -----------------------------------------------------------------------------
27
+ # Math rendering (MathJax/KaTeX)
28
+ # -----------------------------------------------------------------------------
29
+ math:
30
+ engine: mathjax # Options: mathjax, katex
31
+ output: chtml
32
+ equation_numbering: true
33
+ accessibility: true
34
+ render_on_load: true
35
+ katex_cdn: https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/
36
+ mathjax_cdn: https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js
37
+
38
+ # -----------------------------------------------------------------------------
39
+ # Syntax highlighting (Prism)
40
+ # -----------------------------------------------------------------------------
41
+ syntax_highlighting:
42
+ engine: prism
43
+ cdn: https://cdn.jsdelivr.net/npm/prismjs@1.29.0
44
+ themes:
45
+ light: prism-coy
46
+ dark: prism-tomorrow
47
+ components:
48
+ - core
49
+ - python
50
+ - r
51
+ - sql
52
+ - julia
53
+ - javascript
54
+ # Per-language theme overrides (optional)
55
+ language_overrides:
56
+ python: prism-coy
57
+ r: prism-okaidia
58
+ sql: prism-twilight
59
+ julia: prism-atom-dark
60
+ javascript: prism-material-oceanic
61
+
62
+ # -----------------------------------------------------------------------------
63
+ # Data visualizations
64
+ # -----------------------------------------------------------------------------
65
+ visualizations:
66
+ responsive: true
67
+ lazy_load: true
68
+ plotly:
69
+ version: 2.27.0
70
+ mode_bar: true
71
+ d3:
72
+ version: 7
73
+ csp_compliant: true
74
+ observable:
75
+ trusted_domains:
76
+ - https://observablehq.com
77
+ bokeh:
78
+ resources: cdn
79
+ shiny:
80
+ iframe_title: "Embedded R Shiny application"
81
+
82
+ # -----------------------------------------------------------------------------
83
+ # Typography settings
84
+ # -----------------------------------------------------------------------------
85
+ typography:
86
+ scale: modular
87
+ base_font_size: 18px
88
+
89
+ # -----------------------------------------------------------------------------
90
+ # Image optimization
91
+ # -----------------------------------------------------------------------------
92
+ images:
93
+ sizes:
94
+ - 320
95
+ - 640
96
+ - 960
97
+ - 1280
98
+ - 1920
99
+ quality:
100
+ avif: 50
101
+ webp: 75
102
+ jpeg: 85
103
+ png: 90
104
+ lazy_loading: lazy
105
+
106
+ # -----------------------------------------------------------------------------
107
+ # Localization
108
+ # -----------------------------------------------------------------------------
109
+ localization:
110
+ default_locale: en
111
+ locales:
112
+ - code: en
113
+ label: English
114
+ url: /
115
+ rtl_locales:
116
+ - ar
117
+ - he
118
+
119
+ # -----------------------------------------------------------------------------
120
+ # Programming language filters (for content filtering)
121
+ # -----------------------------------------------------------------------------
122
+ filters:
123
+ languages:
124
+ - label: Python
125
+ url: /tags/python/
126
+ - label: R
127
+ url: /tags/r/
128
+ - label: SQL
129
+ url: /tags/sql/
130
+ - label: Julia
131
+ url: /tags/julia/
132
+ - label: JavaScript
133
+ url: /tags/javascript/
134
+ - label: Scala
135
+ url: /tags/scala/
136
+
137
+ # -----------------------------------------------------------------------------
138
+ # Dataset defaults
139
+ # -----------------------------------------------------------------------------
140
+ datasets:
141
+ default_license: CC-BY-4.0
142
+ availability_statement: "Datasets include licensing, provenance, and methodological notes."
143
+
144
+ # -----------------------------------------------------------------------------
145
+ # Project showcase settings
146
+ # -----------------------------------------------------------------------------
147
+ projects:
148
+ default_repository: DiogoRibeiro7/analytics-blog-jekyll
149
+ showcase_tags:
150
+ - predictive-modeling
151
+ - experimental-design
152
+ - visualization
153
+
154
+ # -----------------------------------------------------------------------------
155
+ # Publications/Bibliography
156
+ # -----------------------------------------------------------------------------
157
+ publications:
158
+ bibtex_source: assets/publications/publications.bib
159
+ sort_order: descending
160
+ group_by: year
161
+ include_bibliography: true
162
+ export_formats:
163
+ - bibtex
164
+ - ris
165
+ - endnote
166
+ sync_citations_from_academic_data: true
167
+
168
+ # -----------------------------------------------------------------------------
169
+ # Search behavior
170
+ # -----------------------------------------------------------------------------
171
+ search:
172
+ include_code_blocks: true
173
+ include_math: true
174
+ enable_keyboard_shortcuts: true
175
+
176
+ # -----------------------------------------------------------------------------
177
+ # Accessibility
178
+ # -----------------------------------------------------------------------------
179
+ accessibility:
180
+ math_alt_text: true
181
+ code_contrast: AAA
@@ -0,0 +1,28 @@
1
+ collections:
2
+ - id: urban-energy
3
+ title: Urban Energy Usage Benchmark
4
+ description: Smart meter and weather aligned dataset for forecasting tasks.
5
+ license: CC-BY-4.0
6
+ tags:
7
+ - energy
8
+ - time-series
9
+ - forecasting
10
+ source_url: https://example.com/datasets/urban-energy
11
+ documentation: /datasets/sample-dataset/
12
+ update_frequency: quarterly
13
+ - id: mobility-sensing
14
+ title: Mobility Sensing Signals
15
+ description: Multimodal mobility traces with aggregated privacy-preserving features.
16
+ license: CC-BY-SA-4.0
17
+ tags:
18
+ - mobility
19
+ - sensors
20
+ - anomaly-detection
21
+ source_url: https://example.com/datasets/mobility
22
+ documentation: /datasets/
23
+ update_frequency: annually
24
+
25
+ preferences:
26
+ availability_statement: "Datasets include licensing, provenance, update cadence, and recommended citation language."
27
+ download_button: true
28
+ badge_style: outlined
data/_data/i18n/en.yml ADDED
@@ -0,0 +1,438 @@
1
+ ---
2
+ date:
3
+ formats:
4
+ long: "%B %-d, %Y"
5
+ datetime: "%B %-d, %Y %H:%M"
6
+ months:
7
+ 1: January
8
+ 2: February
9
+ 3: March
10
+ 4: April
11
+ 5: May
12
+ 6: June
13
+ 7: July
14
+ 8: August
15
+ 9: September
16
+ 10: October
17
+ 11: November
18
+ 12: December
19
+ months_short:
20
+ 1: Jan
21
+ 2: Feb
22
+ 3: Mar
23
+ 4: Apr
24
+ 5: May
25
+ 6: Jun
26
+ 7: Jul
27
+ 8: Aug
28
+ 9: Sep
29
+ 10: Oct
30
+ 11: Nov
31
+ 12: Dec
32
+ weekdays:
33
+ 0: Sunday
34
+ 1: Monday
35
+ 2: Tuesday
36
+ 3: Wednesday
37
+ 4: Thursday
38
+ 5: Friday
39
+ 6: Saturday
40
+ weekdays_short:
41
+ 0: Sun
42
+ 1: Mon
43
+ 2: Tue
44
+ 3: Wed
45
+ 4: Thu
46
+ 5: Fri
47
+ 6: Sat
48
+ global:
49
+ skip_to_main: Skip to main content
50
+ math_ready: Mathematical content is ready
51
+ math_loading: Loading mathematical content
52
+ header:
53
+ reading_progress: "Reading progress:"
54
+ reading_progress_suffix: "%"
55
+ brand_symbol: "∀ data · Σ insights"
56
+ brand_home: "{{site}} home"
57
+ logo_title: DataLog logo
58
+ dark_mode_toggle: Toggle dark mode for code readability
59
+ navigation_toggle: Toggle navigation
60
+ language_switcher_label: Switch site language
61
+ search_label: Search notebooks, tutorials, and code snippets
62
+ search_placeholder: Search code, equations, and insights
63
+ search_button: Search
64
+ utilities_toggle_label: Show filters and academic links
65
+ utilities_toggle_text: Filters & quick links
66
+ language_filter_label: Language & framework
67
+ language_filter_placeholder: Select focus
68
+ quick_links_aria: Popular tutorials
69
+ quick_links_title: Popular resources
70
+ quick_links:
71
+ defaults:
72
+ getting_started: Getting started with the theme
73
+ notebooks: Sample notebook workflow
74
+ research: Reproducible research guide
75
+ academic_profiles_aria: Academic profiles
76
+ academic_profiles_title: Academic profiles
77
+ academic_affiliation: "Affiliation: {{affiliation}}"
78
+ languages_aria: Available site languages
79
+ languages_title: Site languages
80
+ navigation:
81
+ primary_label: Primary navigation
82
+ description_default: "{{section}} resources"
83
+ header:
84
+ blog:
85
+ title: Blog
86
+ description: Tutorials, walkthroughs, and code-along guides
87
+ research:
88
+ title: Research
89
+ description: Papers, replication studies, and documentation
90
+ projects:
91
+ title: Projects
92
+ description: Interactive case studies with GitHub integration
93
+ datasets:
94
+ title: Datasets
95
+ description: Curated data sources with licensing metadata
96
+ visualizations:
97
+ title: Visualizations
98
+ description: Plotly, D3, and Observable notebooks
99
+ academic:
100
+ title: Academic Ops
101
+ description: Citation metrics, submissions, and collaboration hub
102
+ about:
103
+ title: About
104
+ description: Research profile, credentials, and contact
105
+ quick_links:
106
+ getting_started: Getting started with the DataLog workflow
107
+ publish_notebook: Publish a Jupyter notebook as a post
108
+ predictive_modeling: Explore predictive modeling projects
109
+ research_checklist: Research methodology checklist
110
+ submission_tracker: Track conference submissions
111
+ footer:
112
+ privacy: Privacy
113
+ accessibility: Accessibility
114
+ tutorials: Tutorials index
115
+ archive: Archive by topic
116
+ contact: Contact
117
+ content:
118
+ research_areas:
119
+ title: Research areas
120
+ machine_learning:
121
+ label: Machine Learning
122
+ description: Supervised, unsupervised, and deep learning case studies
123
+ statistics:
124
+ label: Statistics
125
+ description: Experimental design, inference, and hypothesis testing
126
+ visualization:
127
+ label: Data Visualization
128
+ description: Storytelling dashboards and narrative graphics
129
+ reproducibility:
130
+ label: Reproducibility
131
+ description: Open science workflows and methodology best practices
132
+ methodologies:
133
+ title: Methodologies
134
+ experimental_design: Experimental design
135
+ bayesian: Bayesian modeling
136
+ eda: Exploratory data analysis
137
+ causal_inference: Causal inference
138
+ languages:
139
+ title: Programming Languages
140
+ items:
141
+ python: Python
142
+ r: R
143
+ sql: SQL
144
+ julia: Julia
145
+ javascript: JavaScript
146
+ home:
147
+ latest_research: Latest Research Notes
148
+ reading_time_one: 1 min read
149
+ reading_time_many: "{{minutes}} mins read"
150
+ read_post: "Read {{title}}"
151
+ read_more: Read more
152
+ featured_projects: Featured Projects
153
+ view_project: View project
154
+ article:
155
+ meta:
156
+ published: Published
157
+ updated: Updated
158
+ author: Author
159
+ post:
160
+ provenance:
161
+ heading: Author and editorial note
162
+ why: Why this exists
163
+ evidence: Evidence used
164
+ method: Method
165
+ reviewed: Reviewed
166
+ article_information: Article information
167
+ meta:
168
+ published: Published
169
+ author: Author
170
+ reading_time: Reading time
171
+ difficulty: Difficulty
172
+ runtime: Runtime
173
+ notebook: Notebook
174
+ reading_time:
175
+ one: 1 min read
176
+ many: "{{minutes}} mins read"
177
+ difficulty_default: Intermediate
178
+ toc_heading: On this page
179
+ notebook:
180
+ open_external: Open Jupyter Notebook
181
+ download: Download Jupyter Notebook
182
+ topics_heading: Topics
183
+ share:
184
+ label: Share this article
185
+ twitter: Share on X (Twitter)
186
+ linkedin: Share on LinkedIn
187
+ reddit: Discuss on Reddit
188
+ interactive:
189
+ label: Interactive resources
190
+ launch: Launch demo
191
+ guidance: "Embed interactive plots, widgets, and demos using <code>&lt;figure&gt;</code>, <code>&lt;iframe&gt;</code>, or <code>&lt;div class=\"interactive-embed\"&gt;</code> containers. Ensure each embed includes descriptive captions for accessibility."
192
+ slides:
193
+ label: Presentation deck
194
+ bibliography:
195
+ label: References
196
+ comments:
197
+ label: Discussion
198
+ cta: Share feedback or ask a question below.
199
+ dataset:
200
+ last_updated: "Last updated:"
201
+ license: "License:"
202
+ download: Download dataset
203
+ schema_title: Data Schema
204
+ schema:
205
+ field: Field
206
+ description: Description
207
+ type: Type
208
+ notebook:
209
+ label: Interactive Notebook
210
+ meta:
211
+ published: "Published:"
212
+ updated: "Last updated:"
213
+ executed: "Executed:"
214
+ kernel: "Kernel:"
215
+ language: "Language:"
216
+ difficulty: "Difficulty:"
217
+ runtime: "Runtime:"
218
+ actions:
219
+ download: Download .ipynb
220
+ launch_binder: Launch in Binder
221
+ open_colab: Open in Colab
222
+ academic_dashboard:
223
+ header:
224
+ title: Academic integration hub
225
+ description: Monitor publication metrics, synchronize academic profiles, and coordinate submissions, funding, and mentorship opportunities.
226
+ profiles:
227
+ title: Academic profiles & synchronization
228
+ view_profile: View profile
229
+ user_id: User ID
230
+ total_citations: Total citations
231
+ h_index: h-index
232
+ i10_index: i10-index
233
+ sync_scope: Sync scope
234
+ last_synced: Last synced
235
+ featured_projects: Featured projects
236
+ collections: Collections
237
+ auto_update: Auto update
238
+ citations:
239
+ title: Citation metrics
240
+ total: Total citations
241
+ h_index: h-index
242
+ i10_index: i10-index
243
+ since_title: "Since {{period}}"
244
+ total_label: "Total:"
245
+ h_index_label: "h-index:"
246
+ i10_index_label: "i10-index:"
247
+ per_publication: Per-publication snapshot
248
+ updated: "Updated {{date}}"
249
+ timeline: Citations by year
250
+ bibliography:
251
+ title: Automatic bibliography
252
+ description: Download or copy the combined bibliography generated from synced BibTeX files.
253
+ copy: Copy bibliography
254
+ download: "Download {{format}}"
255
+ submissions:
256
+ title: Conference & journal submissions
257
+ description: Track manuscript status, collaborators, and upcoming deadlines.
258
+ filter_label: Filter by status
259
+ all_statuses: All statuses
260
+ deadline: Deadline
261
+ status: Status
262
+ submitted: Submitted
263
+ collaborators: Collaborators
264
+ workflow:
265
+ title: Peer review & collaboration workflow
266
+ peer_review:
267
+ aria_label: Peer review assignments
268
+ title: Peer review assignments
269
+ status_label: "Status:"
270
+ dates: "Assigned {{assigned}} · Due {{due}}"
271
+ collaborations:
272
+ aria_label: Collaboration initiatives
273
+ title: Collaboration initiatives
274
+ contact: "Contact:"
275
+ calendar:
276
+ title: Academic calendar
277
+ filter_label: Show events for
278
+ all_types: All event types
279
+ starts: Starts
280
+ ends: Ends
281
+ submission_deadline: Submission deadline
282
+ funding:
283
+ title: Grant & funding activity
284
+ amount: Amount
285
+ status: Status
286
+ decision_deadline: Decision / deadline
287
+ opportunities:
288
+ title: Collaboration opportunities
289
+ mentorship:
290
+ title: Mentorship programs
291
+ offering: Offering
292
+ cohorts: Cohorts
293
+ schedule: Schedule
294
+ application_deadline: Application deadline
295
+ networking:
296
+ title: Academic networking channels
297
+ communities: Communities
298
+ mentorship_channels: Mentorship channels
299
+ citation_tools:
300
+ heading: How to cite
301
+ summary: Use the quick export buttons to save citations for reference managers or copy the formatted text directly.
302
+ copy: Copy
303
+ formats:
304
+ bibtex: BibTeX
305
+ ris: RIS
306
+ endnote: EndNote
307
+ aria:
308
+ bibtex: BibTeX entry
309
+ ris: RIS entry
310
+ endnote: EndNote entry
311
+ open_science_badges:
312
+ title: Open science & reproducibility badges
313
+ description: These badges highlight the transparency practices applied to this work. Hover or focus on each badge to learn more about the criteria.
314
+ visualization_card:
315
+ version: Version
316
+ updated: Updated
317
+ source: Source
318
+ view_repository: View repository
319
+ open_demo: Open live demo
320
+ download_snapshot: Download snapshot
321
+ project:
322
+ header:
323
+ eyebrow: Project Showcase
324
+ key_technologies: Key Technologies
325
+ github_repository: GitHub Repository
326
+ github:
327
+ stats:
328
+ stars: Stars
329
+ forks: Forks
330
+ open_issues: Open Issues
331
+ primary_language: Primary Language
332
+ unavailable: N/A
333
+ demo:
334
+ title: Live Demo & Visualizations
335
+ launch: Launch Interactive Demo
336
+ sections:
337
+ problem_statement: Problem Statement
338
+ solution_approach: Solution Approach
339
+ results_findings: Results & Findings
340
+ challenges: Challenges & Lessons Learned
341
+ datasets_sources: Datasets & Sources
342
+ model_performance: Model Performance
343
+ future_work: Future Work & Improvements
344
+ collaboration_contributions: Collaboration & Contributions
345
+ read_guidelines: Read Contribution Guidelines
346
+ related_projects: Related Projects
347
+ similar_work: Similar Work & References
348
+ metrics:
349
+ aria_label: Project metrics
350
+ footer:
351
+ last_updated: "Last updated:"
352
+ view_source: View source on GitHub
353
+ tags_label: Notebook tags
354
+ sidebar_label: Notebook details
355
+ sidebar:
356
+ overview: Notebook overview
357
+ code_cells: code cells
358
+ markdown_cells: markdown cells
359
+ error_outputs: error outputs
360
+ execution: Execution metadata
361
+ kernel: Kernel
362
+ not_specified: Not specified
363
+ language: Language
364
+ na: N/A
365
+ file: File
366
+ branch: Branch
367
+ runtime: Runtime
368
+ run_online: Run online
369
+ launch_binder: Launch interactive session on Binder
370
+ open_colab: Open notebook in Google Colab
371
+ version_history: Version history
372
+ last_commit: "Last commit {{commit}}."
373
+ view_latest: View latest revision
374
+ footer:
375
+ heading: Site footer
376
+ about_title: "About {{site}}"
377
+ orcid_label: "ORCID: {{id}}"
378
+ citation_notice: "© {{year}} {{author}}. Cite responsibly when reusing analyses and materials."
379
+ stay_connected: Stay connected
380
+ follow_default: Follow along on Twitter, LinkedIn, GitHub, and Kaggle for release announcements.
381
+ professional_profiles: Professional profiles
382
+ explore_content: Explore content
383
+ research_areas: Research areas
384
+ methodologies: Methodologies
385
+ languages_frameworks: Languages & frameworks
386
+ subscribe_title: Subscribe for updates
387
+ subscribe_description: Get notified about new tutorials, research summaries, datasets, and reproducible notebooks.
388
+ newsletter_label: Email address
389
+ newsletter_placeholder: your.email@example.com
390
+ newsletter_button: Join newsletter
391
+ newsletter_privacy: We respect your inbox. Unsubscribe anytime.
392
+ rss_feeds: RSS feeds
393
+ collaborate_title: Collaborate
394
+ collaborate_description: Interested in research collaborations, peer review, or guest tutorials?
395
+ professional_inquiries: "Professional inquiries: {{email}}"
396
+ contribute_github: Contribute on GitHub
397
+ open_source_title: Open source
398
+ open_source_description: We welcome issues, pull requests, and discussion around reproducibility and ethical data science.
399
+ view_source: View source on GitHub
400
+ open_issues: Open issues & discussions
401
+ contribution_guidelines: Contribution guidelines
402
+ request_guidelines: Request access to contribution guidelines
403
+ community_resources: Community resources
404
+ academic_integrity: Academic integrity
405
+ open_science_title: Commitment to open science
406
+ open_science_default: Every project highlights datasets, computational environments, and validation metrics to encourage transparent, reproducible research.
407
+ open_science_support: Version-controlled notebooks and containerized workflows are shared whenever feasible to streamline replication efforts.
408
+ analytics:
409
+ dashboard:
410
+ title: Analytics overview
411
+ description: "Insights powered by Google Analytics 4, refreshed every 24 hours."
412
+ disabled: "Connect Google Analytics 4 to populate this dashboard. Cached results are reused for 24 hours."
413
+ last_updated: Last updated
414
+ last_updated_unknown: "Last updated: pending"
415
+ cache_window: Data cached for 24 hours
416
+ top_posts: Top posts
417
+ search_terms: Search queries
418
+ visitor_trends: Visitor trends
419
+ engagement: Engagement by post
420
+ events: Notebook & demo events
421
+ scholar: Google Scholar
422
+ scholar_total: Total citations
423
+ scholar_trend: Citations by year
424
+ monthly_reports: Monthly reports
425
+ loading: Loading analytics…
426
+ no_results: No data available
427
+ no_searches: No search queries recorded
428
+ no_reports: No monthly reports available
429
+ table:
430
+ post: Post
431
+ views: Views
432
+ engagement: Engagement (s)
433
+ query: Query
434
+ sessions: Sessions
435
+ month: Month
436
+ users: Users
437
+ new_users: New users
438
+ page_views: Page views