<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Tech - 分类 - zwyyy456&#39;s blog</title>
        <link>https://doit.tellm.eu.org/zh/categories/tech/</link>
        <description>Tech - 分类 - zwyyy456&#39;s blog</description>
        <generator>Hugo -- gohugo.io</generator><language>zh</language><managingEditor>zwyyy456@hotmail.com (zwyyy456)</managingEditor>
            <webMaster>zwyyy456@hotmail.com (zwyyy456)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Sun, 16 Jun 2024 00:00:00 &#43;0000</lastBuildDate><atom:link href="https://doit.tellm.eu.org/zh/categories/tech/" rel="self" type="application/rss+xml" /><item>
    <title>计算机教育缺失的一课：Git</title>
    <link>https://doit.tellm.eu.org/zh/missing-semester-git/</link>
    <pubDate>Sun, 16 Jun 2024 00:00:00 &#43;0000</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/missing-semester-git/</guid>
    <description><![CDATA[1 版本控制系统介绍版本控制系统 (VCSs) 是一类用于追踪源代码（或其他文件、文件夹）改动的工具。顾名思义，这些工具可以帮助我们管理代码的修改历史；不仅]]></description>
</item><item>
    <title>计算机常用术语中英文对比</title>
    <link>https://doit.tellm.eu.org/zh/cs-zh-en-translation/</link>
    <pubDate>Sat, 15 Jun 2024 16:19:53 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/cs-zh-en-translation/</guid>
    <description><![CDATA[1 前言在计算机科学中，很多专业术语或者名词的初始版本都是英文的，之后会被翻译成中文而引入国内。然而，个人看来，许多专业名词的中文翻译，看起来]]></description>
</item><item>
    <title>计算机教育缺失的一课：命令行环境</title>
    <link>https://doit.tellm.eu.org/zh/missing-semester-command-line/</link>
    <pubDate>Sat, 15 Jun 2024 15:18:13 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/missing-semester-command-line/</guid>
    <description><![CDATA[1 任务控制 1.1 信号与终止进程shell 会使用 unix 提供的信号机制来进行进程之间的通信，当一个进程接收到信号时，它会停止执行原来的任务、处理该信号、]]></description>
</item><item>
    <title>计算机教育缺失的一课：数据整理</title>
    <link>https://doit.tellm.eu.org/zh/missing-semester-data-organize/</link>
    <pubDate>Fri, 14 Jun 2024 19:26:09 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/missing-semester-data-organize/</guid>
    <description><![CDATA[1 前言您是否曾经有过这样的需求，将某种格式存储的数据转换成另外一种格式？肯定有过，对吧！ 这也正是我们这节课所要讲授的主要内容。具体来讲，我们]]></description>
</item><item>
    <title>计算机教育缺失的一课：编辑器（Vim）</title>
    <link>https://doit.tellm.eu.org/zh/missing-semester-editor-vim/</link>
    <pubDate>Fri, 14 Jun 2024 16:55:19 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/missing-semester-editor-vim/</guid>
    <description><![CDATA[1 编辑模式Vim 的符号说明，对于 Ctlr+v 的组合键，可能有 ^V、Ctrl-v、&lt;C-v&gt; 三种表达方式。 Vim 的设计以大多数时间都花在阅读、浏]]></description>
</item><item>
    <title>计算机教育缺失的一课：Shell 工具与脚本</title>
    <link>https://doit.tellm.eu.org/zh/missing-semester-shell/</link>
    <pubDate>Thu, 09 May 2024 00:00:00 &#43;0000</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/missing-semester-shell/</guid>
    <description><![CDATA[1 $ 符号的功能Shell 中，$ 符号可以与数字或者其他符号组合在一起表示特殊的值或者变量，如下： sh #!/bin/bash echo $0 # $0 用于获取当前脚本文件名名称 echo &#34;The first parameter:]]></description>
</item><item>
    <title>Json 快速入门</title>
    <link>https://doit.tellm.eu.org/zh/json-startup/</link>
    <pubDate>Sat, 04 May 2024 10:10:30 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/json-startup/</guid>
    <description><![CDATA[1 简介Json 格式的全称为 JavaScript Object Notation，是一种起源于编程语言 JavaScript 的序列化数据格式，其特点在于，可以通过特定的文本格式表达一定程度的复杂]]></description>
</item><item>
    <title>Web Day12：实现主从 Reactor 多线程模式</title>
    <link>https://doit.tellm.eu.org/zh/web-day12/</link>
    <pubDate>Sun, 19 Nov 2023 13:00:39 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/web-day12/</guid>
    <description><![CDATA[1 前言在 Day11 中，我们实现了一种最容易想到的 Reactor 多线程模式，即将每个 Channel 的任务分配给一个线程执行。 这个模式逻辑上有不少问题，例如线程池由 EventLoop 来持有，按]]></description>
</item><item>
    <title>Web Day11：完成线程池以及加入一个简单的测试程序</title>
    <link>https://doit.tellm.eu.org/zh/web-day11/</link>
    <pubDate>Sat, 18 Nov 2023 19:40:26 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/web-day11/</guid>
    <description><![CDATA[1 需要完善的地方Day10 中，我们添加了一个简单的线程池，一个完整的 Reactor 模型已经成型。但这个线程池存在的问题还比较多，例如任务队列的取出、添加]]></description>
</item><item>
    <title>Web Day10：加入线程池到服务器</title>
    <link>https://doit.tellm.eu.org/zh/web-day10/</link>
    <pubDate>Sat, 18 Nov 2023 15:19:11 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/web-day10/</guid>
    <description><![CDATA[1 前言到 day9 的时候，一个单线程的服务器已经算写好了。Reactor 驱动大致成型。 服务器的启动流程大致如下，先创建 EventLoop 对象 loop（里面包含了 Epoll 对]]></description>
</item></channel>
</rss>
