<?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.hencuo.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hencuo.com</link>
	<description>Android,Php,Wordpress</description>
	<lastBuildDate>Thu, 17 May 2012 08:02:01 +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>GAE XMPP服务</title>
		<link>http://www.hencuo.com/archives/243</link>
		<comments>http://www.hencuo.com/archives/243#comments</comments>
		<pubDate>Thu, 17 May 2012 07:46:27 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[技术类]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[xmpp]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=243</guid>
		<description><![CDATA[XMPP（Extensible Messaging and Presence Protocol，前称 Jabber[1]）是一种以 XML 为基础的开放式即时通讯协定，是经由互联网工程工作小组（IETF）通过的互联网标准。XMPP 因为被 Google Talk 和网易泡泡应用而被广大网民所接触。 GAE 中提供了 XMPP 服务 API，应用程序可以从任何符合 XMPP 的即时消息服务（如Google Talk）中接收即时消息以及向其发送即时消息。如果要使应用程序接收聊天消息，必须在应用程序配置中启用 XMPP 消息服务。 以 Java为例，需在 appengine-web.xml 文件中加上一下内容： &#60;inbound-services&#62; &#60;service&#62;xmpp_message&#60;/service&#62; &#60;/inbound-services&#62; 之后，当 App Engine 接收应用程序的聊天消息时，将向一下地址发送 HTTP POST 请求： /_ah/xmpp/message/chat/ 即在 web.xml 的配置中需要这样的一个 url-pattern 来接收 POST 请求。具体说明文档见https://developers.google.com/appengine/docs/java/xmpp?hl=zh-cn 获取聊天接收消息内容： XMPPService xmpp = XMPPServiceFactory.getXMPPService(); Message message = xmpp.parseMessage(req); JID fromJid [...]]]></description>
			<content:encoded><![CDATA[<p>XMPP（Extensible Messaging and Presence Protocol，前称 Jabber<sup><a href="http://zh.wikipedia.org/wiki/XMPP#cite_note-0" rel="nofollow" target="_blank">[1]</a></sup>）是一种以 <a href="http://zh.wikipedia.org/wiki/XML" rel="nofollow" target="_blank">XML</a> 为基础的开放式<a href="http://zh.wikipedia.org/wiki/%E5%8D%B3%E6%99%82%E9%80%9A%E8%A8%8A">即时通讯</a>协定，是经由互联网工程工作小组（<a href="http://zh.wikipedia.org/wiki/IETF" rel="nofollow" target="_blank">IETF</a>）通过的<a href="http://zh.wikipedia.org/wiki/%E7%B6%B2%E9%9A%9B%E7%B6%B2%E8%B7%AF" rel="nofollow" target="_blank">互联网</a>标准。XMPP 因为被 <a href="http://zh.wikipedia.org/wiki/Google_Talk" rel="nofollow" target="_blank">Google Talk</a> 和<a href="http://zh.wikipedia.org/wiki/%E7%BD%91%E6%98%93%E6%B3%A1%E6%B3%A1" rel="nofollow" target="_blank">网易泡泡</a>应用而被广大网民所接触。</p>
<p>GAE 中提供了 XMPP 服务 API，应用程序可以从任何符合 XMPP 的即时消息服务（如Google Talk）中接收即时消息以及向其发送即时消息。如果要使应用程序接收聊天消息，必须在应用程序配置中启用 XMPP 消息服务。</p>
<p>以 Java为例，需在 <code>appengine-web.xml 文件中加上一下内容：</code></p>
<pre class="sh_xml" name="code">
&lt;inbound-services&gt;
&lt;service&gt;xmpp_message&lt;/service&gt;
&lt;/inbound-services&gt;
</pre>
<p>之后，当 App Engine 接收应用程序的聊天消息时，将向一下地址发送 HTTP POST 请求： /_ah/xmpp/message/chat/ 即在 web.xml 的配置中需要这样的一个 url-pattern 来接收 POST 请求。具体说明文档见<a title="xmpp" href="https://developers.google.com/appengine/docs/java/xmpp?hl=zh-cn" rel="nofollow" target="_blank">https://developers.google.com/appengine/docs/java/xmpp?hl=zh-cn</a></p>
<p>获取聊天接收消息内容：</p>
<pre class="sh_java" name="code">
XMPPService xmpp = XMPPServiceFactory.getXMPPService();
Message message = xmpp.parseMessage(req);
JID fromJid = message.getFromJid();
String body = message.getBody();
</pre>
<p>body 即为接收到的内容，在我们的<a href="http://www.orz360.com/about/push" target="_blank">机器人</a>中就可以根据这里内容来对用户命令作出回应。</p>
<p>下篇讲介绍在360商品折扣网站的Gtalk实时推送机器人的代码。</p>
<script type="text/javascript" src="/wp-content/plugins/shjs-syntax-hiliter/shjs/lang/sh_xml.js"></script><script type="text/javascript" src="/wp-content/plugins/shjs-syntax-hiliter/shjs/lang/sh_java.js"></script>]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/243/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>javascript实现大数相加</title>
		<link>http://www.hencuo.com/archives/239</link>
		<comments>http://www.hencuo.com/archives/239#comments</comments>
		<pubDate>Tue, 08 May 2012 06:22:29 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[技术类]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[tencent]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=239</guid>
		<description><![CDATA[这是今年Tencent前端组实习生面试时的一个题目，当时看一学生写的，没仔细看，也忘了保存，后面自己试了下。 &#60;script type="text/javascript"&#62; function addZero(str, length) { return new Array(length - str.length + 1).join("0") + str; } var a = '123459'; var b = '163'; var c = ''; var temp = 0; var aLength = a.length; var bLength = b.length; if (aLength &#62; bLength) b = addZero(b, aLength); else a = addZero(a, bLength); var [...]]]></description>
			<content:encoded><![CDATA[<p>这是今年Tencent前端组实习生面试时的一个题目，当时看一学生写的，没仔细看，也忘了保存，后面自己试了下。</p>
<div>
<pre name="code" class="sh_javascript" linenum="off">&lt;script type="text/javascript"&gt;
function addZero(str, length) {
    return new Array(length - str.length + 1).join("0") + str;
}

var a = '123459';
var b = '163';
var c = '';
var temp = 0;
var aLength = a.length;
var bLength = b.length;
if (aLength &gt; bLength)
    b = addZero(b, aLength);
else
    a = addZero(a, bLength);
var length = a.length;

for (var i = length - 1; i &gt; -1; i--) {
    temp = parseInt(a.charAt(i)) + parseInt(b.charAt(i)) + parseInt(temp);
    if (10 &lt; temp) {
        c = (temp - 10) + c;
        temp = 1;
    } else {
        c = temp + c;
        temp = 0;
    }
}
alert(c);
&lt;/script&gt;</pre>
</div>
<p>流程差不多就是把两个数从右向左每一位做加法，同时考虑“进一”的情况。</p>
<p>上面代码，addZero方法是把两个数中短的那个左边补0，使两个数的长度一致。后面for循环从右向左使用charAt来取数做加法，另外在这个例子里进一位的值只会有1和0两个值。如果是换成三个数一起相加的话，可能就不是了，当然也可以两个两个的相加。</p>
<script type="text/javascript" src="/wp-content/plugins/shjs-syntax-hiliter/shjs/lang/sh_javascript.js"></script>]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/239/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25</title>
		<link>http://www.hencuo.com/archives/236</link>
		<comments>http://www.hencuo.com/archives/236#comments</comments>
		<pubDate>Wed, 11 Apr 2012 15:57:47 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[生活类]]></category>
		<category><![CDATA[25]]></category>
		<category><![CDATA[birthday]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=236</guid>
		<description><![CDATA[壬辰年三月廿一，25了。]]></description>
			<content:encoded><![CDATA[<p>壬辰年三月廿一，25了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/236/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>双网卡同时访问内外网</title>
		<link>http://www.hencuo.com/archives/233</link>
		<comments>http://www.hencuo.com/archives/233#comments</comments>
		<pubDate>Wed, 21 Mar 2012 02:30:56 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[技术类]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[route]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=233</guid>
		<description><![CDATA[两块网卡：主机自带和USB外接无线网卡。 内网： &#160; IP 10.249.xxx.xxx &#160; 掩码 255.255.255.0 &#160; 网关 10.249.xxx.1 外网： IP 192.168.3.100 掩码 255.255.255.0 网关 192.168.3.1 首先在cmd中输入route print查看路由表信息，会发现有网络目标里有两处0.0.0.0，这就是影响上网的原因。使用route delete 0.0.0.0删除该路由信息后，再用一下命令来添加路由信息： route add 0.0.0.0 mask 0.0.0.0 192.168.3.1 route add 10.0.0.0 mask 255.0.0.0&#160; 10.249.xxx.1 这样即可以同时访问内外网了。 但另外可能会出现问题，就是内网如果直接IP访问是正常，但对一些绑定为内网IP的域名缺无法访问，在cmd里ping这个域名会发现出来的IP是外网的一个IP地址，而这个地址根本就不知道是哪里的。 简单解决办法： 进入“网络连接” –&#62; “高级” –&#62; “高级设置”，在“适配器和绑定”下面会有“连接”，里面列出了当前的网络连接，把连接内网的那个网卡放在第一个，这样内网域名就可以访问了。当然这样会影响外网的访问速度。]]></description>
			<content:encoded><![CDATA[<p>两块网卡：主机自带和USB外接无线网卡。</p>
<p>内网：</p>
<p>&#160; IP 10.249.xxx.xxx</p>
<p>&#160; 掩码 255.255.255.0</p>
<p>&#160; 网关 10.249.xxx.1</p>
<p>外网：</p>
<p>IP 192.168.3.100</p>
<p>掩码 255.255.255.0</p>
<p>网关 192.168.3.1</p>
<p>首先在cmd中输入route print查看路由表信息，会发现有网络目标里有两处0.0.0.0，这就是影响上网的原因。使用route delete 0.0.0.0删除该路由信息后，再用一下命令来添加路由信息：</p>
<p>route add 0.0.0.0 mask 0.0.0.0 192.168.3.1</p>
<p>route add 10.0.0.0 mask 255.0.0.0&#160; 10.249.xxx.1</p>
<p>这样即可以同时访问内外网了。</p>
<p>但另外可能会出现问题，就是内网如果直接IP访问是正常，但对一些绑定为内网IP的域名缺无法访问，在cmd里ping这个域名会发现出来的IP是外网的一个IP地址，而这个地址根本就不知道是哪里的。</p>
<p>简单解决办法：</p>
<p>进入“网络连接” –&gt; “高级” –&gt; “高级设置”，在“适配器和绑定”下面会有“连接”，里面列出了当前的网络连接，把连接内网的那个网卡放在第一个，这样内网域名就可以访问了。当然这样会影响外网的访问速度。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/233/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>使用jQuery检测iPhone/iPod设备</title>
		<link>http://www.hencuo.com/archives/229</link>
		<comments>http://www.hencuo.com/archives/229#comments</comments>
		<pubDate>Thu, 08 Mar 2012 02:06:42 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[技术类]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=229</guid>
		<description><![CDATA[针对越来越多的智能移动设备，很多站点都已提供移动版。而jQuery在手机和平板设备上的jQuery Mobile，正是为移动Web提供一个跨浏览器的框架，方便开发人员开发出真正的移动Web网站。 不同浏览器对CSS的支持是不一样的，所以这里检测当前浏览器是否为Safari，就可以将访问定向到适合的页面上来展示。 // 返回 TRUE/FALSEfunction isiPhone(){ return ( (navigator.platform.indexOf(&#34;iPhone&#34;) != -1) &#124;&#124; (navigator.platform.indexOf(&#34;iPod&#34;) != -1) );} 重定向访问Script // 重定向来自 iPhone/iPod 的访问function isiPhone(){ return ( (navigator.platform.indexOf(&#34;iPhone&#34;) != -1) &#124;&#124; (navigator.platform.indexOf(&#34;iPod&#34;) != -1) );}if(isiPhone()){ window.location = &#34;mob.example.com&#34;;} 重定向访问PHP // Redirect iPhone/iPod visitorsif(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') &#124;&#124; strpos($_SERVER['HTTP_USER_AGENT'], 'iPod')){ header(&#34;Location: http://mob.example.com&#34;);} iPhone和iPod上Safari的User Agent User Agent String for iPhoneMozilla/5.0 (iPhone; [...]]]></description>
			<content:encoded><![CDATA[<p>针对越来越多的智能移动设备，很多站点都已提供移动版。而jQuery在手机和平板设备上的jQuery Mobile，正是为移动Web提供一个跨浏览器的框架，方便开发人员开发出真正的移动Web网站。</p>
<p>不同浏览器对CSS的支持是不一样的，所以这里检测当前浏览器是否为Safari，就可以将访问定向到适合的页面上来展示。</p>
<div>// 返回 TRUE/FALSE<br />function isiPhone(){<br />    return (<br />        (navigator.platform.indexOf(&quot;iPhone&quot;) != -1) ||<br />        (navigator.platform.indexOf(&quot;iPod&quot;) != -1)<br />    );<br />}
</div>
<p>重定向访问Script</p>
<div>
// 重定向来自 iPhone/iPod 的访问<br />function isiPhone(){<br />    return (<br />        (navigator.platform.indexOf(&quot;iPhone&quot;) != -1) ||<br />        (navigator.platform.indexOf(&quot;iPod&quot;) != -1)<br />    );<br />}<br />if(isiPhone()){<br /> window.location = &quot;mob.example.com&quot;;<br />}</pre>
</div>
<p>重定向访问PHP</p>
<div>
// Redirect iPhone/iPod visitors<br />if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') ||<br />    strpos($_SERVER['HTTP_USER_AGENT'], 'iPod')){<br />    header(&quot;Location: http://mob.example.com&quot;);<br />}
</div>
<p>iPhone和iPod上Safari的User Agent</p>
<div>
User Agent String for iPhone<br />Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko)<br />Version/3.0 Mobile/1A543a Safari/419.3</p>
<p>User Agent String for iPod Touch<br />Mozilla/5.0 (iPod; U; CPU like Mac OS X; en) AppleWebKit/420.1 (KHTML, like Gecko)<br />Version/3.0 Mobile/3A101a Safari/419.3</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/229/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>自己犯贱</title>
		<link>http://www.hencuo.com/archives/226</link>
		<comments>http://www.hencuo.com/archives/226#comments</comments>
		<pubDate>Fri, 02 Mar 2012 14:10:57 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[生活类]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=226</guid>
		<description><![CDATA[总结，只能是自己犯贱。 年轻人，也许是在国企待的时间长了点。总会跟一些前面的人比较，不管什么的比较。 同为年轻人，往上比没错，可总有一些是自己先天的，为啥要把自己的现在放在别人的当前来比，不是作践自己么。已经是不同的年代，不同的人，不同的思想了。 所做的最后还不是为自己，即使现在把一些分享，一种是帮助别人，一种也是自己的进度。封闭最后相信是什么都不会有的，为啥有些事情问题总会刻意的去逃避。一些外部因素而已，很容易就克服的。 也许是喝了些酒吧，人不多，有些话说出来，越说越发现自己有些贱了。说了好多，一句同意的话都木有，说到最后自己都感觉自己是在犯贱。何必，封闭，要改变感觉很难，再看吧。 赶着周末之前人少，有些话说出来，最后只能遭到BS吧。 看自己，也许尝试着推一下。至于成功或者fail，最后只能说自己尽力。做了就OK，不做就永远是fail的。 给自己个退路，下周再看下，不管别人如何，先看自己，只能看自己。 晕头了，回去睡。]]></description>
			<content:encoded><![CDATA[<p>总结，只能是自己犯贱。</p>
<p>年轻人，也许是在国企待的时间长了点。总会跟一些前面的人比较，不管什么的比较。</p>
<p>同为年轻人，往上比没错，可总有一些是自己先天的，为啥要把自己的现在放在别人的当前来比，不是作践自己么。已经是不同的年代，不同的人，不同的思想了。</p>
<p>所做的最后还不是为自己，即使现在把一些分享，一种是帮助别人，一种也是自己的进度。封闭最后相信是什么都不会有的，为啥有些事情问题总会刻意的去逃避。一些外部因素而已，很容易就克服的。</p>
<p>也许是喝了些酒吧，人不多，有些话说出来，越说越发现自己有些贱了。说了好多，一句同意的话都木有，说到最后自己都感觉自己是在犯贱。何必，封闭，要改变感觉很难，再看吧。</p>
<p>赶着周末之前人少，有些话说出来，最后只能遭到BS吧。</p>
<p>看自己，也许尝试着推一下。至于成功或者fail，最后只能说自己尽力。做了就OK，不做就永远是fail的。</p>
<p>给自己个退路，下周再看下，不管别人如何，先看自己，只能看自己。</p>
<p>晕头了，回去睡。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/226/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; 魔术常量</title>
		<link>http://www.hencuo.com/archives/224</link>
		<comments>http://www.hencuo.com/archives/224#comments</comments>
		<pubDate>Tue, 21 Feb 2012 10:53:22 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[技术类]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=224</guid>
		<description><![CDATA[PHP 提供了很多有用的魔术常量来获取当前行号（__LINE__），文件路径（__FILE__），目录路径（__DIR__），函数名（__FUNCTION__），类名（__CLASS__），方法名（__METHOD__）和命名空间（__NAMESPACE）。 例： 当引入其他PHP文件时，推荐使用 __FILE__ 常量（或者 __DIR__，&#62;= PHP 5.3）： // 相对当前加载文件路径 // 如果更换目录就会出问题 require_once(‘config/database.php’); &#160; // 相对这个引入文件的路径 // 不管是在哪里被引入 require_once(dirname(__FILE__) . ‘/config/database.php’); &#160; 使用 __LINE__ 简化程序调试： // … my_debug(‘调试信息’, __LINE__); function my_debug($msg, $line) { &#160;&#160;&#160; echo “行 $line : $msg\n”; }]]></description>
			<content:encoded><![CDATA[<p>PHP 提供了很多有用的魔术常量来获取当前行号（__LINE__），文件路径（__FILE__），目录路径（__DIR__），函数名（__FUNCTION__），类名（__CLASS__），方法名（__METHOD__）和命名空间（__NAMESPACE）。</p>
<p>例：</p>
<p>当引入其他PHP文件时，推荐使用 __FILE__ 常量（或者 __DIR__，&gt;= PHP 5.3）：</p>
<p>// 相对当前加载文件路径</p>
<p>// 如果更换目录就会出问题</p>
<p>require_once(‘config/database.php’);</p>
<p>&#160;</p>
<p>// 相对这个引入文件的路径</p>
<p>// 不管是在哪里被引入</p>
<p>require_once(dirname(__FILE__) . ‘/config/database.php’);</p>
<p>&#160;</p>
<p>使用 __LINE__ 简化程序调试：</p>
<p>// …</p>
<p>my_debug(‘调试信息’, __LINE__);</p>
<p>function my_debug($msg, $line) {</p>
<p>&#160;&#160;&#160; echo “行 $line : $msg\n”;</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/224/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>春运火车票抢购辅助工具集</title>
		<link>http://www.hencuo.com/archives/215</link>
		<comments>http://www.hencuo.com/archives/215#comments</comments>
		<pubDate>Wed, 11 Jan 2012 12:41:39 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[技术类]]></category>
		<category><![CDATA[12306]]></category>
		<category><![CDATA[gohome]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/?p=215</guid>
		<description><![CDATA[12306 订票助手 – 自动订票 Chrome 扩展 须使用 Chrome 浏览器，以及安装 UserScript，然后打开 https://dynamic.12306.cn/otsweb/ 开始订票。 尝试登陆N次后成功，即可开始刷票。 刷票成功会蓝色通知以及声音提示，点击预订按钮，就可以进入自动提交订单页面，注意正确填写实名制火车票坐车人信息，自动提交后就直接到付款阶段，无确认选项。 德广火车票助手 – 免验证码自动登录工具 德广火车票助手是款针对12306.cn火车票网上购买网上的自动登录工具，免输入验证码，实际使用时验证码识别率不高，需要手工输入。德广火车票助手登录在登录成功后打开一个浏览器进行购票。 登录成功后会出现一个购票窗口，根据提示操作即可。 下载：http://www.9inf.com/content/&#8230; 8684 火车春运版 – Android手机订票工具 8684 火车春运版 是一款 Android 平台的火车票查询、电话拨打工具。 8684 火车春运版的电话订票抢线助手功能实际上是一个自动重播功能，能帮你不断的拨打订票很热的热线，直到拨通为止，拨通后就可以根据语音提示进行操作了。电话订票前需要做些准备：车次、发到站、纸笔、身份证号码。 需要注意查询出票时间，一般为早上8点，有些地方为早7点。订票成功后记得记录订单号，以及在规定时间内取票。 下载：https://market.android.com/details?id=cn.lieche.main Go-Home – 火车票自动订票程序 Go-Home 是一款针对 12306.cn 网上购买火车票网站的自动订票程序，帮助你较为容易的在网上订购火车票。 使用 Go-Home 之前，安装 Java for Windows。之后打开 Go-Home 软件，输入所有能填的信息，包括用户名、密码、乘车人身份证号、姓名、手机号码、乘车时段、日期、发到站，点击开始。Go-Home 会一遍又一遍的登录并尝试购票，其间需要输入验证码（程序自动识别验证码会有不准的情况），直到出现如上图订票成功的提示，再去登录 12306.cn 网站，在线支付就可以了。 下载：http://code.google.com/p/go-home/]]></description>
			<content:encoded><![CDATA[<h4>12306 订票助手 – 自动订票 Chrome 扩展</h4>
<p>须使用 Chrome 浏览器，以及安装 <a href="http://www.u-tide.com/fish/Service.asmx/Download/44/45/12306_ticket_helper_for_chrome.user.js" target="_blank">UserScript</a>，然后打开 <a href="https://dynamic.12306.cn/otsweb/" target="_blank">https://dynamic.12306.cn/otsweb/</a> 开始订票。<br />
<img src="http://0.imgbed.com/158/201202/13327.png" alt="" border="0" data-pinit="registered" /></p>
<p>尝试登陆N次后成功，即可开始刷票。</p>
<p><img src="http://5.imgbed.com/158/201202/13328.png" alt="" border="0" data-pinit="registered" /></p>
<p>刷票成功会蓝色通知以及声音提示，点击预订按钮，就可以进入自动提交订单页面，注意正确填写实名制火车票坐车人信息，自动提交后就直接到付款阶段，无确认选项。</p>
<h4>德广火车票助手 – 免验证码自动登录工具</h4>
<p>德广火车票助手是款针对12306.cn火车票网上购买网上的自动登录工具，免输入验证码，实际使用时验证码识别率不高，需要手工输入。德广火车票助手登录在登录成功后打开一个浏览器进行购票。</p>
<p><img src="http://8.imgbed.com/158/201202/13329.png" alt="" border="0" data-pinit="registered" /></p>
<p>登录成功后会出现一个购票窗口，根据提示操作即可。</p>
<p>下载：<a href="http://www.9inf.com/content/%E5%BE%B7%E5%B9%BF%E7%81%AB%E8%BD%A6%E7%A5%A8%E5%8A%A9%E6%89%8B-%E6%B5%8B%E8%AF%952%E7%89%88-%E5%BC%80%E6%94%BE%E4%B8%8B%E8%BD%BD%E8%AF%95%E7%94%A8" target="_blank">http://www.9inf.com/content/&#8230;</a></p>
<h4>8684 火车春运版 – Android手机订票工具</h4>
<p>8684 火车春运版 是一款 Android 平台的火车票查询、电话拨打工具。</p>
<p><img src="http://3.imgbed.com/158/201202/13330.png" alt="" border="0" data-pinit="registered" /></p>
<p>8684 火车春运版的电话订票抢线助手功能实际上是一个自动重播功能，能帮你不断的拨打订票很热的热线，直到拨通为止，拨通后就可以根据语音提示进行操作了。电话订票前需要做些准备：车次、发到站、纸笔、身份证号码。</p>
<p>需要注意查询出票时间，一般为早上8点，有些地方为早7点。订票成功后记得记录订单号，以及在规定时间内取票。</p>
<p>下载：<a href="https://market.android.com/details?id=cn.lieche.main" target="_blank">https://market.android.com/details?id=cn.lieche.main</a></p>
<h4>Go-Home – 火车票自动订票程序</h4>
<p>Go-Home 是一款针对 12306.cn 网上购买火车票网站的自动订票程序，帮助你较为容易的在网上订购火车票。</p>
<p><img src="http://1.imgbed.com/158/201202/13331.png" alt="" border="0" data-pinit="registered" /></p>
<p>使用 Go-Home 之前，安装 <a href="http://www.java.com/getjava/" target="_blank">Java for Windows</a>。之后打开 Go-Home 软件，输入所有能填的信息，包括用户名、密码、乘车人身份证号、姓名、手机号码、乘车时段、日期、发到站，点击开始。Go-Home 会一遍又一遍的登录并尝试购票，其间需要输入验证码（程序自动识别验证码会有不准的情况），直到出现如上图订票成功的提示，再去登录 12306.cn 网站，在线支付就可以了。</p>
<p>下载：<a href="http://code.google.com/p/go-home/" target="_blank">http://code.google.com/p/go-home/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/215/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>金陵十三钗The Flowers of War</title>
		<link>http://www.hencuo.com/archives/209</link>
		<comments>http://www.hencuo.com/archives/209#comments</comments>
		<pubDate>Mon, 02 Jan 2012 05:17:40 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[生活类]]></category>
		<category><![CDATA[legendary amazons]]></category>
		<category><![CDATA[love is not blind]]></category>
		<category><![CDATA[the flowers of war]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/archives/209</guid>
		<description><![CDATA[【影片原名】The Flowers of War 【中文译名】金陵十三钗 【出品年代】2011 年 【上映日期】2011年12月16日 中国 【国 家】中国/中国香港 【类 别】剧情/历史 【导 演】张艺谋 Yimou Zhang 【主 演】克里斯蒂安·贝尔 Christian Bale &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 倪妮 Ni Ni&#160; &#8230;.玉墨 佟大为 Dawei Tong &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 窦骁 Shawn Dou &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 渡部笃郎 Atsuro Watabe &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 曹可凡 Kefan Cao &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 陈乾奕 Qianyi Chen &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 聂远 Yuan Nie &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 涩谷天马 Tenma Shibuya &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 秦昊 [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://3.imgbed.com/158/201202/13325.jpg" width="335" height="469" />
<p>【影片原名】The Flowers of War    <br />【中文译名】金陵十三钗     <br />【出品年代】2011 年     <br />【上映日期】2011年12月16日 中国     <br />【国 家】中国/中国香港     <br />【类 别】剧情/历史     <br />【导 演】张艺谋 Yimou Zhang     <br />【主 演】克里斯蒂安·贝尔 Christian Bale     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 倪妮 Ni Ni&#160; &#8230;.玉墨 佟大为 Dawei Tong     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 窦骁 Shawn Dou     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 渡部笃郎 Atsuro Watabe     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 曹可凡 Kefan Cao     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 陈乾奕 Qianyi Chen     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 聂远 Yuan Nie     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 涩谷天马 Tenma Shibuya     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 秦昊 Qin Hao     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 来喜 Xi Lai     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 保罗·施耐德 Paul Schneider </p>
<h4>金陵十三钗The.Flowers.of.War.2011.HD.720p.DD2.0.x264</h4>
<p><a title="金陵十三钗The.Flowers.of.War.2011.HD.720p.DD2.0.x264" href="http://filemarkets.com/file/cooiky/1ac4955e/" target="_blank">金陵十三钗The.Flowers.of.War.2011.HD.720p.DD2.0.x264.torrent</a></p>
<h4>金陵十三钗The.Flowers.Of.War.2011.RErip.PROPER.XViD-ZJM</h4>
<p><a title="金陵十三钗The.Flowers.Of.War.2011.RErip.PROPER.XViD-ZJM" href="http://filemarkets.com/file/cooiky/902a8e26/" target="_blank">金陵十三钗The.Flowers.Of.War.2011.RErip.PROPER.XViD-ZJM.torrent</a></p>
<h4>失恋33天Love is Not Blind</h4>
<p><a title="失恋33天" href="http://filemarkets.com/file/cooiky/4995cef8/">失恋33天Love is Not Blind.torrent</a></p>
<h4>杨门女将之军令如山Legendary Amazons</h4>
<p><a title="杨门女将之军令如山Legendary Amazons" href="http://filemarkets.com/file/cooiky/849139c1/">杨门女将之军令如山Legendary Amazons.torrent</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/209/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2011</title>
		<link>http://www.hencuo.com/archives/206</link>
		<comments>http://www.hencuo.com/archives/206#comments</comments>
		<pubDate>Sat, 31 Dec 2011 08:49:28 +0000</pubDate>
		<dc:creator>半醒</dc:creator>
				<category><![CDATA[生活类]]></category>
		<category><![CDATA[2011]]></category>

		<guid isPermaLink="false">http://www.hencuo.com/archives/206</guid>
		<description><![CDATA[2009.12.31，2010 很挫，不错，前面两年都写的有，今年继续。 时间算是一半一半，上半年依旧是在广州，继续做着某个项目，历时一年+，但最后离开的时候还是没有上线，目前好像还在开发ING。 7月回到武汉，经历武汉的夏天，很热。 换了科室，之前在刚转正的时候也提过自己想法，不过当时没实现。 一年+不在，运维or网络都不熟悉了，目前情形是好像两边都不沾。 至于Java，还是没搞清楚领导的想法，一边在做些小的系统，另一方面却又显得重点不在这边，被动。 网络还是必须的，也许程序这块只要满足一般需要就OK，具体看明年领导态度。 还是很瘦，还是单身，还是无驾照，还是无房。宅。 无内容，无Passion，WTF, 2011S。]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hencuo.com/archives/35">2009.12.31</a>，<a href="http://www.hencuo.com/archives/108">2010 很挫</a>，不错，前面两年都写的有，今年继续。</p>
<p>时间算是一半一半，上半年依旧是在广州，继续做着某个项目，历时一年+，但最后离开的时候还是没有上线，目前好像还在开发ING。</p>
<p>7月回到武汉，经历武汉的夏天，很热。</p>
<p>换了科室，之前在刚转正的时候也提过自己想法，不过当时没实现。</p>
<p>一年+不在，运维or网络都不熟悉了，目前情形是好像两边都不沾。</p>
<p>至于Java，还是没搞清楚领导的想法，一边在做些小的系统，另一方面却又显得重点不在这边，被动。</p>
<p>网络还是必须的，也许程序这块只要满足一般需要就OK，具体看明年领导态度。</p>
<p>还是很瘦，还是单身，还是无驾照，还是无房。宅。</p>
<p>无内容，无Passion，WTF, 2011S。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hencuo.com/archives/206/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

