<?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; admin</title>
	<atom:link href="http://admin.fltacn.com/archives/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://admin.fltacn.com</link>
	<description>一个崇尚技术的团队，效力于上海外教网！</description>
	<lastBuildDate>Thu, 24 Nov 2011 11:25:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WORD中的正则匹配技巧</title>
		<link>http://admin.fltacn.com/archives/159</link>
		<comments>http://admin.fltacn.com/archives/159#comments</comments>
		<pubDate>Thu, 24 Nov 2011 11:22:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=159</guid>
		<description><![CDATA[在word中匹配中文可以用[一-龥]，捕获用英文括号括起来，引用从左到右依次用\1, \2, …… 以此类推 word中排除字符和php不同，而是使用英文感叹号!，例如[!一-龥]匹配所有非中文字符。 word匹配多个字符也和php不同，使用的是@，例如[一-龥]@匹配0个或多个连续中文字符。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/159/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>新浪微博说:发微博太多啦,休息一会儿吧</title>
		<link>http://admin.fltacn.com/archives/153</link>
		<comments>http://admin.fltacn.com/archives/153#comments</comments>
		<pubDate>Sat, 23 Apr 2011 14:12:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[娱乐]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=153</guid>
		<description><![CDATA[本着娱乐的精神玩了一下新浪微博，原本想在一个月之内做发微博最多的人，筹措了愈10万条微博数据（当然都是知识性的，学习类的，绝非废话），2天内才发了4000多，今天就不小心收到提示：发微博太多啦,休息一会儿吧。 目前还不清楚不通过新浪API而是直接通过新浪微博网页窗口有什么限制，此前1小时发300多条好像是没问题的，现在只好等等再看。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/153/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>什么样的主持人让百度相关搜索彻底阳痿?</title>
		<link>http://admin.fltacn.com/archives/147</link>
		<comments>http://admin.fltacn.com/archives/147#comments</comments>
		<pubDate>Thu, 31 Mar 2011 17:12:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=147</guid>
		<description><![CDATA[在搜索某音乐广播主持人相关信息的时候，猛然看到百度搜索结果底部的相关搜索很“给力”，无意中发现百度相关搜索的bug：在百度搜索包括“主持人”三个字的关键词的时候，百度的相关搜索关键词匹配系统会彻底阳痿，表现为关键词胡乱匹配或者无相关搜索，而且你每次看到的相关搜索结果都不会相同。随便截了几个图，也尝试着换了其他的关键词，百度的技术确实是不行。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/147/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp_login事件action接收参数user_login/username</title>
		<link>http://admin.fltacn.com/archives/143</link>
		<comments>http://admin.fltacn.com/archives/143#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:26:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=143</guid>
		<description><![CDATA[wp_login事件定义为当用户登录时触发，它是写在wp_signon函数里的一个hook，该do_action出现在wp_signon函数的倒数第二行： wp_set_auth_cookie($user->ID, $credentials['remember'], $secure_cookie); do_action('wp_login', $credentials['user_login']); return $user; 显然wp_login传递参数为用户名user_login(亦即username)，因此要在这里获取user的信息，还需要使用一个函数get_user_by，这个函数很特别，第一个参数是给定的字符串，这里应该使用get_user_by(&#8220;login&#8221;,$user_login)。 另外值得说明的是，在wp_login事件里用wp_get_current_user和get_current_user_id全部无效。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/143/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress使用email注册而不使用username的方法</title>
		<link>http://admin.fltacn.com/archives/139</link>
		<comments>http://admin.fltacn.com/archives/139#comments</comments>
		<pubDate>Tue, 29 Mar 2011 16:38:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=139</guid>
		<description><![CDATA[WordPress的注册、登录、密码找回等功能全部写在根目录下的wp-login.php里面，其中的注册项用户名username和邮箱email都是写死在html中的，当我们要做二次开发不需要username的时候就会碰到一些麻烦，而且这个麻烦不可能通过插件plugin的方式来解决（虽然可以使用javascript实现，但那样太假了，倘若用户未启用javascript……）。 WordPress默认将users表中的user_login (即username）和email设为unique，不允许重复，因此当你在注册时使用重复的username或者email就无法通过，username为空也不行，解决的办法其实很简单，可以用插件在用户注册的时候将username设置成email就可以了，然后接着走wp-login.php剩下的流程，要实现这个想法其实也非常简单，只需要将wp-login.php中register_new_user函数中对username检查的内容删除，然后在把username部分的input标签删除就可以了。 其他的action, filter依然奏效。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/139/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Player和Real Player不支持基于XSPF的xml播放列表文件</title>
		<link>http://admin.fltacn.com/archives/134</link>
		<comments>http://admin.fltacn.com/archives/134#comments</comments>
		<pubDate>Sun, 13 Mar 2011 10:30:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=134</guid>
		<description><![CDATA[一个最简单的基于XSPF的xml播放列表文件格式如下所示： &#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;playlist version="1" xmlns="http://xspf.org/ns/0/"&#62; &#60;trackList&#62; &#60;track&#62; &#60;location&#62;http://www.fltacn.com/xxx/xxxx.mp3&#60;/location&#62; &#60;/track&#62; &#60;/trackList&#62; &#60;/playlist&#62; 它其实是一个xml文件，可以很容易地为JW Flash Player读取并播放曲目，相当好用。然而遗憾的是，该xml播放列表文件并不被Media Player和Flash Player所支持，前者显示无法播放，后者则直接显示xml的文本内容。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/134/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Premiere CS3无法导入mp3的解决办法:ImporterMP3.prm</title>
		<link>http://admin.fltacn.com/archives/130</link>
		<comments>http://admin.fltacn.com/archives/130#comments</comments>
		<pubDate>Sat, 12 Feb 2011 17:58:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=130</guid>
		<description><![CDATA[付老师最近忙着处理春节期间拍的视频，碰到一个问题：他的Adobe Premiere CS3不能导入mp3文件，只能导入wav。 其实这个问题的解决办法很简单，Premiere CS3不能导入mp3文件是因为缺少了一个名叫ImporterMP3.prm文件，只要下载这个文件拷贝至Premiere CS3安装目录下的Plug-ins\en_US文件夹即可，文件夹路径类似下面的样子： E:\Adobe\Adobe Premiere Pro CS3\Plug-ins\en_US 将ImporterMP3.prm拷贝过去后重新启动Premiere CS3就可以了。 点击下载ImporterMP3.prm插件]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/130/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>技嘉GA-k8NS 754主板点不亮,原来是电源线惹的货</title>
		<link>http://admin.fltacn.com/archives/125</link>
		<comments>http://admin.fltacn.com/archives/125#comments</comments>
		<pubDate>Tue, 21 Dec 2010 06:38:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=125</guid>
		<description><![CDATA[上周五公司一台台式机挂掉了，症状是无法开机，按电源按钮后无反应，摸机箱后面电源风扇不转。 这种属于常见故障，而且较为简单，第一换个电话检查是否电源故障，电源没问题，于是拔下主板上的电源控制线，用螺丝刀点一下，这样还不行，开始怀疑是主板上的问题（当然不一定主板坏，也可能是机箱质量不好短路引起），这时采用最小系统法，只保留CPU（风扇当然要），显卡和内存再点一下，居然还是没反应。索性取下整个主板，只保留CPU，显卡内存都拿掉了，仍然没反应。经验告诉我应该是主板的电源电路部分挂了，于是迅速上淘宝买了一片同型号一模一样的技嘉GA-K8NS 754主板，总共81块，含运费，从淘宝付款到货到公司总共没超过24小时。迅速换上，问题依旧。 正当一筹莫展之际，忽然看到眼前的电源线，为什么所有的电源拿到这里来插总不行呢？于是马上取来一根电源线换上，OK了。 看来此次纯粹是粗心大意，被一根电源线给骗了。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/125/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在线电视和在线广播无法收看,全部挂了</title>
		<link>http://admin.fltacn.com/archives/122</link>
		<comments>http://admin.fltacn.com/archives/122#comments</comments>
		<pubDate>Sun, 12 Dec 2010 18:08:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=122</guid>
		<description><![CDATA[由于众所周知的原因，以前一直可以访问的CNN和BBC官方网站现在彻底无法访问了，受它们“所累”，所有能够提供BBC和CNN在线电视或者广播的网站目前也几乎全部无法访问了，我们以学习为唯一目的的“飞达广播网”和“飞达电视网”也被屏蔽。国内其他一些做得比较好的广播和电视网站也不行了。 在这种情形下，我们应该有一个好的心态，环境不是你我能去改变的，所以我们应该去适应它。听不到BBC/CNN不见得咱就学不好英语。 喜欢读国外原版新闻的同学，仍然有以下网站值得浏览： 英国 http://www.guardian.co.uk http://news.sky.com/skynews 美国 http://www.foxnews.com http://www.nytimes.com]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/122/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>新浪财经现奇怪广告：状元1对1</title>
		<link>http://admin.fltacn.com/archives/116</link>
		<comments>http://admin.fltacn.com/archives/116#comments</comments>
		<pubDate>Mon, 25 Oct 2010 06:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=116</guid>
		<description><![CDATA[今天看google新闻，发现一个广告图片： 图片以新闻图片的样式显示在内容顶部，但广告图片呈黑白色，制作粗糙，甚至连公司名称和联系电话都看不清楚。更有趣的是，该图片与正文牛头不对马嘴，正文是关于“手机在线支付”的描述。而图片内容是： 状元1对1：包上名牌大学、重点高中，不达目标，签约退费。（后面的XX教育，电话看不清楚了） 有图有真相：]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/116/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

