<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>编程 - 分类 - cfanzp学习笔记</title>
    <link>https://cfanzp008.github.io/categories/code/</link>
    <description>编程 - 分类 - cfanzp学习笔记</description>
    <generator>Hugo -- gohugo.io</generator><language>zh-CN</language><managingEditor>cfan.zp@qq.com (cfanzp)</managingEditor>
      <webMaster>cfan.zp@qq.com (cfanzp)</webMaster><lastBuildDate>Mon, 18 Sep 2023 23:56:44 &#43;0800</lastBuildDate><atom:link href="https://cfanzp008.github.io/categories/code/" rel="self" type="application/rss+xml" /><item>
  <title>google c&#43;&#43; 代码规范中文版</title>
  <link>https://cfanzp008.github.io/google-cpp-style/</link>
  <pubDate>Mon, 18 Sep 2023 23:56:44 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/google-cpp-style/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>数据结构学习笔记</title>
  <link>https://cfanzp008.github.io/data-structure/</link>
  <pubDate>Tue, 25 Apr 2023 21:47:52 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/data-structure/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>平衡二叉树</title>
  <link>https://cfanzp008.github.io/balanced-binary-tree/</link>
  <pubDate>Mon, 24 Apr 2023 18:41:32 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/balanced-binary-tree/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>RESTful API</title>
  <link>https://cfanzp008.github.io/restful-api/</link>
  <pubDate>Mon, 24 Apr 2023 17:01:59 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/restful-api/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>Mac M1中使用lldb调试c&#43;&#43;</title>
  <link>https://cfanzp008.github.io/mac-m1-lldb/</link>
  <pubDate>Tue, 11 Apr 2023 18:33:49 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/mac-m1-lldb/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>c&#43;&#43; STL</title>
  <link>https://cfanzp008.github.io/cpp-stl/</link>
  <pubDate>Tue, 11 Apr 2023 09:24:02 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/cpp-stl/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>C&#43;&#43;排序算法</title>
  <link>https://cfanzp008.github.io/cpp-sort/</link>
  <pubDate>Sun, 09 Apr 2023 12:38:48 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/cpp-sort/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>服务端开发基础</title>
  <link>https://cfanzp008.github.io/server-dev/</link>
  <pubDate>Fri, 24 Mar 2023 21:36:05 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/server-dev/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>yaml配置文件编写规范</title>
  <link>https://cfanzp008.github.io/yaml/</link>
  <pubDate>Tue, 21 Feb 2023 09:34:14 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/yaml/</guid>
  <description><![CDATA[]]></description>
</item>
<item>
  <title>linux中使用脚本关闭进程</title>
  <link>https://cfanzp008.github.io/linux-stop-process/</link>
  <pubDate>Thu, 01 Sep 2022 11:15:18 &#43;0800</pubDate>
  <author>作者</author>
  <guid>https://cfanzp008.github.io/linux-stop-process/</guid>
  <description><![CDATA[linux中使用脚本关闭进程 关闭进程脚本 通过ps命令，grep命令以及awk命令找到进程的pid 使用kill命令关闭进程 脚本demo: 1 2 3 4 5 6 7 8 9 10 11 12 13 rootot@dev doc]# cat stop_mdbook_doc.sh #!/bin/bash kill_pid=`ps -ef | grep mdbook | grep 4001 | grep -v grep | awk &#39;{print $2}&#39;` echo &#34;pid = &#34;${kill_pid} if [ -n &#34;${kill_pid}&#34; ] then kill -9 ${kill_pid} echo &#34;mdbook 4001 pid:&#34;${kill_pid}&#34;进程已kill成功&#34; else echo &#34;mdbook 4001 进程已不存在&#34; fi [root@dev doc]# ]]></description>
</item>
</channel>
</rss>
