<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	「UEFI Tips 千万不要在代码中写中文注释」的评论	</title>
	<atom:link href="https://www.lab-z.com/uefitipsnocc/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.lab-z.com/uefitipsnocc/</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2019 00:09:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		评论者：ziv2013		</title>
		<link>https://www.lab-z.com/uefitipsnocc/#comment-61315</link>

		<dc:creator><![CDATA[ziv2013]]></dc:creator>
		<pubDate>Tue, 18 Jun 2019 00:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.lab-z.com/?p=6511#comment-61315</guid>

					<description><![CDATA[回复给 &lt;a href=&quot;https://www.lab-z.com/uefitipsnocc/#comment-61296&quot;&gt;hohBu6po&lt;/a&gt;。

谢谢哈，有空我研究一下]]></description>
			<content:encoded><![CDATA[<p>回复给 <a href="https://www.lab-z.com/uefitipsnocc/#comment-61296">hohBu6po</a>。</p>
<p>谢谢哈，有空我研究一下</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：ood3cu2T		</title>
		<link>https://www.lab-z.com/uefitipsnocc/#comment-61301</link>

		<dc:creator><![CDATA[ood3cu2T]]></dc:creator>
		<pubDate>Mon, 17 Jun 2019 11:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.lab-z.com/?p=6511#comment-61301</guid>

					<description><![CDATA[回复给 &lt;a href=&quot;https://www.lab-z.com/uefitipsnocc/#comment-61296&quot;&gt;hohBu6po&lt;/a&gt;。

另外跨平台的涉及非 ASCII 字符，最好用 utf-8 编码。如果统一用 utf-8，那实现的时候只需要考虑这一种编码（Linux 和 Mac OS 大都用 utf-8）。 

https://stackoverflow.com/q/41335199/1190191]]></description>
			<content:encoded><![CDATA[<p>回复给 <a href="https://www.lab-z.com/uefitipsnocc/#comment-61296">hohBu6po</a>。</p>
<p>另外跨平台的涉及非 ASCII 字符，最好用 utf-8 编码。如果统一用 utf-8，那实现的时候只需要考虑这一种编码（Linux 和 Mac OS 大都用 utf-8）。 </p>
<p><a href="https://stackoverflow.com/q/41335199/1190191" rel="nofollow ugc">https://stackoverflow.com/q/41335199/1190191</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：Veishio8		</title>
		<link>https://www.lab-z.com/uefitipsnocc/#comment-61300</link>

		<dc:creator><![CDATA[Veishio8]]></dc:creator>
		<pubDate>Mon, 17 Jun 2019 10:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.lab-z.com/?p=6511#comment-61300</guid>

					<description><![CDATA[回复给 &lt;a href=&quot;https://www.lab-z.com/uefitipsnocc/#comment-61296&quot;&gt;hohBu6po&lt;/a&gt;。

Google 一下能找到源代码。

https://github.com/tianocore/buildtools-BaseTools/blob/master/Source/Python/AutoGen/StrGather.py

572 行那个 open 没有指定编码。问题应该是来源于此。]]></description>
			<content:encoded><![CDATA[<p>回复给 <a href="https://www.lab-z.com/uefitipsnocc/#comment-61296">hohBu6po</a>。</p>
<p>Google 一下能找到源代码。</p>
<p><a href="https://github.com/tianocore/buildtools-BaseTools/blob/master/Source/Python/AutoGen/StrGather.py" rel="nofollow ugc">https://github.com/tianocore/buildtools-BaseTools/blob/master/Source/Python/AutoGen/StrGather.py</a></p>
<p>572 行那个 open 没有指定编码。问题应该是来源于此。</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		评论者：hohBu6po		</title>
		<link>https://www.lab-z.com/uefitipsnocc/#comment-61296</link>

		<dc:creator><![CDATA[hohBu6po]]></dc:creator>
		<pubDate>Mon, 17 Jun 2019 10:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.lab-z.com/?p=6511#comment-61296</guid>

					<description><![CDATA[是编码的问题。你看 Python 的调用栈就知道了。最后一个是尝试用 cp1252 编码解码你的文件，然后说无法解码。

Python 编码参见：
https://stackoverflow.com/a/9233174/1190191

看上去这个工具链是开源的，直接去报 bug 就行，要求加入更多编码。]]></description>
			<content:encoded><![CDATA[<p>是编码的问题。你看 Python 的调用栈就知道了。最后一个是尝试用 cp1252 编码解码你的文件，然后说无法解码。</p>
<p>Python 编码参见：<br />
<a href="https://stackoverflow.com/a/9233174/1190191" rel="nofollow ugc">https://stackoverflow.com/a/9233174/1190191</a></p>
<p>看上去这个工具链是开源的，直接去报 bug 就行，要求加入更多编码。</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
