sync code#24
Conversation
[WIP] Fix build errors in Jekyll process
|
@copilot solve this problem Error: Logging at level: debug Configuration file: /github/workspace/./_config.yml Theme: jekyll-theme-cayman Theme source: /usr/local/bundle/gems/jekyll-theme-cayman-0.2.0 GitHub Pages: github-pages v232 GitHub Pages: jekyll v3.10.0 Theme: jekyll-theme-cayman Theme source: /usr/local/bundle/gems/jekyll-theme-cayman-0.2.0 Requiring: jekyll-seo-tag Requiring: jekyll-coffeescript Requiring: jekyll-commonmark-ghpages Requiring: jekyll-gist Requiring: jekyll-github-metadata Requiring: jekyll-paginate Requiring: jekyll-relative-links Requiring: jekyll-optional-front-matter Requiring: jekyll-readme-index Requiring: jekyll-default-layout Requiring: jekyll-titles-from-headings GitHub Metadata: Initializing... Source: /github/workspace/. Destination: /github/workspace/./_site Incremental build: disabled. Enable with --incremental Generating... Generating: JekyllOptionalFrontMatter::Generator finished in 0.055494624 seconds. Generating: JekyllReadmeIndex::Generator finished in 0.100595113 seconds. Generating: Jekyll::Paginate::Pagination finished in 1.085e-05 seconds. GitHub Metadata: Generating for MarsonShine/Books GitHub Metadata: Calling @client.pages("MarsonShine/Books", {}) Generating: JekyllRelativeLinks::Generator finished in 3.49199876 seconds. Generating: JekyllDefaultLayout::Generator finished in 0.004004735 seconds. Requiring: kramdown-parser-gfm Generating: JekyllTitlesFromHeadings::Generator finished in 0.10135 seconds. Rendering: assets/css/style.scss Pre-Render Hooks: assets/css/style.scss Rendering Markup: assets/css/style.scss Rendering: AI-LLMs/Brex's Prompt Engineering Guide.md Pre-Render Hooks: AI-LLMs/Brex's Prompt Engineering Guide.md Rendering Markup: AI-LLMs/Brex's Prompt Engineering Guide.md Rendering Layout: AI-LLMs/Brex's Prompt Engineering Guide.md Layout source: theme GitHub Metadata: Calling @client.repository("MarsonShine/Books", {:accept=>"application/vnd.github.drax-preview+json"}) Rendering: AI-LLMs/KnowledgeDistillation-In-DeepSeek-R1.md Pre-Render Hooks: AI-LLMs/KnowledgeDistillation-In-DeepSeek-R1.md Rendering Markup: AI-LLMs/KnowledgeDistillation-In-DeepSeek-R1.md Rendering Layout: AI-LLMs/KnowledgeDistillation-In-DeepSeek-R1.md Layout source: theme Rendering: AI-LLMs/LLM-Theory-Practice.md Pre-Render Hooks: AI-LLMs/LLM-Theory-Practice.md Rendering Markup: AI-LLMs/LLM-Theory-Practice.md Rendering Layout: AI-LLMs/LLM-Theory-Practice.md Layout source: theme Rendering: AI-LLMs/Model-Context-Protocol.md Pre-Render Hooks: AI-LLMs/Model-Context-Protocol.md Rendering Markup: AI-LLMs/Model-Context-Protocol.md Rendering Layout: AI-LLMs/Model-Context-Protocol.md Layout source: theme Rendering: AI-LLMs/RAG.md Pre-Render Hooks: AI-LLMs/RAG.md Rendering Markup: AI-LLMs/RAG.md Rendering Layout: AI-LLMs/RAG.md Layout source: theme Rendering: AI-LLMs/agent-skills/What-are-skills.md Pre-Render Hooks: AI-LLMs/agent-skills/What-are-skills.md Rendering Markup: AI-LLMs/agent-skills/What-are-skills.md Rendering Layout: AI-LLMs/agent-skills/What-are-skills.md Layout source: theme Rendering: AI-LLMs/papers/Finetuned-Language-Models-Are-Zero-Shot-Learners.md Pre-Render Hooks: AI-LLMs/papers/Finetuned-Language-Models-Are-Zero-Shot-Learners.md Rendering Markup: AI-LLMs/papers/Finetuned-Language-Models-Are-Zero-Shot-Learners.md Rendering Layout: AI-LLMs/papers/Finetuned-Language-Models-Are-Zero-Shot-Learners.md Layout source: theme Rendering: AI-LLMs/papers/Native-Sparse-Attention-Hardware-Aligned-And-Natively-Trainable-Sparse-Attention.md Pre-Render Hooks: AI-LLMs/papers/Native-Sparse-Attention-Hardware-Aligned-And-Natively-Trainable-Sparse-Attention.md Rendering Markup: AI-LLMs/papers/Native-Sparse-Attention-Hardware-Aligned-And-Natively-Trainable-Sparse-Attention.md Rendering Layout: AI-LLMs/papers/Native-Sparse-Attention-Hardware-Aligned-And-Natively-Trainable-Sparse-Attention.md Layout source: theme Rendering: Agentic-Design-Patterns/12-Chapter-12-ExceptionHandling-and-Recovery.md Pre-Render Hooks: Agentic-Design-Patterns/12-Chapter-12-ExceptionHandling-and-Recovery.md Rendering Markup: Agentic-Design-Patterns/12-Chapter |
|
@MarsonShine I've opened a new pull request, #25, to work on those changes. Once the pull request is ready, I'll request review from you. |
There was a problem hiding this comment.
Pull request overview
This PR syncs in a large set of new sample code and translated technical documentation across multiple subprojects (data structures chapters, .NET runtime docs, and C# language version demos).
Changes:
- Added LINQPad programs for chapters 8–10 and multiple C# console/sample projects for chapters 2/3/6.
- Added/updated substantial Chinese technical documentation (CoreCLR design docs and “Agentic Design Patterns”).
- Added C# guide samples including a Minimal API OpenAPI demo and a C# “14.0” language feature demo.
Reviewed changes
Copilot reviewed 49 out of 174 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 9/chapter9.linq | Adds pretty-printing “Doc” model and expression AST/visitor samples. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 8/chapter8.linq | Adds immutable graph coloring + sudoku graph construction sample. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/chapter 6.sln | Adds Visual Studio solution for chapter 6 samples. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/chapter 6.csproj | Adds chapter 6 C# project configuration. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/Program.cs | Adds entry point invoking chapter 6 sample code. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/Permutations.cs | Adds permutations algorithms + extension helpers. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/Extensions.cs | Adds string-join helper extensions used by samples. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/Deque.cs | Adds deque implementation used by combinations samples. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 6/Combinations.cs | Adds combinations algorithms + demo driver. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 3/chapter 3.sln | Adds Visual Studio solution for chapter 3 samples. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 3/chapter 3.csproj | Adds chapter 3 C# project configuration. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 3/Program.cs | Adds chapter 3 demo program using deque. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 3/IDeque.cs | Adds deque interface for chapter 3 project. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 3/Extensions.cs | Adds deque extensions for chapter 3. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 3/Deque.cs | Adds chapter 3 deque implementation. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/chapter 2.sln | Adds Visual Studio solution for chapter 2 samples. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/chapter 2.csproj | Adds chapter 2 C# project configuration. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/UndoRedoQueue.cs | Adds undo/redo queue sample wrapper. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/UndoRedo.cs | Adds generic undo/redo state container. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/Queue.cs | Adds mutable queue wrapper around immutable queue. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/Program.cs | Adds chapter 2 demo program. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/ImQueue.cs | Adds immutable queue implementation + sample. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/IImStack.cs | Adds immutable stack implementation. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/HughesList.cs | Adds Hughes list sample and implementation. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/Extensions.cs | Adds helper extensions (Bracket/Comma, stack ops). |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 2/Covariance.cs | Adds covariant stack example. |
| Fabulous-Adventures-In-Data-Structures/sourcecode/chapter 10/chapter10.linq | Adds unification / substitution demo types + samples. |
| Fabulous-Adventures-In-Data-Structures/01-Starting-a-fabulous-adventure.md | Adds translated Chapter 1 content. |
| DotNet-Runtime-Book/docs/design/coreclr/specs/runtime-async_cn.md | Adds Chinese translation of runtime-async spec draft. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/xplat-minidump-generation_cn.md | Adds Chinese translation of createdump/minidump design. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/vectors-and-intrinsics_cn.md | Adds Chinese translation of intrinsics/vector design doc. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/stackwalking_cn.md | Adds Chinese translation of stackwalking design doc. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/runtime-async-codegen_cn.md | Adds Chinese translation of runtime-async codegen doc. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/profilability_cn.md | Adds Chinese translation of profiling/profilability doc. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/mixed-mode_cn.md | Adds Chinese translation of mixed-mode assemblies doc. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/method-descriptor_cn.md | Adds Chinese translation of MethodDesc design doc. |
| DotNet-Runtime-Book/docs/design/coreclr/botr/garbage-collection_cn.md | Adds Chinese translation of GC design doc. |
| CSharpGuide/LanguageVersions/9.0/openapi/openapi.sln | Adds VS solution for OpenAPI minimal API sample. |
| CSharpGuide/LanguageVersions/9.0/openapi/openapi.http | Adds HTTP scratch file for testing the endpoint. |
| CSharpGuide/LanguageVersions/9.0/openapi/openapi.csproj | Adds ASP.NET Core minimal API project config + OpenAPI package. |
| CSharpGuide/LanguageVersions/9.0/openapi/appsettings.json | Adds app config for OpenAPI sample. |
| CSharpGuide/LanguageVersions/9.0/openapi/appsettings.Development.json | Adds dev logging config for sample. |
| CSharpGuide/LanguageVersions/9.0/openapi/Properties/launchSettings.json | Adds launch settings for sample. |
| CSharpGuide/LanguageVersions/9.0/openapi/Program.cs | Adds minimal API sample with OpenAPI metadata. |
| CSharpGuide/LanguageVersions/14.0/User.cs | Adds C# “field” property backing sample. |
| CSharpGuide/LanguageVersions/14.0/Program.cs | Adds demo program for extensions/operators. |
| CSharpGuide/LanguageVersions/14.0/Extensions.cs | Adds extension members/operators demo. |
| CSharpGuide/LanguageVersions/14.0/14.0.sln | Adds VS solution for C# 14 demo. |
| CSharpGuide/LanguageVersions/14.0/14.0.csproj | Adds project config targeting net10 + LangVersion 14.0. |
| Agentic-Design-Patterns/README.md | Adds pointer README for translated content. |
| Agentic-Design-Patterns/Appendix G - Code-Agent.md | Adds appendix text about coding agents and workflows. |
| Agentic-Design-Patterns/Appendix B- AIAgentic-interactions.md | Adds appendix text about agent-computer/environment interaction. |
| Agentic-Design-Patterns/15-Chapter-09-Learning-and-Adaptation.md | Adds chapter on learning/adaptation patterns and examples. |
| Agentic-Design-Patterns/12-Chapter-12-ExceptionHandling-and-Recovery.md | Adds chapter on exception handling/recovery pattern. |
| AI-LLMs/agent-skills/What-are-skills.md | Adds Agent Skills spec + integration guidance (Chinese). |
| .github/skills/translate-tech-en-zh/SKILL.md | Adds a translation skill description file. |
| .github/agents/translator.agent.md | Adds a translator agent definition. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| | name | description | | ||
| | -------------------- | ------------------------------------------------------------ | | ||
| | translate-tech-en-zh | Translate English technical articles into idiomatic Chinese. Use this skill when the user asks to translate English content to Chinese (e.g., “翻译这段英文/把这篇英文文章翻译成中文/translate to Chinese”). Output ONLY the Chinese translation, preserving the original structure. Keep code blocks complete and fenced with proper Markdown for syntax highlighting. | |
Merge pull request #24 from MarsonShine/master
No description provided.