<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Jiahonzheng</title>
    <link>https://www.jiahonzheng.com/</link>
    <description>Recent content on Jiahonzheng</description>
    <generator>Hugo -- 0.134.1</generator>
    <language>zh</language>
    <lastBuildDate>Thu, 10 Mar 2022 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://www.jiahonzheng.com/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>爆仓与穿仓</title>
      <link>https://www.jiahonzheng.com/posts/account-blow-up/</link>
      <pubDate>Thu, 10 Mar 2022 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/account-blow-up/</guid>
      <description>这几天，青山与嘉能可的新闻闹得沸沸扬扬，新闻里可以看到轧空、穿仓的字眼。于是，心血来潮，想写篇文章记录一下这些名词。</description>
    </item>
    <item>
      <title>Gitea 与 GitHub 仓库同步</title>
      <link>https://www.jiahonzheng.com/posts/git-mirror-repository/</link>
      <pubDate>Wed, 19 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/git-mirror-repository/</guid>
      <description>之前弄毕设和外包项目时，使用了自建的 &lt;a href=&#34;https://gitea.io&#34;&gt;Gitea&lt;/a&gt; 来托管项目代码。出于&lt;strong&gt;存储安全&lt;/strong&gt;的考虑，现打算将上面的仓库数据迁移至 &lt;a href=&#34;https://github.com&#34;&gt;GitHub&lt;/a&gt; 。</description>
    </item>
    <item>
      <title>GitHub Actions 配置 golangci-lint</title>
      <link>https://www.jiahonzheng.com/posts/github-actions-golangci-lint/</link>
      <pubDate>Sun, 09 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/github-actions-golangci-lint/</guid>
      <description>&lt;strong&gt;代码规范&lt;/strong&gt;能够让项目代码风格一致，并发现潜在的缺陷，提高研发效率。本篇博客将介绍 Golang 代码检查工具 golangci-lint ，及其在 GitHub Actions 上的配置。</description>
    </item>
    <item>
      <title>Docker 安装与升级</title>
      <link>https://www.jiahonzheng.com/posts/docker-installation/</link>
      <pubDate>Tue, 07 Dec 2021 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/docker-installation/</guid>
      <description>Docker 是当前非常流行的容器方案，本篇博客将介绍 Docker Engine 的安装与升级教程。</description>
    </item>
    <item>
      <title>Docker Certbot HTTPS 证书申请</title>
      <link>https://www.jiahonzheng.com/posts/docker-certbot/</link>
      <pubDate>Sun, 02 May 2021 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/docker-certbot/</guid>
      <description>Let&amp;rsquo;s Encrypt 是一家免费、开放、自动化的证书颁发机构（CA），我们可使用 Certbot 官方工具从其申请免费 HTTPS 证书。为了不污染主机环境，我们可使用 Docker Certbot 证书申请方案。</description>
    </item>
    <item>
      <title>WSL 2 使用宿主机代理</title>
      <link>https://www.jiahonzheng.com/posts/wsl2-host-proxy/</link>
      <pubDate>Tue, 20 Apr 2021 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/wsl2-host-proxy/</guid>
      <description>在使用 WSL 2 时，为了更好的网络体验，我们需要为其配置代理。通常，我们宿主机是运行着代理软件的，因此我们可以让 WSL 2 使用宿主机代理。</description>
    </item>
    <item>
      <title>前端路由实现方式</title>
      <link>https://www.jiahonzheng.com/posts/spa-router/</link>
      <pubDate>Mon, 03 Feb 2020 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/spa-router/</guid>
      <description>在 Web SPA 中，&lt;strong&gt;前端路由&lt;/strong&gt;描述的 URL 与 UI 之间的单向映射关系，即 URL 变化引起 UI 页面的更新（无需刷新页面）。</description>
    </item>
    <item>
      <title> 对比 encodeURI 和 encodeURIComponent</title>
      <link>https://www.jiahonzheng.com/posts/encodeuri-vs-encodeuricomponent.md/</link>
      <pubDate>Wed, 20 Nov 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/encodeuri-vs-encodeuricomponent.md/</guid>
      <description>&lt;code&gt;encodeURI&lt;/code&gt; 和 &lt;code&gt;encodeURIComponent&lt;/code&gt; 都可用于对 URL 进行 &lt;strong&gt;转义编码&lt;/strong&gt;，但二者之间是存在差异的，其应用场景是不相同的。</description>
    </item>
    <item>
      <title>前端性能优化：GZIP</title>
      <link>https://www.jiahonzheng.com/posts/gzip/</link>
      <pubDate>Thu, 14 Nov 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/gzip/</guid>
      <description>本文介绍了 GZIP 压缩技术的原理和工作机制，以及如何在 Nginx 服务器上进行配置以优化 Web 应用程序的性能。</description>
    </item>
    <item>
      <title>教育贷</title>
      <link>https://www.jiahonzheng.com/posts/educational-loan/</link>
      <pubDate>Wed, 13 Nov 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/educational-loan/</guid>
      <description>当你想报名课程，却发现钱不充裕时，怎么办？&lt;strong&gt;教育贷&lt;/strong&gt;帮你解决！</description>
    </item>
    <item>
      <title>V-REP 路径规划算法与迷宫</title>
      <link>https://www.jiahonzheng.com/posts/v-rep-homework-5/</link>
      <pubDate>Thu, 07 Nov 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/v-rep-homework-5/</guid>
      <description>中山大学机器人导论作业 5 ：使用 V-REP 实现迷宫环境下的路径规划算法</description>
    </item>
    <item>
      <title>V-REP 多车道巡线与避障</title>
      <link>https://www.jiahonzheng.com/posts/v-rep-homework-4/</link>
      <pubDate>Fri, 18 Oct 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/v-rep-homework-4/</guid>
      <description>中山大学机器人导论作业 4 ：使用 V-REP 实现多车道巡线与避障</description>
    </item>
    <item>
      <title>V-REP 视觉巡线小车</title>
      <link>https://www.jiahonzheng.com/posts/v-rep-homework-3/</link>
      <pubDate>Thu, 10 Oct 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/v-rep-homework-3/</guid>
      <description>中山大学机器人导论作业 3 ：使用 V-REP 实现视觉巡线小车</description>
    </item>
    <item>
      <title>V-REP 光感巡线小车</title>
      <link>https://www.jiahonzheng.com/posts/v-rep-homework-2/</link>
      <pubDate>Mon, 23 Sep 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/v-rep-homework-2/</guid>
      <description>中山大学机器人导论作业 2 ：使用 V-REP 实现光感巡线小车</description>
    </item>
    <item>
      <title>V-REP 小车建模</title>
      <link>https://www.jiahonzheng.com/posts/v-rep-homework-1/</link>
      <pubDate>Sun, 15 Sep 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/v-rep-homework-1/</guid>
      <description>中山大学机器人导论作业 1 ：使用 V-REP 实现小车建模</description>
    </item>
    <item>
      <title>Golang Lua</title>
      <link>https://www.jiahonzheng.com/posts/golang-lua/</link>
      <pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/golang-lua/</guid>
      <description>Golang 是静态语言，Lua 是动态语言，Golang 的性能和效率各语言中表现得非常不错，但在动态能力上，肯定是无法与 Lua 相比。那么如果我们能够将二者结合起来，就能综合二者各自的长处了。</description>
    </item>
    <item>
      <title>Golang defer 关键字</title>
      <link>https://www.jiahonzheng.com/posts/golang-defer/</link>
      <pubDate>Mon, 04 Mar 2019 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/golang-defer/</guid>
      <description>defer 是 Golang 中一个非常重要的关键字，其在函数返回之前进行调用，进行资源回收、错误处理等工作。</description>
    </item>
    <item>
      <title>大一下学习生活总结</title>
      <link>https://www.jiahonzheng.com/posts/freshman-semester-2-summary/</link>
      <pubDate>Fri, 31 Aug 2018 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/freshman-semester-2-summary/</guid>
      <description>本篇博客是对转专业后的大一学年的学习生活总结。</description>
    </item>
    <item>
      <title>C&#43;&#43; 虚函数实现</title>
      <link>https://www.jiahonzheng.com/posts/cpp-virtual-function-implementation/</link>
      <pubDate>Wed, 25 Apr 2018 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/cpp-virtual-function-implementation/</guid>
      <description>C++ 虚函数通常使用&lt;strong&gt;虚函数表&lt;/strong&gt;实现。</description>
    </item>
    <item>
      <title>JavaScript 变量提升</title>
      <link>https://www.jiahonzheng.com/posts/js-hoisting/</link>
      <pubDate>Thu, 29 Mar 2018 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/js-hoisting/</guid>
      <description>在 JavaScript 的世界中，&lt;strong&gt;变量提升&lt;/strong&gt;是一个将变量声明或者函数声明提升到作用域起始处的过程。</description>
    </item>
    <item>
      <title>大一上学习生活总结</title>
      <link>https://www.jiahonzheng.com/posts/freshman-semester-1-summary/</link>
      <pubDate>Sat, 03 Mar 2018 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/freshman-semester-1-summary/</guid>
      <description>这是一篇关于转专业后的大一上学期学习生活总结的博客。</description>
    </item>
    <item>
      <title>第一篇博客</title>
      <link>https://www.jiahonzheng.com/posts/the-first-blog/</link>
      <pubDate>Thu, 21 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://www.jiahonzheng.com/posts/the-first-blog/</guid>
      <description>这是 ++ 的第一篇博客</description>
    </item>
  </channel>
</rss>
