[{"content":"I\u0026rsquo;m randy,this is my blog,I create it to improve my writing skills and tech\nand I will share many good useful tools and softwares,storys to you guys\nI want to build a tech playground for me and for me ,its the most important thing that make friends\n","permalink":"https://sincerelylovefortech.xyz/about/","summary":"\u003cp\u003eI\u0026rsquo;m randy,this is my blog,I create it to improve my writing skills and tech\u003c/p\u003e\n\u003cp\u003eand I will share many good useful tools and softwares,storys to you guys\u003c/p\u003e\n\u003cp\u003eI want to build a tech playground for me\nand for me ,its the most important thing that make friends\u003c/p\u003e","title":"ABOUT ME"},{"content":"最近我又有一些想法了啊 刚搞定了这个syncthing同步博文到博客\n怎么用hugo命令，我以前都是手动填format，但是现在知道这个命令能自动生成，真的是科技改变生活\nwhat happend??I cant use my input method Something get wrong,It\u0026rsquo;s the fcitx5,so that I cant use rime-wubi86-jidian,soI have to write this in English.\nthe English and I found,type English is more comfortable,even my English is poor,it\u0026rsquo;s necessary to practice my English\nI need to read the English books and docs about the terminal I dont want to config the wezterm,because the NVIDIA driver,it always report many many bugs,I have no time to solve them,so I think ,the konsole is also a good tool\nterminal shortcuts learn these shortcuts is necessary,god damn,why I only say \u0026ldquo;necessary\u0026rdquo;,I dont have ennough vocabulary,shit\nvim! In fact,vim is my favorite editor,because it can make me typeing without leaving the hands out keyborad but now, I dont have skills useing vim\nArchlinux write a SEP about how to install Archlinux,and the relative concepts,such as ext4,mkfs,fstab,de,etc\nshell In these days,I already have seen the power of shell script,it\u0026rsquo;s awesome!everything can be the cli,and in a little txt file,what we should so is just enjoy the final output\nHTML,CSS,Javascript I have to know the relative knowledge so that I can build and beautify my website\nblogs you must write the blogs but write what,i even cant speak good english,or I just write the Chinese vesion first,then I write the English version\nOK,now I need to create some titles:\nHow to deploy the openclaw in your local compuer with docker?all you should know what is docker,how to use it,why we use docker 10 funny self-hosted project you mey be intested build your own information chains on your server what is a server? what is it used for? what can we do with a server some intrested linux software you should know use cli,the future choice how to buy your own server,make you understanded in this article why I choose Archlinux,this is the anwser the tgbot I need to develop the tgbot and the channel the tgbot include rss,longxia,memos I realized that ,tgbot is just a program that I can control its action\n","permalink":"https://sincerelylovefortech.xyz/tech/my-new-idea/","summary":"\u003ch1 id=\"最近我又有一些想法了啊\"\u003e最近我又有一些想法了啊\u003c/h1\u003e\n\u003cp\u003e刚搞定了这个syncthing同步博文到博客\u003c/p\u003e\n\u003cp\u003e怎么用hugo命令，我以前都是手动填format，但是现在知道这个命令能自动生成，真的是科技改变生活\u003c/p\u003e\n\u003ch1 id=\"what-happendi-cant-use-my-input-method\"\u003ewhat happend??I cant use my input method\u003c/h1\u003e\n\u003cp\u003eSomething get wrong,It\u0026rsquo;s the fcitx5,so that I cant use rime-wubi86-jidian,soI have to write this in English.\u003c/p\u003e\n\u003ch1 id=\"the-english\"\u003ethe English\u003c/h1\u003e\n\u003cp\u003eand I found,type English is more comfortable,even my English is poor,it\u0026rsquo;s necessary to practice my English\u003c/p\u003e\n\u003ch2 id=\"i-need-to-read-the-english-books-and-docs\"\u003e\u003cstrong\u003eI need to read the English books and docs\u003c/strong\u003e\u003c/h2\u003e\n\u003ch1 id=\"about-the-terminal\"\u003eabout the terminal\u003c/h1\u003e\n\u003cp\u003eI dont want to config the wezterm,because the NVIDIA driver,it always report many many bugs,I have no time to solve them,so I think ,the konsole is also a good tool\u003c/p\u003e","title":"My New Idea20260424"},{"content":"1.1 起步 - 关于版本控制 本章为 Git 入门。 我们从介绍版本控制工具的背景知识开始，然后讲解如何在你的系统上运行 Git，最后是关于如何设置 Git 以便开始工作。 通过本章的学习，你应该能了解为什么 Git 这么流行，为什么你应该使用 Git 以及你应该如何设置以便使用 Git。\n关于版本控制 什么是“版本控制”？我为什么要关心它呢？ 版本控制是一种记录一个或若干文件内容变化，以便将来查阅特定版本修订情况的系统。 在本书所展示的例子中，我们对保存着软件源代码的文件作版本控制，但实际上，你可以对任何类型的文件进行版本控制。\n如果你是位图形或网页设计师，可能会需要保存某一幅图片或页面布局文件的所有修订版本（这或许是你非常渴望拥有的功能），采用版本控制系统（VCS）是个明智的选择。 有了它你就可以将选定的文件回溯到之前的状态，甚至将整个项目都回退到过去某个时间点的状态，你可以比较文件的变化细节，查出最后是谁修改了哪个地方，从而找出导致怪异问题出现的原因，又是谁在何时报告了某个功能缺陷等等。 使用版本控制系统通常还意味着，就算你乱来一气把整个项目中的文件改的改删的删，你也照样可以轻松恢复到原先的样子。 但额外增加的工作量却微乎其微。\n本地版本控制系统 许多人习惯用复制整个项目目录的方式来保存不同的版本，或许还会改名加上备份时间以示区别。 这么做唯一的好处就是简单，但是特别容易犯错。 有时候会混淆所在的工作目录，一不小心会写错文件或者覆盖意想外的文件。\n为了解决这个问题，人们很久以前就开发了许多种本地版本控制系统，大多都是采用某种简单的数据库来记录文件的历次更新差异。\nFigure 1. 本地版本控制.\n其中最流行的一种叫做 RCS，现今许多计算机系统上都还看得到它的踪影。 RCS 的工作原理是在硬盘上保存补丁集（补丁是指文件修订前后的变化）；通过应用所有的补丁，可以重新计算出各个版本的文件内容。\n集中化的版本控制系统 接下来人们又遇到一个问题，如何让在不同系统上的开发者协同工作？ 于是，集中化的版本控制系统（Centralized Version Control Systems，简称 CVCS）应运而生。 这类系统，诸如 CVS、Subversion 以及 Perforce 等，都有一个单一的集中管理的服务器，保存所有文件的修订版本，而协同工作的人们都通过客户端连到这台服务器，取出最新的文件或者提交更新。 多年以来，这已成为版本控制系统的标准做法。\nFigure 2. 集中化的版本控制.\n这种做法带来了许多好处，特别是相较于老式的本地 VCS 来说。 现在，每个人都可以在一定程度上看到项目中的其他人正在做些什么。 而管理员也可以轻松掌控每个开发者的权限，并且管理一个 CVCS 要远比在各个客户端上维护本地数据库来得轻松容易。\n事分两面，有好有坏。 这么做最显而易见的缺点是中央服务器的单点故障。 如果宕机一小时，那么在这一小时内，谁都无法提交更新，也就无法协同工作。 如果中心数据库所在的磁盘发生损坏，又没有做恰当备份，毫无疑问你将丢失所有数据——包括项目的整个变更历史，只剩下人们在各自机器上保留的单独快照。 本地版本控制系统也存在类似问题，只要整个项目的历史记录被保存在单一位置，就有丢失所有历史更新记录的风险。\n分布式版本控制系统 于是分布式版本控制系统（Distributed Version Control System，简称 DVCS）面世了。 在这类系统中，像 Git、Mercurial 以及 Darcs 等，客户端并不只提取最新版本的文件快照， 而是把代码仓库完整地镜像下来，包括完整的历史记录。 这么一来，任何一处协同工作用的服务器发生故障，事后都可以用任何一个镜像出来的本地仓库恢复。 因为每一次的克隆操作，实际上都是一次对代码仓库的完整备份。\nFigure 3. 分布式版本控制.\n更进一步，许多这类系统都可以指定和若干不同的远端代码仓库进行交互。籍此，你就可以在同一个项目中，分别和不同工作小组的人相互协作。 你可以根据需要设定不同的协作流程，比如层次模型式的工作流，而这在以前的集中式系统中是无法实现的。\n","permalink":"https://sincerelylovefortech.xyz/tech/%E4%BB%8Egit%E5%BC%80%E5%A7%8B%E7%9A%84%E6%8B%93%E5%B1%95%E4%BB%80%E4%B9%88%E6%98%AF%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6%E7%B3%BB%E7%BB%9Fvcs/","summary":"\u003ch1 id=\"11-起步---关于版本控制\"\u003e1.1 起步 - 关于版本控制\u003c/h1\u003e\n\u003cp\u003e本章为 Git 入门。 我们从介绍版本控制工具的背景知识开始，然后讲解如何在你的系统上运行 Git，最后是关于如何设置 Git 以便开始工作。 通过本章的学习，你应该能了解为什么 Git 这么流行，为什么你应该使用 Git 以及你应该如何设置以便使用 Git。\u003c/p\u003e\n\u003ch2 id=\"关于版本控制\"\u003e关于版本控制\u003c/h2\u003e\n\u003cp\u003e什么是“版本控制”？我为什么要关心它呢？ 版本控制是一种记录一个或若干文件内容变化，以便将来查阅特定版本修订情况的系统。 在本书所展示的例子中，我们对保存着软件源代码的文件作版本控制，但实际上，你可以对任何类型的文件进行版本控制。\u003c/p\u003e\n\u003cp\u003e如果你是位图形或网页设计师，可能会需要保存某一幅图片或页面布局文件的所有修订版本（这或许是你非常渴望拥有的功能），采用版本控制系统（VCS）是个明智的选择。 有了它你就可以将选定的文件回溯到之前的状态，甚至将整个项目都回退到过去某个时间点的状态，你可以比较文件的变化细节，查出最后是谁修改了哪个地方，从而找出导致怪异问题出现的原因，又是谁在何时报告了某个功能缺陷等等。 使用版本控制系统通常还意味着，就算你乱来一气把整个项目中的文件改的改删的删，你也照样可以轻松恢复到原先的样子。 但额外增加的工作量却微乎其微。\u003c/p\u003e\n\u003ch3 id=\"本地版本控制系统\"\u003e本地版本控制系统\u003c/h3\u003e\n\u003cp\u003e许多人习惯用复制整个项目目录的方式来保存不同的版本，或许还会改名加上备份时间以示区别。 这么做唯一的好处就是简单，但是特别容易犯错。 有时候会混淆所在的工作目录，一不小心会写错文件或者覆盖意想外的文件。\u003c/p\u003e\n\u003cp\u003e为了解决这个问题，人们很久以前就开发了许多种本地版本控制系统，大多都是采用某种简单的数据库来记录文件的历次更新差异。\u003c/p\u003e\n\u003cp\u003e\u003cimg alt=\"本地版本控制图解\" loading=\"lazy\" src=\"https://git-scm.com/book/zh/v2/images/local.png\"\u003e\u003c/p\u003e\n\u003cp\u003eFigure 1. 本地版本控制.\u003c/p\u003e\n\u003cp\u003e其中最流行的一种叫做 RCS，现今许多计算机系统上都还看得到它的踪影。 \u003ca href=\"https://www.gnu.org/software/rcs/\"\u003eRCS\u003c/a\u003e 的工作原理是在硬盘上保存补丁集（补丁是指文件修订前后的变化）；通过应用所有的补丁，可以重新计算出各个版本的文件内容。\u003c/p\u003e\n\u003ch3 id=\"集中化的版本控制系统\"\u003e集中化的版本控制系统\u003c/h3\u003e\n\u003cp\u003e接下来人们又遇到一个问题，如何让在不同系统上的开发者协同工作？ 于是，集中化的版本控制系统（Centralized Version Control Systems，简称 CVCS）应运而生。 这类系统，诸如 CVS、Subversion 以及 Perforce 等，都有一个单一的集中管理的服务器，保存所有文件的修订版本，而协同工作的人们都通过客户端连到这台服务器，取出最新的文件或者提交更新。 多年以来，这已成为版本控制系统的标准做法。\u003c/p\u003e\n\u003cp\u003e\u003cimg alt=\"集中化的版本控制图解\" loading=\"lazy\" src=\"https://git-scm.com/book/zh/v2/images/centralized.png\"\u003e\u003c/p\u003e\n\u003cp\u003eFigure 2. 集中化的版本控制.\u003c/p\u003e\n\u003cp\u003e这种做法带来了许多好处，特别是相较于老式的本地 VCS 来说。 现在，每个人都可以在一定程度上看到项目中的其他人正在做些什么。 而管理员也可以轻松掌控每个开发者的权限，并且管理一个 CVCS 要远比在各个客户端上维护本地数据库来得轻松容易。\u003c/p\u003e\n\u003cp\u003e事分两面，有好有坏。 这么做最显而易见的缺点是中央服务器的单点故障。 如果宕机一小时，那么在这一小时内，谁都无法提交更新，也就无法协同工作。 如果中心数据库所在的磁盘发生损坏，又没有做恰当备份，毫无疑问你将丢失所有数据——包括项目的整个变更历史，只剩下人们在各自机器上保留的单独快照。 本地版本控制系统也存在类似问题，只要整个项目的历史记录被保存在单一位置，就有丢失所有历史更新记录的风险。\u003c/p\u003e\n\u003ch3 id=\"分布式版本控制系统\"\u003e分布式版本控制系统\u003c/h3\u003e\n\u003cp\u003e于是分布式版本控制系统（Distributed Version Control System，简称 DVCS）面世了。 在这类系统中，像 Git、Mercurial 以及 Darcs 等，客户端并不只提取最新版本的文件快照， 而是把代码仓库完整地镜像下来，包括完整的历史记录。 这么一来，任何一处协同工作用的服务器发生故障，事后都可以用任何一个镜像出来的本地仓库恢复。 因为每一次的克隆操作，实际上都是一次对代码仓库的完整备份。\u003c/p\u003e","title":"从git开始的拓展，什么是版本控制系统（VCS）？"},{"content":"git是一个分布式的工具，非常之厉害\n","permalink":"https://sincerelylovefortech.xyz/tech/git%E6%98%AF%E4%BB%80%E4%B9%88%E6%80%8E%E4%B9%88%E7%94%A8/","summary":"\u003cp\u003egit是一个分布式的工具，非常之厉害\u003c/p\u003e","title":"git是什么，怎么用"},{"content":"what is docker why use docker thefirstblog\nshow you the money\n红色加粗文本\nbilibili ","permalink":"https://sincerelylovefortech.xyz/tech/how-to-use-the-docker/","summary":"\u003ch1 id=\"what-is-docker\"\u003ewhat is docker\u003c/h1\u003e\n\u003ch1 id=\"why-use-docker\"\u003ewhy use docker\u003c/h1\u003e\n\u003cp\u003e\u003ca href=\"/test/myfirstblog/\"\u003ethefirstblog\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eshow you the money\u003c/p\u003e\n\u003cp\u003e\u003cspan style=\"color: red; font-weight: bold;\"\u003e红色加粗文本\u003c/span\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://www.bilibili.com\" \ntarget=\"_self\" \ntitle=\"给你看点好的\"\u003e\nbilibili\n\u003c/a\u003e\u003c/p\u003e","title":"how to use the docker"},{"content":"welcome to my blog I m randy,an tech fan,this blog is for noting my studing process\n页数内容 20流感 47HAP与ARDS鉴别 右侧笔记 在此输入你的临床考点总结...\n","permalink":"https://sincerelylovefortech.xyz/test/myfirstblog/","summary":"\u003ch1 id=\"welcome-to-my-blog\"\u003ewelcome to my blog\u003c/h1\u003e\n\u003cp\u003eI m randy,an tech fan,this blog is for noting my studing process\u003c/p\u003e\n\u003ctable style=\"width: 100%; border-collapse: collapse; border: none;\"\u003e\n  \u003ctr\u003e\n    \u003ctd style=\"width: 50%; vertical-align: top; border: none;\"\u003e\n      \u003ctable border=\"1\"\u003e\n        \u003ctr\u003e\u003cth\u003e页数\u003c/th\u003e\u003cth\u003e内容\u003c/th\u003e\u003c/tr\u003e\n        \u003ctr\u003e\u003ctd\u003e20\u003c/td\u003e\u003ctd\u003e流感\u003c/td\u003e\u003c/tr\u003e\n        \u003ctr\u003e\u003ctd\u003e47\u003c/td\u003e\u003ctd\u003eHAP与ARDS鉴别\u003c/td\u003e\u003c/tr\u003e\n      \u003c/table\u003e\n    \u003c/td\u003e\n    \u003ctd style=\"padding-left: 20px; vertical-align: top; border: none;\"\u003e\n      \u003ch3\u003e右侧笔记\u003c/h3\u003e\n      \u003cp\u003e在此输入你的临床考点总结...\u003c/p\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e","title":"the first blog for test"},{"content":" 📝 {{ .Title }} 📅 {{ .Date.Format \"2006年1月2日\" }} 👤 {{ .Params.author }} 🏷️ {{ range .Params.tags }} {{ . }} {{ end }} 📋 文章摘要 本文展示如何在 Hugo 中使用 HTML 创建丰富的文章内容，包括：\n复杂的卡片布局 响应式图片和视频 交互式元素 高级表格 代码展示 图表和统计 🎨 响应式卡片网格 完全用 HTML 和 CSS 实现的响应式布局\n🔧 灵活布局 使用 CSS Grid 和 Flexbox 创建任意复杂的布局，不再受 Markdown 的限制。\n🎯 交互元素 添加按钮、表单、折叠面板等交互元素，提升用户体验。\n点击测试 📊 数据可视化 嵌入图表、进度条、统计图等数据展示元素。\n📊 高级表格示例 支持合并单元格、固定表头等高级功能\n项目 第一季度 第二季度 总计 子项目 计划 实际 计划 实际 完成率 网站开发 100% ✅ 120% 80% 75% 85% 60% ⚠️ 55% 70% 65% 60% 🎮 交互式组件 📁 点击展开详细说明 这是详细内容区域。可以放置任意 HTML 内容：\n列表项 1 列表项 2 列表项 3 HTML 代码 CSS 样式 JavaScript \u0026lt;div class=\"card\"\u0026gt; \u0026lt;h3\u0026gt;标题\u0026lt;/h3\u0026gt; \u0026lt;p\u0026gt;内容\u0026lt;/p\u0026gt; \u0026lt;/div\u0026gt; .card { background: white; border-radius: 8px; padding: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } document.querySelector('.card').addEventListener('click', function() { alert('卡片被点击！'); }); 🎥 多媒体嵌入 视频嵌入 SVG 图表 0 50 100 月度数据趋势图\n🚀 开始使用 HTML 增强你的 Hugo 文章 创建更丰富、更交互的内容体验\n立即尝试 查看文档 📁 文章信息 最后更新: {{ now.Format \"2006-01-02 15:04\" }}\n字数统计: {{ .WordCount }} 字\n阅读时间: {{ .ReadingTime }} 分钟 #Hugo #HTML #Web开发 ","permalink":"https://sincerelylovefortech.xyz/test/thefirsthtml/","summary":"\u003c!-- 文章元信息展示 --\u003e\n\u003cdiv class=\"article-meta\" style=\"background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 2rem; border-radius: 12px; margin-bottom: 2rem;\"\u003e\n    \u003cdiv style=\"display: flex; align-items: center; gap: 1.5rem;\"\u003e\n        \u003cdiv style=\"flex-shrink: 0;\"\u003e\n            \u003cdiv style=\"width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem;\"\u003e\n                📝\n            \u003c/div\u003e\n        \u003c/div\u003e\n        \u003cdiv style=\"flex-grow: 1;\"\u003e\n            \u003ch1 style=\"margin: 0 0 0.5rem 0; color: white;\"\u003e{{ .Title }}\u003c/h1\u003e\n            \u003cdiv style=\"display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9em; opacity: 0.9;\"\u003e\n                \u003cspan\u003e📅 {{ .Date.Format \"2006年1月2日\" }}\u003c/span\u003e\n                \u003cspan\u003e👤 {{ .Params.author }}\u003c/span\u003e\n                \u003cspan\u003e🏷️ \n                    {{ range .Params.tags }}\n                    \u003cspan class=\"tag\" style=\"background: rgba(255,255,255,0.2); padding: 2px 8px; border-radius: 12px; margin: 0 4px;\"\u003e{{ . }}\u003c/span\u003e\n                    {{ end }}\n                \u003c/span\u003e\n            \u003c/div\u003e\n        \u003c/div\u003e\n    \u003c/div\u003e\n\u003c/div\u003e\n\n\u003c!-- 文章内容开始 --\u003e\n\u003carticle class=\"html-content\"\u003e\n\n\u003c!-- 内容摘要 --\u003e\n\u003cdiv class=\"content-summary\" style=\"background: #f8f9fa; border-left: 4px solid #667eea; padding: 1.5rem; border-radius: 8px; margin-bottom: 2rem;\"\u003e\n    \u003ch3 style=\"margin-top: 0; color: #667eea;\"\u003e📋 文章摘要\u003c/h3\u003e\n    \u003cp\u003e本文展示如何在 Hugo 中使用 HTML 创建丰富的文章内容，包括：\u003c/p\u003e","title":"HTML 文章测试 - 完全用 HTML 写的 Hugo 文章"},{"content":"OK了朋友，现在我就和你说一下archlinux的配置方法\n","permalink":"https://sincerelylovefortech.xyz/tech/archlinux/","summary":"\u003cp\u003eOK了朋友，现在我就和你说一下archlinux的配置方法\u003c/p\u003e","title":""},{"content":"很明显，也是个shell，但是能比系统默认的shell厉害一点\n","permalink":"https://sincerelylovefortech.xyz/tech/zsh%E6%98%AF%E4%BB%80%E4%B9%88%E4%B8%80%E7%AF%87%E6%96%87%E7%AB%A0%E8%AF%B4%E6%98%8E%E7%99%BD/","summary":"\u003cp\u003e很明显，也是个shell，但是能比系统默认的shell厉害一点\u003c/p\u003e","title":""},{"content":"\u003c!DOCTYPE html\u003e\rShow Me\rShow Me\rClick Me\r","permalink":"https://sincerelylovefortech.xyz/test/showme/","summary":"\u003c!DOCTYPE html\u003e\r\n\r\n\u003chtml lang=\"en\"\u003e\r\n\u003chead\u003e\r\n    \u003cmeta charset=\"UTF-8\"\u003e\r\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\r\n    \u003ctitle\u003eShow Me\u003c/title\u003e\r\n    \u003cstyle\u003e\r\n        body {\r\n            font-family: Arial, sans-serif;\r\n            margin: 20px;\r\n        }\r\n        .container {\r\n            max-width: 600px;\r\n            margin: auto;\r\n            text-align: center;\r\n        }\r\n        .button {\r\n            padding: 10px 20px;\r\n            font-size: 16px;\r\n            cursor: pointer;\r\n            background-color: #007BFF;\r\n            color: white;\r\n            border: none;\r\n            border-radius: 5px;\r\n        }\r\n        .button:hover {\r\n            background-color: #0056b3;\r\n        }\r\n        .output {\r\n            margin-top: 20px;\r\n            font-size: 18px;\r\n            color: #333;\r\n        }\r\n\u003c/style\u003e\r\n\u003c/head\u003e\r\n\u003cbody\u003e\r\n    \u003cdiv class=\"container\"\u003e\r\n        \u003ch1\u003eShow Me\u003c/h1\u003e\r\n        \u003cbutton class=\"button\" onclick=\"showMessage()\"\u003eClick Me\u003c/button\u003e\r\n        \u003cdiv class=\"output\" id=\"output\"\u003e\u003c/div\u003e\r\n    \u003c/div\u003e\r\n\r\n    \u003cscript\u003e\r\n        function showMessage() {\r\n            document.getElementById(\"output\").innerText = \"Hello, World!\";\r\n        }\r\n    \u003c/script\u003e\r\n\u003c/body\u003e\r\n\r\n\u003c/html\u003e","title":""},{"content":"1984 1984 is a social and sciencitical noval written by orwell,whose another book is animal farm. his words are real and critic,he try to show us the truth of our society,like haykker\n红色文字\n红色粗体文本\n\u0026lt;span style=\u0026#34;color: red; font-weight: bold;\u0026#34;\u0026gt;红色加粗文本\u0026lt;/span\u0026gt; 红色加粗文本\n","permalink":"https://sincerelylovefortech.xyz/read/1984note/","summary":"\u003ch1 id=\"1984\"\u003e1984\u003c/h1\u003e\n\u003cp\u003e1984 is a social and sciencitical noval written by orwell,whose another book is animal farm.\nhis words are real and critic,he try to show us the truth of our society,like haykker\u003c/p\u003e\n\u003cp\u003e\u003cspan style=\"color:red;\"\u003e红色文字\u003c/span\u003e\u003c/p\u003e\n\u003cp\u003e\u003cspan style=\"color: red; font-weight: bold;\"\u003e红色粗体文本\u003c/span\u003e\u003c/p\u003e\n\u003cdiv class=\"highlight\"\u003e\u003cpre tabindex=\"0\" style=\"color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;\"\u003e\u003ccode class=\"language-html\" data-lang=\"html\"\u003e\u003cspan style=\"display:flex;\"\u003e\u003cspan\u003e\u0026lt;\u003cspan style=\"color:#f92672\"\u003espan\u003c/span\u003e \u003cspan style=\"color:#a6e22e\"\u003estyle\u003c/span\u003e\u003cspan style=\"color:#f92672\"\u003e=\u003c/span\u003e\u003cspan style=\"color:#e6db74\"\u003e\u0026#34;color: red; font-weight: bold;\u0026#34;\u003c/span\u003e\u0026gt;红色加粗文本\u0026lt;/\u003cspan style=\"color:#f92672\"\u003espan\u003c/span\u003e\u0026gt;\n\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\u003c/div\u003e\u003cp\u003e\u003cspan style=\"color: red; font-weight: bold;\"\u003e红色加粗文本\u003c/span\u003e\u003c/p\u003e","title":"1984note"},{"content":"hay This is a essay\n","permalink":"https://sincerelylovefortech.xyz/read/thinking-fast-and-slow/","summary":"\u003cp\u003ehay This is a essay\u003c/p\u003e","title":"thinking fast and slow"}]