just push

This commit is contained in:
dichgrem 2024-11-17 15:22:12 +08:00
parent 1fb34f1b94
commit 6f01f8c457
68 changed files with 314 additions and 706 deletions

View File

@ -1,106 +0,0 @@
+++
title = "乱七八糟:时间的标准与格式"
date = 2024-05-13
[taxonomies]
tags = ["乱七八糟"]
+++
前言 时间作为人类社会中不可或缺的重要元素其标准化与格式化一直是人类社会发展过程中的重要课题之一。本文将探讨一系列时间标准与格式从最古老的GMT格林威治标准时间到最新的RFC3339以及各种时区表示方法和日期时间的格式化方式。
<!-- more -->
## 计时技术与国际原子时
人类历史上出现的计时手段大体上能分为三类:
- 通过某种匀速的运动来表示时间、比如沙漏、水钟、香钟(烧香)。这种方 式的缺陷很大,是一种很粗略的时间衡量方法
- 通过天文观测,通过日月或其他星辰的参考确定时间。现在我们已经知道,星系的运动也不是匀速的过程。
- 通过固定频率的震动,最早是伽利略通过教堂的吊灯发现了摆的等时性,也就是摆角较小时,吊灯摆动一次的时间是相同的。距今三四百年前的摆钟,基本上都是利用 这一原理实现的。
现在,人类已知的最精确的计时技术是原子钟,它以原子共振频率标准来计算和保持 时间的准确。它的精度可以达到持续运行上亿年而误差不超过 1 秒。
基于这种技术,后来国际计量协会结合了全球 400 多个原子钟,规定 1 秒为铯-133 原子基态两个超精细能级间跃迁辐射震荡 9,192,631,770 周所持续的时间。这个定义就叫国际 原子时International Atomic Time TAI。这样我们钟表里指针应该转多快也有了一个 统一的标准。
国际原子时的秒长以格林威治时间 ``1958 年 1 月 1 日 0 时``的秒长为基准。也就是规定, 在这一瞬间,国际原子时的秒长和世界时的秒长是一样的。
## GMT格林威治标准时间
格林威治(又译格林尼治)它是一个位处英国伦敦的小镇。
17 世纪,英国航海事业发展迅速,当时海上航行亟需精确的精度指示,于是英国皇家在格林威治这个地方设立了一个天文台负责测量正确经度的工作。
后来 1884 年,在美国华盛顿召开的国际经度会以决定以经过格林尼治天文台(旧址) 的经线为本初子午线0 度经线)。同时这次会以也将全球划分为了 24 个时区。0 度经线所 在的时区为 0 时区。
现在,有时候你要买一个机械表,如果它说支持 GMT意思就是支持显示格林威治标准时间。
## UTC世界时
UTC 主要用来衡量一天究竟有多长。一旦 一天的长度可以确定,那么将这个长度除以 24 就能确定一小时的长度。以此类推、分钟、 秒的长度我们就都能确定了。
随着科学技术的发展和对时间测量精确度的要求提高人们逐渐意识到地球自转并不是一个完全恒定的过程因此需要更准确的时间标准。1928 年,国际天文联合会提出了 UTCCoordinated Universal Time协调世界时的概念.中文称为世界时,是一种基于地球自转的时间标准。它旨在提供一种统一的时间系统,使得全球各地的时间能够保持一致。
世界时是一种天文时间系统它以地球的自转周期为基础一天分为24小时每小时60分钟每分钟60秒。尽管UTC已经成为现代国际时间标准但世界时仍然在一些科学和天文领域中使用尤其是在历法、天文观测和计算机编程等领域。
## 小结UTC/GMT
GMT 是最早的国际时间标准,后来是 UTC
因为 UTC 要逼近 UT而 UT 又以 GMT 为标准。十分严格地说UTC 和 GMT 不是 一个东西。但宽松地说,你可以把 UTC 等同于 GMT而且有些网站和应用程序就是这么 干的。
因为 UTC 标准已经使用多年。所以现在如果再看到 GMT 这个词,它指的通常不是 国际时间,而是格林威治所在的时区,也就是 0 时区。同时,通常行政区有很多适应自己 所在地的时区缩写,遗憾的是,这种写法经常会撞车。
比如CCT它可以表示美国中部时间Central Standard Time澳大利亚中部时间 Central Standard Time中国标准时间China Standard Time和古巴标准时间Cuba Standard Time
所以、如果我写 CCT 2022-08-03 11:56 就很容易误解了。这个时候我们非常需要一种 没有歧义的日期时间写法。
## 时区与 UTC 偏移量
现行的时区表示更多是使用 UTC+偏移量的方式来表示的。比如北京是在东 8 区,时 间比 UTC 要早 8 小时,那么在表示北京时区的方式就是 UTC+08:00。虽然地理界定上只有 东西十二区,但是什么地方采用什么方式表达时间实际取决于当地的行政命令。因此 UTC+12:00 并不是偏移量的上限。打开你电脑上的日期时间设置,你会发现有的的国家采用的是 UTC+14:00。还有的国家偏移量并不完全是小时的整数倍比如 UTC+12:45。同时也有很多应用会使用 GMT+0800 的方式表示,效果是一样的。
## 日期时间的表示格式
2022 年 9 月 3 日该怎么表示?是 2022/09/03 还是 2022-09-03 还是 Sep 03 2022 ?这又 是一个标准问题,当前的情况是,各个国家有符合本地习惯的日期时间格式标准,同时国 际上也有诸多日期时间格式标准,比如 ISO 8601 和 RFC3339 等。
各种格式都有软件采用,所以编程语言中的日期标准库,一般都会准备 dateformat 工 具,自己编码日期时间的格式。
## ISO 8601
国际标准 ISO 8601是国际标准化组织的日期和时间的表示方法和我们之前提过的 UTC 不同UTC 是一种时间标准,而 ISO 8601 是一种标准的时间格式,大多数的编程语 言都支持。
使用 ISO 8601 格式可以明确表示下面的时间。
- 公历日期
- 24 小时制的时间
- UTC 时区偏移量
- 时间间隔
以及上面几种元素的组合。
比如,下面就是一个符合 ISO 8601 的日期时间表示。
``2022-09-03T14:13:00Z``,这个时间戳中间的 T 用来分隔 日期 和 时间,最后字母 Z 表示 0 时区,也就是 UTC 或 GMT 时间。
## Unix 时间戳与闰秒
Unix 时间戳是一种将时间跟踪为运行总秒数的方法,这个技术从 1970 年 1 月 1 日的 UTC 开始。因此Unix 时间戳只表示从特定时间点到现在的秒数。而且,需要注意的是,无论你身处何地,这个总秒数的值在技术上都不会发生改变。所以这对计算机系统,客户端和服务端的通信和日期跟踪十分有用。
闰秒是为了调整世界时UTC与地球自转的不同步而引入的时间修正措施。地球自转速度并不是完全恒定的它受到地球内部和外部因素的影响例如地球的摆动和潮汐等。这些因素会导致地球自转周期的微小变化使得世界时UTC和地球自转之间产生了微小的差距。
为了使UTC与地球自转保持同步国际上约定在需要时通过添加或减少一秒来调整时间。这一秒被称为“闰秒”。通常情况下闰秒会在 UTC 时间的最后一天6月30日或12月31日的23:59:59之后添加成为23:59:60这样当UTC时间跨越到下一秒时就保持了与地球自转的同步。需要注意的是由于闰秒的引入这一分钟含有闰秒的那一秒会比平常的分钟长一秒。
闰秒由国际地球自转服务IERS负责决定何时引入以及应该是添加一秒还是减少一秒。尽管闰秒对大多数人来说没有太大影响但对于一些关键系统如卫星导航、通信和金融交易等可能会引起一些问题因为它会导致系统的时间同步需要进行调整。
关于闰秒问题,什么时候出现闰秒是不确定的。那么在 Unix 时间戳里,是怎么处理闰秒的呢?答案是减慢时钟。
```
[root@influxdb ~]# date -d '@867715199'
1997年 07月 01日 星期二 07:59:59 CST
[root@influxdb ~]# date -d '@867715200'
1997年 07月 01日 星期二 08:00:00 CST
```
比如 1997 年 6 月 30 日 23:59:59 到 1997 年 7 月 1 日 00:00:00 应该发生一次闰秒。
那么 867715200 这个时间戳应该对应 1997 年 6 月 30 日的 23:59:60。但是 Linux 好像压 根不知道这件事。这是因为 Unix 时间戳标准里,把一天定死为 86400 秒了。所以类 Unix 的处理方案是,当闰秒发生时由 ntrp 服务把时钟慢下来,当时间戳为 867715199 的时候, 让它在这个值上多停留 1 秒然后再进入 867715200。
## 在编程语言中获取 UTC 时间和 ISO 格式
https://www.rfc-editor.org/rfc/rfc3339
## RFC3339 和 ISO8601 之间的关系
https://ijmacd.github.io/rfc3339-iso8601/

View File

@ -34,7 +34,6 @@ tags = ["综合工程"]
## 一、写盘BIOS启动 ## 一、写盘BIOS启动
1.使用 Rufus 将下载好的 ATV 镜像写入U盘。 1.使用 Rufus 将下载好的 ATV 镜像写入U盘。
![image-tlej.webp](https://pic.dich.ink/1/2024/03/06/65e8665dd27b9.webp)
2.将U盘插到目标主机上并设置 BIOS-boot 优先启动,不同设备进入 BIOS 的按键不同大部分是F2或者DEL 2.将U盘插到目标主机上并设置 BIOS-boot 优先启动,不同设备进入 BIOS 的按键不同大部分是F2或者DEL

View File

@ -1,206 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dich&#x27;blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="robots" content="noodp"/>
<link rel="stylesheet" href="https://blog.dich.bid/style.css">
<link rel="stylesheet" href="https://blog.dich.bid/color/blue.css">
<link rel="stylesheet" href="https://blog.dich.bid/color/background_dark.css">
<link rel="stylesheet" href="https://blog.dich.bid/font-hack-subset.css">
<meta name="description" content="">
<meta property="og:description" content="">
<meta property="og:title" content="Dich'blog">
<meta property="og:type" content="article">
<meta property="og:url" content="https://blog.dich.bid/about-time/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="">
<meta name="twitter:title" content="Dich'blog">
<meta property="twitter:domain" content="blog.dich.bid">
<meta property="twitter:url" content="https://blog.dich.bid/about-time/">
<link rel="alternate" type="application/atom+xml" title="Dich&#x27;blog Atom Feed" href="https://blog.dich.bid/atom.xml" />
</head>
<body class="">
<div class="container">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="https://blog.dich.bid" style="text-decoration: none;">
<div class="logo">
Dich&#x27;blog
</div>
</a>
</div>
</div>
<nav class="menu">
<ul class="menu__inner">
<li><a href="https://blog.dich.bid">blog</a></li>
<li><a href="https://blog.dich.bid/tags">tags</a></li>
<li><a href="https://blog.dich.bid/archive">archive</a></li>
<li class="active"><a href="https://blog.dich.bid/about">about me</a></li>
<li><a href="https://blog.dich.bid/links">links</a></li>
<li><a href="https://blog.dich.bid/search">search</a></li>
<li><a href="https://github.com/Dichgrem" target="_blank" rel="noopener noreferrer">github</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title"><a href="https://blog.dich.bid/about-time/">乱七八糟:时间的标准与格式</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-05-13
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
<div class="post-content">
<p>前言 时间作为人类社会中不可或缺的重要元素其标准化与格式化一直是人类社会发展过程中的重要课题之一。本文将探讨一系列时间标准与格式从最古老的GMT格林威治标准时间到最新的RFC3339以及各种时区表示方法和日期时间的格式化方式。</p>
<span id="continue-reading"></span><h2 id="ji-shi-ji-shu-yu-guo-ji-yuan-zi-shi">计时技术与国际原子时</h2>
<p>人类历史上出现的计时手段大体上能分为三类:</p>
<ul>
<li>通过某种匀速的运动来表示时间、比如沙漏、水钟、香钟(烧香)。这种方 式的缺陷很大,是一种很粗略的时间衡量方法</li>
<li>通过天文观测,通过日月或其他星辰的参考确定时间。现在我们已经知道,星系的运动也不是匀速的过程。</li>
<li>通过固定频率的震动,最早是伽利略通过教堂的吊灯发现了摆的等时性,也就是摆角较小时,吊灯摆动一次的时间是相同的。距今三四百年前的摆钟,基本上都是利用 这一原理实现的。</li>
</ul>
<p>现在,人类已知的最精确的计时技术是原子钟,它以原子共振频率标准来计算和保持 时间的准确。它的精度可以达到持续运行上亿年而误差不超过 1 秒。</p>
<p>基于这种技术,后来国际计量协会结合了全球 400 多个原子钟,规定 1 秒为铯-133 原子基态两个超精细能级间跃迁辐射震荡 9,192,631,770 周所持续的时间。这个定义就叫国际 原子时International Atomic Time TAI。这样我们钟表里指针应该转多快也有了一个 统一的标准。</p>
<p>国际原子时的秒长以格林威治时间 <code>1958 年 1 月 1 日 0 时</code>的秒长为基准。也就是规定, 在这一瞬间,国际原子时的秒长和世界时的秒长是一样的。</p>
<h2 id="gmt-ge-lin-wei-zhi-biao-zhun-shi-jian">GMT格林威治标准时间</h2>
<p>格林威治(又译格林尼治)它是一个位处英国伦敦的小镇。</p>
<p>17 世纪,英国航海事业发展迅速,当时海上航行亟需精确的精度指示,于是英国皇家在格林威治这个地方设立了一个天文台负责测量正确经度的工作。</p>
<p>后来 1884 年,在美国华盛顿召开的国际经度会以决定以经过格林尼治天文台(旧址) 的经线为本初子午线0 度经线)。同时这次会以也将全球划分为了 24 个时区。0 度经线所 在的时区为 0 时区。</p>
<p>现在,有时候你要买一个机械表,如果它说支持 GMT意思就是支持显示格林威治标准时间。</p>
<h2 id="utc-shi-jie-shi">UTC世界时</h2>
<p>UTC 主要用来衡量一天究竟有多长。一旦 一天的长度可以确定,那么将这个长度除以 24 就能确定一小时的长度。以此类推、分钟、 秒的长度我们就都能确定了。</p>
<p>随着科学技术的发展和对时间测量精确度的要求提高人们逐渐意识到地球自转并不是一个完全恒定的过程因此需要更准确的时间标准。1928 年,国际天文联合会提出了 UTCCoordinated Universal Time协调世界时的概念.中文称为世界时,是一种基于地球自转的时间标准。它旨在提供一种统一的时间系统,使得全球各地的时间能够保持一致。</p>
<p>世界时是一种天文时间系统它以地球的自转周期为基础一天分为24小时每小时60分钟每分钟60秒。尽管UTC已经成为现代国际时间标准但世界时仍然在一些科学和天文领域中使用尤其是在历法、天文观测和计算机编程等领域。</p>
<h2 id="xiao-jie-utc-gmt">小结UTC/GMT</h2>
<p>GMT 是最早的国际时间标准,后来是 UTC
因为 UTC 要逼近 UT而 UT 又以 GMT 为标准。十分严格地说UTC 和 GMT 不是 一个东西。但宽松地说,你可以把 UTC 等同于 GMT而且有些网站和应用程序就是这么 干的。
因为 UTC 标准已经使用多年。所以现在如果再看到 GMT 这个词,它指的通常不是 国际时间,而是格林威治所在的时区,也就是 0 时区。同时,通常行政区有很多适应自己 所在地的时区缩写,遗憾的是,这种写法经常会撞车。
比如CCT它可以表示美国中部时间Central Standard Time澳大利亚中部时间 Central Standard Time中国标准时间China Standard Time和古巴标准时间Cuba Standard Time</p>
<p>所以、如果我写 CCT 2022-08-03 11:56 就很容易误解了。这个时候我们非常需要一种 没有歧义的日期时间写法。</p>
<h2 id="shi-qu-yu-utc-pian-yi-liang">时区与 UTC 偏移量</h2>
<p>现行的时区表示更多是使用 UTC+偏移量的方式来表示的。比如北京是在东 8 区,时 间比 UTC 要早 8 小时,那么在表示北京时区的方式就是 UTC+08:00。虽然地理界定上只有 东西十二区,但是什么地方采用什么方式表达时间实际取决于当地的行政命令。因此 UTC+12:00 并不是偏移量的上限。打开你电脑上的日期时间设置,你会发现有的的国家采用的是 UTC+14:00。还有的国家偏移量并不完全是小时的整数倍比如 UTC+12:45。同时也有很多应用会使用 GMT+0800 的方式表示,效果是一样的。</p>
<h2 id="ri-qi-shi-jian-de-biao-shi-ge-shi">日期时间的表示格式</h2>
<p>2022 年 9 月 3 日该怎么表示?是 2022/09/03 还是 2022-09-03 还是 Sep 03 2022 ?这又 是一个标准问题,当前的情况是,各个国家有符合本地习惯的日期时间格式标准,同时国 际上也有诸多日期时间格式标准,比如 ISO 8601 和 RFC3339 等。</p>
<p>各种格式都有软件采用,所以编程语言中的日期标准库,一般都会准备 dateformat 工 具,自己编码日期时间的格式。</p>
<h2 id="iso-8601">ISO 8601</h2>
<p>国际标准 ISO 8601是国际标准化组织的日期和时间的表示方法和我们之前提过的 UTC 不同UTC 是一种时间标准,而 ISO 8601 是一种标准的时间格式,大多数的编程语 言都支持。</p>
<p>使用 ISO 8601 格式可以明确表示下面的时间。</p>
<ul>
<li>公历日期</li>
<li>24 小时制的时间</li>
<li>UTC 时区偏移量</li>
<li>时间间隔</li>
</ul>
<p>以及上面几种元素的组合。</p>
<p>比如,下面就是一个符合 ISO 8601 的日期时间表示。</p>
<p><code>2022-09-03T14:13:00Z</code>,这个时间戳中间的 T 用来分隔 日期 和 时间,最后字母 Z 表示 0 时区,也就是 UTC 或 GMT 时间。</p>
<h2 id="unix-shi-jian-chuo-yu-run-miao">Unix 时间戳与闰秒</h2>
<p>Unix 时间戳是一种将时间跟踪为运行总秒数的方法,这个技术从 1970 年 1 月 1 日的 UTC 开始。因此Unix 时间戳只表示从特定时间点到现在的秒数。而且,需要注意的是,无论你身处何地,这个总秒数的值在技术上都不会发生改变。所以这对计算机系统,客户端和服务端的通信和日期跟踪十分有用。</p>
<p>闰秒是为了调整世界时UTC与地球自转的不同步而引入的时间修正措施。地球自转速度并不是完全恒定的它受到地球内部和外部因素的影响例如地球的摆动和潮汐等。这些因素会导致地球自转周期的微小变化使得世界时UTC和地球自转之间产生了微小的差距。</p>
<p>为了使UTC与地球自转保持同步国际上约定在需要时通过添加或减少一秒来调整时间。这一秒被称为“闰秒”。通常情况下闰秒会在 UTC 时间的最后一天6月30日或12月31日的23:59:59之后添加成为23:59:60这样当UTC时间跨越到下一秒时就保持了与地球自转的同步。需要注意的是由于闰秒的引入这一分钟含有闰秒的那一秒会比平常的分钟长一秒。</p>
<p>闰秒由国际地球自转服务IERS负责决定何时引入以及应该是添加一秒还是减少一秒。尽管闰秒对大多数人来说没有太大影响但对于一些关键系统如卫星导航、通信和金融交易等可能会引起一些问题因为它会导致系统的时间同步需要进行调整。</p>
<p>关于闰秒问题,什么时候出现闰秒是不确定的。那么在 Unix 时间戳里,是怎么处理闰秒的呢?答案是减慢时钟。</p>
<pre style="background-color:#151515;color:#e8e8d3;"><code><span>[root@influxdb ~]# date -d &#39;@867715199&#39;
</span><span>1997年 07月 01日 星期二 07:59:59 CST
</span><span>[root@influxdb ~]# date -d &#39;@867715200&#39;
</span><span>1997年 07月 01日 星期二 08:00:00 CST
</span></code></pre>
<p>比如 1997 年 6 月 30 日 23:59:59 到 1997 年 7 月 1 日 00:00:00 应该发生一次闰秒。</p>
<p>那么 867715200 这个时间戳应该对应 1997 年 6 月 30 日的 23:59:60。但是 Linux 好像压 根不知道这件事。这是因为 Unix 时间戳标准里,把一天定死为 86400 秒了。所以类 Unix 的处理方案是,当闰秒发生时由 ntrp 服务把时钟慢下来,当时间戳为 867715199 的时候, 让它在这个值上多停留 1 秒然后再进入 867715200。</p>
<h2 id="zai-bian-cheng-yu-yan-zhong-huo-qu-utc-shi-jian-he-iso-ge-shi">在编程语言中获取 UTC 时间和 ISO 格式</h2>
<p>https://www.rfc-editor.org/rfc/rfc3339</p>
<h2 id="rfc3339-he-iso8601-zhi-jian-de-guan-xi">RFC3339 和 ISO8601 之间的关系</h2>
<p>https://ijmacd.github.io/rfc3339-iso8601/</p>
</div>
<div class="pagination">
<div class="pagination__title">
<span class="pagination__title-h">Thanks for reading! Read other posts?</span>
<hr />
</div>
<div class="pagination__buttons">
<span class="button previous">
<a href="https://blog.dich.bid/docker-learn-9/">
<span class="button__icon"></span>&nbsp;
<span class="button__text">Docker学习笔记(九)</span>
</a>
</span>
<span class="button next">
<a href="https://blog.dich.bid/chrome-shortcut-key/">
<span class="button__text">乱七八糟:Chrome常用快捷键</span>&nbsp;
<span class="button__icon"></span>
</a>
</span>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>©
2024
Dichgrem</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
</span>
</div>
</div>
</footer>
</div>
</body>
</html>

View File

@ -350,16 +350,6 @@
:: ::
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span> <a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
</li>
<li class="post-list">
<a href="https://blog.dich.bid/about-time/">
<span class="post-date">2024-05-13</span>
:: <span class="post-list-title">乱七八糟:时间的标准与格式</span></a>
<span class="post-tags-inline">
::
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
</li> </li>
<li class="post-list"> <li class="post-list">
<a href="https://blog.dich.bid/docker-learn-9/"> <a href="https://blog.dich.bid/docker-learn-9/">

View File

@ -546,26 +546,6 @@
<summary type="html">&lt;p&gt;前言 在日常使用浏览器时,掌握一些快捷键和技巧可以节省大量时间,提高工作和学习效率。通过学习和实践,能够更加轻松地应对各种网页浏览场景,让浏览器成为工作和学习的得力助手。&lt;&#x2F;p&gt; <summary type="html">&lt;p&gt;前言 在日常使用浏览器时,掌握一些快捷键和技巧可以节省大量时间,提高工作和学习效率。通过学习和实践,能够更加轻松地应对各种网页浏览场景,让浏览器成为工作和学习的得力助手。&lt;&#x2F;p&gt;
</summary> </summary>
</entry>
<entry xml:lang="en">
<title>乱七八糟:时间的标准与格式</title>
<published>2024-05-13T00:00:00+00:00</published>
<updated>2024-05-13T00:00:00+00:00</updated>
<author>
<name>
Unknown
</name>
</author>
<link rel="alternate" type="text/html" href="https://blog.dich.bid/about-time/"/>
<id>https://blog.dich.bid/about-time/</id>
<summary type="html">&lt;p&gt;前言 时间作为人类社会中不可或缺的重要元素其标准化与格式化一直是人类社会发展过程中的重要课题之一。本文将探讨一系列时间标准与格式从最古老的GMT格林威治标准时间到最新的RFC3339以及各种时区表示方法和日期时间的格式化方式。&lt;&#x2F;p&gt;
</summary>
</entry> </entry>
<entry xml:lang="en"> <entry xml:lang="en">
<title>Docker学习笔记(九)</title> <title>Docker学习笔记(九)</title>

View File

@ -128,8 +128,7 @@
</ul> </ul>
<p>安装流程:</p> <p>安装流程:</p>
<h2 id="yi-xie-pan-biosqi-dong">一、写盘BIOS启动</h2> <h2 id="yi-xie-pan-biosqi-dong">一、写盘BIOS启动</h2>
<p>1.使用 Rufus 将下载好的 ATV 镜像写入U盘。 <p>1.使用 Rufus 将下载好的 ATV 镜像写入U盘。</p>
<img src="https://pic.dich.ink/1/2024/03/06/65e8665dd27b9.webp" alt="image-tlej.webp" /></p>
<p>2.将U盘插到目标主机上并设置 BIOS-boot 优先启动,不同设备进入 BIOS 的按键不同大部分是F2或者DEL</p> <p>2.将U盘插到目标主机上并设置 BIOS-boot 优先启动,不同设备进入 BIOS 的按键不同大部分是F2或者DEL</p>
<h2 id="er-kai-shi-an-zhuang">二、开始安装</h2> <h2 id="er-kai-shi-an-zhuang">二、开始安装</h2>
<p>1.boot 成功后可以看到如下界面:</p> <p>1.boot 成功后可以看到如下界面:</p>

View File

@ -148,9 +148,9 @@
</div> </div>
<div class="pagination__buttons"> <div class="pagination__buttons">
<span class="button previous"> <span class="button previous">
<a href="https://blog.dich.bid/about-time/"> <a href="https://blog.dich.bid/docker-learn-9/">
<span class="button__icon"></span>&nbsp; <span class="button__icon"></span>&nbsp;
<span class="button__text">乱七八糟:时间的标准与格式</span> <span class="button__text">Docker学习笔记(九)</span>
</a> </a>
</span> </span>

View File

@ -269,8 +269,8 @@ Docker CLI 提供了多个命令来帮助你创建、管理容器并与之交互
<span class="button next"> <span class="button next">
<a href="https://blog.dich.bid/about-time/"> <a href="https://blog.dich.bid/chrome-shortcut-key/">
<span class="button__text">乱七八糟:时间的标准与格式</span>&nbsp; <span class="button__text">乱七八糟:Chrome常用快捷键</span>&nbsp;
<span class="button__icon"></span> <span class="button__icon"></span>
</a> </a>
</span> </span>

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/routing/">Network的艺术:路由器原理与组网</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-02-19
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/wang-luo-yi-shu/">#网络艺术</a></span>
<div class="post-content">
<p>前言 所谓无线路由,就是具备无线覆盖的路由器,即我们常用的有天线的家用路由器。而家庭组网中,除了选择一个最合适的上网方案,一部好的路由器也是非常重要;那么,如何科学的选购路由器呢?</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/routing/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/searching/">Network的艺术:搜索引擎与爬虫</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/searching/">Network的艺术:搜索引擎与爬虫</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/about-working/">乱七八糟:应届生工作指南</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-12-27
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
<div class="post-content">
<p>前言 什么是“五险一金”?工资到底由那些部分组成?劳动合同怎么签?不仅仅是应届生,很多工作了几年的职场人,也不十分清楚。因此,在这里笔者打算帮助大家彻底把这些事情搞明白。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/about-working/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/about-working/">乱七八糟:应届生工作指南</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-12-27
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
<div class="post-content">
<p>前言 什么是“五险一金”?工资到底由那些部分组成?劳动合同怎么签?不仅仅是应届生,很多工作了几年的职场人,也不十分清楚。因此,在这里笔者打算帮助大家彻底把这些事情搞明白。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/about-working/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/git/">乱七八糟:Git使用简明手册</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/git/">乱七八糟:Git使用简明手册</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单&#x2F;开机启动&#x2F;关闭更新</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-26
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
<div class="post-content">
<p>前言 Windows操作系统作为全球最为普及的桌面操作系统之一其用户界面的设计非常经典而win11中的二级菜单令人感到无语本文教你回到一级菜单。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/windows-some-setting/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单&#x2F;开机启动&#x2F;关闭更新</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-26
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
<div class="post-content">
<p>前言 Windows操作系统作为全球最为普及的桌面操作系统之一其用户界面的设计非常经典而win11中的二级菜单令人感到无语本文教你回到一级菜单。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/windows-some-setting/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/accurate-pronunciation/">乱七八糟:常见发音错误术语集合</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/accurate-pronunciation/">乱七八糟:常见发音错误术语集合</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-nas-dsm/">综合工程:黑群辉NAS极速安装</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-17
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
<div class="post-content">
<p>前言 作为NAS家族中的重要一员Synology的DSM以完善的服务和较高的售价闻名于世因此一般玩家倾向于工控机加黑群晖的方案组建自己的文件服务器。本文就黑群辉安装做了详细阐述。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/awesome-nas-dsm/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-nas-dsm/">综合工程:黑群辉NAS极速安装</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-17
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
<div class="post-content">
<p>前言 作为NAS家族中的重要一员Synology的DSM以完善的服务和较高的售价闻名于世因此一般玩家倾向于工控机加黑群晖的方案组建自己的文件服务器。本文就黑群辉安装做了详细阐述。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/awesome-nas-dsm/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-arch-linux/">综合工程:Arch从入门到入土</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/awesome-arch-linux/">综合工程:Arch从入门到入土</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -246,6 +212,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-openwrt/">综合工程:OpenWrt 软路由部署</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-12
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
<div class="post-content">
<p>前言 openwrt 是一个自由的、兼容性好的嵌入式 linux 发行版。作为软路由玩家必备的一款神器,可以实现诸如去广告,多拨和科学上网等多种功能。本文以 openwrt 在X86平台的安装为例介绍其部署流程。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/awesome-openwrt/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-openwrt/">综合工程:OpenWrt 软路由部署</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-08-12
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/zong-he-gong-cheng/">#综合工程</a></span>
<div class="post-content">
<p>前言 openwrt 是一个自由的、兼容性好的嵌入式 linux 发行版。作为软路由玩家必备的一款神器,可以实现诸如去广告,多拨和科学上网等多种功能。本文以 openwrt 在X86平台的安装为例介绍其部署流程。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/awesome-openwrt/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/awesome-pve-mcsm/">综合工程:PVE安装与MC服务器搭建</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/awesome-pve-mcsm/">综合工程:PVE安装与MC服务器搭建</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/linux-for-pc-3/">Linux-For-PC(三):内核&#x2F;shell&#x2F;包管理&#x2F;文件系统&#x2F;桌面环境</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-07-22
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/linux/">#Linux</a></span>
<div class="post-content">
<p>前言 在Linux世界中内核/shell/包管理/文件系统构成了Linux系统的核心它们相互配合共同构建了一个强大而稳定的操作环境。本文将深入探讨这些关键组成部分解释它们的作用和原理帮助读者更好地理解Linux系统的运作机制。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/linux-for-pc-3/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/linux-for-pc-3/">Linux-For-PC(三):内核&#x2F;shell&#x2F;包管理&#x2F;文件系统&#x2F;桌面环境</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2023-07-22
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/linux/">#Linux</a></span>
<div class="post-content">
<p>前言 在Linux世界中内核/shell/包管理/文件系统构成了Linux系统的核心它们相互配合共同构建了一个强大而稳定的操作环境。本文将深入探讨这些关键组成部分解释它们的作用和原理帮助读者更好地理解Linux系统的运作机制。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/linux-for-pc-3/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/linux-for-pc-2/">Linux-For-PC(二):FHS与目录结构</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/linux-for-pc-2/">Linux-For-PC(二):FHS与目录结构</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">

View File

@ -143,40 +143,6 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/about-time/">乱七八糟:时间的标准与格式</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-05-13
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
<div class="post-content">
<p>前言 时间作为人类社会中不可或缺的重要元素其标准化与格式化一直是人类社会发展过程中的重要课题之一。本文将探讨一系列时间标准与格式从最古老的GMT格林威治标准时间到最新的RFC3339以及各种时区表示方法和日期时间的格式化方式。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/about-time/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="post on-list"> <div class="post on-list">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-7/">Docker学习笔记(七)</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-31
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
<div class="post-content">
<p>前言 容器镜像仓库是 Docker 容器镜像的集中存储和分发系统。它允许开发人员以这些映像的形式轻松共享和部署应用程序。容器镜像仓库在容器化应用程序的部署中起着至关重要的作用,因为它们提供了一种快速、可靠且安全的方式来跨各种生产环境分发容器映像。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/docker-learn-7/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-7/">Docker学习笔记(七)</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-31
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
<div class="post-content">
<p>前言 容器镜像仓库是 Docker 容器镜像的集中存储和分发系统。它允许开发人员以这些映像的形式轻松共享和部署应用程序。容器镜像仓库在容器化应用程序的部署中起着至关重要的作用,因为它们提供了一种快速、可靠且安全的方式来跨各种生产环境分发容器映像。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/docker-learn-7/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-6/">Docker学习笔记(六)</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-6/">Docker学习笔记(六)</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-2/">Docker学习笔记(二)</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-26
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
<div class="post-content">
<p>前言 了解支持 Docker 的核心技术将有助于更深入地了解 Docker 的工作原理,并更有效地使用该平台。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/docker-learn-2/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-2/">Docker学习笔记(二)</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-26
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/xue-xi-bi-ji/">#学习笔记</a></span>
<div class="post-content">
<p>前言 了解支持 Docker 的核心技术将有助于更深入地了解 Docker 的工作原理,并更有效地使用该平台。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/docker-learn-2/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-1/">Docker学习笔记(一)</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/docker-learn-1/">Docker学习笔记(一)</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/opensourcesoftware-licenses/">开源世界:开源软件与协议</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-03
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/kai-yuan-shi-jie/">#开源世界</a></span>
<div class="post-content">
<p>前言 本文旨在介绍开源软件许可证,这些许可证规定了使用、修改和分发开源软件的条件。通过了解不同类型的开源许可证及其特点,读者将能够更好地理解在开发和使用开源软件时的法律和道德责任。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/opensourcesoftware-licenses/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

View File

@ -79,40 +79,6 @@
<div class="posts"> <div class="posts">
<div class="post on-list"> <div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/opensourcesoftware-licenses/">开源世界:开源软件与协议</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-03-03
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/kai-yuan-shi-jie/">#开源世界</a></span>
<div class="post-content">
<p>前言 本文旨在介绍开源软件许可证,这些许可证规定了使用、修改和分发开源软件的条件。通过了解不同类型的开源许可证及其特点,读者将能够更好地理解在开发和使用开源软件时的法律和道德责任。</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/opensourcesoftware-licenses/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/open-source-cross-platform-softs/">开源世界:有关开源的误区</a></h1> <h1 class="post-title"><a href="https://blog.dich.bid/open-source-cross-platform-softs/">开源世界:有关开源的误区</a></h1>
<div class="post-meta-inline"> <div class="post-meta-inline">
@ -245,6 +211,40 @@
</div> </div>
</div>
<div class="post on-list">
<h1 class="post-title"><a href="https://blog.dich.bid/routing/">Network的艺术:路由器原理与组网</a></h1>
<div class="post-meta-inline">
<span class="post-date">
2024-02-19
</span>
</div>
<span class="post-tags-inline">
:: tags:&nbsp;
<a class="post-tag" href="https://blog.dich.bid/tags/wang-luo-yi-shu/">#网络艺术</a></span>
<div class="post-content">
<p>前言 所谓无线路由,就是具备无线覆盖的路由器,即我们常用的有天线的家用路由器。而家庭组网中,除了选择一个最合适的上网方案,一部好的路由器也是非常重要;那么,如何科学的选购路由器呢?</p>
</div>
<div>
<!-- &#xFE0E; -- force text style - some devices render this as emoji -->
<a class="read-more button" href="https://blog.dich.bid/routing/">
<span class="button__text">Read more</span>&nbsp;
<span class="button__icon">&#8617;&#xFE0E;</span>
</a>
</div>
</div> </div>
<div class="pagination"> <div class="pagination">
<div class="pagination__buttons"> <div class="pagination__buttons">

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
{"version":"1.2.0","languages":{"en":{"hash":"en_c9eaa4a9ea","wasm":"en","page_count":107}}} {"version":"1.2.0","languages":{"en":{"hash":"en_4ce712489e","wasm":"en","page_count":106}}}

Binary file not shown.

View File

@ -23,10 +23,6 @@
<loc>https://blog.dich.bid/about-runer-2/</loc> <loc>https://blog.dich.bid/about-runer-2/</loc>
<lastmod>2024-06-11</lastmod> <lastmod>2024-06-11</lastmod>
</url> </url>
<url>
<loc>https://blog.dich.bid/about-time/</loc>
<lastmod>2024-05-13</lastmod>
</url>
<url> <url>
<loc>https://blog.dich.bid/about-working/</loc> <loc>https://blog.dich.bid/about-working/</loc>
<lastmod>2023-12-27</lastmod> <lastmod>2023-12-27</lastmod>

View File

@ -97,7 +97,7 @@
<li class="tag-list"> <li class="tag-list">
<a href="https://blog.dich.bid/tags/luan-qi-ba-zao/"> <a href="https://blog.dich.bid/tags/luan-qi-ba-zao/">
乱七八糟 (22 posts) 乱七八糟 (21 posts)
</a> </a>
</li> </li>

View File

@ -82,7 +82,7 @@ Dich&#x27;blog</title>
<div class="post"> <div class="post">
<h1 class="post-title"> <h1 class="post-title">
tag: #乱七八糟 tag: #乱七八糟
(22 posts) (21 posts)
</h1> </h1>
<a href="https://blog.dich.bid/tags"> <a href="https://blog.dich.bid/tags">
@ -159,16 +159,6 @@ Dich&#x27;blog</title>
:: ::
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span> <a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
</li>
<li class="post-list">
<a href="https://blog.dich.bid/about-time/">
<span class="post-date">2024-05-13</span>
:: <span class="post-list-title">乱七八糟:时间的标准与格式</span></a>
<span class="post-tags-inline">
::
<a class="post-tag" href="https://blog.dich.bid/tags/luan-qi-ba-zao/">#乱七八糟</a></span>
</li> </li>
<li class="post-list"> <li class="post-list">
<a href="https://blog.dich.bid/awesome-podcast-use/"> <a href="https://blog.dich.bid/awesome-podcast-use/">