<?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="http://admin.fltacn.com/archives/category/computer/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/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>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>Google Map在外部调用的地图上可能会显示相关电话号码</title>
		<link>http://admin.fltacn.com/archives/109</link>
		<comments>http://admin.fltacn.com/archives/109#comments</comments>
		<pubDate>Fri, 03 Sep 2010 16:57:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=109</guid>
		<description><![CDATA[今天在更新网站的时候发现，google map在针对地址显示的地图调用中，可能会显示了一个相关的电话号码，如下图所示。这样的情形出现在公司网站的“联系我们”页面上，将很可能误导潜在客户。马上修改了地图地址（使用公司名称+大楼名称），这样就毫无歧义，且能精准定位。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/109/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail邮箱邮件搜索技巧:按日期和附件搜索</title>
		<link>http://admin.fltacn.com/archives/106</link>
		<comments>http://admin.fltacn.com/archives/106#comments</comments>
		<pubDate>Thu, 15 Jul 2010 07:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=106</guid>
		<description><![CDATA[邮箱里的邮件越来越多了，要找起来还挺难的，还好gmail提供了一些高级搜索方法，用起来还算顺手。这里简单总结3条： 1、按附件搜索，查询所有带有附件的邮件：has:attachment 2、查询指定日期以前的所有邮件：before:2009/10/1 （2009年10月1日前的所有邮件） 3、查询指定日期以后的所有邮件：after:2010/2/1 （2010年2月1日后的所有邮件） 示例： 查询2009年10月1日到2009年年底发送出去的所有带有附件的邮件： 在已发邮件中搜索：has:attachment after:2009/10/1 before:2010/1/1 注意上面每个命令间有个半角空格。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/106/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Godaddy走Qwest了，网站访问瞬间恢复！</title>
		<link>http://admin.fltacn.com/archives/95</link>
		<comments>http://admin.fltacn.com/archives/95#comments</comments>
		<pubDate>Tue, 29 Jun 2010 12:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=95</guid>
		<description><![CDATA[正在为多个私人、朋友、公司网站的访问发愁的时候，Godaddy忽然不走Above.net了，今天下午刷的一下网站打开奇快，ping一下稳定200 多，tracert一下发现过去很卡的above.net变成了qwest。 偶然发现godaddy官方网站走Level3了，不久前好像是走qwest的（上海有线通访问结果）。 无论如何，危机意识还是要有的！]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/95/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>程序员最怕的是“不可抗力”</title>
		<link>http://admin.fltacn.com/archives/90</link>
		<comments>http://admin.fltacn.com/archives/90#comments</comments>
		<pubDate>Mon, 28 Jun 2010 14:14:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=90</guid>
		<description><![CDATA[没有碰到过，搞不懂，网页可以正常访问。 近期有点手忙脚乱了，需要静心调整一下步调。由于一些并不广为人知的原因，问题迟迟不能解决，但相信解决方案总会有的。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/90/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>飞达广播网国家/地区电台列表完成</title>
		<link>http://admin.fltacn.com/archives/88</link>
		<comments>http://admin.fltacn.com/archives/88#comments</comments>
		<pubDate>Fri, 09 Apr 2010 05:25:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[计算机]]></category>

		<guid isPermaLink="false">http://admin.fltacn.com/?p=88</guid>
		<description><![CDATA[在过去的工作中我们发现许多朋友比较偏爱特定国家或者地区的广播节目，比如有的同学要去美国留学，那么他们大多希望听到美国的广播电台；有的朋友要移民到澳大利亚，那么他们就像听听澳大利亚的广播电台，等等。 由于飞达广播网最初的架构是基于语言学习之上的，因此只有按照语言的分类，例如英语广播，但是英语广播里可能既有美国的，也有英国的或者澳大利亚的，因此给很多朋友的收听带来了不便。 从昨天晚上到今天上午我们花了大约5个小时的时间，更新并晚上了广播电台的国家列表页面，这样有需要的朋友可以按照国家来选择自己喜欢的电台了。]]></description>
		<wfw:commentRss>http://admin.fltacn.com/archives/88/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

