<?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://blog.25q.net/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.25q.net</link>
	<description>种瓜得瓜，种豆得豆；一份耕耘，一份收获</description>
	<lastBuildDate>Tue, 10 Jan 2012 19:42:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>HTML特殊字符大全</title>
		<link>http://blog.25q.net/2011/12/16/html%e7%89%b9%e6%ae%8a%e5%ad%97%e7%ac%a6%e5%a4%a7%e5%85%a8/</link>
		<comments>http://blog.25q.net/2011/12/16/html%e7%89%b9%e6%ae%8a%e5%ad%97%e7%ac%a6%e5%a4%a7%e5%85%a8/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 19:21:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=322</guid>
		<description><![CDATA[HTML的特殊字符我们并不常用，但是有的时候却要在页面中用到这些字符，甚至有时候还需要用这些字符来实现某种特殊的视觉效果。现在，国外的设计师Neal Chester整理了一份很全的特殊字符集，我觉得这很赞～～，共享出来供大家查阅吧。
使用方法：]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/12/16/html%e7%89%b9%e6%ae%8a%e5%ad%97%e7%ac%a6%e5%a4%a7%e5%85%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux中Top命令结果的各项含义</title>
		<link>http://blog.25q.net/2011/07/18/linux%e4%b8%adtop%e5%91%bd%e4%bb%a4%e7%bb%93%e6%9e%9c%e7%9a%84%e5%90%84%e9%a1%b9%e5%90%ab%e4%b9%89/</link>
		<comments>http://blog.25q.net/2011/07/18/linux%e4%b8%adtop%e5%91%bd%e4%bb%a4%e7%bb%93%e6%9e%9c%e7%9a%84%e5%90%84%e9%a1%b9%e5%90%ab%e4%b9%89/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 03:49:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=303</guid>
		<description><![CDATA[top &#8211; 08:28:14 up 30 days, 5:28, 4 users, load average: 0.00, 0.00, 0.00 Tasks: 150 total, 1 running, 149 sleeping, 0 stopped, 0 zombie Cpu(s): 0.0% us, 0.0% sy, 0.0% ni, 99.9% id, 0.0% wa, 0.1% hi, 0.0% si Mem: 2070564k total, 1340828k used, 729736k free, 168636k buffers Swap: 4192924k total, 0k used, 4192924k [...]]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/07/18/linux%e4%b8%adtop%e5%91%bd%e4%bb%a4%e7%bb%93%e6%9e%9c%e7%9a%84%e5%90%84%e9%a1%b9%e5%90%ab%e4%b9%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>排序,类似mysql的 两次order</title>
		<link>http://blog.25q.net/2011/07/08/%e6%8e%92%e5%ba%8f%e7%b1%bb%e4%bc%bcmysql%e7%9a%84-%e4%b8%a4%e6%ac%a1order/</link>
		<comments>http://blog.25q.net/2011/07/08/%e6%8e%92%e5%ba%8f%e7%b1%bb%e4%bc%bcmysql%e7%9a%84-%e4%b8%a4%e6%ac%a1order/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 03:41:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=296</guid>
		<description><![CDATA[uasort($array, &#8216;_sortCredit&#8217;); uasort($array, &#8216;_sortLoginTime&#8217;); print_r($array); function _sortCredit($a, $b) { if ($a['a'] < $b['a']) { return 1; } elseif ($a['a'] > $b['a']) { return -1; } else { return 0; } } function _sortLoginTime($a, $b) { if ($a['a'] < $b['a']) { return 1; } elseif ($a['a'] > $b['a']) { return -1; } else { if ($a['b'] [...]]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/07/08/%e6%8e%92%e5%ba%8f%e7%b1%bb%e4%bc%bcmysql%e7%9a%84-%e4%b8%a4%e6%ac%a1order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>json中文问题处理</title>
		<link>http://blog.25q.net/2011/05/19/json%e4%b8%ad%e6%96%87%e9%97%ae%e9%a2%98%e5%a4%84%e7%90%86/</link>
		<comments>http://blog.25q.net/2011/05/19/json%e4%b8%ad%e6%96%87%e9%97%ae%e9%a2%98%e5%a4%84%e7%90%86/#comments</comments>
		<pubDate>Thu, 19 May 2011 04:03:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=288</guid>
		<description><![CDATA[$code = json_encode($outPut_json); //json中文问题处理 echo $code = preg_replace(“#\\\u([0-9a-f]+)#ie”, “iconv(&#8216;UCS-2&#8242;, &#8216;UTF-8&#8242;, pack(&#8216;H4&#8242;, &#8216;\\1&#8242;))”, $code); 这种写法可以将 json_encode 中文 输出来，]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/05/19/json%e4%b8%ad%e6%96%87%e9%97%ae%e9%a2%98%e5%a4%84%e7%90%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>《彻底搞定C指针》第一篇 变量的内存实质</title>
		<link>http://blog.25q.net/2011/03/31/%e3%80%8a%e5%bd%bb%e5%ba%95%e6%90%9e%e5%ae%9ac%e6%8c%87%e9%92%88%e3%80%8b%e7%ac%ac%e4%b8%80%e7%af%87-%e5%8f%98%e9%87%8f%e7%9a%84%e5%86%85%e5%ad%98%e5%ae%9e%e8%b4%a8/</link>
		<comments>http://blog.25q.net/2011/03/31/%e3%80%8a%e5%bd%bb%e5%ba%95%e6%90%9e%e5%ae%9ac%e6%8c%87%e9%92%88%e3%80%8b%e7%ac%ac%e4%b8%80%e7%af%87-%e5%8f%98%e9%87%8f%e7%9a%84%e5%86%85%e5%ad%98%e5%ae%9e%e8%b4%a8/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 10:46:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=280</guid>
		<description><![CDATA[http://teren.itpub.net/post/15914/189516]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/03/31/%e3%80%8a%e5%bd%bb%e5%ba%95%e6%90%9e%e5%ae%9ac%e6%8c%87%e9%92%88%e3%80%8b%e7%ac%ac%e4%b8%80%e7%af%87-%e5%8f%98%e9%87%8f%e7%9a%84%e5%86%85%e5%ad%98%e5%ae%9e%e8%b4%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php引用传值详解</title>
		<link>http://blog.25q.net/2011/03/08/php%e5%bc%95%e7%94%a8%e4%bc%a0%e5%80%bc%e8%af%a6%e8%a7%a3/</link>
		<comments>http://blog.25q.net/2011/03/08/php%e5%bc%95%e7%94%a8%e4%bc%a0%e5%80%bc%e8%af%a6%e8%a7%a3/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 09:12:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=273</guid>
		<description><![CDATA[php的引用（就是在变量或者函数 、对象等前面加上&#038;符号）

在PHP 中引用的意思是：不同的名字访问同一个变量内容.
与Ｃ语言中的指针是有差别的．Ｃ语言中的指针里面存储的是变量的内容在内存中存放的地址

]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/03/08/php%e5%bc%95%e7%94%a8%e4%bc%a0%e5%80%bc%e8%af%a6%e8%a7%a3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[转]javascript优化</title>
		<link>http://blog.25q.net/2011/03/03/%e8%bd%acjavascript%e4%bc%98%e5%8c%96/</link>
		<comments>http://blog.25q.net/2011/03/03/%e8%bd%acjavascript%e4%bc%98%e5%8c%96/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 07:49:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=270</guid>
		<description><![CDATA[随着网络的发展，网速和机器速度的提高，越来越多的网站用到了丰富客户端技术。而现在Ajax则是最为流行的一种方式。JavaScript是一种解释型语言，所以能无法达到和C/Java之类的水平，限制了它能在客户端所做的事情，为了能改进他的性能，我想基于我以前给JavaScript做过的很多测试来谈谈自己的经验，希望能帮助大家改进自己的JavaScript脚本性能。

]]></description>
		<wfw:commentRss>http://blog.25q.net/2011/03/03/%e8%bd%acjavascript%e4%bc%98%e5%8c%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache URL rewrite 标志</title>
		<link>http://blog.25q.net/2010/12/08/apache-url-rewrite-%e6%a0%87%e5%bf%97/</link>
		<comments>http://blog.25q.net/2010/12/08/apache-url-rewrite-%e6%a0%87%e5%bf%97/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 03:26:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=256</guid>
		<description><![CDATA[1) R[=code](force redirect) 强制外部重定向 强制在替代字符串加上http://thishost[:thisport]/前缀重定向到外部的URL.如果code不指定，将用缺省的302 HTTP状态码。 2) F(force URL to be forbidden)禁用URL,返回403HTTP状态码。 3) G(force URL to be gone) 强制URL为GONE，返回410HTTP状态码。 4) P(force proxy) 强制使用代理转发。 5) L(last rule) 表明当前规则是最后一条规则，停止分析以后规则的重写。 6) N(next round) 重新从第一条规则开始运行重写过程。 7) C(chained with next rule) 与下一条规则关联 如果规则匹配则正常处理，该标志无效，如果不匹配，那么下面所有关联的规则都跳过。 8 ) T=MIME-type(force MIME type) 强制MIME类型 9) NS (used only if no internal sub-request) 只用于不是内部子请求 10) NC(no [...]]]></description>
		<wfw:commentRss>http://blog.25q.net/2010/12/08/apache-url-rewrite-%e6%a0%87%e5%bf%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>通过 google analytics 分页页面加载时间</title>
		<link>http://blog.25q.net/2010/11/11/%e9%80%9a%e8%bf%87-google-analytics-%e5%88%86%e9%a1%b5%e9%a1%b5%e9%9d%a2%e5%8a%a0%e8%bd%bd%e6%97%b6%e9%97%b4/</link>
		<comments>http://blog.25q.net/2010/11/11/%e9%80%9a%e8%bf%87-google-analytics-%e5%88%86%e9%a1%b5%e9%a1%b5%e9%9d%a2%e5%8a%a0%e8%bd%bd%e6%97%b6%e9%97%b4/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 04:01:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=247</guid>
		<description><![CDATA[When a visitor lands on our landing page, we capture some timing information to measure the page load time. We’ll record that page load time in a Session scope Custom Variable. The page load time is reported to Google Analytics with the trackPageview call. The data is aggregated in Google Analytics and can be viewed [...]]]></description>
		<wfw:commentRss>http://blog.25q.net/2010/11/11/%e9%80%9a%e8%bf%87-google-analytics-%e5%88%86%e9%a1%b5%e9%a1%b5%e9%9d%a2%e5%8a%a0%e8%bd%bd%e6%97%b6%e9%97%b4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6/IE7/Firefox浏览器不兼容原因及解决办法</title>
		<link>http://blog.25q.net/2010/10/29/ie6ie7firefox%e6%b5%8f%e8%a7%88%e5%99%a8%e4%b8%8d%e5%85%bc%e5%ae%b9%e5%8e%9f%e5%9b%a0%e5%8f%8a%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/</link>
		<comments>http://blog.25q.net/2010/10/29/ie6ie7firefox%e6%b5%8f%e8%a7%88%e5%99%a8%e4%b8%8d%e5%85%bc%e5%ae%b9%e5%8e%9f%e5%9b%a0%e5%8f%8a%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 03:06:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[技术相关]]></category>

		<guid isPermaLink="false">http://blog.25q.net/?p=231</guid>
		<description><![CDATA[浏览器的不兼容，大家肯定都是深恶痛绝的，往往我们只是去做修补，却忘了更重要的事情，那就是追溯根源，避免类似的不兼容再次出现。在下不才，归纳几点html编码要素，望能指点各位：

]]></description>
		<wfw:commentRss>http://blog.25q.net/2010/10/29/ie6ie7firefox%e6%b5%8f%e8%a7%88%e5%99%a8%e4%b8%8d%e5%85%bc%e5%ae%b9%e5%8e%9f%e5%9b%a0%e5%8f%8a%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

