<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>HOPPINAI</title><description>hoppin的AI网站</description><link>https://hoppinzq.com/hoppinai/</link><language>zh_CN</language><item><title>微软已经把MCP当成下一个HTTP</title><link>https://hoppinzq.com/hoppinai/posts/ms_mcp/ms_mcp/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/ms_mcp/ms_mcp/</guid><description>微软在Build大会上宣布将MCP协议原生集成至Windows系统，使AI Agent成为操作系统核心组件，实现自动化任务处理和人机协同新范式，推动操作系统向智能体主导时代演进。</description><pubDate>Mon, 01 Sep 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;在一年一度的微软Build大会上，他们发布了一个重磅更新：&lt;strong&gt;MCP正式原生集成进Windows&lt;/strong&gt;。&lt;/p&gt;
&lt;p&gt;微软之所以拥抱MCP，是因为他们想让AI Agent成为操作系统工作负载的一部分，成为用户与设备和应用持续互动的一种方式。&lt;/p&gt;
&lt;p&gt;为此，微软不仅全面支持MCP，还推出了所谓的&lt;code&gt;Agentic Web&lt;/code&gt;计划。在这个设想中，AI Agent不再只是一个外挂工具，而是像浏览器、任务栏一样，成为系统级原生角色。&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Agentic Web&lt;/code&gt;是微软这次发布会上新提出的概念，这种模式下，用户可以让Agent代表自己在互联网上完成各种任务，比如查找信息、预订服务等，而不是自己手动操作。这样，网络不再只是人和信息的连接，而是Agent之间的自动协作。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;微软对MCP协议非常重视，他们CTO将MCP比作1990年代的 HTTP。&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;为了让MCP真正落地，微软给Windows引入了MCP的“注册表”机制，用来管理和调度MCP服务器。Agent可以通过这个注册表发现系统中的MCP服务，比如文件系统、窗口管理器、甚至是用户自研的MCP，然后发起调用。&lt;/p&gt;
&lt;p&gt;在演示期间，微软展示了如何利用MCP直接访问Windows文件系统的。用户无需再手动定位文档位置，只需一句话：“查找我文档夹里关于假期的文件”，AI就能完成搜索。这不仅省去了操作步骤，更让AI在桌面端的执行力真正具备“上下文感知”。&lt;/p&gt;
&lt;p&gt;可以预见，MCP会成为未来Windows上各种Agent工作流的连接器。比如在Excel中，AI可以以自动查询网页数据；在文件管理器中，AI可以帮你批量处理图像、文档或自动分类。&lt;/p&gt;
&lt;p&gt;这不仅让人看到了“自动化桌面“的可能，也意味着操作系统将迎来几十年来最大的一次范式转变：&lt;strong&gt;从“人操作电脑”，变成“人+Agent协同工作”。&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;我们正在进入一个全新的时代一一个AI智能体主导的新平台。而我们恰好站在这个转折点上，亲眼见证了像MCP、A2A这样的协议从零起步、逐步成熟，成为未来生态的基础设施。&lt;/p&gt;
&lt;p&gt;&lt;em&gt;（文章来源：AI总结）&lt;/em&gt;&lt;/p&gt;
</content:encoded></item><item><title>使用ollama在本地部署大模型</title><link>https://hoppinzq.com/hoppinai/posts/ollama/ollama/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/ollama/ollama/</guid><pubDate>Mon, 01 Sep 2025 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;Ollama 是一个开源的本地大语言模型运行框架，专为在本地机器上便捷部署和运行大模型（LLM）而设计。 Ollama 适用于开发者、研究人员以及对数据隐私有较高要求的用户，它可以帮助用户在本地环境中快速部署和运行大模型，同时提供灵活的定制化选项。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h1&gt;Ollama 安装&lt;/h1&gt;
&lt;p&gt;1.下载Ollama，官方下载地址：https://ollama.com/download&lt;/p&gt;
&lt;p&gt;2.下载完成后，使用&lt;code&gt;ollama --version&lt;/code&gt;验证是否安装成功。在终端中输入以下命令来启动Ollama：&lt;code&gt;ollama serve&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;3.Ollama用起来就跟Docker一样，一般是先查询可用的大模型，然后拉取大模型，最后运行大模型。也可以直接运行大模型，本地没有就去拉远程的，没有指定 :几b 就会拉取最新的:latest。&lt;/p&gt;
&lt;p&gt;4.查询可用的大模型，我们直接去官网看一下：https://ollama.com/search&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://hoppinzq.com/mcp/image/img_47.png&quot; alt=&quot;img&quot; /&gt;&lt;br /&gt;
5、执行&lt;code&gt;ollama run deepseek-r1:7b&lt;/code&gt;即可（拉取）运行对应的大模型。一般拉取大模型的时候前面快后面慢，可以在慢的时候使用&lt;code&gt;ctrl+c&lt;/code&gt;终止，再重新执行run即可。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://hoppinzq.com/mcp/image/img_46.png&quot; alt=&quot;img&quot; /&gt;&lt;/p&gt;
&lt;p&gt;6、在Cherry Studio里配置大模型后，你就可以继续往下学了。&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://hoppinzq.com/mcp/image/img_48.png&quot; alt=&quot;img&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://hoppinzq.com/mcp/image/img_49.png&quot; alt=&quot;img&quot; /&gt;&lt;/p&gt;
&lt;h1&gt;Ollama 官方中文文档&lt;/h1&gt;
&lt;h2&gt;API Docs&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;生成补全:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E6%B5%81%E5%BC%8F%E7%94%9F%E6%88%90%E8%AF%B7%E6%B1%82streaming-272428812e0.md&quot;&gt;流式生成请求（Streaming）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E9%9D%9E%E6%B5%81%E5%BC%8F%E7%94%9F%E6%88%90%E8%AF%B7%E6%B1%82no-streaming-272428813e0.md&quot;&gt;非流式生成请求（No Streaming）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%B8%A6%E5%90%8E%E7%BC%80%E7%9A%84%E7%94%9F%E6%88%90%E8%AF%B7%E6%B1%82with-suffix-272428814e0.md&quot;&gt;带后缀的生成请求（with Suffix）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%BB%93%E6%9E%84%E5%8C%96%E8%BE%93%E5%87%BA%E8%AF%B7%E6%B1%82structured-outputs-272428815e0.md&quot;&gt;结构化输出请求（Structured Outputs）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/json-%E6%A8%A1%E5%BC%8F%E8%AF%B7%E6%B1%82json-mode-272428816e0.md&quot;&gt;JSON 模式请求（JSON Mode）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%B8%A6%E5%9B%BE%E5%83%8F%E7%9A%84%E7%94%9F%E6%88%90%E8%AF%B7%E6%B1%82with-images-272428817e0.md&quot;&gt;带图像的生成请求（with Images）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8E%9F%E5%A7%8B%E6%A8%A1%E5%BC%8F%E8%AF%B7%E6%B1%82raw-mode-272428818e0.md&quot;&gt;原始模式请求（Raw Mode）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8F%AF%E5%A4%8D%E7%8E%B0%E8%BE%93%E5%87%BA%E8%AF%B7%E6%B1%82reproducible-outputs-272428819e0.md&quot;&gt;可复现输出请求（Reproducible Outputs）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8F%82%E6%95%B0%E5%8C%96%E7%94%9F%E6%88%90%E8%AF%B7%E6%B1%82with-options-272428820e0.md&quot;&gt;参数化生成请求（with Options）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8A%A0%E8%BD%BD%E6%A8%A1%E5%9E%8B-272428821e0.md&quot;&gt;加载模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8D%B8%E8%BD%BD%E6%A8%A1%E5%9E%8B-272428822e0.md&quot;&gt;卸载模型&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;生成对话补全:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E6%B5%81%E5%BC%8F%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82streaming-272428823e0.md&quot;&gt;流式对话请求（Streaming）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E9%9D%9E%E6%B5%81%E5%BC%8F%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82no-streaming-272428824e0.md&quot;&gt;非流式对话请求（No Streaming）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%BB%93%E6%9E%84%E5%8C%96%E8%BE%93%E5%87%BA%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82structured-outputs-272428825e0.md&quot;&gt;结构化输出对话请求（Structured Outputs）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%B8%A6%E5%8E%86%E5%8F%B2%E4%B8%8A%E4%B8%8B%E6%96%87%E7%9A%84%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82with-history-272428826e0.md&quot;&gt;带历史上下文的对话请求（With History）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%B8%A6%E5%9B%BE%E5%83%8F%E7%9A%84%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82with-images-272428827e0.md&quot;&gt;带图像的对话请求（with Images）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8F%AF%E5%A4%8D%E7%8E%B0%E8%BE%93%E5%87%BA%E7%9A%84%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82reproducible-outputs-272428828e0.md&quot;&gt;可复现输出的对话请求（Reproducible Outputs）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E6%94%AF%E6%8C%81%E5%B7%A5%E5%85%B7%E8%B0%83%E7%94%A8%E7%9A%84%E5%AF%B9%E8%AF%9D%E8%AF%B7%E6%B1%82with-tools-272428829e0.md&quot;&gt;支持工具调用的对话请求（with Tools）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8A%A0%E8%BD%BD%E6%A8%A1%E5%9E%8B-272428830e0.md&quot;&gt;加载模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%8D%B8%E8%BD%BD%E6%A8%A1%E5%9E%8B-272428831e0.md&quot;&gt;卸载模型&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;模型:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%88%9B%E5%BB%BA%E6%96%B0%E6%A8%A1%E5%9E%8B-272428832e0.md&quot;&gt;创建新模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E9%87%8F%E5%8C%96%E6%A8%A1%E5%9E%8B-272428833e0.md&quot;&gt;量化模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428836e0.md&quot;&gt;列出本地模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428837e0.md&quot;&gt;显示模型详情&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428838e0.md&quot;&gt;复制模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428839e0.md&quot;&gt;删除模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428840e0.md&quot;&gt;拉取模型&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428840e0.md&quot;&gt;列出运行中模型&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;向量:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428841e0.md&quot;&gt;生成嵌入向量&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E5%A4%9A%E8%BE%93%E5%85%A5%E8%AF%B7%E6%B1%82multiple-input-272428842e0.md&quot;&gt;生成嵌入向量（多输入请求）&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E7%A4%BA%E4%BE%8B-272428844e0.md&quot;&gt;生成单个嵌入向量&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;其他:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://s.apifox.cn/apidoc/docs-site/5439975/%E6%A6%82%E6%8B%AC-6247251m0.md&quot;&gt;版本信息&lt;/a&gt;:&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item><item><title>Markdown Extended Features</title><link>https://hoppinzq.com/hoppinai/posts/markdown-extended/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/markdown-extended/</guid><description>Read more about Markdown features in Fuwari</description><pubDate>Wed, 01 May 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;GitHub Repository Cards&lt;/h2&gt;
&lt;p&gt;You can add dynamic cards that link to GitHub repositories, on page load, the repository information is pulled from the GitHub API.&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;Fabrizz/MMM-OnSpotify&quot;}&lt;/p&gt;
&lt;p&gt;Create a GitHub repository card with the code &lt;code&gt;::github{repo=&quot;&amp;lt;owner&amp;gt;/&amp;lt;repo&amp;gt;&quot;}&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;::github{repo=&quot;saicaca/fuwari&quot;}
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Admonitions&lt;/h2&gt;
&lt;p&gt;Following types of admonitions are supported: &lt;code&gt;note&lt;/code&gt; &lt;code&gt;tip&lt;/code&gt; &lt;code&gt;important&lt;/code&gt; &lt;code&gt;warning&lt;/code&gt; &lt;code&gt;caution&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;:::note
Highlights information that users should take into account, even when skimming.
:::&lt;/p&gt;
&lt;p&gt;:::tip
Optional information to help a user be more successful.
:::&lt;/p&gt;
&lt;p&gt;:::important
Crucial information necessary for users to succeed.
:::&lt;/p&gt;
&lt;p&gt;:::warning
Critical content demanding immediate user attention due to potential risks.
:::&lt;/p&gt;
&lt;p&gt;:::caution
Negative potential consequences of an action.
:::&lt;/p&gt;
&lt;h3&gt;Basic Syntax&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;:::note
Highlights information that users should take into account, even when skimming.
:::

:::tip
Optional information to help a user be more successful.
:::
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Custom Titles&lt;/h3&gt;
&lt;p&gt;The title of the admonition can be customized.&lt;/p&gt;
&lt;p&gt;:::note[MY CUSTOM TITLE]
This is a note with a custom title.
:::&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;:::note[MY CUSTOM TITLE]
This is a note with a custom title.
:::
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;GitHub Syntax&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;[!TIP]
&lt;a href=&quot;https://github.com/orgs/community/discussions/16925&quot;&gt;The GitHub syntax&lt;/a&gt; is also supported.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;pre&gt;&lt;code&gt;&amp;gt; [!NOTE]
&amp;gt; The GitHub syntax is also supported.

&amp;gt; [!TIP]
&amp;gt; The GitHub syntax is also supported.
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Spoiler&lt;/h3&gt;
&lt;p&gt;You can add spoilers to your text. The text also supports &lt;strong&gt;Markdown&lt;/strong&gt; syntax.&lt;/p&gt;
&lt;p&gt;The content :spoiler[is hidden &lt;strong&gt;ayyy&lt;/strong&gt;]!&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;The content :spoiler[is hidden **ayyy**]!

&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Expressive Code Example</title><link>https://hoppinzq.com/hoppinai/posts/expressive-code/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/expressive-code/</guid><description>How code blocks look in Markdown using Expressive Code.</description><pubDate>Wed, 10 Apr 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here, we&apos;ll explore how code blocks look using &lt;a href=&quot;https://expressive-code.com/&quot;&gt;Expressive Code&lt;/a&gt;. The provided examples are based on the official documentation, which you can refer to for further details.&lt;/p&gt;
&lt;h2&gt;Expressive Code&lt;/h2&gt;
&lt;h3&gt;Syntax Highlighting&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://expressive-code.com/key-features/syntax-highlighting/&quot;&gt;Syntax Highlighting&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Regular syntax highlighting&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;console.log(&apos;This code is syntax highlighted!&apos;)
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Rendering ANSI escape sequences&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;ANSI colors:
- Regular: [31mRed[0m [32mGreen[0m [33mYellow[0m [34mBlue[0m [35mMagenta[0m [36mCyan[0m
- Bold:    [1;31mRed[0m [1;32mGreen[0m [1;33mYellow[0m [1;34mBlue[0m [1;35mMagenta[0m [1;36mCyan[0m
- Dimmed:  [2;31mRed[0m [2;32mGreen[0m [2;33mYellow[0m [2;34mBlue[0m [2;35mMagenta[0m [2;36mCyan[0m

256 colors (showing colors 160-177):
[38;5;160m160 [38;5;161m161 [38;5;162m162 [38;5;163m163 [38;5;164m164 [38;5;165m165[0m
[38;5;166m166 [38;5;167m167 [38;5;168m168 [38;5;169m169 [38;5;170m170 [38;5;171m171[0m
[38;5;172m172 [38;5;173m173 [38;5;174m174 [38;5;175m175 [38;5;176m176 [38;5;177m177[0m

Full RGB colors:
[38;2;34;139;34mForestGreen - RGB(34, 139, 34)[0m

Text formatting: [1mBold[0m [2mDimmed[0m [3mItalic[0m [4mUnderline[0m
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Editor &amp;amp; Terminal Frames&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://expressive-code.com/key-features/frames/&quot;&gt;Editor &amp;amp; Terminal Frames&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Code editor frames&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;console.log(&apos;Title attribute example&apos;)
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;!-- src/content/index.html --&amp;gt;
&amp;lt;div&amp;gt;File name comment example&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Terminal frames&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;echo &quot;This terminal frame has no title&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;Write-Output &quot;This one has a title!&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Overriding frame types&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;echo &quot;Look ma, no frame!&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;# Without overriding, this would be a terminal frame
function Watch-Tail { Get-Content -Tail 20 -Wait $args }
New-Alias tail Watch-Tail
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Text &amp;amp; Line Markers&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://expressive-code.com/key-features/text-markers/&quot;&gt;Text &amp;amp; Line Markers&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Marking full lines &amp;amp; line ranges&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;// Line 1 - targeted by line number
// Line 2
// Line 3
// Line 4 - targeted by line number
// Line 5
// Line 6
// Line 7 - targeted by range &quot;7-8&quot;
// Line 8 - targeted by range &quot;7-8&quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Selecting line marker types (mark, ins, del)&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;function demo() {
  console.log(&apos;this line is marked as deleted&apos;)
  // This line and the next one are marked as inserted
  console.log(&apos;this is the second inserted line&apos;)

  return &apos;this line uses the neutral default marker type&apos;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Adding labels to line markers&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;// labeled-line-markers.jsx
&amp;lt;button
  role=&quot;button&quot;
  {...props}
  value={value}
  className={buttonClassName}
  disabled={disabled}
  active={active}
&amp;gt;
  {children &amp;amp;&amp;amp;
    !active &amp;amp;&amp;amp;
    (typeof children === &apos;string&apos; ? &amp;lt;span&amp;gt;{children}&amp;lt;/span&amp;gt; : children)}
&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Adding long labels on their own lines&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;// labeled-line-markers.jsx
&amp;lt;button
  role=&quot;button&quot;
  {...props}

  value={value}
  className={buttonClassName}

  disabled={disabled}
  active={active}
&amp;gt;

  {children &amp;amp;&amp;amp;
    !active &amp;amp;&amp;amp;
    (typeof children === &apos;string&apos; ? &amp;lt;span&amp;gt;{children}&amp;lt;/span&amp;gt; : children)}
&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Using diff-like syntax&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;+this line will be marked as inserted
-this line will be marked as deleted
this is a regular line
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;--- a/README.md
+++ b/README.md
@@ -1,3 +1,4 @@
+this is an actual diff file
-all contents will remain unmodified
 no whitespace will be removed either
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Combining syntax highlighting with diff-like syntax&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;  function thisIsJavaScript() {
    // This entire block gets highlighted as JavaScript,
    // and we can still add diff markers to it!
-   console.log(&apos;Old code to be removed&apos;)
+   console.log(&apos;New and shiny code!&apos;)
  }
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Marking individual text inside lines&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;function demo() {
  // Mark any given text inside lines
  return &apos;Multiple matches of the given text are supported&apos;;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Regular expressions&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;console.log(&apos;The words yes and yep will be marked.&apos;)
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Escaping forward slashes&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;echo &quot;Test&quot; &amp;gt; /home/test.txt
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Selecting inline marker types (mark, ins, del)&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;function demo() {
  console.log(&apos;These are inserted and deleted marker types&apos;);
  // The return statement uses the default marker type
  return true;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Word Wrap&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://expressive-code.com/key-features/word-wrap/&quot;&gt;Word Wrap&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Configuring word wrap per block&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;// Example with wrap
function getLongString() {
  return &apos;This is a very long string that will most probably not fit into the available space unless the container is extremely wide&apos;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;// Example with wrap=false
function getLongString() {
  return &apos;This is a very long string that will most probably not fit into the available space unless the container is extremely wide&apos;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h4&gt;Configuring indentation of wrapped lines&lt;/h4&gt;
&lt;pre&gt;&lt;code&gt;// Example with preserveIndent (enabled by default)
function getLongString() {
  return &apos;This is a very long string that will most probably not fit into the available space unless the container is extremely wide&apos;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;// Example with preserveIndent=false
function getLongString() {
  return &apos;This is a very long string that will most probably not fit into the available space unless the container is extremely wide&apos;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Collapsible Sections&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://expressive-code.com/plugins/collapsible-sections/&quot;&gt;Collapsible Sections&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;// All this boilerplate setup code will be collapsed
import { someBoilerplateEngine } from &apos;@example/some-boilerplate&apos;
import { evenMoreBoilerplate } from &apos;@example/even-more-boilerplate&apos;

const engine = someBoilerplateEngine(evenMoreBoilerplate())

// This part of the code will be visible by default
engine.doSomething(1, 2, 3, calcFn)

function calcFn() {
  // You can have multiple collapsed sections
  const a = 1
  const b = 2
  const c = a + b

  // This will remain visible
  console.log(`Calculation result: ${a} + ${b} = ${c}`)
  return c
}

// All this code until the end of the block will be collapsed again
engine.closeConnection()
engine.freeMemory()
engine.shutdown({ reason: &apos;End of example boilerplate code&apos; })
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Line Numbers&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://expressive-code.com/plugins/line-numbers/&quot;&gt;Line Numbers&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Displaying line numbers per block&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;// This code block will show line numbers
console.log(&apos;Greetings from line 2!&apos;)
console.log(&apos;I am on line 3&apos;)
&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;pre&gt;&lt;code&gt;// Line numbers are disabled for this block
console.log(&apos;Hello?&apos;)
console.log(&apos;Sorry, do you know what line I am on?&apos;)
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Changing the starting line number&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;console.log(&apos;Greetings from line 5!&apos;)
console.log(&apos;I am on line 6&apos;)
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Simple Guides for Fuwari</title><link>https://hoppinzq.com/hoppinai/posts/guide/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/guide/</guid><description>How to use this blog template.</description><pubDate>Mon, 01 Apr 2024 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;Cover image source: &lt;a href=&quot;https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/208fc754-890d-4adb-9753-2c963332675d/width=2048/01651-1456859105-(colour_1.5),girl,_Blue,yellow,green,cyan,purple,red,pink,_best,8k,UHD,masterpiece,male%20focus,%201boy,gloves,%20ponytail,%20long%20hair,.jpeg&quot;&gt;Source&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This blog template is built with &lt;a href=&quot;https://astro.build/&quot;&gt;Astro&lt;/a&gt;. For the things that are not mentioned in this guide, you may find the answers in the &lt;a href=&quot;https://docs.astro.build/&quot;&gt;Astro Docs&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Front-matter of Posts&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;---
title: My First Blog Post
published: 2023-09-09
description: This is the first post of my new Astro blog.
image: ./cover.jpg
tags: [Foo, Bar]
category: Front-end
draft: false
---
&lt;/code&gt;&lt;/pre&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Attribute&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;title&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;The title of the post.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;published&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;The date the post was published.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;description&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;A short description of the post. Displayed on index page.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;image&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;The cover image path of the post.&amp;lt;br/&amp;gt;1. Start with &lt;code&gt;http://&lt;/code&gt; or &lt;code&gt;https://&lt;/code&gt;: Use web image&amp;lt;br/&amp;gt;2. Start with &lt;code&gt;/&lt;/code&gt;: For image in &lt;code&gt;public&lt;/code&gt; dir&amp;lt;br/&amp;gt;3. With none of the prefixes: Relative to the markdown file&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;tags&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;The tags of the post.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;category&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;The category of the post.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;draft&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;If this post is still a draft, which won&apos;t be displayed.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;Where to Place the Post Files&lt;/h2&gt;
&lt;p&gt;Your post files should be placed in &lt;code&gt;src/content/posts/&lt;/code&gt; directory. You can also create sub-directories to better organize your posts and assets.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;src/content/posts/
├── post-1.md
└── post-2/
    ├── cover.png
    └── index.md
&lt;/code&gt;&lt;/pre&gt;
</content:encoded></item><item><title>Markdown Example</title><link>https://hoppinzq.com/hoppinai/posts/markdown/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/markdown/</guid><description>A simple example of a Markdown blog post.</description><pubDate>Sun, 01 Oct 2023 00:00:00 GMT</pubDate><content:encoded>&lt;h1&gt;An h1 header&lt;/h1&gt;
&lt;p&gt;Paragraphs are separated by a blank line.&lt;/p&gt;
&lt;p&gt;2nd paragraph. &lt;em&gt;Italic&lt;/em&gt;, &lt;strong&gt;bold&lt;/strong&gt;, and &lt;code&gt;monospace&lt;/code&gt;. Itemized lists
look like:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;this one&lt;/li&gt;
&lt;li&gt;that one&lt;/li&gt;
&lt;li&gt;the other one&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Note that --- not considering the asterisk --- the actual text
content starts at 4-columns in.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Block quotes are
written like so.&lt;/p&gt;
&lt;p&gt;They can span multiple paragraphs,
if you like.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., &quot;it&apos;s all
in chapters 12--14&quot;). Three dots ... will be converted to an ellipsis.
Unicode is supported. ☺&lt;/p&gt;
&lt;h2&gt;An h2 header&lt;/h2&gt;
&lt;p&gt;Here&apos;s a numbered list:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;first item&lt;/li&gt;
&lt;li&gt;second item&lt;/li&gt;
&lt;li&gt;third item&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Note again how the actual text starts at 4 columns in (4 characters
from the left side). Here&apos;s a code sample:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Let me re-iterate ...
for i in 1 .. 10 { do-something(i) }
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;As you probably guessed, indented 4 spaces. By the way, instead of
indenting the block, you can use delimited blocks, if you like:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;define foobar() {
    print &quot;Welcome to flavor country!&quot;;
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;(which makes copying &amp;amp; pasting easier). You can optionally mark the
delimited block for Pandoc to syntax highlight it:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;import time
# Quick, count to ten!
for i in range(10):
    # (but not *too* quick)
    time.sleep(0.5)
    print i
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;An h3 header&lt;/h3&gt;
&lt;p&gt;Now a nested list:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;First, get these ingredients:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;carrots&lt;/li&gt;
&lt;li&gt;celery&lt;/li&gt;
&lt;li&gt;lentils&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Boil some water.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Dump everything in the pot and follow
this algorithm:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; find wooden spoon
 uncover pot
 stir
 cover pot
 balance wooden spoon precariously on pot handle
 wait 10 minutes
 goto first step (or shut off burner when done)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Do not bump wooden spoon or it will fall.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Notice again how text always lines up on 4-space indents (including
that last line which continues item 3 above).&lt;/p&gt;
&lt;p&gt;Here&apos;s a link to &lt;a href=&quot;http://foo.bar&quot;&gt;a website&lt;/a&gt;, to a &lt;a href=&quot;local-doc.html&quot;&gt;local
doc&lt;/a&gt;, and to a &lt;a href=&quot;#an-h2-header&quot;&gt;section heading in the current
doc&lt;/a&gt;. Here&apos;s a footnote [^1].&lt;/p&gt;
&lt;p&gt;[^1]: Footnote text goes here.&lt;/p&gt;
&lt;p&gt;Tables can look like this:&lt;/p&gt;
&lt;p&gt;size material color&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;9 leather brown
10 hemp canvas natural
11 glass transparent&lt;/p&gt;
&lt;p&gt;Table: Shoes, their sizes, and what they&apos;re made of&lt;/p&gt;
&lt;p&gt;(The above is the caption for the table.) Pandoc also supports
multi-line tables:&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;keyword text&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;red Sunsets, apples, and
other red or reddish
things.&lt;/p&gt;
&lt;p&gt;green Leaves, grass, frogs
and other things it&apos;s
not easy being.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;A horizontal rule follows.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Here&apos;s a definition list:&lt;/p&gt;
&lt;p&gt;apples
: Good for making applesauce.
oranges
: Citrus!
tomatoes
: There&apos;s no &quot;e&quot; in tomatoe.&lt;/p&gt;
&lt;p&gt;Again, text is indented 4 spaces. (Put a blank line between each
term/definition pair to spread things out more.)&lt;/p&gt;
&lt;p&gt;Here&apos;s a &quot;line block&quot;:&lt;/p&gt;
&lt;p&gt;| Line one
| Line too
| Line tree&lt;/p&gt;
&lt;p&gt;and images can be specified like so:&lt;/p&gt;
&lt;p&gt;Inline math equations go in like so: $\omega = d\phi / dt$. Display
math should get its own line and be put in in double-dollarsigns:&lt;/p&gt;
&lt;p&gt;$$I = \int \rho R^{2} dV$$&lt;/p&gt;
&lt;p&gt;$$
\begin{equation*}
\pi
=3.1415926535
;8979323846;2643383279;5028841971;6939937510;5820974944
;5923078164;0628620899;8628034825;3421170679;\ldots
\end{equation*}
$$&lt;/p&gt;
&lt;p&gt;And note that you can backslash-escape any punctuation characters
which you wish to be displayed literally, ex.: `foo`, *bar*, etc.&lt;/p&gt;
</content:encoded></item><item><title>Include Video in the Posts</title><link>https://hoppinzq.com/hoppinai/posts/video/</link><guid isPermaLink="true">https://hoppinzq.com/hoppinai/posts/video/</guid><description>This post demonstrates how to include embedded video in a blog post.</description><pubDate>Tue, 01 Aug 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Just copy the embed code from YouTube or other platforms, and paste it in the markdown file.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: Include Video in the Post
published: 2023-10-19
// ...
---

&amp;lt;iframe width=&quot;100%&quot; height=&quot;468&quot; src=&quot;https://www.youtube.com/embed/5gIf0_xpFPI?si=N1WTorLKL0uwLsU_&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;YouTube&lt;/h2&gt;
&lt;p&gt;&amp;lt;iframe width=&quot;100%&quot; height=&quot;468&quot; src=&quot;https://www.youtube.com/embed/5gIf0_xpFPI?si=N1WTorLKL0uwLsU_&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/p&gt;
&lt;h2&gt;Bilibili&lt;/h2&gt;
&lt;p&gt;&amp;lt;iframe width=&quot;100%&quot; height=&quot;468&quot; src=&quot;//player.bilibili.com/player.html?bvid=BV1fK4y1s7Qf&amp;amp;p=1&quot; scrolling=&quot;no&quot; border=&quot;0&quot; frameborder=&quot;no&quot; framespacing=&quot;0&quot; allowfullscreen=&quot;true&quot;&amp;gt; &amp;lt;/iframe&amp;gt;&lt;/p&gt;
</content:encoded></item></channel></rss>