<?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.woyaofeng.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.woyaofeng.com</link>
	<description>风，抑或疯，都是一种生活态度，随性的生活</description>
	<lastBuildDate>Mon, 16 Apr 2012 14:44:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Mac OS X 终端使用经验分享</title>
		<link>http://www.woyaofeng.com/1339.html</link>
		<comments>http://www.woyaofeng.com/1339.html#comments</comments>
		<pubDate>Mon, 16 Apr 2012 14:44:53 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://www.woyaofeng.com/?p=1339</guid>
		<description><![CDATA[Mac OS X 终端使用经验分享。包括让终端支持中文文件名、终端登录远程服务器并保存密码、让终端窗口标题显示主机名和工作目录、让服务器端ls显示的深蓝色字体改成白色<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1339.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<h2>1. 让终端支持中文文件名</h2>
<p>在“偏好设置”-&gt;“设置”-&gt;“高级”里，设置“多语言环境”为“Unicode(UTF-8)”即可<br />
<img class="aligncenter size-full wp-image-1340" title="屏幕快照 2012-04-16 下午6.33.41" src="http://icon.everalan.com/2012/04/屏幕快照-2012-04-16-下午6.33.41.png" alt="" width="585" height="534" /></p>
<p>&nbsp;</p>
<h2>2. 终端登录远程服务器并保存密码</h2>
<p>创建公钥并上传到服务器实现保存密码自动登录：</p>
<pre class="brush: bash; title: ; notranslate">
local:~ yourname$ ssh-keygen -t rsa
local:~ yourname$ ?cd ~/.ssh
local:~ yourname$? cp id_rsa.pub authorized_keys
local:~ yourname$? scp -p ~/.ssh/authorized_keys hrothgar:.ssh/
</pre>
<p>登录ssh登录远程服务器：</p>
<pre class="brush: bash; title: ; notranslate">ssh user@host</pre>
<p>&nbsp;</p>
<h2>3. 让终端窗口标题显示主机名和工作目录</h2>
<p>窗口标题显示主机名和工作目录能简单的分辨出当前登录的是哪个服务器，防止误操作</p>
<p><img class="aligncenter size-full wp-image-1343" title="屏幕快照 2012-04-16 下午10.29.55" src="http://icon.everalan.com/2012/04/屏幕快照-2012-04-16-下午10.29.55.png" alt="" width="508" height="43" /><br />
在本机的.profile文件或者服务器.bash_profile里加一行</p>
<pre class="brush: bash; title: ; notranslate">
export PROMPT_COMMAND='echo -ne &quot;&#92;&#48;33]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}&#92;&#48;07&quot;'
</pre>
<h2>
4. 让服务器端ls显示的深蓝色字体改成白色</h2>
<p>在服务器端.bash_profile加入以下内容</p>
<pre class="brush: bash; title: ; notranslate">
declare -x LS_COLORS=&quot;rs=0:di=01;37:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:&quot;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1339.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>手动档汽车驾驶技巧</title>
		<link>http://www.woyaofeng.com/1337.html</link>
		<comments>http://www.woyaofeng.com/1337.html#comments</comments>
		<pubDate>Sun, 15 Apr 2012 15:48:04 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://www.woyaofeng.com/?p=1337</guid>
		<description><![CDATA[娴熟的驾驶技术，决定了汽车的性能发挥。若是以驾驶为乐趣，就不在于片面追求车辆的配置与性能，而是通过自己的驾控技巧，让车子性能充分发挥。虽然其结果也是因人而异，因不同领悟能力及反应力差异，但努力提高驾控技巧，不仅有利于爱车的性能苛护，更涉及到自身及他人的安全保障。<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1337.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>娴熟的驾驶技术，决定了汽车的性能发挥。若是以驾驶为乐趣，就不在于片面追求车辆的配置与性能，而是通过自己的驾控技巧，让车子性能充分发挥。虽然其结果也是因人而异，因不同领悟能力及反应力差异，但努力提高驾控技巧，不仅有利于爱车的性能苛护，更涉及到自身及他人的安全保障。</p>
<p>坐姿</p>
<p>新手朋友的坐姿往往太过靠前，应在熟练中慢慢将座椅调整到正确位置。以右脚轻放刹车踏板，大小腿间角度应为钝角约120度左右或更大，紧踩时大小腿不能完全呈直线，力量充足舒展即可;靠背位置也不应过于垂直，尽量将前胸远离方向盘，但保证右手轻松获得换档杆5档位置的换档杆头部;方向盘在市区驾驶可以抬至较高，长途驾驶时可放置于较低位置。<br />
视线</p>
<p>不应紧盯眼前：市区内应直视前方五六十米处;高速路面应视线应在两百米以上;行进中，经常同时注视前方几辆车的运行情况;跟车缓慢移动时至少应通过前车尾，看到路面，尤其在坑凹颠簸路段行进;必要时，偏出队列半个车身，以便及早了解前方情况。<br />
换档时机</p>
<p>目前生产的汽车 ，变速器都配有同步器 。变速器有了同步器后 ，有效地避免了齿轮的撞击 ，大为简化了换档操作 。现在 ，不管是加档还是减档 ，换挡时不必再用传统的两脚离合法而普遍使用一脚离合法（这不应理解为是对两脚离合法合理性的否定） ，这在相当大的程度上解决了换挡时的困难 。既然如此 ，但为什么还经常听到一些网友说自己换挡时车辆有诸如前冲（窜车） 、顿挫（搓车）等冲击现象呢 ？我觉得毛病十之八九还是出在换档操作上 。</p>
<p>为便于探讨 ，我把一脚离合法的换挡过程大致分解为如下三个步骤：</p>
<p>第一步：踩离合（器） ，松油门；<br />
第二步：换挡；<br />
第三步：抬离合 、加油 。</p>
<p>以上三个步骤中 ，哪一步可能产生冲击呢 ？</p>
<p>下面试着一步一步地进行分析：</p>
<p>第一步：踩离合（器） ，松油门</p>
<p>这一步有可能产生冲击 。产生冲击的原因是踩离合松油门的顺序不对 。如果先松油门后踩离合 ，由于发动机停止供油而离合器未分离 ，可能出现“反拖”即发动机制动现象 ，这会产生“顿挫”冲击感 。当档位较高（如四 、五档行驶）时 ，发动机制动作用较轻 ，不会有多大感觉 ，但档位较低（如二 、三档行驶）时 ，“顿挫”感就会比较明显 。<br />
踩离合松油门的正确操作方法是：踩离合和松油门应同时（或几乎同时）进行 。就算要排个先后次序 ，也应是踩离合在先 ，松油门在后 。注意 ，松油门的时间不能太滞后 ，否则 ，由于踩下离合后相当于卸去了发动机的负荷 ，而油门又未及时松开的话 ，发动机转速会迅速升高 。这时烧的油算是白费了 。<br />
踩离合同时松油门后 ，发动机转速随之开始下降 。</p>
<p>第二步：换挡</p>
<p>这是整个换挡过程中的实质性步骤 。正常情况下 ，由于同步器的作用 ，一对待啮合的两个齿轮（从赛欧车变速器的实际构造来看 ，实际上是变速器输出轴上的同步器结合套和待换入档位齿轮上的齿环），在转速未达到同步前是不会接触的 ，因此不会产生齿轮撞击。转速同步后 ，两齿轮会顺利啮合 ，所以这一步不会产生什么冲击 。不仅如此 ，换挡时如操作（施力大小 、换入时机）得当 ，还会产生类似换挡杆被自动吸入到位的感觉 ，这对驾驶者来说 ，不啻为一种“快意” 。<br />
这里把变速器内待啮合两齿轮转速的同步称为“变速器同步” ，以与后面要提到的另一种同步相区别 。</p>
<p>第三步：抬离合同时加油</p>
<p>这是最容易产生冲击的一个阶段 ，抬离合的控制非常关键 。我认为 ，抬离合的控制至少包括两个方面 ，一是抬离合的时机 ，另一个是抬离合的操作 。 抬离合的时机：抬离合的时机是指换入新档位后（即上面第二步） ，何时抬起离合器进入半离合状态 。<br />
当踩下离合器将变速器手柄换入新档位时 ，变速器内待啮合两齿轮的转速是被同步器同步后才顺利啮合的 ，但是 ，这并不意味着发动机转速与离合器摩擦片（以下简称离合器片）的转速也同步了 ，绝大多数场合 ，两者仍存在较大转速差 。于是 ，我们会很自然地想到 ，当发动机转速与离合器片转速达到同步时就应是抬离合的理想时机 。<br />
那么 ，怎样才知道发动机转速与离合器片转速达到同步了呢 ？很显然 ，这需要了解换挡时发动机转速与离合器片转速是如何变化的 。<br />
踩离合 、松油门后 ，发动机转速很自然地随之下降 ，其变化通过发动机转速表就可一目了然 ，这比较单纯和简单 。从踩离合 、松油门后至换入新档位时的这段时间内 ，离合器片的转速又是怎样变化的呢 ？</p>
<p>下面我们举一个实际例子来分析一下：</p>
<p>赛欧车在发动机2500转时由二档换三档 。</p>
<p>赛欧车以二档 、发动机2500转行驶时 ，按计算 ，车速约为32km／h 。二档时 ，离合器片是经二档齿轮付（一对大小齿轮 ，速比为1.96）与变速器输出轴相连的 ，换入三档后 ，离合器片则改由三档齿轮付（速比为1.322）与变速器输出轴相连 ，虽然此时车速仍为32km／h（按上面的假设） ，但由于三档速比的关系 ，离合器片的转速发生了相应变化 。按车速32km／h反推计算 ，离合器片的转速应下降为1686转 。<br />
知道了换挡后离合器片的确切转速 ，就知道了抬离合的时机 。既然知道了抬离合的时机 ，剩下的操作其实就很简单了 ，只需在发动机转速下降到离合器片转速时抬离合就行了 。</p>
<p>按上例 ，其过程如下：</p>
<p>第一步：踩离合 ，松油门 。</p>
<p>说明：踩离合 、松油门前车速为32公里 ，发动机转速为2500转 。踩离合 、松油门后 ，发动机转速开始下降 。</p>
<p>第二步：迅速将变速手柄由二档推入三档 。</p>
<p>第三步：观察发动机转速表 ，当转速下降到1686转时 ，按抬离合的操作要领进入半离合状态 。<br />
说明：由于是观察转速表 ，所以只能大约以1700转左右为准 。</p>
<p>可以看出 ，这种换挡方法与一般换挡方法的区别仅在第三步 ，它是看着转速表 ，等待发动机转速自然下降到离合器片转速时再进行抬离合操作的 。打个比喻的话 ，这种操作方法就象在发动机与离合器片之间装设了同步器一样 ，只不过同步器的扮演者不是机器而是人 。</p>
<p>上面的情形是加档时的例子 ，减档是加档的逆过程 ，将上例倒个个儿就行了 。需要注意的是：减挡后 ，离合器片的转速不是降低而是升高了 。例如 ，车速同为32km／h时由三档换二档 ，换挡前离合器片转速为1686转 ，换挡后离合器片转速升高到2500转 。因此 ，减档时的情形与加档时截然不同 。减档时 ，要想使发动机转速与离合器片转速同步 ，只有靠主动地踩油门提高发动机转速才可能实现 ，除此之外别无他法 。而加档时是被动地等待发动机转速的自然下降 。</p>
<p>如上所述 ，换挡后 ，在新档位速比条件下 ，离合器片转速发生相应变化 ，这种变化随不同档位互换和不同车速而不同 。按变速器各档速比的变化特点 ，可以归纳出离合器片转速变化的两个规律：加档时 ，离合器片转速较换挡前降低 ，减档时 ，离合器片转速较换挡前增高；不管是加档还是减档 ，档位越低 ，转速变化范围越大 。</p>
<p>为叙述方便 ，以下我把换入新挡位后发动机转速向离合器片转速“靠拢看齐” ，进而趋于同步的过程称为“离合器同步” ，此时的离合器片转速称为“同步转速” ，相应地 ，根据同步转速控制抬离合时机的换挡方法就称之为“离合器同步换档” 。</p>
<p>好了 ，话说至此 ，希望大家有一个清晰的概念：那就是 ，整个换挡过程中 ，不管是加档还是减档 ，传动系统中有两处的转速需要同步 。一处是变速器内部待啮合齿轮的转速需要同步 ，即上面曾提到过的“变速器同步” ，它由同步器完成 ，无须我们操心；另一处就是这里所说的发动机与离合器片之间的转速也需要同步 ，即“离合器同步” ，这得靠驾驶者自己来控制 。<br />
离合器同步后 ，发动机转速等于同步转速 ，此时抬离合进入半离合状态不仅可使离合器的结合过程平顺柔和无冲击 ，而且其最大的好处在于发动机飞轮与离合器片之间没有了转速差 ，离合器摩擦元件的磨损可降到最低程度 。</p>
<p>离合器同步时抬离合如果操作得当 ，您会发现 ，当进入半离合状态时 ，发动机转速表指针会维持在同步转速左右 ，不会有太大的上下摆动 。如果转速表指针上下摆动过大 ，说明抬离合时机不对 。</p>
<p>离合器片转速与车速之间仅存在简单的比例关系 ，所以发动机转速与离合器片转速的不同步 ，换句话说就是发动机转速（n／min）与车速（km／h）的不“匹配” 。经常可以在网上看到或听到这样的说法 ，即换挡时车辆产生前冲或顿挫等现象是“车速不匹配”引起的 ，我想大家此时所说的车速不匹配 ，其实质应该就是意指发动机转速与离合器片转速的不同步 ，或者说是发动机转速与车速（即同步转速）不匹配 。</p>
<p>例如：如果第一步和第二步的操作过程很快 ，在发动机转速尚未下降到同步转速时就抬离合 ，且抬离合操作过快 ，发动机转速表指针由上向下快速摆动至同步转速 ，车辆可能会有“前冲”或“抖动”感 。与顿挫现象的原因恰恰相反 ，前冲或抖动总是因为发动机转速大于同步转速所引起的 。前冲感可能出现在发动机转速与同步转速相差较大时 ，发动机迫使车辆向前串了一小步；抖动感则可能出现在发动机转速与同步转速相差不大时 ，此时发动机想“拉汽车一把” ，但无奈油门已闭而无能为力 。为避免冲击 ，此时必须“稍安勿燥” ，在发动机转速降低到接近同步转速时再行抬离合操作。</p>
<p>又如：在实际操作中，如因某种原因（如换挡不熟练）导致第一步和第二步的操作过程延长 ，在执行第三步时发动机转速可能已下降至同步转速以下 ，甚至可能已下降至怠速转速 ，此时抬离合至半离合状态 ，发动机转速表指针由下向上摆动至同步转速 ，如再加上半离合控制不好（过快） ，车辆会出现“顿挫”现象 。产生顿挫的原因 ，一般说来 ，总是同步转速大于发动机转速 ，离合器片在汽车惯性作用下企图“推着”发动机提速运转 ，从而引起了发动机制动 。为了避免出现这种现象 ，必须在抬离合至半离合前或在抬离合的同时缓缓踩下油门踏板 ，使发动机转速回升并保持在同步转速左右。</p>
<p>根据情况，在抬离合至半离合前或在抬离合的同时缓缓踩下油门踏板这一操作 ，就是大家经常所说的油离配合问题，油离配合对换挡过程来说非常重要 。例如上面讲到的减档时的情形就是如此 。减档时 ，发动机转速始终低于同步转速 ，这就必须靠适当加油来提高发动机转速以减小离合器结合时的冲击 。减档时比加档时更容易出现顿挫现象的原因也正在于此 。</p>
<p>另外，即便是在同步转速时抬离合，因为只要离合器一开始结合，就会或多或少增加发动机负荷，如果此时油门不及时跟进，可能导致发动机转速继续下降（发动机转速损失）而引起顿挫。为避免顿挫，也为了保证加速过程的连续性（即加速过程不因换挡而出现瞬间停顿），应根据情况在抬离合的同时适当给油，以使离合器结合时发动机转速能稳定在同步转速上，这样做既可防止冲击，又可使后续加速“跟得上”。这些，初学者们往往都容易忽视（或是无暇顾及）。如果您换挡时经常出现顿挫现象，就应该注意这个问题了。</p>
<p>实际驾驶中，道路情况千变万化，驾驶者的操作于细微处也五花八门，引起换档冲击可能还有其它一些原因，不可能一一细说。总而言之，不管是出于操作上的何种原因，只要发动机转速与离合器片转速不同步，就可能引起抬离合时的冲击。追根溯源，离合器不同步是“罪魁祸首”。<br />
话说回来，尽管抬离合的时机不对可能引起上面所说的诸如顿挫、抖动等冲击现象，但即便是抬离合时机没掌握好，我们仍然可以在抬离合时通过对半离合状态的控制，靠离合器弹簧的缓冲和摩擦元件的相对滑磨来缓和、吸收和消减这些冲击。作为普通驾驶者，在平常操作实践中我们恐怕有意无意地也是这么做的。</p>
<p>尽管可忽视抬离合时机而仅靠抬离合的操作控制，也可使离合器结合过程平顺，但这显然是以增加离合器摩擦元件的磨损为代价的。为减小离合器的磨损，为追求完美的操作技巧，为享受至上的驾驶乐趣，了解离合器同步换档的概念，在正确的抬离合操作基础上，必要时辅以这种方法对抬离合时机加以控制，那是再好不过的事了 。</p>
<p>从原则上讲 ，离合器同步换挡法在不同车速（或发动机转速）、不同档位以及加档或减档时都可运用。但作为普通驾驶者的一般驾驶，只要不是在某些特殊情况下（为更快超车而减档加速；为利用发动机制动而越级减档等），或强调速度和驾驶技巧的场合（象赛车选手在弯道上的高车速减档），我们似乎没有必要在任何时候都刻意地去采用它（不过 ，离合器同步的概念还是应该记住的喔！）。例如，在低转速（2000转以下）换挡或高档位换挡（如四档换五档）时，由于发动机转速与同步转速的差别不大，似乎没有必要采用这种方法，只需在抬离合时控制好半离合状态就行了。另外，由于减档时我们一般都是在降低速度后再进行的，似乎也没有太大必要采用这种方法。就平时驾驶而言，在大油门高转速加挡时（从坛子里知道许多网友习惯在发动机2500转或以上时加档），这种方法就比较适用了。</p>
<p>离合器同步换挡法在最初的学习和熟练过程中，需要特别观察发动机转速表，这可能分散注意力，愿意体验一下这种方法的网友读者在驾驶时一定要注意安全，切记切记！！！当根据车速、档位和发动机声音可以掌握抬离合时机（或油门轻重）后，就没有必要再老是看着转速表换档了 。</p>
<p>对解决换档顿挫的简单总结：</p>
<p>顿挫的原因：抬离合时，发动机转速与当时的车速不匹配，即发动机转速与离合器片转速存在转速差。大部分场合是发动机转速低于离合器片转速。<br />
解决的办法：只要换入新档位后，在抬离合器至半联动时，使发动机转速等于或稍高于离合器片转速，就可有效地防止顿挫：</p>
<p>第一 、离合器抬至半离合时稍微停顿一会（这是被动的吸收转速差）；<br />
第二 、抬离合器过程中稍稍压住油门，适当地加点儿油（这是主动的减少转速差）。</p>
<p>两者要配合好，要有意识地注意练习实践一下，相信能够解决问题的。<br />
新手或经验不足者往往希望有一个操作定式 ，只要机械地按部就班地去按着它操作进行了 ，所以上面的解释可能不一定使你满足 ，那么下面给你一组不是很准确的大概数据 ，换档时可以试一试：<br />
假定在2000－2500转加档 ，换入新档位后抬离合时的发动机转速应比换档前的发动机转速下降：</p>
<p>一挡换二档 ，1000转（发动机转速表下降5小格。以下类推）；<br />
二档换三档 ，800转（下降4小格）；<br />
三档换四档 ，600转（下降3小格）；<br />
四档换五档 ，400转（下降2小格） 。</p>
<p>虽然抬离合的过程很快，但毕竟需要一定时间，这段时间内发动机转速在继续下降，所以抬离合应稍许提前，不要刚好等到转速下降到位时再抬，不然就滞后了。</p>
<p>例如，二档换三档，2500转时踩离合松油，摘二档入三档，当转速下降到1900转左右时就开始抬离合，离合抬至半联动时，转速就刚好下降到1700转左右。如果配合得好，你会发现，离合抬至半离合时，发动机转速表指针基本稳定在1700转左右，不再上下过多摆动，因为发动机1700转左右的转速与当时的车速（在三档条件下）是匹配的。这时，既不会有顿挫感，离合器片的磨损也降到最小。</p>
<p>建议大家在城市中尽量采用4档运行，只有使发动机保持最大扭距才能使燃烧充分延长发动机的使用寿命，并且使你的爱车始终保持良好的运动状态，有时候看见其他同学高档低速的运行车辆，让变速箱的最小齿轮忍受最大的传输动力，真的很心疼。我宁可低档高速也决不高档低速运行，这不是省那么一丁点汽油的问题而是损坏了整个变速和传动系统。<br />
刹车制动</p>
<p>刹车制动分为主动的踏板制动和被动的发动机制动，两种正常行驶中减速要领：</p>
<p>1、配合前方路况，熟练利用空挡技术、发动机制动技术控制车速是降低油耗，减少刹车轮毂磨损且相对安全系数远远高于紧急刹车的老练手段。</p>
<p>2、留下充裕制动距离，轻踩刹车踏板，逐渐适当加力(适可而止，保证车辆在前方空间能够停住即可)，不要完全踩死。待基本停稳后(尚未完全停定)，立即放松刹车再轻轻压下。此时你会发现，如果车上放一碗水，也不会倒洒，乘客更是不知不觉，从此没有了前呼后仰的感觉。</p>
<p>3、紧急刹车往往易造成路面连锁反应导致塞车甚至事故。</p>
<p>4、下坡、沙土、雨天、冰雪路面等不良条件下，刹车动作更应表现得具有预见性。</p>
<p>5、需要作出刹车反应，将右脚置于刹车踏板的同时，利用后视镜迅速观察后方、侧面车道车辆。如无阻碍，可轻转方向变道通过，避免不必要的刹车动作;如有阻碍，尽可能不要采用一脚急刹(紧急情况例外)，应充分利用前方空间，尽量给后方留有余地。</p>
<p>6、车停稳后，应拉起手制动并松开脚踏板，不要养成紧踩刹车的坏习惯。(因为，刹车尾灯的功率较普通行驶尾灯要大数倍，常亮发热容易烧毁，且红色光线特别刺眼，影响后方司机)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1337.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>第一个wordpress插件实现纯HTML静态缓存：alan-html-cache</title>
		<link>http://www.woyaofeng.com/1330.html</link>
		<comments>http://www.woyaofeng.com/1330.html#comments</comments>
		<pubDate>Mon, 09 Apr 2012 10:38:38 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://www.woyaofeng.com/?p=1330</guid>
		<description><![CDATA[Alan HTML Cache makes your wordpress total cached by html and make your wordpress 20 times faster. 将文章页、目录页、首页实现HTML静态化，跳过PHP处理，加快访问速度达20倍 地址：http://wordpress.org/extend/plugins/alan-html-cache/<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1330.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>Alan HTML Cache makes your wordpress total cached by html and make your wordpress 20 times faster. 将文章页、目录页、首页实现HTML静态化，跳过PHP处理，加快访问速度达20倍</p>
<p>地址：http://wordpress.org/extend/plugins/alan-html-cache/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1330.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>第一个新浪微博应用：我的非常关注</title>
		<link>http://www.woyaofeng.com/1327.html</link>
		<comments>http://www.woyaofeng.com/1327.html#comments</comments>
		<pubDate>Mon, 09 Apr 2012 10:28:56 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[PHP+MYSQL]]></category>

		<guid isPermaLink="false">http://www.woyaofeng.com/?p=1327</guid>
		<description><![CDATA[我的非常关注使用户在“非常关注”其他用户后，在被关注用户发布微博后，通过iphone的邮件推送或者QQ的邮件提醒功能，第一时间向用户推送图文并茂通知的一款微博应用。 普通情况下，如果想即时知道某人新发布的微博，只能不停的去刷新他的微博页面。即使你心里只有ta一个人，你也无法做到。有了这个应用，就简单很多了。只要ta发布新微博，你的手机上就会立刻收到通知，而且是图文并茂的包含几乎所有微博信息的邮件。 应用地址：http://www.woyaofeng.com/weibo/<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1327.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>我的非常关注使用户在“非常关注”其他用户后，在被关注用户发布微博后，通过iphone的邮件推送或者QQ的邮件提醒功能，第一时间向用户推送图文并茂通知的一款微博应用。<span id="more-1327"></span></p>
<p>普通情况下，如果想即时知道某人新发布的微博，只能不停的去刷新他的微博页面。即使你心里只有ta一个人，你也无法做到。有了这个应用，就简单很多了。只要ta发布新微博，你的手机上就会立刻收到通知，而且是图文并茂的包含几乎所有微博信息的邮件。</p>
<p>应用地址：<a href="http://www.woyaofeng.com/weibo/" target="_blank">http://www.woyaofeng.com/weibo/</a></p>
<p><img class="aligncenter" title="我的非常关注" src="http://ww4.sinaimg.cn/bmiddle/3efa5598tw1dng1cqeq8mj.jpg" alt="" width="200" height="300" /></p>
<p><img class="aligncenter" title="截图" src="http://ww1.sinaimg.cn/bmiddle/3efa5598tw1dng1cwdle6j.jpg" alt="" width="200" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1327.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>玉渊潭</title>
		<link>http://www.woyaofeng.com/1284.html</link>
		<comments>http://www.woyaofeng.com/1284.html#comments</comments>
		<pubDate>Mon, 02 Apr 2012 13:05:49 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://www.woyaofeng.com/?p=1284</guid>
		<description><![CDATA[<div id="gallery-1" class='gallery galleryid-1284'><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6555-150x99.jpg" class="attachment-thumbnail" alt="IMG_6555" title="IMG_6555" />
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6552-150x99.jpg" class="attachment-thumbnail" alt="IMG_6552" title="IMG_6552" />
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6511-150x99.jpg" class="attachment-thumbnail" alt="IMG_6511" title="IMG_6511" />
			</dt></dl>
			<br style='clear: both;' />
		</div>
<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1284.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[
<a href='http://www.woyaofeng.com/1284.html/img_6290' title='IMG_6290'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6290-150x100.jpg" class="attachment-thumbnail" alt="IMG_6290" title="IMG_6290" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6294' title='IMG_6294'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6294-150x99.jpg" class="attachment-thumbnail" alt="IMG_6294" title="IMG_6294" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6303' title='IMG_6303'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6303-150x100.jpg" class="attachment-thumbnail" alt="IMG_6303" title="IMG_6303" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6312' title='IMG_6312'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6312-150x99.jpg" class="attachment-thumbnail" alt="IMG_6312" title="IMG_6312" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6316' title='IMG_6316'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6316-150x100.jpg" class="attachment-thumbnail" alt="IMG_6316" title="IMG_6316" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6317' title='IMG_6317'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6317-150x100.jpg" class="attachment-thumbnail" alt="IMG_6317" title="IMG_6317" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6323' title='IMG_6323'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6323-150x100.jpg" class="attachment-thumbnail" alt="IMG_6323" title="IMG_6323" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6329' title='IMG_6329'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6329-150x100.jpg" class="attachment-thumbnail" alt="IMG_6329" title="IMG_6329" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6347' title='IMG_6347'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6347-150x100.jpg" class="attachment-thumbnail" alt="IMG_6347" title="IMG_6347" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6349' title='IMG_6349'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6349-150x99.jpg" class="attachment-thumbnail" alt="IMG_6349" title="IMG_6349" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6350' title='IMG_6350'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6350-150x99.jpg" class="attachment-thumbnail" alt="IMG_6350" title="IMG_6350" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6356' title='IMG_6356'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6356-150x99.jpg" class="attachment-thumbnail" alt="IMG_6356" title="IMG_6356" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6357' title='IMG_6357'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6357-150x100.jpg" class="attachment-thumbnail" alt="IMG_6357" title="IMG_6357" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6360' title='IMG_6360'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6360-150x100.jpg" class="attachment-thumbnail" alt="IMG_6360" title="IMG_6360" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6381' title='IMG_6381'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6381-150x100.jpg" class="attachment-thumbnail" alt="IMG_6381" title="IMG_6381" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6384' title='IMG_6384'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6384-150x100.jpg" class="attachment-thumbnail" alt="IMG_6384" title="IMG_6384" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6384-2' title='IMG_6384'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_63841-150x99.jpg" class="attachment-thumbnail" alt="IMG_6384" title="IMG_6384" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6387' title='IMG_6387'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6387-150x100.jpg" class="attachment-thumbnail" alt="IMG_6387" title="IMG_6387" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6400' title='IMG_6400'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6400-150x100.jpg" class="attachment-thumbnail" alt="IMG_6400" title="IMG_6400" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6401' title='IMG_6401'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6401-150x100.jpg" class="attachment-thumbnail" alt="IMG_6401" title="IMG_6401" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6408' title='IMG_6408'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6408-150x100.jpg" class="attachment-thumbnail" alt="IMG_6408" title="IMG_6408" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6410' title='IMG_6410'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6410-150x99.jpg" class="attachment-thumbnail" alt="IMG_6410" title="IMG_6410" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6417' title='IMG_6417'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6417-150x99.jpg" class="attachment-thumbnail" alt="IMG_6417" title="IMG_6417" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6424' title='IMG_6424'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6424-150x100.jpg" class="attachment-thumbnail" alt="IMG_6424" title="IMG_6424" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6430' title='IMG_6430'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6430-150x100.jpg" class="attachment-thumbnail" alt="IMG_6430" title="IMG_6430" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6443' title='IMG_6443'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6443-150x100.jpg" class="attachment-thumbnail" alt="IMG_6443" title="IMG_6443" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6461' title='IMG_6461'><img width="99" height="150" src="http://icon.everalan.com/2012/04/IMG_6461-150x99.jpg" class="attachment-thumbnail" alt="IMG_6461" title="IMG_6461" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6464' title='IMG_6464'><img width="150" height="100" src="http://icon.everalan.com/2012/04/IMG_6464-150x100.jpg" class="attachment-thumbnail" alt="IMG_6464" title="IMG_6464" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6483' title='IMG_6483'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6483-150x99.jpg" class="attachment-thumbnail" alt="IMG_6483" title="IMG_6483" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6498' title='IMG_6498'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6498-150x99.jpg" class="attachment-thumbnail" alt="IMG_6498" title="IMG_6498" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6506' title='IMG_6506'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6506-150x99.jpg" class="attachment-thumbnail" alt="IMG_6506" title="IMG_6506" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6511' title='IMG_6511'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6511-150x99.jpg" class="attachment-thumbnail" alt="IMG_6511" title="IMG_6511" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6552' title='IMG_6552'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6552-150x99.jpg" class="attachment-thumbnail" alt="IMG_6552" title="IMG_6552" /></a>
<a href='http://www.woyaofeng.com/1284.html/img_6555' title='IMG_6555'><img width="150" height="99" src="http://icon.everalan.com/2012/04/IMG_6555-150x99.jpg" class="attachment-thumbnail" alt="IMG_6555" title="IMG_6555" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1284.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我要疯</title>
		<link>http://www.woyaofeng.com/1276.html</link>
		<comments>http://www.woyaofeng.com/1276.html#comments</comments>
		<pubDate>Fri, 30 Mar 2012 15:36:55 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://www.woyaofeng.com/?p=1276</guid>
		<description><![CDATA[风，抑或疯，都是一种生活态度，随性的生活 生活总是充满各种各样的诱惑 人生总是迷失在不同的路上 从今天起，我要风，开始追随自己的步伐 从今天起，我要疯，不再在意旁人的眼光 朝着向往的生活前进 一路上有你 风，抑或疯，都是一种生活态度，随性的生活 从今天起，正式启用新域名：www.woyaofeng.com 我要疯！<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1276.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<div>风，抑或疯，都是一种生活态度，随性的生活</div>
<div></div>
<div>生活总是充满各种各样的诱惑</div>
<div>人生总是迷失在不同的路上</div>
<div>从今天起，我要风，开始追随自己的步伐</div>
<div>从今天起，我要疯，不再在意旁人的眼光</div>
<div>朝着向往的生活前进</div>
<div>一路上有你</div>
<div></div>
<div>风，抑或疯，都是一种生活态度，随性的生活</div>
<div></div>
<div>从今天起，正式启用新域名：www.woyaofeng.com</div>
<div>我要疯！</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1276.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>虾米音乐mp3地址解密javascript版和PHP版</title>
		<link>http://www.woyaofeng.com/1256.html</link>
		<comments>http://www.woyaofeng.com/1256.html#comments</comments>
		<pubDate>Wed, 28 Mar 2012 08:23:34 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[PHP+MYSQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[音乐]]></category>

		<guid isPermaLink="false">http://www.everalan.com/?p=1256</guid>
		<description><![CDATA[虾米音乐国内音乐互联网平台中最完善的平台。和网易、新浪等多家都有合作，用户体验也非常好。 为了能充分利用虾米音乐做自己喜欢的音乐相关小工具，特将虾米音乐相关的接口公布出来，供大家使用。这些接口包含了音乐联想搜索、音乐详情、mp3地址解码等，基本上覆盖了音乐应用的全部方面。 ZDNet广播体操片头曲点播平台就是一个很好的应用 联想搜接口地址： http://www.xiami.com/ajax/search-index?key=朋友 音乐详情接口地址： http://www.xiami.com/widget/xml-single/uid/0/sid/72299 音乐详情包含歌曲的名字、作者、专辑、封面图以及mp3下载地址。但是这个下载地址是加密的，需要以下解密函数解密： mp3下载地址解密javascript版： mp3下载地址PHP版：<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1256.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>虾米音乐国内音乐互联网平台中最完善的平台。和网易、新浪等多家都有合作，用户体验也非常好。</p>
<p>为了能充分利用虾米音乐做自己喜欢的音乐相关小工具，特将虾米音乐相关的接口公布出来，供大家使用。这些接口包含了音乐联想搜索、音乐详情、mp3地址解码等，基本上覆盖了音乐应用的全部方面。<br />
<a href="http://weibonotice.everalan.com/mod" target="_blank">ZDNet广播体操片头曲点播平台</a>就是一个很好的应用<br />
<span id="more-1256"></span></p>
<p><strong>联想搜接口地址：</strong></p>
<p>http://www.xiami.com/ajax/search-index?key=朋友</p>
<p><strong>音乐详情接口地址：</strong></p>
<p>http://www.xiami.com/widget/xml-single/uid/0/sid/72299</p>
<p>音乐详情包含歌曲的名字、作者、专辑、封面图以及mp3下载地址。但是这个下载地址是加密的，需要以下解密函数解密：</p>
<p><strong>mp3下载地址解密javascript版：<br />
</strong></p>
<pre class="brush: jscript; title: ; notranslate">
function sospa(str)
{
	var totle = parseInt(str);
	var newString = str.substr(1);
	var chu = Math.floor(newString.length / totle);
	var yu = newString.length % totle;
	var stor = new Array();
	var i;

	for(i = 0;i&lt;yu;i++)
	{
		stor[i] = newString.substr((chu+1)*i,chu+1);
	}

	for(i=yu;i&lt;totle;i++)
	{
		stor[i] = newString.substr(chu*(i-yu)+(chu+1)*yu,chu);
	}

	var pinString = '';
	for(i=0;i&lt;stor[0].length;i++)
	{
		for(j=0;j&lt;stor.length;j++)
		{
			pinString += stor[j].substr(i,1);
		}
	}
	pinString = rtan(pinString);
	var returnString = '';
	for(i=0;i&lt;pinString.length;i++)
	{
		if(pinString.substr(i,1)=='^')
		{
			returnString += &quot;0&quot;;
		} else {
			returnString += pinString.substr(i,1);
		}
	}
	return returnString;
}

function rtan(str){
	var ret=&quot;&quot;;
	for(var i=0;i&lt;str.length;i++){
		var chr = str.charAt(i);
		if(chr == &quot;+&quot;){
			ret+=&quot; &quot;;
		}else if(chr==&quot;%&quot;){
			var asc = str.substring(i+1,i+3);
			if(parseInt(&quot;0x&quot;+asc)&gt;0x7f){
				ret+=String.fromCharCode(parseInt(&quot;0x&quot;+asc+str.substring(i+4,i+6)));
				i+=5;
			}else{
				ret+=String.fromCharCode(parseInt(&quot;0x&quot;+asc));
				i+=2;
			}
		}else{
			ret+= chr;
		}
	}
	return ret;
}
</pre>
<p>mp3下载地址PHP版：</p>
<pre class="brush: php; title: ; notranslate">
	public function xiami_decode($str){
		//$str = '9hFaF76%6t%m17%59t2i162E%pF.6%545%fn4222E31e%F%3.A.t2%5_m%x%F5E7p2i25E743';
		$totle = (int)$str;
		$newString = substr($str, 1);
		$chu = floor(strlen($newString) / $totle);
		$yu = strlen($newString) % $totle;
		$stor = array();
		$i = 0;
		for($i=0; $i&lt;$yu; $i++){
			$stor[$i] = substr($newString, ($chu + 1) * $i, $chu + 1);
		}
		for($i=$yu; $i&lt;$totle; $i++){
			$stor[$i] = substr($newString, $chu * ($i - $yu) + ($chu + 1) * $yu, $chu);
		}
		$pinString = '';
		for($i=0; $i&lt;strlen($stor[0]); $i++){
			for($j=0; $j&lt;count($stor); $j++){
				$pinString .= substr($stor[$j], $i, 1);
			}
		}
		$pinString = rawurldecode($pinString);
		$returnString = '';
		for($i=0; $i&lt;strlen($pinString); $i++){
			if(substr($pinString, $i, 1) == '^'){
				$returnString .= '0';
			}else{
				$returnString .= substr($pinString, $i, 1);
			}
		}
		return $returnString;
	}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1256.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>三行两段写功能，四篇五页搞兼容</title>
		<link>http://www.woyaofeng.com/1248.html</link>
		<comments>http://www.woyaofeng.com/1248.html#comments</comments>
		<pubDate>Thu, 15 Mar 2012 03:39:57 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[JAVASCRIPT]]></category>

		<guid isPermaLink="false">http://www.everalan.com/?p=1248</guid>
		<description><![CDATA[三行两段写功能，四篇五页搞兼容，说的就是我们这些写代码的。 以下就是一实例：jQuery图片切换特效<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1248.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p>三行两段写功能，四篇五页搞兼容，说的就是我们这些写代码的。<br />
以下就是一实例：jQuery图片切换特效<br />
<iframe src="http://www.everalan.com/material/js/lunzhuan/lunzhuan.html" frameborder="0" scrolling="no" width="554" height="349"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1248.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>好吧，那些青葱岁月</title>
		<link>http://www.woyaofeng.com/1223.html</link>
		<comments>http://www.woyaofeng.com/1223.html#comments</comments>
		<pubDate>Fri, 20 Jan 2012 13:48:31 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://www.everalan.com/?p=1223</guid>
		<description><![CDATA[<div id="gallery-1" class='gallery galleryid-1223'><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<img width="150" height="150" src="http://icon.everalan.com/2012/01/2366641604183248114-150x150.jpg" class="attachment-thumbnail" alt="2366641604183248114" title="2366641604183248114" />
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<img width="150" height="150" src="http://icon.everalan.com/2012/01/2366641604183248111-150x150.jpg" class="attachment-thumbnail" alt="2366641604183248111" title="2366641604183248111" />
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4357-150x150.jpg" class="attachment-thumbnail" alt="IMG_4357" title="IMG_4357" />
			</dt></dl>
			<br style='clear: both;' />
		</div>
<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1223.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[
<a href='http://www.woyaofeng.com/1223.html/img_4329' title='IMG_4329'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4329-150x150.jpg" class="attachment-thumbnail" alt="IMG_4329" title="IMG_4329" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4344' title='IMG_4344'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4344-150x150.jpg" class="attachment-thumbnail" alt="IMG_4344" title="IMG_4344" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4346' title='IMG_4346'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4346-150x150.jpg" class="attachment-thumbnail" alt="IMG_4346" title="IMG_4346" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4347' title='IMG_4347'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4347-150x150.jpg" class="attachment-thumbnail" alt="IMG_4347" title="IMG_4347" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4349' title='IMG_4349'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4349-150x150.jpg" class="attachment-thumbnail" alt="IMG_4349" title="IMG_4349" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4350' title='IMG_4350'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4350-150x150.jpg" class="attachment-thumbnail" alt="IMG_4350" title="IMG_4350" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4351' title='IMG_4351'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4351-150x150.jpg" class="attachment-thumbnail" alt="IMG_4351" title="IMG_4351" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4352' title='IMG_4352'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4352-150x150.jpg" class="attachment-thumbnail" alt="IMG_4352" title="IMG_4352" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4353' title='IMG_4353'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4353-150x150.jpg" class="attachment-thumbnail" alt="IMG_4353" title="IMG_4353" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4354' title='IMG_4354'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4354-150x150.jpg" class="attachment-thumbnail" alt="IMG_4354" title="IMG_4354" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4355' title='IMG_4355'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4355-150x150.jpg" class="attachment-thumbnail" alt="IMG_4355" title="IMG_4355" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4356' title='IMG_4356'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4356-150x150.jpg" class="attachment-thumbnail" alt="IMG_4356" title="IMG_4356" /></a>
<a href='http://www.woyaofeng.com/1223.html/img_4357' title='IMG_4357'><img width="150" height="150" src="http://icon.everalan.com/2012/01/IMG_4357-150x150.jpg" class="attachment-thumbnail" alt="IMG_4357" title="IMG_4357" /></a>
<a href='http://www.woyaofeng.com/1223.html/attachment/2366641604183248111' title='2366641604183248111'><img width="150" height="150" src="http://icon.everalan.com/2012/01/2366641604183248111-150x150.jpg" class="attachment-thumbnail" alt="2366641604183248111" title="2366641604183248111" /></a>
<a href='http://www.woyaofeng.com/1223.html/attachment/2366641604183248114' title='2366641604183248114'><img width="150" height="150" src="http://icon.everalan.com/2012/01/2366641604183248114-150x150.jpg" class="attachment-thumbnail" alt="2366641604183248114" title="2366641604183248114" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1223.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle VirtualBox 使用经验123</title>
		<link>http://www.woyaofeng.com/1207.html</link>
		<comments>http://www.woyaofeng.com/1207.html#comments</comments>
		<pubDate>Mon, 19 Dec 2011 10:09:17 +0000</pubDate>
		<dc:creator>漂泊云间</dc:creator>
				<category><![CDATA[系统优化]]></category>

		<guid isPermaLink="false">http://www.everalan.com/?p=1207</guid>
		<description><![CDATA[bringing up interface eth0 device eth0 does not seem to be present, delaying initialization. 在VirtualBox设置里重置MAC地址 编辑 /etc/sysconfig/network-scripts/ifcfg-eth0，将MAC地址改成刚才设置的MAC地址，将IP设置为正确值 删除/etc/udev/rules.d/70-persistent-net.rules 重启<p style="text-align: left;clear:both;"><a href="http://www.woyaofeng.com/1207.html" class="more-link">阅读全文</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>bringing up interface eth0 device eth0 does not seem to be present, delaying initialization.</strong></p>
<p style="text-align: left;">在VirtualBox设置里重置MAC地址</p>
<p style="text-align: center;"><img title="重置MAC地址" src="http://img.zdnet.com.cn/2/949/lijoeV61R4106.png" alt="" width="500" height="379" /></p>
<p style="text-align: left;">编辑 /etc/sysconfig/network-scripts/ifcfg-eth0，将MAC地址改成刚才设置的MAC地址，将IP设置为正确值</p>
<p style="text-align: center;"><img title="设置MAC地址" src="http://img.zdnet.com.cn/2/948/liIF1aMEM887c.png" alt="" width="263" height="192" /></p>
<p style="text-align: left;">删除/etc/udev/rules.d/70-persistent-net.rules</p>
<pre class="brush: bash; title: ; notranslate"># rm -f /etc/udev/rules.d/70-persistent-net.rules</pre>
<p>重启</p>
]]></content:encoded>
			<wfw:commentRss>http://www.woyaofeng.com/1207.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

