Skip to content

Latest commit

 

History

History
114 lines (110 loc) · 4.59 KB

File metadata and controls

114 lines (110 loc) · 4.59 KB
permalink /tech-blog/
title Tech Blog
author_profile true

Renyuan's Engineering Field Notes

A card-based map of coding agents, LLM routing, serving systems, CUDA/Triton kernels, and transformer foundations. Every date in Renyuan_Log.md is represented below.

53 log days 20 deep dives 20 concepts 5 series
Deep Dives Concept Map Full Log Map Original Archive

Curated Posts

Deep Dives

Longer articles distilled from multiple related log dates.

{% for post in site.posts %} {% if post.categories contains "tech-blog" %} {{ post.series }}

{{ post.date | date: "%Y-%m-%d" }} · {{ post.priority }}

{{ post.excerpt | strip_html }}

{% for tag in post.tags limit: 4 %} {{ tag }} {% endfor %}
{% endif %} {% endfor %}

Supplement

Concept Map

Short explanations added to fill gaps where the raw log only had keywords, links, or partial notes.

{% for item in site.data.tech_concepts %}

{{ item.area }}

{{ item.concept }}

{{ item.summary }}

{% endfor %}

Complete Coverage

Full Log Map

Each card corresponds to one dated section in Renyuan_Log.md. Timeline-only cards preserve context without forcing weak notes into articles.

{% for item in site.data.tech_log %} {% assign post_coverage_url = "" %} {% for coverage in site.data.post_source_coverage %} {% for entry in coverage.entries %} {% if entry.source == item.date and post_coverage_url == "" %} {% assign post_coverage_url = entry.url %} {% endif %} {% endfor %} {% endfor %}

{{ item.date }} · {{ item.series }} · {{ item.status }}

{{ item.title }}

{{ item.summary }}

{% for concept in item.concepts %} {{ concept }} {% endfor %}

Open original section {% if post_coverage_url != "" %} · Open covered post section {% endif %}

{% endfor %}