<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>标准 - 系列 - Victor's Code Journey</title><link>http://www.victorchu.info/series/%E6%A0%87%E5%87%86/</link><description>标准 - 系列 - Victor's Code Journey</description><generator>Hugo -- gohugo.io</generator><language>zh-cn</language><managingEditor>victorchu0610@outlook.com (victorchutian)</managingEditor><webMaster>victorchu0610@outlook.com (victorchutian)</webMaster><lastBuildDate>Sun, 21 Apr 2019 14:01:44 +0800</lastBuildDate><atom:link href="http://www.victorchu.info/series/%E6%A0%87%E5%87%86/" rel="self" type="application/rss+xml"/><item><title>版本规范</title><link>http://www.victorchu.info/posts/2019/04/6420cdd8/</link><pubDate>Sun, 21 Apr 2019 14:01:44 +0800</pubDate><author><name>victorchutian</name></author><guid>http://www.victorchu.info/posts/2019/04/6420cdd8/</guid><description><![CDATA[<div class="featured-image">
                <img src="/feature-images/spec.webp" referrerpolicy="no-referrer">
            </div><p>版本格式：<code>主版本号.次版本号.修订号</code>，版本号递增规则如下：</p>
<ul>
<li>主版本号：当你做了不兼容的 API 修改，</li>
<li>次版本号：当你做了向下兼容的功能性新增，</li>
<li>修订号：当你做了向下兼容的问题修正。</li>
</ul>
<p>先行版本号及版本编译元数据可以加到<code>主版本号.次版本号.修订号</code> 的后面，作为延伸。</p>]]></description></item><item><title>RFC1928:SOCK5</title><link>http://www.victorchu.info/posts/2018/12/81563133/</link><pubDate>Sun, 16 Dec 2018 17:06:02 +0800</pubDate><author><name>victorchutian</name></author><guid>http://www.victorchu.info/posts/2018/12/81563133/</guid><description><![CDATA[<div class="featured-image">
                <img src="/feature-images/net.webp" referrerpolicy="no-referrer">
            </div><p>SOCKS是一种网络传输协议，主要用于客户端与外网服务器之间通讯的中间传递。当防火墙后的客户端要访问外部的服务器时，就跟SOCKS代理服务器连接。这个代理服务器控制客户端访问外网的资格，允许的话，就将客户端的请求发往外部的服务器。根据OSI模型，SOCKS是会话层的协议，位于表示层与传输层之间。</p>]]></description></item><item><title>RFC4180:CSV</title><link>http://www.victorchu.info/posts/2018/12/87a18201/</link><pubDate>Sun, 16 Dec 2018 17:05:21 +0800</pubDate><author><name>victorchutian</name></author><guid>http://www.victorchu.info/posts/2018/12/87a18201/</guid><description><![CDATA[<div class="featured-image">
                <img src="/feature-images/spec.webp" referrerpolicy="no-referrer">
            </div><h2 id="csv-格式的定义" class="headerLink">
    <a href="#csv-%e6%a0%bc%e5%bc%8f%e7%9a%84%e5%ae%9a%e4%b9%89" class="header-mark"></a>CSV 格式的定义</h2><ol>
<li>每条记录都位于一条单独的行上，由行分隔符(CRLF)分开。例如：</li>
</ol>
<div class="code-block highlight is-open show-line-numbers  tw-group tw-my-2">
  <div class="
    
    tw-flex 
    tw-flex-row
    tw-flex-1 
    tw-justify-between 
    tw-w-full tw-bg-bgColor-secondary
    ">      
    <button 
      class="
        code-block-button
        tw-mx-2 
        tw-flex
        tw-flex-row
        tw-flex-1"
      aria-hidden="true">
          <div class="group-[.is-open]:tw-rotate-90 tw-transition-[transform] tw-duration-500 tw-ease-in-out print:!tw-hidden tw-w-min tw-h-min tw-my-1 tw-mx-1"><svg class="icon"
    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"/></svg></div>
          <p class="tw-select-none !tw-my-1">text</p>]]></description></item><item><title>IEEE 754</title><link>http://www.victorchu.info/posts/2017/09/1f893078/</link><pubDate>Tue, 26 Sep 2017 14:08:17 +0800</pubDate><author><name>victorchutian</name></author><guid>http://www.victorchu.info/posts/2017/09/1f893078/</guid><description><![CDATA[<div class="featured-image">
                <img src="/feature-images/storage.webp" referrerpolicy="no-referrer">
            </div><p>浮点数是计算机科学中一种对于实数的近似数值表示法，由一个有效数字(尾数)加上幂数来表示，即二进制的科学计数法。IEEE 协会为了规范统一（方便CPU指令制造，各平台兼容等等）出台了 IEEE Standard for Floating-Point Arithmetic（IEEE-754）二进制浮点数算数标准，选用了浮点数作为储存和算数标准。 该标准描述了包括&quot;浮点数的格式&quot;、&ldquo;一些特殊数值&rdquo;、&ldquo;浮点数的运算&rdquo;、&ldquo;舍入规则与例外情况&rdquo; 等等内容。</p>]]></description></item></channel></rss>