<?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>Computer, Electron and Technology &#187; php</title>
	<atom:link href="http://www.donevii.com/post/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.donevii.com</link>
	<description>关注技术、移动互联网以及一切 GEEK &#38; NERD 的事情</description>
	<lastBuildDate>Wed, 21 Dec 2011 10:49:54 +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>Mac 下安装 PHP 扩展 vld &amp; xhprof</title>
		<link>http://www.donevii.com/post/974.html</link>
		<comments>http://www.donevii.com/post/974.html#comments</comments>
		<pubDate>Thu, 06 Jan 2011 03:26:57 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[vld]]></category>
		<category><![CDATA[xhprof]]></category>

		<guid isPermaLink="false">http://www.donevii.com/?p=974</guid>
		<description><![CDATA[最近因为经常离线调试，所以开始重新在本机搭环境，还好 Mac 原本就自带了 PHP 。 [515][MacBookPro: /tmp]$ which php /usr/bin/php [516][MacBookPro: /tmp]$ php --version PHP 5.3.3 (cli) (built: Aug 22 2010 19:41:55) Copyright (... ]]></description>
			<content:encoded><![CDATA[<p>最近因为经常离线调试，所以开始重新在本机搭环境，还好 <a href="http://www.donevii.com/post/tag/mac" class="st_tag internal_tag" rel="tag" title="Posts tagged with mac">Mac</a> 原本就自带了 <a href="http://www.donevii.com/post/tag/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">PHP</a> 。</p>
<pre name="code" class="shell">
[515][MacBookPro: /tmp]$ which php
/usr/bin/php
[516][MacBookPro: /tmp]$ php --version
PHP 5.3.3 (cli) (built: Aug 22 2010 19:41:55)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
</pre>
<p>既然有 php 那就先试试直接用 pecl 来安装。</p>
<pre name="code" class="shell">
sudo pecl install -f <a href="http://www.donevii.com/post/tag/vld" class="st_tag internal_tag" rel="tag" title="Posts tagged with vld">vld</a>
sudo pecl install -f <a href="http://www.donevii.com/post/tag/xhprof" class="st_tag internal_tag" rel="tag" title="Posts tagged with xhprof">xhprof</a>
</pre>
<p>不过安装 xhprof 时提示说要在扩展的目录里，查了一下 <a href="http://pecl.php.net/bugs/bug.php?id=16438&#038;edit=1">PECL Bug #16438</a> 里面说是 pecl 里 xhprof 包的问题。那么问题也就很好解决了，直接把源码包下载下来安装即可。</p>
<pre name="code" class="shell">
wget http://pecl.php.net/get/xhprof-0.9.2.tgz
tar zxf xhprof-0.9.2.tgz
cd xhprof-0.9.2/extension
phpize
./configure
make
make install
</pre>
<p>然后修改 /etc/php.ini 如果没有这个文件就 sudo cp /etc/php.ini.default /etc/php.ini。<br />
在 php.ini 中增加 extension=vld.so 和 extension=xhprof.so 和针对这两个扩展的详细配置，这个可以在网上搜到。</p>
<p>然后在 ~/.bash_profile 里增加 alias phpo=&#8217;php -dvld.active=1&#8242;<br />
以后再打 phpo xxxx.php 就可以看到 vld 的效果了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/974.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>利用 XCode 开发 PHP 的方法</title>
		<link>http://www.donevii.com/post/953.html</link>
		<comments>http://www.donevii.com/post/953.html#comments</comments>
		<pubDate>Wed, 02 Jun 2010 10:45:52 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.donevii.com/post/953.html</guid>
		<description><![CDATA[在 Mac 平台上也试了不少的 IDE 和 Editor ，各有特色吧。 之前听说过有人在 XCode 上做 PHP 开发，所以今天我也试了一下，和 Textmate 一样，采用 Esc 键做为自动补全的快捷键，但是有下拉列表，并... ]]></description>
			<content:encoded><![CDATA[<p>在 <a href="http://www.donevii.com/post/tag/mac" class="st_tag internal_tag" rel="tag" title="Posts tagged with mac">Mac</a> 平台上也试了不少的 IDE 和 Editor ，各有特色吧。</p>
<p>之前听说过有人在 XCode 上做 <a href="http://www.donevii.com/post/tag/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">PHP</a> 开发，所以今天我也试了一下，和 Textmate 一样，采用 Esc 键做为自动补全的快捷键，但是有下拉列表，并且在输入时会有提示。</p>
<p>在 Create Project 时选择最左侧的 Other 里面的 Empty Project</p>
<p>
<img src="http://www.donevii.com/wp-content/uploads/2010/06/New-Project.jpg" width="480" height="354" alt="New Project.jpg" /></p>
<p>然后选位置保存即可，如果有代码想添加进来直接在菜单的 Project 里有 Add to Project</p>
<p>
<img src="http://www.donevii.com/wp-content/uploads/2010/06/Project.jpg" width="327" height="480" alt="Project.jpg" /></p>
<p>
<img src="http://www.donevii.com/wp-content/uploads/2010/06/test3.php-xcode_php_test.jpg" width="480" height="245" alt="test3.php - xcode_php_test.jpg" /></p>
<p>代码这样就导入进来了。</p>
<p>但是当我们编辑时会发现一些 PHP 语法的关键字颜色不对，那么可以去修改下面的文件。</p>
<pre style="border: 2px dashed #eee; padding: 10px;">
cd /Developer/Library/PrivateFrameworks/XcodeEdit.framework/Versions/A/Resources/
vim PHP.xclangspec
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/953.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>每天看 svn 库变更的一个小 shell 脚本</title>
		<link>http://www.donevii.com/post/940.html</link>
		<comments>http://www.donevii.com/post/940.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 10:07:36 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.donevii.com/post/940.html</guid>
		<description><![CDATA[#!/bin/bash TODAY=/tmp/$(date +%Y%m%d) CONTENT=$TODAY/update_content_sina.tmp if [ ! -d $TODAY ]; then mkdir $TODAY fi if [ -f $CONTENT ]; then rm $CONTENT fi svn up ~/job/code/php/sinahouse/ &#62;&#62; $TODAY/svn_update_list.tmp LIST=`cat $TODAY/svn_upd... ]]></description>
			<content:encoded><![CDATA[<p>#!/bin/bash</p>
<p>TODAY=/tmp/$(date +%Y%m%d)<br />
CONTENT=$TODAY/update_content_sina.tmp</p>
<p>if [ ! -d $TODAY ]; then<br />
mkdir $TODAY<br />
fi</p>
<p>if [ -f $CONTENT ]; then<br />
rm $CONTENT<br />
fi</p>
<p>svn up ~/job/code/<a href="http://www.donevii.com/post/tag/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>/sinahouse/ &gt;&gt; $TODAY/svn_update_list.tmp<br />
LIST=`cat $TODAY/svn_update_list.tmp | grep &#8216;.php&#8217; | awk &#8216;{print $2}&#8217;`</p>
<p>for L in $LIST; do<br />
svn diff -r PREV $L &gt;&gt; $CONTENT<br />
done</p>
<p>/usr/bin/vim $CONTENT</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/940.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一组很猥琐的图片</title>
		<link>http://www.donevii.com/post/926.html</link>
		<comments>http://www.donevii.com/post/926.html#comments</comments>
		<pubDate>Sat, 19 Sep 2009 08:12:19 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.donevii.com/post/926.html</guid>
		<description><![CDATA[附件 nEO_IMG_nEO_IMG_p_large_2aPj_66a000007cc22d0d.jpg (21.16 KB) 2009年9月19日 00:41 nEO_IMG_nEO_IMG_p_large_2bOa_42e50006021d2d14.jpg (20.65 KB) 2009年9月19日 00:41 nEO_IMG_nEO_IMG_p_large_3lYy_42e50006021a2d14.jpg (26.99 KB) 2009年9月19日 0... ]]></description>
			<content:encoded><![CDATA[<div class="box postattachlist">
<h4>附件</h4>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921612&amp;k=9c92963005d23f7d95281fa64e005421&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_2aPj_66a000007cc22d0d.jpg</a> 			<em>(21.16 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:41 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_dc992ba09a62be26c519ySW4vY7WBjyC.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_dc992ba09a62be26c519ySW4vY7WBjyC.jpg')" alt="nEO_IMG_nEO_IMG_p_large_2aPj_66a000007cc22d0d.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921614&amp;k=146546f48bc868b9ae4154cde6077028&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_2bOa_42e50006021d2d14.jpg</a> 			<em>(20.65 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:41 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_6e89059fa0b345d0826czdV9jxw0AfP7.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_6e89059fa0b345d0826czdV9jxw0AfP7.jpg')" alt="nEO_IMG_nEO_IMG_p_large_2bOa_42e50006021d2d14.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921616&amp;k=13c32a7b6f09a7b1cc446d64656f76d6&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_3lYy_42e50006021a2d14.jpg</a> 			<em>(26.99 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:41 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_02c95e866f45281f67c1M6bdN6N73Xmb.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_02c95e866f45281f67c1M6bdN6N73Xmb.jpg')" alt="nEO_IMG_nEO_IMG_p_large_3lYy_42e50006021a2d14.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921618&amp;k=7f85b72941286253d8722e1a8aacd03a&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_3Mw0_017f0005c4622d0e.jpg</a> 			<em>(21.49 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:41 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_d6d9964ce48e3173590ayQxhE5XaHZlz.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_d6d9964ce48e3173590ayQxhE5XaHZlz.jpg')" alt="nEO_IMG_nEO_IMG_p_large_3Mw0_017f0005c4622d0e.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921620&amp;k=88669769ee6b7d8b08d57502f854383e&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_4JXW_78f10001694b2d10.jpg</a> 			<em>(23.23 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:41 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_e7370743ad53ddf7bf814j9gKgiyYyZA.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_e7370743ad53ddf7bf814j9gKgiyYyZA.jpg')" alt="nEO_IMG_nEO_IMG_p_large_4JXW_78f10001694b2d10.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921622&amp;k=0e0e221889a76ae4f9bfcd8397b2b2a0&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_13lr_67a20005f8bd2d12.jpg</a> 			<em>(20.11 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_cb270d582b10a42e478cbxv3qSqy8yat.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_cb270d582b10a42e478cbxv3qSqy8yat.jpg')" alt="nEO_IMG_nEO_IMG_p_large_13lr_67a20005f8bd2d12.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921624&amp;k=80ee9d7170d836d4e8c6c2812e51bdc8&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_22ol_51c1000329f52d13.jpg</a> 			<em>(24.44 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_09c40d0e741bea204e4ccpJYxG2bgEc1.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_09c40d0e741bea204e4ccpJYxG2bgEc1.jpg')" alt="nEO_IMG_nEO_IMG_p_large_22ol_51c1000329f52d13.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921626&amp;k=7de3062a84d88d4e5289ccf75cfc8f67&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_bTTg_67a000031ec92d12.jpg</a> 			<em>(20.92 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_87b23609f73e61615614jdKgea8aPQ5L.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_87b23609f73e61615614jdKgea8aPQ5L.jpg')" alt="nEO_IMG_nEO_IMG_p_large_bTTg_67a000031ec92d12.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921628&amp;k=962deeddcb34d6940982a02b0e0e3166&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_cryD_5e1a000079fe2d0f.jpg</a> 			<em>(21.14 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_a2c55f9153edf7e85835IK2BApyyIXdS.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_a2c55f9153edf7e85835IK2BApyyIXdS.jpg')" alt="nEO_IMG_nEO_IMG_p_large_cryD_5e1a000079fe2d0f.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921630&amp;k=19e0782f7e0ed5c83ed9979ff5a8e974&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_EbRV_78f50005d19f2d10.jpg</a> 			<em>(21.2 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_ca3388a995fde4836722cN2lxWdykJxV.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_ca3388a995fde4836722cN2lxWdykJxV.jpg')" alt="nEO_IMG_nEO_IMG_p_large_EbRV_78f50005d19f2d10.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921632&amp;k=c7db182d59e86f90be131fcba8dfaba4&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_EKYR_679e00015df02d12.jpg</a> 			<em>(21.55 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_fe5df66b76976b562062q1L5R2UTT3M8.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_fe5df66b76976b562062q1L5R2UTT3M8.jpg')" alt="nEO_IMG_nEO_IMG_p_large_EKYR_679e00015df02d12.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921634&amp;k=c10f728044a86db4cac591d8f1a5b9d9&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_hm97_4be60005b9af2d0b.jpg</a> 			<em>(20.45 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:43 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_391e4cb041198672a4d2tLVW0TioYcFf.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_391e4cb041198672a4d2tLVW0TioYcFf.jpg')" alt="nEO_IMG_nEO_IMG_p_large_hm97_4be60005b9af2d0b.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921636&amp;k=fd5e1023bd9241cd7d2c65c3700637ec&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_kAdk_5e1e000318102d0f.jpg</a> 			<em>(24.59 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_f4e99d76b9816cefde49eujhX1J82ywy.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_f4e99d76b9816cefde49eujhX1J82ywy.jpg')" alt="nEO_IMG_nEO_IMG_p_large_kAdk_5e1e000318102d0f.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921638&amp;k=cd2589682b896a63833c253258a266ef&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_lIQJ_66a2000159b22d0d.jpg</a> 			<em>(21.6 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_841c9aab006d8584035fGOiOeg7Xctpm.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_841c9aab006d8584035fGOiOeg7Xctpm.jpg')" alt="nEO_IMG_nEO_IMG_p_large_lIQJ_66a2000159b22d0d.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921640&amp;k=f120bffe18e4336fd2303450d1f60979&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_muy0_5e1a000079fd2d0f.jpg</a> 			<em>(24.25 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_26640033062cc697fd08qjCVCvfHyvnp.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_26640033062cc697fd08qjCVCvfHyvnp.jpg')" alt="nEO_IMG_nEO_IMG_p_large_muy0_5e1a000079fd2d0f.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921642&amp;k=820f2ce18700a6bdcd64e673c3793e25&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_nhbq_67a20005f8b52d12.jpg</a> 			<em>(21.18 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_de67b28da8422d7cfd4753tB7zAsE47O.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_de67b28da8422d7cfd4753tB7zAsE47O.jpg')" alt="nEO_IMG_nEO_IMG_p_large_nhbq_67a20005f8b52d12.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921644&amp;k=d773be84afec978286d1ac80d33c3005&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_NHy8_7a420003c90b2d11.jpg</a> 			<em>(18.45 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_cf4373716e63da4046b6D2lyd9mQ8gh2.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_cf4373716e63da4046b6D2lyd9mQ8gh2.jpg')" alt="nEO_IMG_nEO_IMG_p_large_NHy8_7a420003c90b2d11.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921646&amp;k=d528f6a7fcd0b9711e30ac2fd0a1a642&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_PZiS_67a20005f8a52d12.jpg</a> 			<em>(17.88 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_c6ba0844ebb7f035120csI8g3ryv4mlJ.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_c6ba0844ebb7f035120csI8g3ryv4mlJ.jpg')" alt="nEO_IMG_nEO_IMG_p_large_PZiS_67a20005f8a52d12.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921648&amp;k=7e8630335d95055209c39faadaeb6859&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_rMGm_4be4000325bb2d0b.jpg</a> 			<em>(23.43 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:44 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_8fa91eb66da03a3e8389Ib1prAgcT6I8.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_8fa91eb66da03a3e8389Ib1prAgcT6I8.jpg')" alt="nEO_IMG_nEO_IMG_p_large_rMGm_4be4000325bb2d0b.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921650&amp;k=2dea65f251562231d3e7eb3afb9169a0&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_Srj1_66a2000159be2d0d.jpg</a> 			<em>(19.25 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:46 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_39bd4dab0f8727eef4a5ZIKF6iz3njfW.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_39bd4dab0f8727eef4a5ZIKF6iz3njfW.jpg')" alt="nEO_IMG_nEO_IMG_p_large_Srj1_66a2000159be2d0d.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921652&amp;k=a8622089e0b3027b7126e0543df040b5&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_tFFo_4157000120992d0c.jpg</a> 			<em>(22.35 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:46 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_5060342785d979edbfa3l4omdUnYhwsv.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_5060342785d979edbfa3l4omdUnYhwsv.jpg')" alt="nEO_IMG_nEO_IMG_p_large_tFFo_4157000120992d0c.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921654&amp;k=58bae91c6f9c4c2d3aa52586c43499fd&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_TqgM_4be4000325b72d0b.jpg</a> 			<em>(21.01 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:46 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_85ec105d700684f029eeGthoVS8wd86m.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_85ec105d700684f029eeGthoVS8wd86m.jpg')" alt="nEO_IMG_nEO_IMG_p_large_TqgM_4be4000325b72d0b.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921656&amp;k=848e2b04c50de64d1b43fcee41450aeb&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_TsWm_78f50005d18b2d10.jpg</a> 			<em>(17.27 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:46 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_4b0d9ff5c427560bf14c8EwOAkTWhbk6.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_4b0d9ff5c427560bf14c8EwOAkTWhbk6.jpg')" alt="nEO_IMG_nEO_IMG_p_large_TsWm_78f50005d18b2d10.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921658&amp;k=d00b1a5910e9c79aa21229857215732d&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_Ug2W_4be4000325d52d0b.jpg</a> 			<em>(24.55 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:46 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_211119ec98a213d0cf51it4wwJuPS5qM.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_211119ec98a213d0cf51it4wwJuPS5qM.jpg')" alt="nEO_IMG_nEO_IMG_p_large_Ug2W_4be4000325d52d0b.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921660&amp;k=d2e12179b39a46a7849dc214af94b5d7&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_UQwB_4be20001645c2d0b.jpg</a> 			<em>(22.77 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_d7e8ac809dd913ad1119XFWfZSFkGXwK.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_d7e8ac809dd913ad1119XFWfZSFkGXwK.jpg')" alt="nEO_IMG_nEO_IMG_p_large_UQwB_4be20001645c2d0b.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921662&amp;k=c8ae0d8b30d4137e5bd31f8915f7656c&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_vFX1_66a60005cbb72d0d.jpg</a> 			<em>(17.65 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_7ea1e0431a809ee5b0622WZLM97yRQJ0.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_7ea1e0431a809ee5b0622WZLM97yRQJ0.jpg')" alt="nEO_IMG_nEO_IMG_p_large_vFX1_66a60005cbb72d0d.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921664&amp;k=165203c77f2dbeaeb59533656fb16f5a&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_XPGh_51c30005f2a52d13.jpg</a> 			<em>(24.51 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_075f9d322eacc86a064aVPeh0tjGXSNQ.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_075f9d322eacc86a064aVPeh0tjGXSNQ.jpg')" alt="nEO_IMG_nEO_IMG_p_large_XPGh_51c30005f2a52d13.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921666&amp;k=437ce5afb8e5eea35467af82f28bd789&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_xwoX_4157000120b22d0c.jpg</a> 			<em>(16.68 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_6d400c2f049a49f27f033crbVCY7qDDi.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_6d400c2f049a49f27f033crbVCY7qDDi.jpg')" alt="nEO_IMG_nEO_IMG_p_large_xwoX_4157000120b22d0c.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921668&amp;k=c1212cbd6fa9b7f0fe482d87fafd493d&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_ySHX_2eca00031acf2d11.jpg</a> 			<em>(21.34 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_22c3686deb15d6f9bdf3IGOz5QBmpaMJ.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_22c3686deb15d6f9bdf3IGOz5QBmpaMJ.jpg')" alt="nEO_IMG_nEO_IMG_p_large_ySHX_2eca00031acf2d11.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921670&amp;k=1102b0f92e5147774a9f2b0e2743402a&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_ZRVI_66a000007cba2d0d.jpg</a> 			<em>(20.31 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_f3541693bdab24618614WDnwu3zQ3N5c.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_f3541693bdab24618614WDnwu3zQ3N5c.jpg')" alt="nEO_IMG_nEO_IMG_p_large_ZRVI_66a000007cba2d0d.jpg" /> 					 				 				</p>
</dd>
</dl>
<dl class="t_attachlist">
<dt> 			<img src="http://www.shanghaining.com/forum/images/attachicons/image.gif" class="absmiddle" alt="" border="0" /> 			<a href="http://www.shanghaining.com/forum/attachment.php?aid=921672&amp;k=8b62634aafee9a6ff2f1c82384e1e9b4&amp;t=1253347328&amp;nothumb=yes" class="bold" target="_blank">nEO_IMG_nEO_IMG_p_large_ZTB5_2eca00031aba2d11.jpg</a> 			<em>(21.58 KB)</em> 		</dt>
<dd>
<p> 				2009年9月19日 00:49 				 				 			</p>
<p> 				 					 						<img src="http://static.shanghaining.com/forum/attachments/forumid_19/20090918_33e2930d023df32f12a00v6k5hK0r8sL.jpg" onload="attachimg(this, 'load')" onmouseover="attachimg(this, 'mouseover')" onclick="zoom(this, 'http://static.shanghaining.com/forum/attachments/forumid_19/20090918_33e2930d023df32f12a00v6k5hK0r8sL.jpg')" alt="nEO_IMG_nEO_IMG_p_large_ZTB5_2eca00031aba2d11.jpg" /> 					 				 				</p>
</dd>
</dl></div>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=80a37ac2-7a0b-8313-ba1e-5e809e21fb8a" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/926.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>snow leopard 下通过 py 脚本下载 google music</title>
		<link>http://www.donevii.com/post/922.html</link>
		<comments>http://www.donevii.com/post/922.html#comments</comments>
		<pubDate>Thu, 17 Sep 2009 02:49:26 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[python]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.donevii.com/?p=922</guid>
		<description><![CDATA[最近在国内没办法再用 spotify 听歌了，迫于无奈只好转向 google music 。 因为 firefox 尴尬的内存占用，并且考虑把歌同步到 iPhone 上来听，开始着手找下载 google music 的小工具，发现骨头做的 gmbox ... ]]></description>
			<content:encoded><![CDATA[<p>最近在国内没办法再用 spotify 听歌了，迫于无奈只好转向 google music 。</p>
<p>因为 firefox 尴尬的内存占用，并且考虑把歌同步到 iPhone 上来听，开始着手找下载 google music 的小工具，发现骨头做的 <a href="http://li2z.cn/2009/09/13/gmbox-0-2/">gmbox</a> 不错，可惜现在是只支持 <a href="http://www.donevii.com/post/tag/windows" class="st_tag internal_tag" rel="tag" title="Posts tagged with windows">windows</a> 和 <a href="http://www.donevii.com/post/tag/linux" class="st_tag internal_tag" rel="tag" title="Posts tagged with linux">linux</a> ，只好用 <a href="http://forum.ubuntu.com.cn/viewtopic.php?f=73&#038;p=1205852">gmusic.py</a> 这个脚本。</p>
<p>运行 gmusic.py 首先要安装 <a href="http://www.donevii.com/post/tag/python" class="st_tag internal_tag" rel="tag" title="Posts tagged with python">python</a>3 环境，去 <a href="http://www.donevii.com/post/tag/python" class="st_tag internal_tag" rel="tag" title="Posts tagged with python">python</a> 官方网站载下 <a href="http://www.donevii.com/post/tag/python" class="st_tag internal_tag" rel="tag" title="Posts tagged with python">python</a>3.1 然后 configure &#8211;enable-shared &#038;&#038; make &#038;&#038; sudo make install &#038;&#038; ln -s /usr/local/bin/<a href="http://www.donevii.com/post/tag/python" class="st_tag internal_tag" rel="tag" title="Posts tagged with python">python</a>3 /usr/bin/<a href="http://www.donevii.com/post/tag/python" class="st_tag internal_tag" rel="tag" title="Posts tagged with python">python</a>3 既可</p>
<p>用 gmusic.py 下载速度在我的 istat 里显示大概是 800K 左右，非常不错。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/922.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>电波怒汉——不爽</title>
		<link>http://www.donevii.com/post/906.html</link>
		<comments>http://www.donevii.com/post/906.html#comments</comments>
		<pubDate>Tue, 21 Jul 2009 04:02:45 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.donevii.com/?p=906</guid>
		<description><![CDATA[... ]]></description>
			<content:encoded><![CDATA[<p><embed src="http://player.youku.com/player.php/sid/XOTYxNzg4NTY=/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/906.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>require_once 和 require 的性能比较</title>
		<link>http://www.donevii.com/post/896.html</link>
		<comments>http://www.donevii.com/post/896.html#comments</comments>
		<pubDate>Wed, 08 Jul 2009 09:15:45 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.donevii.com/post/896.html</guid>
		<description><![CDATA[之前大家都是在程序里写上简单的 require_once 和 require 然后直接跑一遍 ab 来看时间，这回 Konstantin Rozinon 在 apache debug 模式下看了一下 lstat64 的操作数量，对比结果说 require_once 和 require 在时间... ]]></description>
			<content:encoded><![CDATA[<p>之前大家都是在程序里写上简单的 require_once 和 require 然后直接跑一遍 ab 来看时间，这回 Konstantin Rozinon 在 apache <a href="http://www.donevii.com/post/tag/debug" class="st_tag internal_tag" rel="tag" title="Posts tagged with debug">debug</a> 模式下看了一下 lstat64 的操作数量，对比结果说 require_once 和 require 在时间上相关非常非常小，但是在读文件时是用绝对路径还是相对路径对性能还是有一些影响，因为绝对路径会少一些 stat。</p>
<p>引用原文：<br /><small><code><span class="html">- When using absolute_path there are fewer stat() system calls.<br />- When using relative_path there are more stat() system calls because it has to start stat()ing from the current directory back up to / and then to the include/ directory.</span></code></small></p>
<p>个人习惯上还是推荐用 require_once，并且这个不是显示的写在各个文件中，而是在中心的 loader 里统一负责根据 <a href="http://www.donevii.com/post/tag/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>5 的 __call 这个特性来去 require_once 相应的文件，一些性能上的损耗可以通过其它方式来弥补。比如 APC、XCache、Eacc 这些，opcode <a href="http://www.donevii.com/post/tag/cache" class="st_tag internal_tag" rel="tag" title="Posts tagged with cache">cache</a> 现在成了 PHP 的必需品了。</p>
<p>原文：<a href="http://cn.php.net/require_once">点击进入</a></p>
<p>btw: zend studio 7 beta 真慢……</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/896.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[转]昨天我狠狠教训了在小区楼前玩泥巴的两个小孩</title>
		<link>http://www.donevii.com/post/888.html</link>
		<comments>http://www.donevii.com/post/888.html#comments</comments>
		<pubDate>Tue, 07 Jul 2009 02:45:04 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.donevii.com/?p=888</guid>
		<description><![CDATA[昨天回家看到小区楼下两个小孩在草坪上挖了个洞玩泥巴，我一看情况危机，马上跑过去将两个小孩推开，几脚踩平了。两个小孩哇哇大哭，不巧他们家长也在附近，过来要跟我理论。我不屑... ]]></description>
			<content:encoded><![CDATA[<p>昨天回家看到小区楼下两个小孩在草坪上挖了个洞玩泥巴，我一看情况危机，马上跑过去将两个小孩推开，几脚踩平了。两个小孩哇哇大哭，不巧他们家长也在附近，过来要跟我理论。我不屑一顾地说：没文化真可怕，你仔细看看，这栋楼后面是一栋15层的高层，已经给我们这栋楼造成了很大的水平推力，你家小孩在前面挖坑玩，目测已经达到了100mm的深度，这使得我们这栋楼承受的压力差急剧增大，如果不是我及时进行了回填，后果不堪设想。家长听得目瞪口呆，向我连连致谢，表示回去一定好好教育小孩，严禁做这种危险游戏。</p>
<p>转自：<a href="http://www.hs001.net/bbs/viewthread.php?tid=167346">华山论坛</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/888.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>网上闻名已久的“操帝”</title>
		<link>http://www.donevii.com/post/880.html</link>
		<comments>http://www.donevii.com/post/880.html#comments</comments>
		<pubDate>Tue, 30 Jun 2009 05:06:51 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.donevii.com/?p=880</guid>
		<description><![CDATA[太逗... ]]></description>
			<content:encoded><![CDATA[<p><embed src="http://player.youku.com/player.php/sid/XNzE1ODY3MzY=/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<p>太逗了</p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/880.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>比 Google Chrome 更 NB 的广告</title>
		<link>http://www.donevii.com/post/864.html</link>
		<comments>http://www.donevii.com/post/864.html#comments</comments>
		<pubDate>Thu, 25 Jun 2009 10:37:59 +0000</pubDate>
		<dc:creator>dengwei</dc:creator>
				<category><![CDATA[software & hardware]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.donevii.com/post/864.html</guid>
		<description><![CDATA[这是人们未发现的 Macbook 的新功能... ]]></description>
			<content:encoded><![CDATA[<p>这是人们未发现的 Macbook 的新功能。</p>
<p><embed src="http://player.youku.com/player.php/sid/XMTAxMDMzMDEy/v.swf" quality="high" width="480" height="400" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.donevii.com/post/864.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

