<?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>华斐Blog &#187; 心得笔记</title>
	<atom:link href="http://www.huafei117.com/category/note/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.huafei117.com</link>
	<description>华斐网志以及学习心得</description>
	<lastBuildDate>Wed, 28 Dec 2011 02:36:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>关于wordpress文章内嵌adsense的修改</title>
		<link>http://www.huafei117.com/2011/12/22/%e5%85%b3%e4%ba%8ewordpress%e6%96%87%e7%ab%a0%e5%86%85%e5%b5%8cadsense%e7%9a%84%e4%bf%ae%e6%94%b9/</link>
		<comments>http://www.huafei117.com/2011/12/22/%e5%85%b3%e4%ba%8ewordpress%e6%96%87%e7%ab%a0%e5%86%85%e5%b5%8cadsense%e7%9a%84%e4%bf%ae%e6%94%b9/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 03:48:57 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/?p=239</guid>
		<description><![CDATA[今天去郑永那里发现了一个比较爽的内嵌google Adsense的方法，就是用120×600的摩天大楼样式嵌在文章右侧，这样比经常用的放在文章前面的矩形块更显的简洁，不会太突兀。 附上修改方法: 编辑”single.php”,在 &#60;div style="float:right; padding:0px 10px;width:120px;height:600px;z-index:1000"&#62; adsense代码放这里 &#60;/div&#62; 可以根据不同的主题修改]]></description>
			<content:encoded><![CDATA[<p>今天去郑永那里发现了一个比较爽的内嵌google Adsense的方法，就是用120×600的摩天大楼样式嵌在文章右侧，这样比经常用的放在文章前面的矩形块更显的简洁，不会太突兀。<br />
附上修改方法:<br />
编辑”single.php”,在</p>
<div class="content">
<pre>&lt;div style="float:right; padding:0px 10px;width:120px;height:600px;z-index:1000"&gt;
adsense代码放这里
&lt;/div&gt;</pre>
<p>可以根据不同的主题修改</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2011/12/22/%e5%85%b3%e4%ba%8ewordpress%e6%96%87%e7%ab%a0%e5%86%85%e5%b5%8cadsense%e7%9a%84%e4%bf%ae%e6%94%b9/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>wordpress管理密码忘记了怎么办？</title>
		<link>http://www.huafei117.com/2010/12/18/wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81%e5%bf%98%e8%ae%b0%e4%ba%86%e6%80%8e%e4%b9%88%e5%8a%9e%ef%bc%9f/</link>
		<comments>http://www.huafei117.com/2010/12/18/wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81%e5%bf%98%e8%ae%b0%e4%ba%86%e6%80%8e%e4%b9%88%e5%8a%9e%ef%bc%9f/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 05:53:00 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[管理员密码修改]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/226.htm</guid>
		<description><![CDATA[很久没有登录本地环境下面的wordpress进行过测试了,今天有空想改下主题，登录后台的时候发现前不久重置过的密码又忘记了！真是悲催啊！搜索重置的方法，结果如下： 1、登录phpmyadmin,找到安装wordpress的数据库； 2、在wp_user表上面选择浏览 3、找到你要更改密码的用户名，比如admin,点击编辑； 4、将用户名的密码字段user_pass更改为“e10adc3949ba59abbe56e057f20f883e”（”123456”的MD5加密）字符串，然后使用123456的密码就可以登录。 也可以自定义更改的密码，将相应的密码可以由PHP转换成MD5输出，代码如下： &#60;?php echo md5('123456'); ?&#62; //将 123456 替换为所需密码]]></description>
			<content:encoded><![CDATA[<p>很久没有登录本地环境下面的wordpress进行过测试了,今天有空想改下主题，登录后台的时候发现前不久重置过的密码又忘记了！真是悲催啊！搜索重置的方法，结果如下：</p>
<p>1、登录phpmyadmin,找到安装wordpress的数据库；</p>
<p>2、在<strong>wp_user</strong>表上面选择<strong>浏览</strong></p>
<p><strong><a href="http://www.huafei117.com/wp-content/uploads/2010/12/changepw3.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="changepw1" border="0" alt="changepw1" src="http://www.huafei117.com/wp-content/uploads/2010/12/changepw3_thumb.jpg" width="244" height="162" /></a> </strong></p>
<p>3、找到你要更改密码的用户名，比如admin,点击<strong>编辑；</strong></p>
<p>4、将用户名的密码字段<strong>user_pass</strong>更改为“e10adc3949ba59abbe56e057f20f883e”（”123456”的MD5加密）字符串，然后使用123456的密码就可以登录。</p>
<p>也可以自定义更改的密码，将相应的密码可以由PHP转换成MD5输出，代码如下：</p>
<blockquote><pre>&lt;?php echo md5('123456'); ?&gt;
//将 123456 替换为所需密码</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/12/18/wordpress%e7%ae%a1%e7%90%86%e5%af%86%e7%a0%81%e5%bf%98%e8%ae%b0%e4%ba%86%e6%80%8e%e4%b9%88%e5%8a%9e%ef%bc%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>买了个便宜的VPS玩玩</title>
		<link>http://www.huafei117.com/2010/12/06/%e4%b9%b0%e4%ba%86%e4%b8%aa%e4%be%bf%e5%ae%9c%e7%9a%84vps%e7%8e%a9%e7%8e%a9/</link>
		<comments>http://www.huafei117.com/2010/12/06/%e4%b9%b0%e4%ba%86%e4%b8%aa%e4%be%bf%e5%ae%9c%e7%9a%84vps%e7%8e%a9%e7%8e%a9/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 12:35:11 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[心得笔记]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/221.htm</guid>
		<description><![CDATA[在google reader里面看到有便宜的VPS，搞活动才$1.05一个月，决定用PP买一个月来玩玩，最近PP个人付款也收手续费了，郁闷下！ 购买的网站：https://hostrail.com/ 65%优惠码：DEC10CAN 结束时间：未知 VPS配置： VPS &#8211; VPS 1 Power Unit RAM 256MB DISK 30GB CPU .3Ghz BANDWIDTH 200GB/m 配置不怎么高，像咱这样的拿来练练手，满足下好奇心就好啦！嘿嘿！]]></description>
			<content:encoded><![CDATA[<p>在google reader里面看到有便宜的VPS，搞活动才$1.05一个月，决定用PP买一个月来玩玩，最近PP个人付款也收手续费了，郁闷下！</p>
<p>购买的网站：<a href="https://hostrail.com/">https://hostrail.com/</a></p>
<p>65%优惠码：<font color="#ff0000">DEC10CAN</font></p>
<p>结束时间：未知<font color="#ff0000"></font></p>
<p>VPS配置：</p>
<blockquote><p><b>VPS &#8211; VPS 1 Power Unit</b>      </p>
<p>RAM 256MB      <br />DISK 30GB      <br />CPU .3Ghz      <br />BANDWIDTH 200GB/m</p>
</blockquote>
<p><font style="background-color: #ececec"></font></p>
<p>配置不怎么高，像咱这样的拿来练练手，满足下好奇心就好啦！嘿嘿！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/12/06/%e4%b9%b0%e4%ba%86%e4%b8%aa%e4%be%bf%e5%ae%9c%e7%9a%84vps%e7%8e%a9%e7%8e%a9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>重新安装wordpress</title>
		<link>http://www.huafei117.com/2010/11/28/%e9%87%8d%e6%96%b0%e5%ae%89%e8%a3%85wordpress/</link>
		<comments>http://www.huafei117.com/2010/11/28/%e9%87%8d%e6%96%b0%e5%ae%89%e8%a3%85wordpress/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 12:09:32 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/218.htm</guid>
		<description><![CDATA[转了几次服务器，空间上面的文件愈发的多起来，文件的编码也不知道什么时候弄成了乱码,整理一下，重新安装wordpress吧！ 1、备份数据库，这个不用说了，在数据库那里导出；同时把主题（themes）、插件(plugins)、上传(uploads)备份。 2、清空掉空间的数据库和文件；（其实不用清掉数据库的，我之前搬空间的时候没有弄好数据库，这回重新来的！） 3、导入备份的数据库，并上传wordpress程序； 4、修改wp-config-sample.php文件中的数据库连接： // ** MySQL 设置 &#8211; 具体信息来自您正在使用的主机 ** // /** WordPress 数据库的名称 */ define(&#8216;DB_NAME&#8217;, &#8216;database_name_here&#8217;); /** MySQL 数据库用户名 */ define(&#8216;DB_USER&#8217;, &#8216;username_here&#8217;); /** MySQL 数据库密码 */ define(&#8216;DB_PASSWORD&#8217;, &#8216;password_here&#8217;); /** MySQL 主机 */ define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;); &#160; 并改名为:wp-config.php; 5、上传1、中备份的主题、插件、上传文件夹到相应的目录。 6、到链接那里更新下固定链接！ 搞定&#8230;.]]></description>
			<content:encoded><![CDATA[<p>转了几次服务器，空间上面的文件愈发的多起来，文件的编码也不知道什么时候弄成了乱码,整理一下，重新安装wordpress吧！</p>
<p>1、备份数据库，这个不用说了，在数据库那里导出；同时把主题（themes）、插件(plugins)、上传(uploads)备份。</p>
<p>2、清空掉空间的数据库和文件；（其实不用清掉数据库的，我之前搬空间的时候没有弄好数据库，这回重新来的！）</p>
<p>3、导入备份的数据库，并上传wordpress程序；</p>
<p>4、修改wp-config-sample.php文件中的数据库连接：</p>
<blockquote><p>// ** MySQL 设置 &#8211; 具体信息来自您正在使用的主机 ** //     <br />/** WordPress 数据库的名称 */      <br />define(&#8216;DB_NAME&#8217;, &#8216;database_name_here&#8217;); </p>
<p>/** MySQL 数据库用户名 */     <br />define(&#8216;DB_USER&#8217;, &#8216;username_here&#8217;); </p>
<p>/** MySQL 数据库密码 */     <br />define(&#8216;DB_PASSWORD&#8217;, &#8216;password_here&#8217;); </p>
<p>/** MySQL 主机 */     <br />define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;);</p>
<p>&#160;</p>
</blockquote>
<p>并改名为:wp-config.php;</p>
<p>5、上传1、中备份的主题、插件、上传文件夹到相应的目录。</p>
<p>6、到链接那里更新下固定链接！</p>
<p>搞定&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/11/28/%e9%87%8d%e6%96%b0%e5%ae%89%e8%a3%85wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>博客搬家</title>
		<link>http://www.huafei117.com/2010/10/06/%e5%8d%9a%e5%ae%a2%e6%90%ac%e5%ae%b6/</link>
		<comments>http://www.huafei117.com/2010/10/06/%e5%8d%9a%e5%ae%a2%e6%90%ac%e5%ae%b6/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 02:36:29 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress搬家]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/215.htm</guid>
		<description><![CDATA[之前在横天小张那里买的主机要过期，又去他开通的自助购买平台买了个空间，第一次搬家，做个记录吧！ &#160; 1、首先是在新的空间上配置好MYSQL的数据库和密码（因为跟舍友一起用的空间） 2、将旧空间的数据库和文件都下载下来：数据库我是用自动备份发到我邮箱的数据库文件；其他文件直接用FTP下载下来了！ 3、下载完成后修改wp-config.php，将新空间的数据库参数修改上去。 4、将文件上传至新的FTP，并在数据库中导入之前备份的数据库。 5，最后就是更改域名的解析了，在这里不得不赞下godday，刚改IP就能秒解析，比之前在国内的速度&#8230;真给力啊 6、最后，开域名&#8230;貌似没什么问题了，大功告成！]]></description>
			<content:encoded><![CDATA[<p>之前在横天小张那里买的主机要过期，又去他开通的自助购买平台买了个空间，第一次搬家，做个记录吧！</p>
<p>&#160;</p>
<p>1、首先是在新的空间上配置好MYSQL的数据库和密码（因为跟舍友一起用的空间）</p>
<p>2、将旧空间的数据库和文件都下载下来：数据库我是用自动备份发到我邮箱的数据库文件；其他文件直接用FTP下载下来了！</p>
<p>3、下载完成后修改wp-config.php，将新空间的数据库参数修改上去。</p>
<p>4、将文件上传至新的FTP，并在数据库中导入之前备份的数据库。</p>
<p>5，最后就是更改域名的解析了，在这里不得不赞下godday，刚改IP就能秒解析，比之前在国内的速度&#8230;真给力啊</p>
<p>6、最后，开域名&#8230;貌似没什么问题了，大功告成！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/10/06/%e5%8d%9a%e5%ae%a2%e6%90%ac%e5%ae%b6/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>禁用wordpress的自动保存和历史版本</title>
		<link>http://www.huafei117.com/2010/07/20/%e7%a6%81%e7%94%a8wordpress%e7%9a%84%e8%87%aa%e5%8a%a8%e4%bf%9d%e5%ad%98%e5%92%8c%e5%8e%86%e5%8f%b2%e7%89%88%e6%9c%ac/</link>
		<comments>http://www.huafei117.com/2010/07/20/%e7%a6%81%e7%94%a8wordpress%e7%9a%84%e8%87%aa%e5%8a%a8%e4%bf%9d%e5%ad%98%e5%92%8c%e5%8e%86%e5%8f%b2%e7%89%88%e6%9c%ac/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 07:03:59 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[autosave]]></category>
		<category><![CDATA[revisions]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[历史版本]]></category>
		<category><![CDATA[自动保存]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/207.htm</guid>
		<description><![CDATA[无意中发现发表的文章的ID是不连续的，才知道还没有禁用wordpress的自动保存和历史版本功能&#8230; 禁用历史版本（Revisions）： 在wp-config.php中加入: define(&#8216;WP_POST_REVISIONS&#8217;, false); 禁用自动保存（AutoSave）； 打开以下4个文件 wp-admin/post-new.php wp-admin/post.php wp-admin/page-new.php wp-admin/page.php 注释掉这行 //wp_enqueue_script(&#8216;autosave&#8217;);]]></description>
			<content:encoded><![CDATA[<p>无意中发现发表的文章的ID是不连续的，才知道还没有禁用wordpress的自动保存和历史版本功能&#8230;</p>
<p><strong>禁用历史版本（Revisions）：</strong></p>
<p>在wp-config.php中加入:</p>
<blockquote><p>define(&#8216;WP_POST_REVISIONS&#8217;, false);</p>
</blockquote>
<p><strong></strong></p>
<p><strong>禁用自动保存（AutoSave）；</strong>    <br />打开以下4个文件</p>
<blockquote><p>wp-admin/post-new.php     <br />wp-admin/post.php      <br />wp-admin/page-new.php      <br />wp-admin/page.php</p>
</blockquote>
<p>注释掉这行</p>
<blockquote><p>//wp_enqueue_script(&#8216;autosave&#8217;);</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/07/20/%e7%a6%81%e7%94%a8wordpress%e7%9a%84%e8%87%aa%e5%8a%a8%e4%bf%9d%e5%ad%98%e5%92%8c%e5%8e%86%e5%8f%b2%e7%89%88%e6%9c%ac/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>去除EditPlus自动备份功能. bak</title>
		<link>http://www.huafei117.com/2010/07/10/%e5%8e%bb%e9%99%a4editplus%e8%87%aa%e5%8a%a8%e5%a4%87%e4%bb%bd%e5%8a%9f%e8%83%bd-bak/</link>
		<comments>http://www.huafei117.com/2010/07/10/%e5%8e%bb%e9%99%a4editplus%e8%87%aa%e5%8a%a8%e5%a4%87%e4%bb%bd%e5%8a%9f%e8%83%bd-bak/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 09:08:45 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[editplus]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/205.htm</guid>
		<description><![CDATA[因为使用不同的编码而用Editplus替代了系统的记事本，但是那个保存时自动产生.bak备份文件的功能让我有点小郁闷，今天又找了一下。 其实想去掉EditPlus的自动备份功能也简单，方法如下： 打开菜单栏上的:工具(T)-&#62;参数选择(P)-&#62;文件 取消“保存时自动创建备份文件”前的复选框中选择状态即可。 或 Tools&#8211;&#62;Preference&#8211;&#62;选中Files&#8211;&#62;Create backup file when saving的复选框中的勾去掉即可。 以前也找过，就是没有点到文件那里，以为那里没有选项可以设置的，杯具啊&#8230;]]></description>
			<content:encoded><![CDATA[<p>因为使用不同的编码而用Editplus替代了系统的记事本，但是那个保存时自动产生.bak备份文件的功能让我有点小郁闷，今天又找了一下。</p>
<p>其实想去掉EditPlus的自动备份功能也简单，方法如下：</p>
<p>打开菜单栏上的:工具(T)-&gt;参数选择(P)-&gt;文件</p>
<p>取消“保存时自动创建备份文件”前的复选框中选择状态即可。</p>
<p>或</p>
<p>Tools&#8211;&gt;Preference&#8211;&gt;选中Files&#8211;&gt;Create backup file when saving的复选框中的勾去掉即可。</p>
<hr />
<p><a href="http://www.huafei117.com/wp-content/uploads/2010/07/editplus.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="editplus" border="0" alt="editplus" src="http://www.huafei117.com/wp-content/uploads/2010/07/editplus_thumb.png" width="644" height="481" /></a> </p>
<p>以前也找过，就是没有点到文件那里，以为那里没有选项可以设置的，杯具啊&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/07/10/%e5%8e%bb%e9%99%a4editplus%e8%87%aa%e5%8a%a8%e5%a4%87%e4%bb%bd%e5%8a%9f%e8%83%bd-bak/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>插件推荐：同步你的WordPress博客更新信息到twitter（也支持新浪微博）</title>
		<link>http://www.huafei117.com/2010/07/07/%e6%8f%92%e4%bb%b6%e6%8e%a8%e8%8d%90%ef%bc%9a%e5%90%8c%e6%ad%a5%e4%bd%a0%e7%9a%84wordpress%e5%8d%9a%e5%ae%a2%e6%9b%b4%e6%96%b0%e4%bf%a1%e6%81%af%e5%88%b0twitter%ef%bc%88%e4%b9%9f%e6%94%af%e6%8c%81/</link>
		<comments>http://www.huafei117.com/2010/07/07/%e6%8f%92%e4%bb%b6%e6%8e%a8%e8%8d%90%ef%bc%9a%e5%90%8c%e6%ad%a5%e4%bd%a0%e7%9a%84wordpress%e5%8d%9a%e5%ae%a2%e6%9b%b4%e6%96%b0%e4%bf%a1%e6%81%af%e5%88%b0twitter%ef%bc%88%e4%b9%9f%e6%94%af%e6%8c%81/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 09:48:06 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[玩转Wordpress]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[同步]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/201.htm</guid>
		<description><![CDATA[放假这几天，玩起了同步，显示在GAE上搭建了twitter同步到sina微博的程序，至于QQ，有民间的API出现了还没有弄呢！期间也找了几个同步wordpress博客更新到twitter的方法，就推荐下这个插件吧！ 插件名称：little-wp-to-twitter 插件描述：一款轻量级的、同步你的WordPress博客更新信息到twitter（也支持新浪微博），支持个性化、自定义同步信息内容的插件 当前版本：1.0 插件作者：QiQiBoY（@qiqiboy） 插件页面：http://www.qiqiboy.com/plugins/ 插件下载：http://wordpress.org/extend/plugins/little-wp-to-twitter/ 插件简介： 发布或更新日志时同步一条日志信息到twitter 支持自定义信息前缀、自定义twitter代理、自定义短网址api 支持将日志中的标签（tag）以话题形式发布到twitter 日志编辑页面可单独选择此日志是否推到twitter 个性化推特信息内容，可在每条tweet结尾加上一段自己的话 以上所有信息均也可推到新浪微博 插件使用： 下载插件上传到WordPress插件目录，后台激活 到设置页面勾选“Enable little wp to twitter”启用插件，然后填写你的twitter用户名和密码，点击“保存更改”即可。 国内主机用户务必勾选最后“use a proxy” 更多信息请移步道作者的介绍页面：http://www.qiqiboy.com/2010/04/01/plugin-little-wp-to-twitter.html 另外，如果有想万戈同学那样不喜欢用插件的话也可以去万戈那里讨教讨教非插件的方法! 同时也以这篇日志做个测试！嘎嘎&#8230;. 还没有找到合适的twitter api proxy 同步失败&#8230;]]></description>
			<content:encoded><![CDATA[<p>放假这几天，玩起了同步，显示在GAE上搭建了twitter同步到sina微博的程序，至于QQ，有民间的API出现了还没有弄呢！期间也找了几个同步wordpress博客更新到twitter的方法，就推荐下这个插件吧！</p>
<blockquote><p><strong>插件名称</strong>：little-wp-to-twitter       <br /><strong>插件描述</strong>：一款轻量级的、同步你的WordPress博客更新信息到twitter（也支持新浪微博），支持个性化、自定义同步信息内容的插件       <br /><strong>当前版本</strong>：1.0       <br /><strong>插件作者</strong>：QiQiBoY（<a href="http://twitter.com/qiqiboy"><strong>@qiqiboy</strong></a>）       <br /><strong>插件页面</strong>：<a href="http://www.qiqiboy.com/plugins/">http://www.qiqiboy.com/plugins/</a>       <br /><strong>插件下载</strong>：<a href="http://wordpress.org/extend/plugins/little-wp-to-twitter/">http://wordpress.org/extend/plugins/little-wp-to-twitter/</a>       <br /><strong>插件简介</strong>：</p>
<ul>
<li>发布或更新日志时同步一条日志信息到twitter </li>
<li>支持自定义信息前缀、自定义twitter代理、自定义短网址api </li>
<li>支持将日志中的标签（tag）以话题形式发布到twitter </li>
<li>日志编辑页面可单独选择此日志是否推到twitter </li>
<li><strong><em>个性化推特信息内容</em></strong>，可在每条tweet结尾加上一段自己的话 </li>
<li>以上所有信息均也可推到新浪微博 </li>
</ul>
<p><strong>插件使用</strong>：</p>
<ol>
<li>下载插件上传到WordPress插件目录，后台激活 </li>
<li>到设置页面勾选“Enable little wp to twitter”启用插件，然后填写你的twitter用户名和密码，点击“保存更改”即可。 </li>
<li>国内主机用户务必勾选最后“<strong>use a proxy</strong>” </li>
</ol>
</blockquote>
<p>更多信息请移步道作者的介绍页面：<a href="http://www.qiqiboy.com/2010/04/01/plugin-little-wp-to-twitter.html">http://www.qiqiboy.com/2010/04/01/plugin-little-wp-to-twitter.html</a></p>
<p>另外，如果有想万戈同学那样不喜欢用插件的话也可以去<a href="http://www.wange.im" target="_blank">万戈</a>那里讨教讨教非插件的方法!</p>
<p>同时也以这篇日志做个测试！嘎嘎&#8230;.</p>
<p>还没有找到合适的twitter api proxy 同步失败&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/07/07/%e6%8f%92%e4%bb%b6%e6%8e%a8%e8%8d%90%ef%bc%9a%e5%90%8c%e6%ad%a5%e4%bd%a0%e7%9a%84wordpress%e5%8d%9a%e5%ae%a2%e6%9b%b4%e6%96%b0%e4%bf%a1%e6%81%af%e5%88%b0twitter%ef%bc%88%e4%b9%9f%e6%94%af%e6%8c%81/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>诺基亚e61连接电信的wlan</title>
		<link>http://www.huafei117.com/2010/06/23/%e8%af%ba%e5%9f%ba%e4%ba%9ae61%e8%bf%9e%e6%8e%a5%e7%94%b5%e4%bf%a1%e7%9a%84wlan/</link>
		<comments>http://www.huafei117.com/2010/06/23/%e8%af%ba%e5%9f%ba%e4%ba%9ae61%e8%bf%9e%e6%8e%a5%e7%94%b5%e4%bf%a1%e7%9a%84wlan/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 11:10:05 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[心得笔记]]></category>
		<category><![CDATA[chinanet]]></category>
		<category><![CDATA[e61]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/197.htm</guid>
		<description><![CDATA[今天下午上教室老师点考试题目，没有课本，就拿e61去试试所谓的wifi吧，之前已舍友的HTC手机就只能打开chinanet的登录界面，不能够输入帐号和密码。 无意中在塞班论坛看到有人说用opera就可以，于是在去之前安装了最新版的opera mobile，兴冲冲前去体验去了。 到教室，开opera，定义连接Chinanet，竟然能顺利登录上，想打开ucweb浏览网页。好了，杯具来了，提示内存不足&#8230;.只好用opera上吧，新建了几个标签，开了下hao123.com的电脑版，不多时也提示了内存不足。唉，上个wifi就那么难么&#8230;..]]></description>
			<content:encoded><![CDATA[<p>今天下午上教室老师点考试题目，没有课本，就拿e61去试试所谓的wifi吧，之前已舍友的HTC手机就只能打开chinanet的登录界面，不能够输入帐号和密码。</p>
<p>无意中在塞班论坛看到有人说用opera就可以，于是在去之前安装了最新版的opera mobile，兴冲冲前去体验去了。</p>
<p>到教室，开opera，定义连接Chinanet，竟然能顺利登录上，想打开ucweb浏览网页。好了，杯具来了，提示内存不足&#8230;.只好用opera上吧，新建了几个标签，开了下hao123.com的电脑版，不多时也提示了内存不足。唉，上个wifi就那么难么&#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/06/23/%e8%af%ba%e5%9f%ba%e4%ba%9ae61%e8%bf%9e%e6%8e%a5%e7%94%b5%e4%bf%a1%e7%9a%84wlan/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>木木那推荐的笔记软件BooguNote</title>
		<link>http://www.huafei117.com/2010/06/20/%e6%9c%a8%e6%9c%a8%e9%82%a3%e6%8e%a8%e8%8d%90%e7%9a%84%e7%ac%94%e8%ae%b0%e8%bd%af%e4%bb%b6boogunote/</link>
		<comments>http://www.huafei117.com/2010/06/20/%e6%9c%a8%e6%9c%a8%e9%82%a3%e6%8e%a8%e8%8d%90%e7%9a%84%e7%ac%94%e8%ae%b0%e8%bd%af%e4%bb%b6boogunote/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 13:35:48 +0000</pubDate>
		<dc:creator>华斐</dc:creator>
				<category><![CDATA[心得笔记]]></category>
		<category><![CDATA[BooguNote]]></category>

		<guid isPermaLink="false">http://www.huafei117.com/195.htm</guid>
		<description><![CDATA[最近整理了一下wordpress需要更改的地方，然后去各个博客那里收集技术方法，但是一时用不上，刚好有木木推荐的笔记软件BooguNote，这是一款收集和整理信息的新概念工具。把好多需要用到的方法放到BooguNote上保存下来，就不用再去搜索方法了。另外BooguNote提供了很好的树状结构，可以更方便的整理和查询。 上图看看界面： 官方网址：http://boogu.me/index_zh.htm BooguNote全解：http://geek4.us/all-in-boogunote/]]></description>
			<content:encoded><![CDATA[<p>最近整理了一下wordpress需要更改的地方，然后去各个博客那里收集技术方法，但是一时用不上，刚好有<a href="http://immmmm.com" target="_blank">木木</a>推荐的笔记软件BooguNote，这是一款收集和整理信息的新概念工具。把好多需要用到的方法放到BooguNote上保存下来，就不用再去搜索方法了。另外BooguNote提供了很好的树状结构，可以更方便的整理和查询。</p>
<p>上图看看界面：</p>
<p><a href="http://www.huafei117.com/wp-content/uploads/2010/06/wordpress00019.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="wordpress00019" border="0" alt="wordpress00019" src="http://www.huafei117.com/wp-content/uploads/2010/06/wordpress00019_thumb.jpg" width="644" height="442" /></a> </p>
<p>官方网址：<a href="http://boogu.me/index_zh.htm">http://boogu.me/index_zh.htm</a></p>
<p>BooguNote全解：<a href="http://geek4.us/all-in-boogunote/">http://geek4.us/all-in-boogunote/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.huafei117.com/2010/06/20/%e6%9c%a8%e6%9c%a8%e9%82%a3%e6%8e%a8%e8%8d%90%e7%9a%84%e7%ac%94%e8%ae%b0%e8%bd%af%e4%bb%b6boogunote/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

