<?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>天狼星</title>
	<atom:link href="http://www.cnspica.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cnspica.com</link>
	<description>移动&#38;web开发及相关技术研究</description>
	<lastBuildDate>Tue, 14 Jun 2011 09:08:06 +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>错误 101 (net::ERR_CONNECTION_RESET)：未知错误</title>
		<link>http://www.cnspica.com/1162.html</link>
		<comments>http://www.cnspica.com/1162.html#comments</comments>
		<pubDate>Tue, 14 Jun 2011 09:08:06 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1162</guid>
		<description><![CDATA[先是服务器被攻击，接着又是ERR_CONNECTION_RESET (Google Chrome 访问时），真让人纠结。 Replacing /bin/libMySQL.dll AND /system32/libMySQL.dll with /libmysql.dll solved my problem. The error occurs when you try to connect to database with mysql_connect. It is shown on the following line in error log above.]]></description>
		<wfw:commentRss>http://www.cnspica.com/1162.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>密码保护：北京纪事(5)</title>
		<link>http://www.cnspica.com/1152.html</link>
		<comments>http://www.cnspica.com/1152.html#comments</comments>
		<pubDate>Tue, 15 Mar 2011 01:29:07 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[ARTICLE]]></category>
		<category><![CDATA[北京纪事]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1152</guid>
		<description><![CDATA[无法提供摘要。这是一篇受保护的文章。]]></description>
		<wfw:commentRss>http://www.cnspica.com/1152.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eee PC上装个Android</title>
		<link>http://www.cnspica.com/1149.html</link>
		<comments>http://www.cnspica.com/1149.html#comments</comments>
		<pubDate>Sun, 30 Jan 2011 08:36:45 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1149</guid>
		<description><![CDATA[安装提示参看:How to Install Android OS on EEE PC. 如果装Android2.2及以前版本直接从 http://code.google.com/p/android-x86/ 下 android-x86-2.2-eeepc.iso 但如果想装Android2.3 可能要自己编译一下了，编译环境推荐Vmvare+64位ubuntu+jdk1.6。参考 http://cwhuang.info/2011/01/gingerbread-x86-is-baked]]></description>
		<wfw:commentRss>http://www.cnspica.com/1149.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>移植Android下的APP到IPhone上</title>
		<link>http://www.cnspica.com/1146.html</link>
		<comments>http://www.cnspica.com/1146.html#comments</comments>
		<pubDate>Tue, 18 Jan 2011 06:19:09 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1146</guid>
		<description><![CDATA[理论上只是要Flex4或FlashCS5开发的Android APP都可以进行移植。 操作办法很简单: 1.首先下载 packagerforiphone 压缩包，解压。 2.将要转的程序生成swf后(假如名为Android.swf，一并拷贝同名的Android-app.xml文件到上面解压目录的bin目录下. 3.编辑Android-app.xml,枨式如下: &#60;?xml version="1.0" encoding="UTF-8" standalone="yes" ?&#62; &#60;application xmlns="http://ns.adobe.com/air/application/2.0"&#62; &#60;id&#62;Android&#60;/id&#62; &#60;version&#62;1.0&#60;/version&#62; &#60;filename&#62;Android&#60;/filename&#62; &#60;name&#62;Android&#60;/name&#62; &#60;initialWindow&#62; &#60;content&#62;Android.swf&#60;/content&#62; &#60;systemChrome&#62;standard&#60;/systemChrome&#62; &#60;transparent&#62;false&#60;/transparent&#62; &#60;visible&#62;true&#60;/visible&#62; &#60;fullScreen&#62;false&#60;/fullScreen&#62; &#60;aspectRatio&#62;portrait&#60;/aspectRatio&#62; &#60;renderMode&#62;auto&#60;/renderMode&#62; &#60;autoOrients&#62;false&#60;/autoOrients&#62; &#60;/initialWindow&#62; &#60;icon&#62; &#60;image29x29&#62;AppIconsForPublish/29x29-Android.png&#60;/image29x29&#62; &#60;image57x57&#62;AppIconsForPublish/57x57-Android.png&#60;/image57x57&#62; &#60;image512x512&#62;AppIconsForPublish/512x512-Android.png&#60;/image512x512&#62; &#60;/icon&#62; &#60;customUpdateUI&#62;false&#60;/customUpdateUI&#62; &#60;allowBrowserInvocation&#62;false&#60;/allowBrowserInvocation&#62; &#60;/application&#62; 4. CMD 到bin目录 > pfi -package -target ipa-test -provisioning-profile mobileprovision .mobileprovision -storetype pkcs12 -keystore p12 .p12 -storepass **** [...]]]></description>
		<wfw:commentRss>http://www.cnspica.com/1146.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于Android下APP安装路径问题</title>
		<link>http://www.cnspica.com/1144.html</link>
		<comments>http://www.cnspica.com/1144.html#comments</comments>
		<pubDate>Tue, 18 Jan 2011 06:06:06 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1144</guid>
		<description><![CDATA[用Flex4或Flashcs5 开发 Android程序的时候，要注意设置安装路径: 安装到默认存储位置，但允许移动到SD卡上： &#60;android&#62; &#60;manifestAdditions&#62; &#60;![CDATA[ &#60;manifest android:installLocation="auto"&#62; &#60;uses-permission android:name="android.permission.INTERNET"/&#62; &#60;/manifest&#62; ]]&#62; &#60;/manifestAdditions&#62; &#60;/android&#62; 直接指定安装到SD卡上（建议）: &#60;android&#62; &#60;manifestAdditions&#62; &#60;![CDATA[ &#60;manifest android:installLocation="preferExternal"&#62; &#60;uses-permission android:name="android.permission.INTERNET"/&#62; &#60;/manifest&#62; ]]&#62; &#60;/manifestAdditions&#62; &#60;/android&#62;]]></description>
		<wfw:commentRss>http://www.cnspica.com/1144.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP下神奇的URL参数</title>
		<link>http://www.cnspica.com/1142.html</link>
		<comments>http://www.cnspica.com/1142.html#comments</comments>
		<pubDate>Tue, 02 Nov 2010 15:56:21 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[ARTICLE]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1142</guid>
		<description><![CDATA[如果网站是由php开发，那么在URL后面加上 ?=PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000 就可以显示php credits 如果想阻止它，可以将 expose_php 设置为off。]]></description>
		<wfw:commentRss>http://www.cnspica.com/1142.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regain+Paoding Analysis 实现公司资料分享</title>
		<link>http://www.cnspica.com/1135.html</link>
		<comments>http://www.cnspica.com/1135.html#comments</comments>
		<pubDate>Sun, 04 Jul 2010 12:13:49 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[ARTICLE]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1135</guid>
		<description><![CDATA[Regain+Paoding Analysis可以很方便的搭建出本地搜索引擎，具体过程参考: Regain增加中文Paoding分词模块及界面显示的修改笔记 如是实现过程碰到问题，一般是配置上的问题。 如果要考虑与其它系统集成，修改下载URL, 看这两个文件: net.sf.regain.search.SearchToolKit; net.sf.regain.search.sharedlib.hit.LinkTag]]></description>
		<wfw:commentRss>http://www.cnspica.com/1135.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SNS应用(一):模拟炒股</title>
		<link>http://www.cnspica.com/1129.html</link>
		<comments>http://www.cnspica.com/1129.html#comments</comments>
		<pubDate>Thu, 27 May 2010 13:53:05 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1129</guid>
		<description><![CDATA[       SNS模拟炒股应用较早见于开心网(kaixin001.com),基实在这之前discuz、phpwind都有类似的插件。如discuz下A股股票大赛实盘交易,phpwind下的千狐探险插件等等。不过kaixin001.com 把模拟炒股真正上升到了与真实股市相近的高度。随后下的金融界(http://vstock.jrj.com.cn/)更有出色表现。如果你打想做类似应用，不仿先看看这两个站下的这个应用。 　 如果开发这个应用，难点如下: 　　1. 　开盘时，实现实时交易。 　　２.　Ｎ+１规则的实现。 　　３.　个人财产的实时刷新。 　　　以下是本人php+java来实现的效果：]]></description>
		<wfw:commentRss>http://www.cnspica.com/1129.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP正则表达式后面的修正符</title>
		<link>http://www.cnspica.com/1125.html</link>
		<comments>http://www.cnspica.com/1125.html#comments</comments>
		<pubDate>Sat, 20 Mar 2010 15:09:00 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[ARTICLE]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1125</guid>
		<description><![CDATA[ php 正则表达式后面总有 /isU, /is, /s,  是什么意思呢?   i  匹配大小写 s  模式中的圆点元字符（.）匹配所有的字符，包括换行符 x  模式中的空白字符除了被转义的或在字符类中的以外完全被忽略，在未转义的字符类之外的 # 以及下一个换行符之间的所有字符，包括两 头，也都被忽略 A  (PCRE_ANCHORED) 如果设定了此修正符，模式被强制为“anchored”，即强制仅从目标字符串的开头开始匹配即自动在模式开头加上^。 D  (PCRE_DOLLAR_ENDONLY) 如果设定了此修正符，模式中的美元元字符仅匹配目标字符串的结尾。没有此选项时，如果最后一个字符是换行符的话，美元符号也会匹配此字符之前（但不会匹配任何其它换行符之前）。如果设定了 m 修正符则忽略此选项。Perl 中没有与其等价的修正符。  S 当一个模式将被使用若干次时，为加速匹配起见值得先对其进行分析。如果设定了此修正符则会进行额外的分析。目前，分析一个模式仅对没有单一固定起始字符的 non-anchored 模式有用。  U  (PCRE_UNGREEDY) 本修正符反转了匹配数量的值使其不是默认的重复，而变成在后面跟上“?”才变得重复。这和 Perl 不兼容。也可以通过在模式之中设定 (?U) 修正符来启用此选项。 X  (PCRE_EXTRA) 此 修正符启用了一个 PCRE 中与 Perl 不兼容的额外功能。模式中的任何反斜线后面跟上一个没有特殊意义的字母导致一个错误，从而保留此组合以备将 来扩充。默认情况下，和 Perl 一样，一个反斜线后面跟一个没有特殊意义的字母被当成该字母本身。当前没有其它特性受此修正符控制。即:贪婪模式,最 大限度匹配 如:/a[\w]+?e/U匹配abceadeddd中的abceade而不是abce,如果不加U修正,则匹配abce  u (PCRE_UTF8) 此修正符启用了一个 PCRE 中与 Perl 不兼容的额外功能。模式字符串被当成 [...]]]></description>
		<wfw:commentRss>http://www.cnspica.com/1125.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>高效率 慢生活[荐]</title>
		<link>http://www.cnspica.com/1119.html</link>
		<comments>http://www.cnspica.com/1119.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 09:25:53 +0000</pubDate>
		<dc:creator>cnspica</dc:creator>
				<category><![CDATA[ARTICLE]]></category>

		<guid isPermaLink="false">http://www.cnspica.com/?p=1119</guid>
		<description><![CDATA[GDT(行动管理执行方法（Getting Things Done）)作者David Allen著作《Making It All Work》的GTD 流程图。 以下是完整的流程图。 更多请看　http://optlife.cn/blog]]></description>
		<wfw:commentRss>http://www.cnspica.com/1119.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

