<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
    <channel>
      <title>Quartz 4</title>
      <link>https://kaneyin.github.io/blog</link>
      <description>Last 10 notes on Quartz 4</description>
      <generator>Quartz -- quartz.jzhao.xyz</generator>
      <item>
    <title>Introduction to Quartz 4 - The tool for this website</title>
    <link>https://kaneyin.github.io/blog/Introduction-to-Quartz-4---The-tool-for-this-website</link>
    <guid>https://kaneyin.github.io/blog/Introduction-to-Quartz-4---The-tool-for-this-website</guid>
    <description><![CDATA[ Get started Node: v22 npm: v10.9.2 How to install Quartz 4 Open terminal in your computer, run these commands: git clone github.com/jackyzha0/quartz.git cd quartz npm install npx quartz create Writing content in Quartz ll of the content in your Quartz should go in the /content folder. ]]></description>
    <pubDate>Tue, 11 Nov 2025 00:33:32 GMT</pubDate>
  </item><item>
    <title>Java 迭代器</title>
    <link>https://kaneyin.github.io/blog/JavaSE/AdvancedJavaSE/Java-%E8%BF%AD%E4%BB%A3%E5%99%A8</link>
    <guid>https://kaneyin.github.io/blog/JavaSE/AdvancedJavaSE/Java-%E8%BF%AD%E4%BB%A3%E5%99%A8</guid>
    <description><![CDATA[ 声明迭代器 public interface Iterator&lt;E&gt; 这里 E 代表要迭代的元素类型。 什么是迭代器 Java 迭代器是 Java 集合框架中的一种机制，是一种用于遍历集合的接口。提供了一种统一的方式来访问集合中的元素，而不需要了解底层集合的具体实现细节。 Iterator 是 Java 迭代器最简单的实现。 迭代器接口定义了几个方法，最常用的是以下三个： next(): 返回迭代器的下一个元素，并将迭代器的指针移到下一个位置。 hasNext(): 用于判断集合中是否还有下一个元素可以访问。 remove(): 从集合中删除迭代器最后访问的元素。 Iterator... ]]></description>
    <pubDate>Tue, 11 Nov 2025 00:33:32 GMT</pubDate>
  </item><item>
    <title>Java 迭代器继承体系</title>
    <link>https://kaneyin.github.io/blog/JavaSE/AdvancedJavaSE/attachments/Java-%E8%BF%AD%E4%BB%A3%E5%99%A8%E7%BB%A7%E6%89%BF%E4%BD%93%E7%B3%BB</link>
    <guid>https://kaneyin.github.io/blog/JavaSE/AdvancedJavaSE/attachments/Java-%E8%BF%AD%E4%BB%A3%E5%99%A8%E7%BB%A7%E6%89%BF%E4%BD%93%E7%B3%BB</guid>
    <description><![CDATA[ ⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ]]></description>
    <pubDate>Tue, 11 Nov 2025 00:33:32 GMT</pubDate>
  </item><item>
    <title>K-means Clustering</title>
    <link>https://kaneyin.github.io/blog/Neural-Network/K-means-Clustering</link>
    <guid>https://kaneyin.github.io/blog/Neural-Network/K-means-Clustering</guid>
    <description><![CDATA[ K-means Clustering is an unsupervised machine learning algorithm that helps group data points into clusters based on their inherent similarity. ]]></description>
    <pubDate>Tue, 11 Nov 2025 00:33:32 GMT</pubDate>
  </item><item>
    <title>IntroductionToPytorchTensor</title>
    <link>https://kaneyin.github.io/blog/Pytorch/IntroductionToPytorchTensor</link>
    <guid>https://kaneyin.github.io/blog/Pytorch/IntroductionToPytorchTensor</guid>
    <description><![CDATA[ Tensors are the central data abstraction in PyTorch. This interactive notebook provides an indepth introduction to the torch.tensor class. ]]></description>
    <pubDate>Mon, 03 Nov 2025 17:30:42 GMT</pubDate>
  </item><item>
    <title>Welcome to My Homepage</title>
    <link>https://kaneyin.github.io/blog/</link>
    <guid>https://kaneyin.github.io/blog/</guid>
    <description><![CDATA[  ]]></description>
    <pubDate>Mon, 03 Nov 2025 17:30:42 GMT</pubDate>
  </item><item>
    <title>TCPIP 网络编程书籍笔记</title>
    <link>https://kaneyin.github.io/blog/Computer-Network-Basic/TCPIP-%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E4%B9%A6%E7%B1%8D%E7%AC%94%E8%AE%B0</link>
    <guid>https://kaneyin.github.io/blog/Computer-Network-Basic/TCPIP-%E7%BD%91%E7%BB%9C%E7%BC%96%E7%A8%8B%E4%B9%A6%E7%B1%8D%E7%AC%94%E8%AE%B0</guid>
    <description><![CDATA[ 书籍内容： 第一部分介绍网络编程基础知识。 第二部分和第三部分和操作系统有关。 第四部分是收尾阶段，是前面内容的总结。 理解网络编程和套接字（Socket） 网络编程：简单来说，就是编写程序使两台连网的计算机相互交换数据。 套接字（Socket）：操作系统提供的一种用于网络传输的软件设备。 什么是套接字（Socket） 我们把插头插到插座上，就能从电网获得电力供给，同样为了与远程计算机进行数据传输，需要连接到 因特网，而编程中 “套接字“ 就是用来连接该网络的工具，它本身就有“连接“的含义，还可以表示两台计算机之间的网络连接 构建Socket的过程 套接字大致分为两种，其中，首先要讨论的就是 ... ]]></description>
    <pubDate>Mon, 03 Nov 2025 02:08:49 GMT</pubDate>
  </item><item>
    <title>第一章 概述</title>
    <link>https://kaneyin.github.io/blog/Computer-Network-Basic/%E7%AC%AC%E4%B8%80%E7%AB%A0-%E6%A6%82%E8%BF%B0</link>
    <guid>https://kaneyin.github.io/blog/Computer-Network-Basic/%E7%AC%AC%E4%B8%80%E7%AB%A0-%E6%A6%82%E8%BF%B0</guid>
    <description><![CDATA[ 章节导航 概述 物理层 数据链路层 网络层 运输层 应用层 概述 计算机网络，就是要在不同层次的网络组成上（即网络体系结构中的不同层次上）实现数据的可靠传输。 本章重点内容 分组交换的概念, 这时现代计算机网络的技术基础 计算机网络的一些性能指标 计算机网络的分层体系结构，包括协议和服务的概念。 计算机网络定义 计算机网络是：以传输信息为基本目的，用通信线路和通信设备连接起来的一些相互连接、自治的计算机的集合。 计算机网络的分类 按照覆盖范围分类： 局域网 城域网 广域网 个人区域网 按照网络的使用者分类： 公用网 专用网 三种交换方式 电路交换 电路交换机接通电话线的方式称为电路交换 电路交... ]]></description>
    <pubDate>Mon, 03 Nov 2025 02:08:49 GMT</pubDate>
  </item><item>
    <title>第三章 数据链路层</title>
    <link>https://kaneyin.github.io/blog/Computer-Network-Basic/%E7%AC%AC%E4%B8%89%E7%AB%A0-%E6%95%B0%E6%8D%AE%E9%93%BE%E8%B7%AF%E5%B1%82</link>
    <guid>https://kaneyin.github.io/blog/Computer-Network-Basic/%E7%AC%AC%E4%B8%89%E7%AB%A0-%E6%95%B0%E6%8D%AE%E9%93%BE%E8%B7%AF%E5%B1%82</guid>
    <description><![CDATA[ 章节导航 概述 物理层 数据链路层 网络层 运输层 应用层 数据链路层 数据链路层属于计算机网络的低层。数据链路层主要使用两种信道： 点对点信道：这种信道使用一对一的点对点通信方式。 广播信道：这种信道使用一对多的广播通信方式。 **本章重点问题： 封装成帧、差错检测和可靠传输 互联网点对点协议实例 广播信道的特点以及媒体接入控制的概念，以及以太网的媒体介入控制协议CSMA/CD协议 适配器，集线器，网桥，以太网交换机的作用以及使用场合 数据链路层基本概念 链路是从一个结点到相邻结点的一段物理链路，数据链路则是在链路的基础上增加了一些必要的硬件和软件的逻辑链路。 使用点对点信道数据链路层 概述... ]]></description>
    <pubDate>Mon, 03 Nov 2025 02:08:49 GMT</pubDate>
  </item><item>
    <title>第二章 物理层</title>
    <link>https://kaneyin.github.io/blog/Computer-Network-Basic/%E7%AC%AC%E4%BA%8C%E7%AB%A0-%E7%89%A9%E7%90%86%E5%B1%82</link>
    <guid>https://kaneyin.github.io/blog/Computer-Network-Basic/%E7%AC%AC%E4%BA%8C%E7%AB%A0-%E7%89%A9%E7%90%86%E5%B1%82</guid>
    <description><![CDATA[ 章节导航 概述 物理层 数据链路层 网络层 运输层 应用层 物理层 基本概念 物理层，就是要解决在各种传输媒体上传输比特0和比特1的问题。给数据链路层提供透明传输比特流的服务。 主要任务 机械特性 电气特性 功能特性 过程特性 物理层下的传输媒体 双绞线，用两根绝缘铜线扭在一起的通信媒体，绞合在一起是为了减少相邻导线的电磁干扰。双绞线可分为屏蔽双绞线和非屏蔽双绞线。在数字传输时，若传输速率为每秒几个兆比特，则传输距离可达几公里。双绞线价格便宜，布线方便，主要用于电话用户线和局域网中。 同轴电缆，由内导体铜质芯线、绝缘层、网状编织的外导体屏蔽层以及保护塑料外层所组成。同轴电缆的这种结构和屏蔽性使... ]]></description>
    <pubDate>Mon, 03 Nov 2025 02:08:49 GMT</pubDate>
  </item>
    </channel>
  </rss>