Skip to content

Latest commit

 

History

History
212 lines (196 loc) · 9 KB

File metadata and controls

212 lines (196 loc) · 9 KB
layout default
title Wiki Catalog
permalink /wiki/

{% assign pages = site.wiki | sort_natural: "title" %}

{%- comment -%} Count public wiki topics for the catalog header {%- endcomment -%} {% assign c_total = 0 %} {% assign c_topic_hub = 0 %} {% assign c_guide = 0 %} {% assign c_comparison = 0 %} {% assign c_roadmap = 0 %} {% assign c_transition = 0 %} {% assign c_howto = 0 %} {%- for item in pages -%} {%- unless item.redirect_to -%} {% assign c_total = c_total | plus: 1 %} {%- if item.tags and item.tags.size > 0 -%} {%- if item.tags contains "guide" -%} {% assign c_guide = c_guide | plus: 1 %} {%- endif -%} {%- if item.tags contains "comparison" -%} {% assign c_comparison = c_comparison | plus: 1 %} {%- endif -%} {%- if item.tags contains "roadmap" -%} {% assign c_roadmap = c_roadmap | plus: 1 %} {%- endif -%} {%- if item.tags contains "transition" -%} {% assign c_transition = c_transition | plus: 1 %} {%- endif -%} {%- if item.tags contains "how-to" -%} {% assign c_howto = c_howto | plus: 1 %} {%- endif -%} {%- else -%} {% assign c_topic_hub = c_topic_hub | plus: 1 %} {%- endif -%} {%- endunless -%} {%- endfor -%}

Home

Wiki Catalog {{ c_total }} pages

Browse topic hubs, guides, comparisons, roadmaps, transitions, and how-tos.

{% if c_total > 0 %}

Topic Hubs{{ c_topic_hub }} Guides{{ c_guide }} Comparisons{{ c_comparison }} Roadmaps{{ c_roadmap }} Transitions{{ c_transition }} How-tos{{ c_howto }}

Topic Hubs {{ c_topic_hub }}

Core concepts and roles synthesized from podcast discussions.

{%- for item in pages -%} {%- unless item.redirect_to -%} {%- unless item.tags and item.tags.size > 0 -%} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {%- endunless -%} {%- endunless -%} {%- endfor -%}

Guides {{ c_guide }}

Practical pages for choosing tools, framing work, and applying interview patterns.

{%- for item in pages -%} {%- unless item.redirect_to -%} {%- if item.tags contains "guide" -%} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {%- endif -%} {%- endunless -%} {%- endfor -%}

Comparisons {{ c_comparison }}

Side-by-side tradeoffs across roles, platforms, and engineering choices.

{%- for item in pages -%} {%- unless item.redirect_to -%} {%- if item.tags contains "comparison" -%} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {%- endif -%} {%- endunless -%} {%- endfor -%}

Roadmaps {{ c_roadmap }}

Learning paths and role paths for data, ML, MLOps, and AI engineering work.

{%- for item in pages -%} {%- unless item.redirect_to -%} {%- if item.tags contains "roadmap" -%} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {%- endif -%} {%- endunless -%} {%- endfor -%}

Transitions {{ c_transition }}

Career-change paths between backgrounds, data roles, and AI roles.

{%- for item in pages -%} {%- unless item.redirect_to -%} {%- if item.tags contains "transition" -%} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {%- endif -%} {%- endunless -%} {%- endfor -%}

Procedural Guides {{ c_howto }}

Procedural pages for building, setting up, and operating data and AI systems.

{%- for item in pages -%} {%- unless item.redirect_to -%} {%- if item.tags contains "how-to" -%} {{ item.title }} {% if item.summary %}{{ item.summary }}{% endif %} {%- endif -%} {%- endunless -%} {%- endfor -%}

All Pages

Clear

Showing {{ c_total }} of {{ c_total }} pages

{% assign current_letter = "__none__" %} {%- for item in pages -%} {%- unless item.redirect_to -%} {%- assign L = item.title | slice: 0 | upcase -%} {%- if L != current_letter -%} {%- unless current_letter == "__none__" -%}
{%- endunless -%}

{{ L }}

No pages match your filter. Try a different keyword.

<script src="{{ '/assets/wiki-catalog.js' | relative_url }}"></script>

{% else %}

Wiki pages are being drafted from the archive analysis.

{% endif %}