<?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>Dai3 Blog</title>
	<atom:link href="http://www.dai3.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dai3.com/blog</link>
	<description>Just Another Study Blog</description>
	<lastBuildDate>Thu, 12 Apr 2012 07:39:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>OpenVZ VPS内存查看分析工具/超售检查脚本</title>
		<link>http://www.dai3.com/blog/openvz-vps-memory-check-analysis-tools-sold-the-script/</link>
		<comments>http://www.dai3.com/blog/openvz-vps-memory-check-analysis-tools-sold-the-script/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 07:34:27 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[VPS Hosting]]></category>
		<category><![CDATA[OpenVZ VPS]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=74</guid>
		<description><![CDATA[基于debian环境的检查命令： === 搞了一个python脚本，用来查看OpenVZ VPS内存情况的，原始数据取自/proc/user_beancounters文件，脚本内做了一个数据简单的分析提取和可视化提高的工作，已经很晚了，先搞几个基本功能出来，增强功能以后再补。 用法： python vz_checker.py /proc/user_beancounters (需要root权限） 输出内容： filename is:[user_beancounters] Kernel Mem Info: used:[5.723M] max_used:[35.539M] limit:[2048.000M] fail_count:[0] Mem already allocated Info: used:[17.621M] max_used:[33.074M] limit:[96.000M] fail_count:[0] Ram actually used: used:[8.516M] max_used:[67.820M] limit:[96.000M] fail_count:[0] Mem (Ram + swap) used: used:[9.848M] max_used:[13.219M] limit:[96.000M] fail_count:[0] Kernel Mem Info：占用的内核内存大小，不可被swap，主要用来存放进程数据等。 Mem already allocated Info：已分配的内存大小，limit即为burst内存大小。 Ram actually used： 实际占用的物理内存大小。 Mem [...]]]></description>
			<content:encoded><![CDATA[<p>基于debian环境的检查命令：</p>
<pre class="brush: python; title: ; notranslate">
apt-get install  python
wget vps.dai3.com/vz.py
python vz.py /proc/user_beancounters
</pre>
<p>===</p>
<p>搞了一个python脚本，用来查看OpenVZ VPS内存情况的，原始数据取自/proc/user_beancounters文件，脚本内做了一个数据简单的分析提取和可视化提高的工作，已经很晚了，先搞几个基本功能出来，增强功能以后再补。</p>
<p>    用法： python vz_checker.py /proc/user_beancounters (需要root权限）<br />
    输出内容：</p>
<p>filename is:[user_beancounters]<br />
Kernel Mem Info:                                   used:[5.723M] max_used:[35.539M] limit:[2048.000M] fail_count:[0]<br />
Mem already allocated Info:                        used:[17.621M] max_used:[33.074M] limit:[96.000M] fail_count:[0]<br />
Ram actually used:                                 used:[8.516M] max_used:[67.820M] limit:[96.000M] fail_count:[0]<br />
Mem (Ram + swap) used:                             used:[9.848M] max_used:[13.219M] limit:[96.000M] fail_count:[0]</p>
<p>Kernel Mem Info：占用的内核内存大小，不可被swap，主要用来存放进程数据等。<br />
Mem already allocated Info：已分配的内存大小，limit即为burst内存大小。<br />
Ram actually used： 实际占用的物理内存大小。<br />
Mem (Ram + swap) used：  占用的物理内存和swap大小。</p>
<p>如果  实际占用的物理内存 == 占用的物理内存和swap大小  那么恭喜你，你的vps里运行的程序都在内存中，主机超售不严重。<br />
如果  实际占用的物理内存 <   占用的物理内存和swap大小   情况不妙，主机已经开始占用swap了，超售比较严重了。</p>
<p>另外我在测试过程中发现有一台vps实际占用物理内存大小显示比物理内存+swap总和还要大，现象很奇怪，查了一些资料没有关于这方面的说明，待后续调查。</p>
<p>转自：http://www.snooda.com/read/263</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/openvz-vps-memory-check-analysis-tools-sold-the-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LNMP mysql启用innodb</title>
		<link>http://www.dai3.com/blog/mysql-enable-innodb-in-lnmp/</link>
		<comments>http://www.dai3.com/blog/mysql-enable-innodb-in-lnmp/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 11:13:31 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[lnmp]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=72</guid>
		<description><![CDATA[LNMP 默认的mysql安装并没有启用InnoDB引擎！（WHY?） 找到LNMP安装文件目录，如果已经安装了，LNMP应该已经解压，找到解压文件夹下的mysql文件夹， 重新编译 #make;make install #/root/lnmp restart mysql就启用InnoDB引擎了。]]></description>
			<content:encoded><![CDATA[<p>LNMP 默认的mysql安装并没有启用InnoDB引擎！（WHY?）</p>
<p>找到LNMP安装文件目录，如果已经安装了，LNMP应该已经解压，找到解压文件夹下的mysql文件夹，</p>
<pre class="brush: bash; title: ; notranslate">
./configure --prefix=/usr/local/mysql --with-extra-charsets=all --enable-thread-safe-client --enable-assembler --with-charset=utf8 --enable-thread-safe-client --with-extra-charsets=all --with-big-tables --with-readline --with-ssl --with-embedded-server --enable-local-infile --with-plugins=innobase

make &amp;&amp; make install
</pre>
<p>重新编译</p>
<p>#make;make install</p>
<p>#/root/lnmp restart</p>
<p>mysql就启用InnoDB引擎了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/mysql-enable-innodb-in-lnmp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>開網站的選擇 – OsCommerce, Prestashop, Magento</title>
		<link>http://www.dai3.com/blog/oscommerce-prestashop-magento/</link>
		<comments>http://www.dai3.com/blog/oscommerce-prestashop-magento/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 17:50:49 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[OsCommerce]]></category>
		<category><![CDATA[Prestashop]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=71</guid>
		<description><![CDATA[本文转载：链接请用IPV6访问 在過去的３年間，我教的電子商貿課程中有一課是有關網站的建立的。每一次上課學生也比其他的課上得專心，大概因為他們感到開課店的成功感特別的大。 上課時，我也會介紹３個不同的 Open Source Code 的電子商貿系統 – OsCommerce, Prestashop 及 Magento。 三個系統各有特點： OsCommerce 是歷史最久的，現有的Plugin / Extension 也是最整全的。在香港，很多提供網上商店建立服務的公司也使用 OsCommerce。但我認為OsCommerce，一個十年前設計的系統，有一些追不上電子商貿的發展，一些網站排面上的設計也不夠美觀。所以我一般不太推薦使用OsCommerce來建立網站。 Prestashop 及 Magento 也是新開發的網站系統，兩者在排面設計上也做得不錯（我個人認為 Magento 的設計比較美觀一些）。在介紹兩個系統時，我會比較兩者在使用上的難度。Prestashop 的建立會比較簡單，在上載產品時也相對簡單。最重要的是， Prestashop 的語言管理很簡單，用家可以很快為產品加入不同的語言界面。相關的產品 Search Engine Optimization (SEO) 管理也容易，用家可以為一件產品加上兩套不同的Meta Data (Title, Description, Keyword)。 Magento 當然也有它的優點！如果網店的主人有一定的 Programming (Php 及 CSS) 技術或有 IT Team 支援，我也會建議使用 Magento。Magento 的後台是很不錯的，最大的特點是 Magento 的可擴充性。假設網主希望建立兩個 Sub-Domains （us.yoursite.com 及 fr.yoursite.com [...]]]></description>
			<content:encoded><![CDATA[<p>本文转载：链接请用IPV6访问</p>
<p>在過去的３年間，我教的電子商貿課程中有一課是有關網站的建立的。每一次上課學生也比其他的課上得專心，大概因為他們感到開課店的成功感特別的大。</p>
<p>上課時，我也會介紹３個不同的 Open Source Code 的電子商貿系統 – OsCommerce, Prestashop 及 Magento。</p>
<p>三個系統各有特點：<br />
OsCommerce 是歷史最久的，現有的Plugin / Extension 也是最整全的。在香港，很多提供網上商店建立服務的公司也使用 OsCommerce。但我認為OsCommerce，一個十年前設計的系統，有一些追不上電子商貿的發展，一些網站排面上的設計也不夠美觀。所以我一般不太推薦使用OsCommerce來建立網站。</p>
<p>Prestashop 及 Magento 也是新開發的網站系統，兩者在排面設計上也做得不錯（我個人認為 Magento 的設計比較美觀一些）。在介紹兩個系統時，我會比較兩者在使用上的難度。Prestashop 的建立會比較簡單，在上載產品時也相對簡單。最重要的是， Prestashop 的語言管理很簡單，用家可以很快為產品加入不同的語言界面。相關的產品 Search Engine Optimization (SEO) 管理也容易，用家可以為一件產品加上兩套不同的Meta Data (Title, Description, Keyword)。</p>
<p>Magento 當然也有它的優點！如果網店的主人有一定的 Programming (Php 及 CSS) 技術或有 IT Team 支援，我也會建議使用 Magento。Magento 的後台是很不錯的，最大的特點是 Magento 的可擴充性。假設網主希望建立兩個 Sub-Domains （us.yoursite.com 及 fr.yoursite.com – 分別有兩個網站前台界面）作網上商店，用戶可以很容易的使用同一個後台系統作管理。同一個後台能給用家較佳的銷售、存貨及客戶管理。</p>
<p>Reference:</p>
<p>http://www.oscommerce.com.sixxs.org/</p>
<p>http://www.prestashop.com.sixxs.org/</p>
<p>http://www.magentocommerce.com.sixxs.org/</p>
<p>除非注明，文章均為 http://idea-it-marketing.com.sixxs.org 原創，轉載請以鏈接形式注明出處。</p>
<p>本文地址: http://idea-it-marketing.com.sixxs.org/2011/11/open-source-code-ecommerce-system/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/oscommerce-prestashop-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make communication more smoothly</title>
		<link>http://www.dai3.com/blog/how-to-make-communication-more-smoothly/</link>
		<comments>http://www.dai3.com/blog/how-to-make-communication-more-smoothly/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 12:59:39 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=70</guid>
		<description><![CDATA[怎样让沟通更顺畅? 所有事情，都很simple。 &#160; 人际关系是人生中不可缺少的重要资源，要建立关系，就需要学会沟通和交流。以下是一些沟通交流的技巧：模仿、聆听、真诚、注意肢体语言、就事论事、保持情绪。 模仿 模仿就是在参与对话的过程中拷贝其他人的心理上的惯用风格、节奏和面部表情。 模仿在社会交往中很自然的存在着，只有当你意识到它的存在并且认识到了它的作用的时候，它才能被当作一个有效沟通的工具和一个产生和睦关系的工具而被加以应用。 在模仿的过程中，你会更加注意对方的言语、肢体动作和面部表情。而你在重复过程中，在不显得刻意和笨拙下，会使自己变得友好和坦诚。 参考《修炼超凡魅力的八个要素》。 聆听 沟通是双向的。我们并不是单纯的向别人灌输自己的思想，我们还应该学会积极的倾听。 在聆听过程中，一定要耐心把话听完，才能达到倾听的目的。要避免开小差，随意打断别人的谈话。在适当的时候，还应该做出积极的反馈，如“对的”、“是这样”、“你说得对”等或点头微笑等，表示对谈话者的理解和鼓励。 参考《倾听的艺术》。 &#160; 真诚 真诚是一个人为人处事的准则。当你展示真诚的时候，你的谈话会更加有吸引力。 首先，要避免谎言。其次，多说自己的经历，说自己的看法，展现你的兴趣，而不是空谈范谈。当我们能真诚的和别人沟通时，也能较容易的获得真实的回报。 注意肢体语言 相当程度的交流是通过肢体语言实现的。虽然我们自己不能看见，但其他人可以。如果你在说一件事的同时却在想着另一件，你的肢体语言很可能会泄露你真正的想法。 避免抱臂：抱臂通常是一种保守的行为，表示不同意你的想法，或者不想继续的暗示。 保持眼神交流：缺少眼神交流一般说明对方对所谈论话题不感兴趣。这可能是出于对某些内容的尴尬回避，或者不知道如何继续话题。 保持平稳的声调：当突然加大音量时，常常给人一种侵略性的语气，或者代表着情绪激动。 参考《你是否意识到这八种错误的肢体语言》和《15个办法提高你的肢体语言》。 就事论事 有时争吵的发生会波及一切不相干的事。在一段关系中能做到尊重，意味着要尽其所能地就事论事。尽管翻出很多鸡毛蒜皮的往事似乎能让你占上风，但是千万不要。如果争吵内容是今晚该谁做饭，就讨论谁该做饭这一个问题。千万不要突然转到谁在这个家里做了什么，比如小孩谁来带，厨房水池该谁洗。 争吵确实很容易突然失去控制，转向其他的东西而愈演愈烈。其中一方应该尽量遏制其发展，这时候应该走开。但为了避免误会这时一定要显示出你的尊重。比如你可以这样说：“听着，今晚再这样吵下去不会有任何结果。我们休息吧，也许明早醒来头脑比较清楚了再来谈论会比较好，行吗？” 保持情绪 谈话时尽可能保持精神的兴奋，以此来感染对方。 一个人的心情，固然能够影响一个人的行为。但是，行为也可以用来调整一个人的心情。所以，一个心中烦恼的人，如果要变得愉快，最好的办法，就是努力在谈话和动作之中，表现出一种愉快的态度来。那么，这种态度自然会影响你的心境，使你变得真正的快乐。 在说服他人时，要特别注意耐心。当想着要急着要说服别人时，往往会使得心情更为焦躁，一旦心浮气躁或操之过急。言辞也缺乏艺术，反使说服失败。说服他人的时候，产生焦躁的心情是可以理解的。在这种情况下，应该保持耐心，保持平稳的情绪。 最后，更好、更高效地交流，并不仅仅需要说话，你还得通过行动来获取。谈话时建立的形象等，只有真实的行动才能维护它，特别是当你许下一个承诺的时候。]]></description>
			<content:encoded><![CDATA[<p>怎样让沟通更顺畅?</p>
<p>所有事情，都很simple。</p>
<p>&nbsp;</p>
<p>人际关系是人生中不可缺少的重要资源，要建立关系，就需要学会沟通和交流。以下是一些沟通交流的技巧：模仿、聆听、真诚、注意肢体语言、就事论事、保持情绪。</p>
<ul>
<li>
<h3>模仿</h3>
</li>
</ul>
<p>模仿就是在参与对话的过程中拷贝其他人的心理上的惯用风格、节奏和面部表情。</p>
<p>模仿在社会交往中很自然的存在着，只有当你意识到它的存在并且认识到了它的作用的时候，它才能被当作一个有效沟通的工具和一个产生和睦关系的工具而被加以应用。</p>
<p>在模仿的过程中，你会更加注意对方的言语、肢体动作和面部表情。而你在重复过程中，在不显得刻意和笨拙下，会使自己变得友好和坦诚。</p>
<p>参考《<a title="修炼超凡魅力的八个要素" href="http://www.mifengtd.cn/articles/8-keys-to-instant-charisma.html" target="_blank">修炼超凡魅力的八个要素</a>》。</p>
<ul>
<li>
<h3>聆听</h3>
</li>
</ul>
<p>沟通是双向的。我们并不是单纯的向别人灌输自己的思想，我们还应该学会<a title="学会积极主动" href="http://www.mifengtd.cn/articles/be-proactive-1.html" target="_blank">积极</a>的倾听。</p>
<p>在聆听过程中，一定要耐心把话听完，才能达到倾听的目的。要避免开小差，随意打断别人的谈话。在适当的时候，还应该做出积极的反馈，如“对的”、“是这样”、“你说得对”等或点头<a href="http://www.mifengtd.cn/articles/how-to-live-in-happiness.html">微笑</a>等，表示对谈话者的理解和鼓励。</p>
<p>参考《<a title="倾听的艺术" href="http://www.mifengtd.cn/articles/listen-to-the-melody.html" target="_blank">倾听的艺术</a>》。</p>
<p>&nbsp;</p>
<ul>
<li>
<h3>真诚</h3>
</li>
</ul>
<p>真诚是一个人为人处事的准则。当你展示真诚的时候，你的谈话会更加有吸引力。</p>
<p>首先，要避免谎言。其次，多说自己的经历，说自己的看法，展现你的兴趣，而不是空谈范谈。当我们能真诚的和别人沟通时，也能较容易的获得真实的回报。</p>
<ul>
<li>
<h3>注意肢体语言</h3>
</li>
</ul>
<p>相当程度的交流是通过<a title="肢体语言" href="http://www.mifengtd.cn/articles/do-you-recognize-these-8-body-language-killers.html" target="_blank">肢体语言</a>实现的。虽然我们自己不能看见，但其他人可以。如果你在说一件事的同时却在想着另一件，你的肢体语言很可能会泄露你真正的想法。</p>
<ul>
<li><strong>避免抱臂</strong>：抱臂通常是一种保守的行为，表示不同意你的想法，或者不想继续的暗示。</li>
<li><strong>保持眼神交流</strong>：缺少眼神交流一般说明对方对所谈论话题不感兴趣。这可能是出于对某些内容的尴尬回避，或者不知道如何继续话题。</li>
<li><strong>保持平稳的声调</strong>：当突然加大音量时，常常给人一种侵略性的语气，或者代表着情绪激动。</li>
</ul>
<p>参考《<a title="你是否意识到这八种错误的肢体语言" href="http://www.mifengtd.cn/articles/do-you-recognize-these-8-body-language-killers.html" target="_blank">你是否意识到这八种错误的肢体语言</a>》和《<a title="15个办法提高你的肢体语言" href="http://www.mifengtd.cn/articles/15%e4%b8%aa%e5%8a%9e%e6%b3%95%e6%8f%90%e9%ab%98%e4%bd%a0%e7%9a%84%e8%82%a2%e4%bd%93%e8%af%ad%e8%a8%80.html" target="_blank">15个办法提高你的肢体语言</a>》。</p>
<ul>
<li>
<h3>就事论事</h3>
</li>
</ul>
<p>有时争吵的发生会波及一切不相干的事。在一段关系中能做到尊重，意味着要尽其所能地就事论事。尽管翻出很多鸡毛蒜皮的往事似乎能让你占上风，但是千万不要。如果争吵内容是今晚该谁做饭，就讨论谁该做饭这一个问题。千万不要突然转到谁在这个家里做了什么，比如小孩谁来带，厨房水池该谁洗。</p>
<p>争吵确实很容易突然失去控制，转向其他的东西而愈演愈烈。其中一方应该尽量遏制其发展，这时候应该走开。但为了避免误会这时一定要显示出你的尊重。比如你可以这样说：“听着，今晚再这样吵下去不会有任何结果。我们休息吧，也许明早醒来头脑比较清楚了再来谈论会比较好，行吗？”</p>
<ul>
<li>
<h3>保持情绪</h3>
</li>
</ul>
<p>谈话时尽可能保持精神的兴奋，以此来感染对方。</p>
<blockquote><p>一个人的心情，固然能够影响一个人的行为。但是，行为也可以用来调整一个人的心情。所以，一个心中烦恼的人，如果要变得愉快，最好的办法，就是努力在谈话和动作之中，表现出一种愉快的态度来。那么，这种态度自然会影响你的心境，使你变得真正的快乐。</p></blockquote>
<p>在<a title="如何成为一名说服大师" href="http://www.mifengtd.cn/articles/becoming-a-master-of-persuasion.html" target="_blank">说服</a>他人时，要特别注意耐心。当想着要急着要说服别人时，往往会使得心情更为焦躁，一旦心浮气躁或操之过急。言辞也缺乏艺术，反使说服失败。说服他人的时候，产生焦躁的心情是可以理解的。在这种情况下，应该保持耐心，保持平稳的情绪。</p>
<p>最后，更好、更高效地交流，并不仅仅需要说话，你还得通过行动来获取。谈话时建立的形象等，只有真实的行动才能维护它，特别是当你许下一个承诺的时候。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/how-to-make-communication-more-smoothly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JAVA_HOME on debian or linux</title>
		<link>http://www.dai3.com/blog/java_home-on-debian-or-linux/</link>
		<comments>http://www.dai3.com/blog/java_home-on-debian-or-linux/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 06:44:31 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JAVA_HOME]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=69</guid>
		<description><![CDATA[vim /etc/profile important!!!: 备注：]]></description>
			<content:encoded><![CDATA[<p>vim /etc/profile</p>
<pre class="brush: bash; title: ; notranslate">
export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.26
export JAVA_BIN=/usr/lib/jvm/java-6-sun-1.6.0.26/jdk1.6.0_01/bin
export PATH=$PATH:$JAVA_HOME/bin
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
</pre>
<h3><span style="color: #ff0000;">important!!!:</span></h3>
<pre class="brush: bash; title: ; notranslate">
source /etc/profile
</pre>
<p>备注：</p>
<pre class="brush: bash; title: ; notranslate">
export NUTCH_RUNTIME_HOME=/root/nutch-1.4/runtime/local
export APACHE_SOLR_HOME=/root/solr/runtime/local
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/java_home-on-debian-or-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>添加noindex标签到WordPress的/page/页面 + robots.txt, noindex的区别</title>
		<link>http://www.dai3.com/blog/add-noindex-to-wp-page/</link>
		<comments>http://www.dai3.com/blog/add-noindex-to-wp-page/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 20:38:43 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[noindex]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=68</guid>
		<description><![CDATA[最重要的代码： 紧凑版： 理论在这里啦！ 相信很多人的网站被搜索引擎收录了大量的/page/页面，如下面的链接，你可以通过Google搜索：“site:yourwebsite.com inurl:/page/”查询你的收录页面是否有这样的结果： http://clyee.com/blog/page/2/ http://clyee.com/blog/topics/psychology/page/2/ http://clyee.com/blog/tag/seo/page/2/ Homepage主页的Subpages页面是可以通过插件来完成添加noindex,follow的，但是如何添加&#60;meta name=”robots” content=”noindex,follow”&#62;给分类和标签的分页呢? 因为这样的搜索结果对搜索引擎是一点意义都没有。比如Categories或者tag的/page/页面，所以我们采取措施让收索引擎不收录它们。 两种方法 There are two ways. 1.你可以通过robots.txt进行拦截，写法为： User-agent: * Disallow: */page/* 2.通过php判断url中是否有/page/字符串完成，如/page/2 &#60;?php $url = ’http://’.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']; if ((strpos(“$url”,“/page/”)==false)) { ?&#62; &#60;?php } else { ?&#62; &#60;meta name=“robots” content=“noindex,follow” /&#62; &#60;?php } ?&#62; * 其中noindex是指不要收录这个页面，follow是指跟踪（即爬行）这个页面上的链接。你也可以选择noindex,nofollow的组合，意思为不收录这个页面，也不跟踪页面中的链接。 第二个方法比第一个方法好在：搜索引擎可以爬行page页面，但是不收录。而不是阻止搜索引擎爬行page页面。 上面的代码通过判断请求页面的URL中是否含有”/page/”这个字段，如果有，就添加标签，如果没有就跳过。添加到header.php中不仅可以判断tag的分页，也可以判断categories的分页。这段代码不仅适用于Wordpress，还可以添加到Typecho等php博客程序的header.php中。   Other knowledge： robots.txt, noindex的区别 如果我们希望某个页面不被搜索引擎收录，不显示在搜索结果页面中的话，是用robots.txt还是用noindex效果好呢？两者的作用是一样的吗？robots.txt与noindex到底有什么样的区别呢？ 先说robots文件。robots.txt在google网站站长工具里是这样被描述的： Google不会抓取 robots.txt 拦截的网页内容或将其编入索引，但如果我们在网络上的其他网页中发现这些内容，我们仍然会将这些网页的网址编入索引。 也就是说除非有外部链接导入到该页面，否则搜索引擎是不会访问被robots拦截的页面。就算使用robots拦截某页面，但是该页面依然有可能被搜索引擎收录并显示在搜索结果页面中。 举个例子：www.seowhy.com/robots.txt里面有这样一句： Disallow: /edu/ 但是在google里搜索该目录时，依然可以看到一些页面出现在搜索结果中。 http://www.google.com.hk/#hl=en&#038;q=site:www.seowhy.com%2Fedu%2F&#038;oq=site:www.seowhy.com%2Fedu%2F&#038;aq=f&#038;aqi=&#038;aql=&#038;gs_sm=e&#038;gs_upl=238749l239677l0l6l6l0l0l0l0l0l0ll0&#038;fp=b35953c2401f4192&#038;biw=1229&#038;bih=462 robots文件来阻止搜索引擎收录并不是最好的方法。 noindex元标记可以解决这个问题，它的用法是： &#60;meta name=”robots” content=”noindex”&#62; noindex允许蜘蛛访问，但是禁止其收录，这样页面将不会出现在搜索结果页面中。使用noindex的页面有权重吗？有。因为有内部链接或者外部链接指向它，所以该页面依然有权重。使用follow&#60;meta name=”robots” conent=”noindex, [...]]]></description>
			<content:encoded><![CDATA[<p>最重要的代码：</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
$url = 'http://'.$_SERVER[&quot;HTTP_HOST&quot;].$_SERVER['REQUEST_URI'];
if ((strpos(&quot;$url&quot;,&quot;/page/&quot;)==false))
{ ?&gt;
&lt;?php } else { ?&gt;
&lt;meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; /&gt;
&lt;?php } ?&gt;
</pre>
<p>紧凑版：</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php $url = 'http://'.$_SERVER[&quot;HTTP_HOST&quot;].$_SERVER['REQUEST_URI'];
if ((strpos(&quot;$url&quot;,&quot;/page/&quot;)==false))
{ ?&gt;&lt;?php } else { ?&gt;&lt;meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; /&gt;&lt;?php } ?&gt;
</pre>
<p>理论在这里啦！</p>
<p>相信很多人的网站被搜索引擎收录了大量的/page/页面，如下面的链接，你可以通过Google搜索：“site:yourwebsite.com inurl:/page/”查询你的收录页面是否有这样的结果：</p>
<div>
<ol>
<li>http://clyee.com/blog/page/2/</li>
<li>http://clyee.com/blog/topics/psychology/page/2/</li>
<li>http://clyee.com/blog/tag/seo/page/2/</li>
</ol>
</div>
<p>Homepage主页的Subpages页面是可以通过插件来完成添加noindex,follow的，但是如何添加&lt;meta name=”robots” content=”noindex,follow”&gt;给分类和标签的分页呢? 因为这样的搜索结果对搜索引擎是一点意义都没有。比如Categories或者tag的/page/页面，所以我们采取措施让收索引擎不收录它们。</p>
<p>两种方法 There are two ways.<br />
 1.你可以通过robots.txt进行拦截，写法为：</p>
<div>
<ol>
<li>User-agent: *</li>
<li>Disallow: */page/*</li>
</ol>
</div>
<p>2.通过php判断url中是否有/page/字符串完成，如/page/2</p>
<div>
<ol>
<li>&lt;?php</li>
<li>$url = ’http://’.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI'];</li>
<li>if ((strpos(“$url”,“/page/”)==false))</li>
<li>{ ?&gt;</li>
<li>&lt;?php } else { ?&gt;</li>
<li>&lt;meta name=“robots” content=“noindex,follow” /&gt;</li>
<li>&lt;?php } ?&gt;</li>
</ol>
</div>
<p>* 其中noindex是指不要收录这个页面，follow是指跟踪（即爬行）这个页面上的链接。你也可以选择noindex,nofollow的组合，意思为不收录这个页面，也不跟踪页面中的链接。</p>
<p>第二个方法比第一个方法好在：搜索引擎可以爬行page页面，但是不收录。而不是阻止搜索引擎爬行page页面。</p>
<p>上面的代码通过判断请求页面的URL中是否含有”/page/”这个字段，如果有，就添加标签，如果没有就跳过。添加到header.php中不仅可以判断tag的分页，也可以判断categories的分页。这段代码不仅适用于Wordpress，还可以添加到Typecho等php博客程序的header.php中。</p>
<pre> 
Other knowledge：
 robots.txt, noindex的区别</pre>
<p>如果我们希望某个页面不被搜索引擎收录，不显示在搜索结果页面中的话，是用robots.txt还是用noindex效果好呢？两者的作用是一样的吗？robots.txt与noindex到底有什么样的区别呢？</p>
<p>先说robots文件。robots.txt在google网站站长工具里是这样被描述的：</p>
<p><em>Google不会抓取 robots.txt 拦截的网页内容或将其编入索引，但如果我们在网络上的其他网页中发现这些内容，我们仍然会将这些网页的网址编入索引。</em></p>
<p>也就是说除非有外部链接导入到该页面，否则搜索引擎是不会访问被robots拦截的页面。<strong>就算使用robots拦截某页面，但是该页面依然有可能被搜索引擎收录并显示在搜索结果页面中。</strong></p>
<p>举个例子：www.seowhy.com/robots.txt里面有这样一句：</p>
<p>Disallow: /edu/</p>
<p>但是在google里搜索该目录时，依然可以看到一些页面出现在搜索结果中。</p>
<p>http://www.google.com.hk/#hl=en&#038;q=site:www.seowhy.com%2Fedu%2F&#038;oq=site:www.seowhy.com%2Fedu%2F&#038;aq=f&#038;aqi=&#038;aql=&#038;gs_sm=e&#038;gs_upl=238749l239677l0l6l6l0l0l0l0l0l0ll0&#038;fp=b35953c2401f4192&#038;biw=1229&#038;bih=462</p>
<p>robots文件来阻止搜索引擎收录并不是最好的方法。</p>
<p>noindex元标记可以解决这个问题，它的用法是：</p>
<p>&lt;meta name=”robots” content=”noindex”&gt;</p>
<p>noindex允许蜘蛛访问，但是禁止其收录，这样页面将不会出现在搜索结果页面中。使用noindex的页面有权重吗？有。因为有内部链接或者外部链接指向它，所以该页面依然有权重。使用follow&lt;meta name=”robots” conent=”noindex, follow”&gt;即可以将权重流出去，该页面权重才不会浪费。</p>
<p>至于nofollow属性值，含有nofollow的链接将不会传递权重，蜘蛛不会跟踪nofollow链接。但是该链接指向的页面也还有可能出现在搜索结果页中。一个页面上某些链接使用nofollow并不能增加其他链接的权重。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/add-noindex-to-wp-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some VMware images</title>
		<link>http://www.dai3.com/blog/some-vmware-images/</link>
		<comments>http://www.dai3.com/blog/some-vmware-images/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 17:28:55 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[VM image]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=67</guid>
		<description><![CDATA[在Hostloc看见了一个帖子，关于debian的，我都会关注。 简约不简单，专注！细腻！稳定 用VM的镜像，都不用安装，DOWN就能用了，Debian 5.0 150MB http://www.thoughtpolice.co.uk/vmware/ 我们来看看vmware image，非常爽的东西。 我们经常本地调试程序的时候就要用到vm！  Some VMware images QUICK JUMP VMware lets you run another computer in your computer. Try out another operating system, test a different platform, preview a new distro. Hopefully this page of VMware images, or &#8220;Virtual Appliances&#8221; is useful. These images will work in: VMware Player free! VMware [...]]]></description>
			<content:encoded><![CDATA[<p>在Hostloc看见了一个帖子，关于debian的，我都会关注。</p>
<p>简约不简单，专注！细腻！稳定 <img src='http://www.dai3.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>用VM的镜像，都不用安装，DOWN就能用了，Debian 5.0 150MB<br />
<a href="http://www.thoughtpolice.co.uk/vmware/" target="_blank">http://www.thoughtpolice.co.uk/vmware/</a></p>
<p>我们来看看vmware image，非常爽的东西。</p>
<p>我们经常本地调试程序的时候就要用到vm！</p>
<div id="navigation">
<div id="path">
<p> <a href="http://www.thoughtpolice.co.uk/vmware/">Some VMware images</a></p>
</div>
</div>
<div id="content-area">
<div id="content">
<h1></h1>
<div><strong>QUICK JUMP</strong><br />
<a href="http://www.thoughtpolice.co.uk/vmware/#centos"><img src="http://www.thoughtpolice.co.uk/img/logos/centos-logo.png" alt="CentOS logo" width="116" height="42" align="right" border="0" /></a><br />
<a href="http://www.thoughtpolice.co.uk/vmware/#debian"><img src="http://www.thoughtpolice.co.uk/img/logos/debian-logo.png" alt="Debian logo" width="116" height="42" align="right" border="0" /></a><br />
<a href="http://www.thoughtpolice.co.uk/vmware/#fedora"><img src="http://www.thoughtpolice.co.uk/img/logos/fedora-logo.png" alt="Fedora logo" width="116" height="42" align="right" border="0" /></a><br />
<a href="http://www.thoughtpolice.co.uk/vmware/#freebsd"><img src="http://www.thoughtpolice.co.uk/img/logos/freebsd-logo.png" alt="FreeBSD logo" width="116" height="42" align="right" border="0" /></a><br />
<a href="http://www.thoughtpolice.co.uk/vmware/#opensuse"><img src="http://www.thoughtpolice.co.uk/img/logos/opensuse-logo.png" alt="OpenSUSE logo" width="116" height="42" align="right" border="0" /></a><br />
<a href="http://www.thoughtpolice.co.uk/vmware/#ubuntu"><img src="http://www.thoughtpolice.co.uk/img/logos/ubuntu-logo.png" alt="Ubuntu logo" width="116" height="42" align="right" border="0" /></a></div>
<h2><img src="http://www.thoughtpolice.co.uk/heading/?text=Introduction%20&amp;selector=h2" alt="Introduction" /></h2>
<p>VMware lets you run another computer in your computer. Try out another operating system, test a different platform, preview a new distro. Hopefully this page of VMware images, or &#8220;Virtual Appliances&#8221; is useful.</p>
<h2><img src="http://www.thoughtpolice.co.uk/heading/?text=Compatibility%20&amp;selector=h2" alt="Compatibility" /></h2>
<p>These images will work in:</p>
<ul>
<li><a href="http://www.vmware.com/products/player/">VMware Player</a> <strong>free!</strong></li>
<li><a href="http://www.vmware.com/products/server/">VMware Server</a> <strong>free!</strong></li>
<li><a href="http://www.vmware.com/products/ws/">VMware Workstation 5.5+</a></li>
<li><a href="http://www.vmware.com/products/vi/esx/">VMware ESX 3+</a>/VMware Virtual Infrastructure/vSphere</li>
</ul>
<h2><img src="http://www.thoughtpolice.co.uk/heading/?text=How%20to%20use%20these%20images%20&amp;selector=h2" alt="How to use these images" /></h2>
<ol>
<li>Get the free <a href="http://www.vmware.com/products/player/">VMware Player</a> (or VMware Server, ESX 3, or VMware Workstation)</li>
<li>Download the image you want to use (see the list below)</li>
<li>Unzip it</li>
<li>Load the image in VMware</li>
</ol>
<h2><img src="http://www.thoughtpolice.co.uk/heading/?text=How%20these%20images%20were%20created%20&amp;selector=h2" alt="How these images were created" /></h2>
<p>All of these VMware images are straight installs of the distribution, with all the default options chosen. This means you will be using and American English with an <a href="http://en.wikipedia.org/wiki/Image:Qwerty.svg">American keyboard</a>. No tinkering was done &#8211; this means that no security updates have been applied &#8211; so be careful! See the <a href="http://www.thoughtpolice.co.uk/vmware/howto/1-minute-guide.html">1 minute HOWTO guide</a> for instructions on changing the language and keyboard, and on applying security updates.<br />
There is also a step-by-step walkthrough on <a href="http://www.thoughtpolice.co.uk/vmware/howto/create-a-vmware-image-using-workstation.html">how to create your own VMware image using VMware Workstation.</a></p>
<h2><img src="http://www.thoughtpolice.co.uk/heading/?text=Download%20the%20images%20&amp;selector=h2" alt="Download the images" /></h2>
<p><strong>The torrent downloads here are <span style="text-decoration: underline;">much, much faster</span> than your net connection.<span style="text-decoration: underline;">If you want the image quickly</span>, definitely use the torrent.</strong></p>
<ol>
<li>Get a BitTorrent downloader, like <a href="http://www.utorrent.com/download.php">uTorrent</a> (free!)</li>
<li>Click one of the <a>fast torrent download!</a> links below</li>
<li>There will be a short pause before, and then your high speed download will begin</li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/some-vmware-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>修改Linux系统SSH的端口号+防火墙配置</title>
		<link>http://www.dai3.com/blog/change-ssh-port/</link>
		<comments>http://www.dai3.com/blog/change-ssh-port/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 15:59:07 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[VPS Hosting]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[SSH Port]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=66</guid>
		<description><![CDATA[操作系统linux和Unix都适用： linux系统默认用的ssh端口是22，可以通过修改端口号来防止一些攻击 修改配置文件  /etc/ssh/sshd_config，将里面的Port改为新端口（此端口必须是没有程序用到），比如10022， 然后 kill -HUP `cat /var/run/sshd.pid` 就行了。 注：现有连接自己不会断，因为kill -HUP `cat /var/run/sshd.pid` 只是HUP监听的那个，已经建立的连接（不同的 pid）不会断。 要想重新启用并用新端口登陆 ，此时可以在本登陆帐户下 用 exit 命令退出，在用新的端口登陆即可！ 或者：[root@Ora ~]# service sshd restart 或者：[root@Ora ~]# /etc/init.d/sshd restart 总的意思就是重启ssh服务即可 重启后用linux连接的方式是 ssh -p 10022 192.168.1.100 用putty或者crt 等其他软件在win上连接的话 修改下端口也就是port即可 修改端口后记得一定要在防火墙上打开此端口如 iptables -I INPUT -p tcp -m tcp &#8211;dport 10022 -j ACCEPT]]></description>
			<content:encoded><![CDATA[<p>操作系统linux和Unix都适用：<br />
linux系统默认用的ssh端口是22，可以通过修改端口号来防止一些攻击</p>
<p>修改配置文件  /etc/ssh/sshd_config，将里面的Port改为新端口（此端口必须是没有程序用到），比如10022，<br />
然后 kill -HUP `cat /var/run/sshd.pid` 就行了。<br />
注：现有连接自己不会断，因为kill -HUP `cat /var/run/sshd.pid` 只是HUP监听的那个，已经建立的连接（不同的 pid）不会断。<br />
要想重新启用并用新端口登陆 ，此时可以在本登陆帐户下 用 exit 命令退出，在用新的端口登陆即可！<br />
或者：[root@Ora ~]# service sshd restart<br />
或者：[root@Ora ~]# /etc/init.d/sshd restart<br />
总的意思就是重启ssh服务即可</p>
<p>重启后用linux连接的方式是<br />
ssh -p 10022 192.168.1.100<br />
用putty或者crt 等其他软件在win上连接的话 修改下端口也就是port即可</p>
<p>修改端口后记得一定要在防火墙上打开此端口如<br />
iptables -I INPUT -p tcp -m tcp &#8211;dport 10022 -j ACCEPT</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/change-ssh-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL数据库管理工具(Navicat.for.MySQL.Enterprise.v10.0.8.Incl.Keymaker)</title>
		<link>http://www.dai3.com/blog/navicat-for-mysql/</link>
		<comments>http://www.dai3.com/blog/navicat-for-mysql/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 12:02:06 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Navicat]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=65</guid>
		<description><![CDATA[自己非常喜欢的MySQL数据库管理工具，这个软件备份非常方便哦！ 有免费版，也有收费版本！ 免费版够用！官网下载吧！ 收费版这里下载：http://www.verycd.com/topics/2910659/ &#160; 这个MySQL管理工具，1.界面不错，2.备份强大！ Navicat for MySQL \(^o^)/YES！ Navicat for MySQL is a powerful Database administration and development tool for MySQL. It works with any MySQL Database Server from version 3.21 or above, and supports most of the latest MySQL features including Trigger, Stored Procedure, Function, Event, View, and Manage User, etc. Features [...]]]></description>
			<content:encoded><![CDATA[<p>自己非常喜欢的MySQL数据库管理工具，这个软件备份非常方便哦！</p>
<p>有免费版，也有收费版本！</p>
<p>免费版够用！官网下载吧！</p>
<p>收费版这里下载：<a href="http://www.verycd.com/topics/2910659/">http://www.verycd.com/topics/2910659/</a></p>
<p>&nbsp;</p>
<p>这个MySQL管理工具，1.界面不错，2.备份强大！</p>
<p>Navicat for MySQL<strong> \(^o^)/YES！</strong></p>
<p>Navicat for MySQL is a powerful Database administration and development tool for MySQL. It works with any MySQL Database Server from version 3.21 or above, and supports most of the latest MySQL features including Trigger, Stored Procedure, Function, Event, View, and Manage User, etc.<br />
Features in Navicat are sophisticated enough to provide professional developers for all their specific needs, yet easy to learn for users who are new to MySQL.<br />
With Navicat well-designed Graphical User Interface (GUI), Navicat for MySQL lets you quickly and easily create, organize, access and share information in a secure and easy way, taking MySQL administration.<br />
Navicat for MySQL is available for three platforms – Microsoft <a href="http://www.navicat.com/en/products/navicat_mysql/mysql_detail_win.html">Windows</a>, <a href="http://www.navicat.com/en/products/navicat_mysql/mysql_detail_mac.html">Mac OS X</a> and <a href="http://www.navicat.com/en/products/navicat_mysql/mysql_detail_linux.html">Linux</a>. It connects users to any local/remote MySQL Server, providing several database utilities such as Data Modeling Tool, Data/Structure Synchronization, Import/Export, Backup and Report, to facilitate the process of maintaining data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/navicat-for-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(难得)BurstNet 2011年圣诞节 8折优惠码</title>
		<link>http://www.dai3.com/blog/burstnet-2011-20-discount-code-for-christmas/</link>
		<comments>http://www.dai3.com/blog/burstnet-2011-20-discount-code-for-christmas/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 17:41:25 +0000</pubDate>
		<dc:creator>dai</dc:creator>
				<category><![CDATA[VPS Hosting]]></category>
		<category><![CDATA[BurstNet]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://www.dai3.com/blog/?p=63</guid>
		<description><![CDATA[呆三温馨提示：买Burst的VPS有时候看运气哦，月付嘛，不好下个月重买。呆三买了几十个了，基本十个有1-3个性能不给力，果断下个月重买。爽！ 便宜的东西便宜用！关键心态要好！ BurstNet 2011年圣诞节发布8折优惠码。Linux VPS Package #1 优惠后只需要$4.76/月，WIN VPS Package #1惠后$6.36/月。价钱还算给力，Burst一直性价比不错，这次搭配了优惠码后就更给力啦，想出手的同学要抓紧了啊。 优惠码： YEAREND20 – 月付8折，适合所有VPS 三个机房可以选择： Scranton PA  (test IP: 66.96.192.92) Los Angeles CA  (test IP: 184.82.225.2) Miami FL  (test IP: 184.22.119.122) 点击去BurstNet购买 BURSTNET® 12 months Conclusion Discounted SALE A very special deal : Although QUANTITIES LAST &#160; CURRENT Selling Provides: BUDGET Linux system VPS &#8211; Just about [...]]]></description>
			<content:encoded><![CDATA[<p><strong>呆三温馨提示：</strong><span style="color: #ff00ff;">买Burst的VPS有时候看运气哦，月付嘛，不好下个月重买。呆三买了几十个了，基本十个有1-3个性能不给力，果断下个月重买。爽！</span></p>
<p><span style="color: #ff00ff;">便宜的东西便宜用！关键心态要好！</span></p>
<p><a title="burst vps" href="http://burst.net/" target="_blank">BurstNet</a> 2011年圣诞节发布8折优惠码。Linux VPS Package #1 优惠后只需要$4.76/月，WIN VPS Package #1惠后$6.36/月。价钱还算给力，Burst一直性价比不错，这次搭配了优惠码后就更给力啦，想出手的同学要抓紧了啊。</p>
<p>优惠码：</p>
<p><strong><strong>YEAREND20</strong> <strong>– 月付8折，适合所有VPS</strong></strong></p>
<p>三个机房可以选择：</p>
<p>Scranton PA  (test IP: 66.96.192.92)</p>
<p>Los Angeles CA  (test IP: 184.82.225.2)</p>
<p>Miami FL  (test IP: 184.22.119.122)</p>
<p><a title="84vps " href="http://burst.net/" target="_blank">点击去BurstNet购买</a></p>
<table width="95%" border="0" cellspacing="0" cellpadding="3" bgcolor="#FFFFFF">
<tbody>
<tr>
<td><center><span style="color: #a20303; font-family: verdana, arial, helvetica;"><strong>BURSTNET<strong>® </strong>12 months Conclusion Discounted SALE<br />
A very special deal : Although QUANTITIES LAST</strong></span><br />
<img src="http://burst.net/images/sale.gif" alt="" border="0" />&nbsp;</p>
<p></center></td>
</tr>
<tr>
<td><span style="font-family: verdana, arial, helvetica;"><span style="font-family: verdana, arial, helvetica;"><strong>CURRENT Selling Provides:</strong></span></span></p>
<ul>
<ul>
<li><a href="https://service.burst.net/cart.php">BUDGET Linux system VPS &#8211; Just about all Places * 20% OFF</a>? Make use of Promotion Program code &#8220;YEAREND20&#8243;&#8230;Finishes 12/31/2011.<br />
<a href="http://burst.net/linvps.shtml">PRODUCT Range DETAILS</a></li>
</ul>
</ul>
<ul>
<ul>
<li><a href="https://service.burst.net/cart.php">BUDGET House windows VPS : ALL Spots &#8211; 20% OFF</a>? Make use of Promotional Rule &#8220;YEAREND20&#8243;&#8230;Finishes 12/31/2011.<br />
<a href="http://burst.net/winvps.shtml">PRODUCT Range DETAILS</a></li>
</ul>
</ul>
<ul>
<ul>
<li><a href="http://burst.net/spc1.shtml">SELECT Server colocation &#8211; SCRANTON, Pennsylvania * FIRST 30 days FREE</a></li>
</ul>
</ul>
<ul>
<li><a href="http://burst.net/100tb.shtml">100TB Web site hosting : Worldwide &#8212; PROMOTIONAL RELEASE</a></li>
</ul>
</td>
</tr>
<tr>
<td><span style="font-family: verdana, arial, helvetica;"><strong>SALE OFFER Phrases AND CONDITIONS</strong></span><span style="font-family: verdana, arial, helvetica;"><strong>BASIC Selling OFFER TERMS</strong></span></p>
<ul>
<li>AVAILABILITY &#8212; Purchase offers appropriate for first time Customers or perhaps Companies Just. Present program non-transferable.</li>
</ul>
<p><strong>20% Discounted OFFER &#8211; Vps (VPS)</strong></p>
<ul>
<li>MUST Make use of Linked PROMOTIONAL CODE Furnished, In the course of Purchase PROCESS</li>
<li>MUST Move ALL Scams CHECKING PROCEDURES</li>
<li>DISCOUNT Refers to Costs OF Fundamental PACKAGE ONLY&#8212;NOT UPGRADES/ADD-ONS</li>
<li>MUST PAY Any other FEES Pertaining to UPGRADES/ADD-ONS SELECTED</li>
<li>SALE Good For brand new CLIENTS Or even Virtual private server ONLY&#8212;EXISTING Support NON-TRANSFERRABLE</li>
<li>QUANTITIES Might be Restricted to Customer AND/OR DAY&#8212;DUE For you to STOCK/DEMAND LEVELS</li>
</ul>
<p><strong>FIRST 30 days Totally free Offer you * Committed SERVERS</strong></p>
<ul>
<li>MUST Employ Related Advertising CODE Offered, Through Buy PROCESS</li>
<li>MUST Spend $1.00 SETUP Price &amp; Move Just about all Scams Checking out PROCEDURES</li>
<li>DISCOUNT Relates to FEES Involving BASIC PACKAGE ONLY&#8212;NOT UPGRADES/ADD-ONS</li>
<li>MUST PAY Any extra Service fees Regarding UPGRADES/ADD-ONS SELECTED</li>
<li>SALE Appropriate FOR NEW CLIENTS As well as SERVERS ONLY&#8212;EXISTING Program NON-TRANSFERRABLE</li>
<li>MAY Stop AT ANY TIME Ahead of Start Second 30 days Not to Always be Charged FURTHER</li>
<li>QUANTITIES Could possibly be LIMITED BY Buyer AND/OR DAY&#8212;DUE For you to STOCK/DEMAND LEVELS</li>
<li>PLEASE EXPECT 24-72 Several hours DELIVERY TIMEFRAMES&#8212;DUE TO HEAVY Predicted DEMAND</li>
<li>OUR?<a href="http://burst.net/policy/terms.shtml">AUP/TOS</a>?WILL BE STRICTLY ENFORCED&#8212;PLEASE Usually do not Squander Each of our Period, Or even Your own house&#8230;</li>
</ul>
<p><strong>100TB DEDICATED SERVERS</strong></p>
<ul>
<li>Service Constraint. A reverse phone lookup is often a particular limited time offer through BurstNET?, and could become baulked, changed, or taken anytime, subsequent 2 weeks notice e mailed to the Consumer.</li>
<li>Fair Use Insurance plan. The actual services are provided to the customer for standard, fair, and also fair usage. Data transfer useage utilization is to be reasonably regular during each month, with no unusual bandwith consumption patterns/spikes. In case BurstNET?, in the lone discretion, can determine that this Buyer isn&#8217;t while using the support as outlined by this Reasonable Use Coverage, BurstNET? will likely be eligible to: (a) inflict limitations for the rate with the information the Client may transmit and/or get with this particular services; (w) modify pricing of service to regular/standard data transfer rates; and/or (c) suspend as well as terminate the actual service made available to the consumer, at BurstNET?Is actually sole discernment.</li>
<li>CDN as well as Advertising Loading. Client will stop eligible to utilize services when considering functioning any Content Submitting System (CDN) and/or Videos online service, except with BurstNET?&#8217;s prior published permission, which agreement may be authorized as well as declined from BurstNET?&#8217;s sole discretion. Unique demands to utilize the particular intend to work such, might be accepted over a case-by-case foundation, and that we perform recommend a person call us to debate.</li>
<li>Notice involving Break the rules of. Every time realistically possible, in the event of litigant violation of the Unique Conditions and terms because of this service, BurstNET? will e mail the consumer enabling One day for stopping the particular break, prior to BurstNET? will take any action. In the event the break re-occurs within the Four weeks pursuing, BurstNET? may take any pursuit permitted in the Good Use Policy, with out further notice towards the Buyer. Failure to comply with this insurance policy may lead to end of contract and services information, plus a repayment not given.</li>
</ul>
<p><strong>ALL Delivers Susceptible to Income Deal, Plan, Conditions &amp; CONDITIONS, &amp; AUP/TOS Situated With:</strong>?<a href="http://www.burst.net/policy/">http://www.broke.net/policy/</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.dai3.com/blog/burstnet-2011-20-discount-code-for-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

