<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>雪花面包 &#187; 工作</title>
	<atom:link href="https://snowbread.com/category/posts-on-home/work/feed" rel="self" type="application/rss+xml" />
	<link>https://snowbread.com</link>
	<description>just for fun</description>
	<lastBuildDate>Thu, 16 Apr 2026 07:19:33 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>博客迁移记录(1)</title>
		<link>https://snowbread.com/blog-migration-record-1.html</link>
		<comments>https://snowbread.com/blog-migration-record-1.html#comments</comments>
		<pubDate>Tue, 16 Jan 2018 07:50:00 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[.]]></category>
		<category><![CDATA[运维与网管]]></category>

		<guid isPermaLink="false">http://snowbread.com/?p=3054</guid>
		<description><![CDATA[<p>博客开了有五年了，时光飞逝啊，虽然没写多少文章。。</p> <p>博客一直使用的是香港的虚拟机主机，空间只有800MB，流量8G，早就想换了，只是一直没有必须要换的理由，所以就一直用着。不过最近我发现一个问题，博客从美国访问速度很慢，大概10几秒才能打开首页，这实在是忍不了。于是开始搬家。</p> <p>这回没再用虚拟主机了，因为现在 VPS 也便宜了，没必要用虚拟主机了。我用的 VPS 是 vultr 家的，这家 VPS[......]</p><p class='read-more'><a href='https://snowbread.com/blog-migration-record-1.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>博客开了有五年了，时光飞逝啊，虽然没写多少文章。。</p>
<p>博客一直使用的是香港的虚拟机主机，空间只有800MB，流量8G，早就想换了，只是一直没有必须要换的理由，所以就一直用着。不过最近我发现一个问题，博客从美国访问速度很慢，大概10几秒才能打开首页，这实在是忍不了。于是开始搬家。</p>
<p>这回没再用虚拟主机了，因为现在 VPS 也便宜了，没必要用虚拟主机了。我用的 VPS 是 vultr 家的，这家 VPS[......]</p>
<p class='read-more'><a href='https://snowbread.com/blog-migration-record-1.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/blog-migration-record-1.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>内网自建dns服务器</title>
		<link>https://snowbread.com/build-lan-dns-server.html</link>
		<comments>https://snowbread.com/build-lan-dns-server.html#comments</comments>
		<pubDate>Mon, 03 Apr 2017 06:48:28 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[.]]></category>
		<category><![CDATA[运维与网管]]></category>

		<guid isPermaLink="false">http://snowbread.com/built-lan-dns-server.html</guid>
		<description><![CDATA[<p>为什么内网需要dns服务器呢，主要是因为我电脑上跑了个虚拟机，有时候需要写socket程序让虚拟机和宿主机通信，这样ip地址就被嵌入到程序中了，如果将来要修改ip地址的话，就要改动很多地方，这是不符合软件设计原则的。所以我建了一个本地dns缓存服务器，然后将其设置为虚拟机和宿主机的dns服务器。然后在dns缓存服务器所在主机的hosts文件中添加虚拟机和宿主机的域名ip映射(dns缓存服务器设置为首先查询本地hosts，如果没有对应的域名ip映射再去查询上级dns服务器)。这样就可以在程序中用域名而不是ip来标识主机了。</p> <p>具体到软件上，最经典的搭建dns服务器的软件当然是bind，不过这东东用起来比较麻烦，具体使用方法可以参考"鸟哥的Linux私房菜服务器架设篇"一书。我仅仅是需要个dns缓存服务器，没必要用bind，于是我选择了dnsmasq这个软件。此软件没有windows版，只有linux和mac版，因为我虚拟机系统是mac，所以我选择使用mac版。</p>[......]<p class='read-more'><a href='https://snowbread.com/build-lan-dns-server.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>为什么内网需要dns服务器呢，主要是因为我电脑上跑了个虚拟机，有时候需要写socket程序让虚拟机和宿主机通信，这样ip地址就被嵌入到程序中了，如果将来要修改ip地址的话，就要改动很多地方，这是不符合软件设计原则的。所以我建了一个本地dns缓存服务器，然后将其设置为虚拟机和宿主机的dns服务器。然后在dns缓存服务器所在主机的hosts文件中添加虚拟机和宿主机的域名ip映射(dns缓存服务器设置为[......]</p>
<p class='read-more'><a href='https://snowbread.com/build-lan-dns-server.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/build-lan-dns-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何跨越不同的电脑执行程序(2)</title>
		<link>https://snowbread.com/how-to-perform-procedures-across-different-computers-2.html</link>
		<comments>https://snowbread.com/how-to-perform-procedures-across-different-computers-2.html#comments</comments>
		<pubDate>Fri, 10 Feb 2017 07:38:20 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[.]]></category>
		<category><![CDATA[语言与设计]]></category>

		<guid isPermaLink="false">http://snowbread.com/how-to-perform-procedures-across-different-computers-2.html</guid>
		<description><![CDATA[<p>上一节说过我无法解决监听主机的问题，所以我决定采用另外的办法，首先我考虑了ssh或是telnet，但是win7对ssh不能够直接支持，telnet倒是支持，不过一来是明文通讯，二来用起来还是不放便，需要先登录才能控制。然后我又想到了win7上弄个http服务器，然后通过cgi脚本或php脚本的方式来执行命令，不过弄了半天还是没搞定，感觉这种http程序想要执行本地文件还是比较麻烦。</p> <p>最后还回到了nc这个命令行程序上，我发现这个程序可以实现接收消息的功能，采用命令 nc -l -p 60000 即可，这个命令执行后，会监听任何电脑发往60000端口的消息并显示在标准输出上(我测试了在苹果上使用 echo message &#124; nc destination_host_ip port 来给win7上的nc发送消息)，为了根据消息来执行不同的操作，可以将消息转发给autohotkey程序，命令如下：</p>[......]<p class='read-more'><a href='https://snowbread.com/how-to-perform-procedures-across-different-computers-2.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>上一节说过我无法解决监听主机的问题，所以我决定采用另外的办法，首先我考虑了ssh或是telnet，但是win7对ssh不能够直接支持，telnet倒是支持，不过一来是明文通讯，二来用起来还是不放便，需要先登录才能控制。然后我又想到了win7上弄个http服务器，然后通过cgi脚本或php脚本的方式来执行命令，不过弄了半天还是没搞定，感觉这种http程序想要执行本地文件还是比较麻烦。</p>
<p>最后还回到了n[......]</p>
<p class='read-more'><a href='https://snowbread.com/how-to-perform-procedures-across-different-computers-2.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/how-to-perform-procedures-across-different-computers-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何跨越不同的电脑执行程序(1)</title>
		<link>https://snowbread.com/how-to-perform-procedures-across-different-computers-1.html</link>
		<comments>https://snowbread.com/how-to-perform-procedures-across-different-computers-1.html#comments</comments>
		<pubDate>Fri, 10 Feb 2017 02:20:25 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[.]]></category>
		<category><![CDATA[语言与设计]]></category>

		<guid isPermaLink="false">http://snowbread.com/how-to-perform-procedures-across-different-computers-1.html</guid>
		<description><![CDATA[<p>这个问题看起来很简单，可惜一般人没这需求，所以没有找到这种功能的软件。那就自己动手吧，不料这却是一个深坑。好吧，我网络知识比较匮乏。。</p> <p>为什么我会有这种需求呢？我电脑系统是win7的，然后用vmware装了个苹果系统，我想在vmware中操作苹果系统的时候能够一键切换win7中正在播放的歌以及调整调整win7的音量，而不是先要从虚拟机中释放控制(默认应该是按ctrl+alt)，然后才能给win7发送热键。</p> <p>很显然，要实现这种需求，最简单的方法就是通过网络来发送信号，然后由接收方解析这个信号，根据解析出的内容执行不同的程序。</p>[......]<p class='read-more'><a href='https://snowbread.com/how-to-perform-procedures-across-different-computers-1.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>这个问题看起来很简单，可惜一般人没这需求，所以没有找到这种功能的软件。那就自己动手吧，不料这却是一个深坑。好吧，我网络知识比较匮乏。。</p>
<p>为什么我会有这种需求呢？我电脑系统是win7的，然后用vmware装了个苹果系统，我想在vmware中操作苹果系统的时候能够一键切换win7中正在播放的歌以及调整调整win7的音量，而不是先要从虚拟机中释放控制(默认应该是按ctrl+alt)，然后才能给win7发[......]</p>
<p class='read-more'><a href='https://snowbread.com/how-to-perform-procedures-across-different-computers-1.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/how-to-perform-procedures-across-different-computers-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>子进程结束时如何返回指定的值给父进程</title>
		<link>https://snowbread.com/how-to-return-the-specified-value-at-the-end-of-the-process-to-the-parent-process.html</link>
		<comments>https://snowbread.com/how-to-return-the-specified-value-at-the-end-of-the-process-to-the-parent-process.html#comments</comments>
		<pubDate>Mon, 06 Feb 2017 09:54:32 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[.]]></category>
		<category><![CDATA[语言与设计]]></category>

		<guid isPermaLink="false">http://snowbread.com/how-to-return-the-specified-value-at-the-end-of-the-process-to-the-parent-process.html</guid>
		<description><![CDATA[<p>父进程在启动子进程时向子进程传递参数这个很常见，那么子进程如何在结束时返回指定的值给父进程呢，这里我以几种常见的解释器为例做个简单的说明。</p> <p>windows中最常用的脚本软件莫过于autohotkey了(后面我简称ahk)，这里就以ahk程序为父进程，由它来调用其它程序(也就是子进程)。在ahk中要获取子进程的返回值可以使用runwait命令，这个命令在默认情况下会把子进程的返回值存储到ERRORLEVEL变量中。</p> <p>如果子进程是cmd程序，那么使用exit退出程序并在exit后面跟一个常数或者变量即可返回这个常数或者变量的值给父进程，例如 exit 5 或者 exit %num%</p>[......]<p class='read-more'><a href='https://snowbread.com/how-to-return-the-specified-value-at-the-end-of-the-process-to-the-parent-process.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>父进程在启动子进程时向子进程传递参数这个很常见，那么子进程如何在结束时返回指定的值给父进程呢，这里我以几种常见的解释器为例做个简单的说明。</p>
<p>windows中最常用的脚本软件莫过于autohotkey了(后面我简称ahk)，这里就以ahk程序为父进程，由它来调用其它程序(也就是子进程)。在ahk中要获取子进程的返回值可以使用runwait命令，这个命令在默认情况下会把子进程的返回值存储到ERRORL[......]</p>
<p class='read-more'><a href='https://snowbread.com/how-to-return-the-specified-value-at-the-end-of-the-process-to-the-parent-process.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/how-to-return-the-specified-value-at-the-end-of-the-process-to-the-parent-process.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svchost.exe进程占用内存cpu过高</title>
		<link>https://snowbread.com/the-svchost-exe-process-excessive-cpu-memory.html</link>
		<comments>https://snowbread.com/the-svchost-exe-process-excessive-cpu-memory.html#comments</comments>
		<pubDate>Sun, 02 Oct 2016 07:19:24 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[运维与网管]]></category>

		<guid isPermaLink="false">http://snowbread.com/the-svchost-exe-process-excessive-cpu-memory.html</guid>
		<description><![CDATA[<p>任务管理器中svchost.exe的同名进程有很多(我的win7 sp1 pro 64bit系统中有十几个)</p> <p>我碰到的问题是，某一个svchost.exe进程占用了大概25%-30%的cpu，以及1.5G左右的内存(我笔记本cpu型号为i5-6200u，内存为16G)</p> <p>首先判断一下这个svchost.exe是不是病毒或被病毒利用，参见 <br /><a href="http://lsdpromise.lofter.com/post/e7c97_4f0138">win7进程中的svchost.exe占用CPU和内存很高的原因和解决窍门-天酬勤<br /></a><a href="http://vod.sjtu.edu.cn/help/Article_Print.asp?ArticleID=344">Svchost进程揭秘 </a><br /></p>[......]<p class='read-more'><a href='https://snowbread.com/the-svchost-exe-process-excessive-cpu-memory.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>任务管理器中svchost.exe的同名进程有很多(我的win7 sp1 pro 64bit系统中有十几个)</p>
<p>我碰到的问题是，某一个svchost.exe进程占用了大概25%-30%的cpu，以及1.5G左右的内存(我笔记本cpu型号为i5-6200u，内存为16G)</p>
<p>首先判断一下这个svchost.exe是不是病毒或被病毒利用，参见 <br /><a href="http://lsdpromise.lofter.com/post/e7c97_4f0138">win7进程中的svchost.exe占用CPU和内存很高的原[......]</a></p>
<p class='read-more'><a href='https://snowbread.com/the-svchost-exe-process-excessive-cpu-memory.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/the-svchost-exe-process-excessive-cpu-memory.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何禁止静态网页被浏览器缓存</title>
		<link>https://snowbread.com/how-to-prevent-static-web-pages-cached-by-the-browser.html</link>
		<comments>https://snowbread.com/how-to-prevent-static-web-pages-cached-by-the-browser.html#comments</comments>
		<pubDate>Tue, 13 Sep 2016 03:07:33 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[语言与设计]]></category>

		<guid isPermaLink="false">http://snowbread.com/how-to-prevent-static-web-pages-cached-by-the-browser.html</guid>
		<description><![CDATA[<p><s>对于很简单的静态网页，禁止其被浏览器缓存的最简是单办法就是每次服务器更新网页时使用不同的首页地址，例如，轮换使用index.htm和index.html</s></p> <p>上面那个方法实际上有问题，轮换使用会导致两种类型的首页都被缓存，而且也没有考虑到除了首页之外的页面被缓存的情况。</p> <p>在网站规模很小的情况下，最简单的办法是在网站的根目录建立一个index.php文件和一个跳转目录，将网站的文件 全部放到跳转目录内，然后设置index.php内容如下：</p>[......]<p class='read-more'><a href='https://snowbread.com/how-to-prevent-static-web-pages-cached-by-the-browser.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>对于很简单的静态网页，禁止其被浏览器缓存的最简是单办法就是每次服务器更新网页时使用不同的首页地址，例如，轮换使用index.htm和index.html</p>
<p>上面那个方法实际上有问题，轮换使用会导致两种类型的首页都被缓存，而且也没有考虑到除了首页之外的页面被缓存的情况。</p>
<p>在网站规模很小的情况下，最简单的办法是在网站的根目录建立一个index.php文件和一个跳转目录，将网站的文件 全部放到跳转目录内，[......]</p>
<p class='read-more'><a href='https://snowbread.com/how-to-prevent-static-web-pages-cached-by-the-browser.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/how-to-prevent-static-web-pages-cached-by-the-browser.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何在网页中嵌入代码段</title>
		<link>https://snowbread.com/how-to-embed-snippet-in-the-page.html</link>
		<comments>https://snowbread.com/how-to-embed-snippet-in-the-page.html#comments</comments>
		<pubDate>Mon, 08 Aug 2016 03:10:21 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[.]]></category>
		<category><![CDATA[语言与设计]]></category>

		<guid isPermaLink="false">http://snowbread.com/testgg.html</guid>
		<description><![CDATA[<p>首先看你是想嵌入外部代码段还是本地代码段。 <hr />  </p><p>嵌入外部代码段本质就是嵌入外部网页，参见<br /><a href="http://holy2010.blog.51cto.com/1086044/322035">如何将一个HTML页面嵌套在另一个页面中 - Holy - 51CTO技术博客</a> </p><p>嵌入外部代码段最简单的方式是使用js脚本，例如可以使用gist.github.com提供的js脚本。具体方法就将从gist获得的脚本代码插入到htm文件中即可。 </p><p>嵌入外部代码段的优点在于当外部代码段修改时嵌入外部代码段的本地网页不必修改。另外，无需操心代码的字体，着色等格式问题(例如引用gist的代码段)。</p>[......]<p class='read-more'><a href='https://snowbread.com/how-to-embed-snippet-in-the-page.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>首先看你是想嵌入外部代码段还是本地代码段。<br />
<hr /></p>
<p>嵌入外部代码段本质就是嵌入外部网页，参见<br /><a href="http://holy2010.blog.51cto.com/1086044/322035">如何将一个HTML页面嵌套在另一个页面中 - Holy - 51CTO技术博客</a> </p>
<p>嵌入外部代码段最简单的方式是使用js脚本，例如可以使用gist.github.com提供的js脚本。具体方法就将从gist获得的脚本代码插入到htm文件中即可。 </p>
<p>嵌入外部代码段的优点在于当外部代码段修改时嵌入外部代码段的本地网页不必[......]</p>
<p class='read-more'><a href='https://snowbread.com/how-to-embed-snippet-in-the-page.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/how-to-embed-snippet-in-the-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>电脑远程开机 远程睡眠唤醒 远程休眠唤醒</title>
		<link>https://snowbread.com/remote_open_pc.html</link>
		<comments>https://snowbread.com/remote_open_pc.html#comments</comments>
		<pubDate>Tue, 28 Apr 2015 06:37:00 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[运维与网管]]></category>

		<guid isPermaLink="false">http://snowbread.com/remote_open_pc.html</guid>
		<description><![CDATA[<p>远程开机必须要设置远端电脑的bios，远程睡眠唤醒应该不需要设置远端电脑的bios，远程休眠唤醒估计和远程开机一样需要设置远端电脑的bios，不过我没有测试过远程休眠唤醒。</p> <p>设置远端电脑bios的方法<br />假设远端电脑主板是技嘉Z77D3P，首先要在bios里把从网络启动选中，设置方法见<a href="http://www.itocp.com/htmls/81/n-4281-2.html" target="_blank">技嘉Z77X-UP7通过高通网卡玩向日葵远程控制</a>，这样设置后网口的灯在关机后会亮着，不过其它型号的主板也有不亮的情况，没有影响。</p>[......]<p class='read-more'><a href='https://snowbread.com/remote_open_pc.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>远程开机必须要设置远端电脑的bios，远程睡眠唤醒应该不需要设置远端电脑的bios，远程休眠唤醒估计和远程开机一样需要设置远端电脑的bios，不过我没有测试过远程休眠唤醒。</p>
<p>设置远端电脑bios的方法<br />假设远端电脑主板是技嘉Z77D3P，首先要在bios里把从网络启动选中，设置方法见<a href="http://www.itocp.com/htmls/81/n-4281-2.html" target="_blank">技嘉Z77X-UP7通过高通网卡玩向日葵远程控制</a>，这样设置后网口的灯在关机后会亮着，不过其它型号的主板也有不亮的情况，[......]</p>
<p class='read-more'><a href='https://snowbread.com/remote_open_pc.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/remote_open_pc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>【转】学习linux几点忠告</title>
		<link>https://snowbread.com/learn-linux-what-time-the-advice.html</link>
		<comments>https://snowbread.com/learn-linux-what-time-the-advice.html#comments</comments>
		<pubDate>Tue, 21 Apr 2015 07:19:37 +0000</pubDate>
		<dc:creator>雪花面包</dc:creator>
				<category><![CDATA[运维与网管]]></category>

		<guid isPermaLink="false">http://snowbread.com/learn-linux-what-time-the-advice.html</guid>
		<description><![CDATA[<p>1. 不要当“传教士” </p> <p>很多人在讨论区不断的引起 "Linux vs. Windows" 之类的讨论，甚至争的面红耳赤，这是没有必要的。 </p> <p>这种争论是浪费时间而没有任何用处的。对，你花了一下午，用许多事实“捍卫”了 “Linux 比 Windows 好” 这个说法。但是 Windows 的支持者并不会喜欢上 Linux，他们只是稍微退缩一下，然后找一些新的证据来跟你辩论。 </p>[......]<p class='read-more'><a href='https://snowbread.com/learn-linux-what-time-the-advice.html'>继续阅读</a></p>]]></description>
				<content:encoded><![CDATA[<p>1. 不要当“传教士” </p>
<p>很多人在讨论区不断的引起 "Linux vs. Windows" 之类的讨论，甚至争的面红耳赤，这是没有必要的。 </p>
<p>这种争论是浪费时间而没有任何用处的。对，你花了一下午，用许多事实“捍卫”了 “Linux 比 Windows 好” 这个说法。但是 Windows 的支持者并不会喜欢上 Linux，他们只是稍微退缩一下，然后找一些新的证据来跟你辩论。 </p>
<p><span id="more-2809"></span>
<p>世界上的人们都在利用[......]</p>
<p class='read-more'><a href='https://snowbread.com/learn-linux-what-time-the-advice.html'>继续阅读</a></p>
]]></content:encoded>
			<wfw:commentRss>https://snowbread.com/learn-linux-what-time-the-advice.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
