<?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"
>
<channel>
	<title>凯柯分享</title>
	<link>https://kaike.wodemo.com/</link>
        <item>
        <title><![CDATA[[代码]多选搜索]]></title>
		<link><![CDATA[https://kaike.wodemo.com/entry/420579]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 02 Dec 2016 14:46:11 -0800]]></pubDate>
        <description><![CDATA[支持搜索保存，删除等功能。代码如下：

演示：http://www.1st1st.ga/search.html


&lt;!doctype html&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml1&quot;&gt;

		&lt;head&gt;
				&lt;title&gt;搜索&lt;/title&gt;
				&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
				&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,user-scalable=yes&quot; /&gt;
				&lt;style type=&quot;text/css&quot;&gt;
						body {
								text-align: center;
								font: 85% &quot;Microsoft Yahei&quot;, &quot;微软雅黑&quot;, &quot;黑体&quot;;
								max-width: 400px;
						}
						
						input,
						textarea,
						select,
						button {
								border: 1px solid rgba(137, 179, 168, 214);
						}
						
						select {
								position: fixed;
								top: 12px;
						}
						
						button {
								border: none;
								background: rgba(245, 245, 245, 245);
								padding: 5px;
								width: 48%;
								color: rgba(137, 179, 168, 214);
						}
						
						#main {
								position: absolute;
								width: 95%;
								top: 50px;
								background: rgba(250, 250, 250, 250);
								padding: 4px;
								display: none
						}
						
						.keywords {
								padding-bottom: 4px;
								border-bottom: 1px solid black;
						}
						
						li {
								text-align: left;
						}
						
						.delete,
						.uptop {
								float: right;
						}
				&lt;/style&gt;
				&lt;script type=&quot;text/javascript&quot;&gt;
						/* Powered by Kaike|2016/10/09 02:34:45 */
						function createElements(g, i) {
								for (var p in i) {
										if (typeof p != &quot;object&quot;) {
												var a = document.createElement(p);
												for (var j = 0; j &lt; i[p].length; ++j)
														if (i[p][j].length &gt;= 2) {
																a.setAttribute(i[p][j][0], i[p][j][1]);
														} else {
																for (var k in i[p][j])
																		a[k] = i[p][j][k];
														}
										}
								}
								return g.appendChild(a);
						}
						var search = function(f) {
								var g = document.getElementById(&quot;search&quot;);
								createElements(g, {
										&quot;textarea&quot;: [
												[&quot;id&quot;, &quot;query&quot;],
												[&quot;placeholder&quot;, &quot;请输入搜索关键字&quot;],
												[&quot;onclick&quot;, &quot;search.hideHis();&quot;]
										]
								});
								var o = createElements(g, {
										&quot;select&quot;: [
												[&quot;id&quot;, &quot;url&quot;],
												[&quot;onchange&quot;, &quot;search.change(this);&quot;]
										]
								});
								createElements(o, {
										&quot;option&quot;: [{
												&quot;value&quot;: &quot;https://www.baidu.com/s?word=&quot;
										}, {
												&quot;innerHTML&quot;: &quot;百度&quot;
										}]
								});
								createElements(o, {
										&quot;option&quot;: [{
												&quot;value&quot;: &quot;https://m.sogou.com/web/searchList.jsp?keyword=&quot;
										}, {
												&quot;innerHTML&quot;: &quot;搜狗&quot;
										}]
								});
								createElements(o, {
										&quot;option&quot;: [{
												&quot;value&quot;: &quot;https://www.google.com.hk/s?q=&quot;
										}, {
												&quot;innerHTML&quot;: &quot;谷歌&quot;
										}]
								});
								createElements(g, {
										&quot;div&quot;: [
												[&quot;id&quot;, &quot;main&quot;]
										]
								});
								createElements(g, {
										&quot;br&quot;: []
								});
								createElements(g, {
										&quot;button&quot;: [{
														&quot;innerHTML&quot;: &quot;搜索&quot;
												},
												[&quot;onclick&quot;, &quot;search.run();&quot;]
										]
								});
								createElements(g, {
										&quot;button&quot;: [{
														&quot;innerHTML&quot;: &quot;清空&quot;
												},
												[&quot;onclick&quot;, &quot;search.reset();&quot;]
										]
								});
								createElements(g, {
										&quot;div&quot;: [
												[&quot;id&quot;, &quot;exit&quot;],
												[&quot;style&quot;, &quot;padding:100%&quot;]
										]
								});
								var k = (typeof f == &quot;undefined&quot;) ? 5 : f;
								search.setCookie(&quot;save_size&quot;, k, 365);
						};
						search.run = function() {
								var g = document.getElementById(&quot;query&quot;);
								var u = document.getElementById(&quot;url&quot;);
								if (g.value == &quot;&quot;) {
										alert(&quot;请输入搜索关键字&quot;);
										return false;
								}
								var str = g.value.replace(/\&gt;/g, &quot;&amp;gt;&quot;).replace(/\&lt;/g, &quot;&amp;lt;&quot;).replace(/\,/g, &quot;%2C&quot;);
								var hisqr = this.getCookie(&quot;history_query&quot;);
								hisqr = hisqr.replace(str + &quot;,&quot;, &quot;&quot;);
								this.setCookie(&quot;history_query&quot;, str + &quot;,&quot; + hisqr, 365);
								this.go(u.value, true);
						};
						search.reset = function(s) {
								var g = document.getElementById(&quot;query&quot;);
								g.value = typeof s == &quot;undefined&quot; ? &quot;&quot; : s;
						};
						search.hideHis = function() {
								var p = document.getElementById(&quot;main&quot;);
								var s = this.getCookie(&quot;history_query&quot;);
								var f = this.getCookie(&quot;save_size&quot;);
								s = s.split(&quot;,&quot;);
								p.innerHTML = &quot;&quot;;
								if (s != &quot;&quot;) {
										p.style.display = &quot;block&quot;;
								} else {
										p.style.display = &quot;none&quot;;
								}
								for (var i = 0; i &lt; s.length - 1; i++) {
										if (i != f) {
												var istr = s[i].length &gt; 20 ? s[i].substring(0, 20) + &quot;...&quot; : s[i];
												istr = istr.replace(/\%2C/g, &quot;,&quot;);
												r = createElements(p, {
														&quot;li&quot;: [
																[&quot;class&quot;, &quot;keywords&quot;]
														]
												});
												createElements(r, {
														&quot;span&quot;: [
																[&quot;class&quot;, &quot;keyword&quot;],
																[&quot;onclick&quot;, &quot;search.add(&quot; + i + &quot;);&quot;], {
																		&quot;innerHTML&quot;: istr
																}
														]
												});
												createElements(r, {
														&quot;span&quot;: [{
																		&quot;innerHTML&quot;: &quot;✘&quot;
																},
																[&quot;class&quot;, &quot;delete&quot;],
																[&quot;onclick&quot;, &quot;search.deletes(&quot; + i + &quot;);&quot;]
														]
												}, true);
										}
								}
								if ((s.length - 1) &gt;= 1) {
										createElements(p, {
												&quot;br&quot;: []
										});
										createElements(p, {
												&quot;span&quot;: [
														[&quot;class&quot;, &quot;all&quot;],
														[&quot;onclick&quot;, &quot;search.deleteall();&quot;], {
																&quot;innerHTML&quot;: &quot;删除全部记录&quot;
														}
												]
										});
										createElements(p, {
												&quot;span&quot;: [
														[&quot;class&quot;, &quot;uptop&quot;],
														[&quot;onclick&quot;, &quot;search.exit();&quot;], {
																&quot;innerHTML&quot;: &quot;▲&quot;
														}
												]
										});
								}
						};
						search.add = function(i) {
								var g = this.getCookie(&quot;history_query&quot;);
								g = g.split(&quot;,&quot;);
								g = g[i].replace(/\&amp;gt\;/ig, &quot;&gt;&quot;).replace(/\&amp;lt\;/ig, &quot;&lt;&quot;).replace(/\%2C/g, &quot;,&quot;);
								this.reset(g);
						}
						search.deletes = function(s) {
								var g = this.getCookie(&quot;history_query&quot;);
								var p = g.split(&quot;,&quot;);
								if (confirm(&quot;确认删除该搜索关键字？\n\r&quot; + p[s].replace(/\&amp;gt\;/ig, &quot;&gt;&quot;).replace(/\&amp;lt\;/ig, &quot;&lt;&quot;).replace(/\%2C/g, &quot;,&quot;))) {
										g = g.replace(p[s] + &quot;,&quot;, &quot;&quot;);
										this.setCookie(&quot;history_query&quot;, g, 365);
										this.hideHis();
										return true;
								}
								return false;
						};
						search.deleteall = function() {
								if (confirm(&quot;确认删除全部历史记录？&quot;)) {
										this.setCookie(&quot;history_query&quot;, &quot;&quot;, 365);
										this.hideHis();
										return true;
								}
								return false;
						}
						search.exit = function() {
								var g = document.getElementById(&quot;main&quot;);
								g.style.display = &quot;none&quot;;
						}
						search.change = function(p) {
								this.go(p.value, false);
						};
						search.setCookie = function(name, value, expire, path, domain, secure) {
								var time = new Date(),
										cstr = &quot;&quot;;
								time.setDate(time.getDay() + expire);
								cstr = name + &quot;=&quot; + encodeURIComponent(value) + &quot;; &quot;;
								cstr += &quot;Expires=&quot; + time.toGMTString() + &quot;; &quot;;
								cstr += &quot;Path=&quot; + ((typeof path == &quot;undefined&quot;) ? &quot;/&quot; : path) + &quot;; &quot;;
								cstr += &quot;Domain=&quot; + ((typeof domain == &quot;undefined&quot;) ? window.location.host : domain) + &quot;; &quot;;
								cstr += (typeof secure == &quot;undefined&quot;) ? &quot;&quot; : &quot;secure; &quot;;
								document.cookie = cstr;
						};
						search.getCookie = function(name) {
								var ex = [],
										bx = [];
								ex = document.cookie.split(&quot;; &quot;);
								for (var i = 0, j = ex.length; i &lt; j; i++) {
										bx = ex[i].split(&quot;=&quot;);
										if (bx[0] == name) {
												return decodeURIComponent(bx[1]);
										}
								}
								return &quot;&quot;;
						};
						search.go = function(u, t) {
								var s = document.getElementById(&quot;query&quot;);
								if (t === true) {
										window.location = u + encodeURIComponent(s.value);
								}
						}
						window.onload = function() {
								search(15);
								var g = document.getElementById(&quot;exit&quot;);
								g.onclick = function() {
										search.exit();
								};
								//alert(document.body.innerHTML);
						}
				&lt;/script&gt;
		&lt;/head&gt;

		&lt;body&gt;
				&lt;div id=&quot;search&quot;&gt;&lt;/div&gt;
		&lt;/body&gt;

&lt;/html&gt;]]></description>
    </item>
        <item>
        <title><![CDATA[[自写] JavaScript 创建元素及属性函数]]></title>
		<link><![CDATA[https://kaike.wodemo.com/entry/415436]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Thu, 20 Oct 2016 14:02:59 -0700]]></pubDate>
        <description><![CDATA[该函数为自定义函数:

function createElements(g,i){
for(var p in i){
if(typeof p!="object"){
var a=document.createElement(p);
for(var j=0;j=2){
a.setAttribute(i[p][j][0],i[p][j][1]);
}else{
for(var k in i[p][j])
a[k]=i[p][j][k];
}
}
}
return g.appendChild(a);
}

例如：
&lt;script type=&quot;text/javascript&quot;&gt;
function createElements(g,i){
for(var p in i){
if(typeof p!=&quot;object&quot;){
var a=document.createElement(p);
for(var j=0;j&lt;i[p].length;++j)
if(i[p][j].length&gt;=2){
a.setAttribute(i[p][j][0],i[p][j][1]);
}else{
for(var k in i[p][j])
a[k]=i[p][j][k];
}
}
}
return g.appendChild(a);
}
window.onload=function(){
createElements(document.body,{&quot;span&quot;:[[&quot;class&quot;,&quot;myDiv&quot;],{&quot;innerHTML&quot;:&quot;这是测试内容&quot;}]});
}
&lt;/script&gt;

以上输出：

&lt;span class=&quot;myDiv&quot;&gt;这是测试内容&lt;/span&gt;]]></description>
    </item>
        <item>
        <title><![CDATA[IMG_20160914_174003.jpg]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/412246]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Thu, 15 Sep 2016 04:21:31 -0700]]></pubDate>
        <description><![CDATA[File Size: 1.33 MiB&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/412246">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[Windows10Upgrade9194.exe]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/402287]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Thu, 23 Jun 2016 19:53:11 -0700]]></pubDate>
        <description><![CDATA[File Size: 5.52 MiB&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/402287">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[Windows10UpgraderApp.exe]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/402286]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Thu, 23 Jun 2016 19:51:59 -0700]]></pubDate>
        <description><![CDATA[File Size: 1.16 MiB&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/402286">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[Screenshot_2016-05-31-12-41-09.png]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/400042]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 30 May 2016 21:44:28 -0700]]></pubDate>
        <description><![CDATA[File Size: 1.39 MiB&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/400042">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[Cash Cash - Overtime.mp3]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/400014]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 30 May 2016 11:55:25 -0700]]></pubDate>
        <description><![CDATA[File Size: 9.42 MiB&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/400014">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[kaike.min.js]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/399427]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Thu, 26 May 2016 22:45:43 -0700]]></pubDate>
        <description><![CDATA[File Size: 5.8 KiBWord Count: 5,943&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/399427">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[PHP文件断点续传类]]></title>
		<link><![CDATA[https://kaike.wodemo.com/entry/398846]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sat, 21 May 2016 07:47:10 -0700]]></pubDate>
        <description><![CDATA[该类在个人PHP程序：https://kaike.wodemo.net/file/430523中使用，使用方法：
&lt;?php
include &quot;FileDownload.class.php&quot;;
$d = new FileDownload();
$d -&gt; download(&quot;./test.mp3&quot;);//$d -&gt; download(&quot;./test.mp3&quot;, time() . &quot;.mp3&quot;, &quot;audio/mpeg&quot;, true, true)
?&gt;

代码如下：

&lt;?php
/*
 * File download class（文件断点续传下载类）
 * author Kaike Network
 * date 2016/03/28 18:35:08
 * ver 1.1
 * site https://kaike.wodemo.net
 */

class fileDownload {

		/*
		 * $file -- 文件路径
		 * $name -- 文件名
		 * $type -- MIME类型
		 * $reload -- 是否打开断点续传
		 * $isname -- header头是否插入文件名
		 */
		public function download($file, $name = &quot;&quot;, $type = &quot;&quot;, $reload = true, $isname = true) {
				if (file_exists($file)) {
						if (empty($name)) {
								$name = explode(&quot;/&quot;, $file);
								$name = array_pop($name);
						}
						if (empty($type)) {
								$type = $this -&gt; getMime($name);
						}
						$size = filesize($file);
						$range = $this -&gt; getRange($size);
						$fp = fopen($file, &quot;rb&quot;);
						if (is_array($range) &amp;&amp; $reload) {
								header(&quot;HTTP/1.1 206 Partial Content&quot;, true, &quot;206&quot;);
								header(&quot;Content-Length: &quot; . (($range[&quot;end&quot;] - $range[&quot;start&quot;]) + 1));
								header(&quot;Content-Range: bytes &quot; . $range[&quot;start&quot;] . &quot;-&quot; . $range[&quot;end&quot;] . &quot;/&quot; . $size);
								fseek($fp, $range[&quot;start&quot;]);
						} else {
								header(&quot;HTTP/1.1 200 OK&quot;, true, &quot;200&quot;);
								header(&quot;Content-Length: &quot; . $size);
						}
						if ($isname == true) {
								header(&quot;Content-Disposition: attachment; filename=&quot; . $name);
						}
						header(&quot;Cache-Control: no-cache&quot;);
						header(&quot;Pragma: no-cache&quot;);
						header(&quot;Content-Type: &quot; . $type);
						header(&quot;Accept-Ranges: bytes&quot;);
						while (!feof($fp)) {
								echo fread($fp, 1024);
								if (ftell($fp) == $size || ftell($fp) == $range[&quot;end&quot;]) {
										break;
								}
						}
						fclose($fp);
				} else {
						header(&quot;HTTP/1.1 404 Not Found&quot;, true, &quot;404&quot;);
						return null;
				}
		}

		/*
		 * $name -- 从字符串中提取文件MIME类型
		 * $mime -- MIME数组
		 */
		private function getMime($name, $mime = &quot;&quot;) {
				$ex = explode(&quot;.&quot;, $name);
				$type = array_pop($ex);
				if (empty($mime)) {
						$mime = array(
								&quot;apk&quot; =&gt; &quot;application/vnd.android.package-archive&quot;,
								&quot;bmp&quot; =&gt; &quot;image/bmp&quot;,
								&quot;jpg&quot; =&gt; &quot;image/jpeg&quot;,
								&quot;png&quot; =&gt; &quot;image/png&quot;,
								&quot;jpeg&quot; =&gt; &quot;image/jpeg&quot;,
								&quot;gif&quot; =&gt; &quot;image/gif&quot;,
								&quot;ico&quot; =&gt; &quot;image/x-icon&quot;,
								&quot;svg&quot; =&gt; &quot;image/svg+xml&quot;,
								&quot;mp3&quot; =&gt; &quot;audio/mpeg&quot;,
								&quot;mp4&quot; =&gt; &quot;video/mp4&quot;,
								&quot;js&quot; =&gt; &quot;text/javascript&quot;,
								&quot;css&quot; =&gt; &quot;text/css&quot;,
								&quot;json&quot; =&gt; &quot;application/json&quot;,
								&quot;htm&quot; =&gt; &quot;text/html&quot;,
								&quot;html&quot; =&gt; &quot;text/html&quot;,
								&quot;txt&quot; =&gt; &quot;text/plain&quot;,
								&quot;jar&quot; =&gt; &quot;application/java-archive&quot;,
								&quot;zip&quot; =&gt; &quot;application/zip&quot;,
								&quot;tar&quot; =&gt; &quot;application/x-tar&quot;,
								&quot;gz&quot; =&gt; &quot;application/x-gzip&quot;,
								&quot;rar&quot; =&gt; &quot;application/rar&quot;,
								&quot;tgz&quot; =&gt; &quot;application/x-compressed&quot;
						);
				}
				return (empty($mime[$type])) ? &quot;application/octet-stream&quot; : $mime[$type];
		}

		/*
		 * $size -- 文件大小
		 */
		private function getRange($size) {
				$getrange = preg_replace(&quot;/(\r\n|\r|\n|\x20)/&quot;, &quot;&quot;, $_SERVER[&quot;HTTP_RANGE&quot;]);
				if (isset($getrange) &amp;&amp; !empty($getrange)) {
						preg_match(&quot;/bytes=([\-\,0-9]+)/i&quot;, $getrange, $range); 
						$rangea = explode(&quot;,&quot;, $range[1]);
						$ranges = explode(&quot;-&quot;, $rangea[0]);
						$rgs[&quot;start&quot;] = is_numeric($ranges[0]) ? $ranges[0] : 0;
						$rgs[&quot;end&quot;] = is_numeric($ranges[1]) ? $ranges[1] : ($size - 1);
						return $rgs;
				} else {
						return null;
				}
		}
}
?&gt;]]></description>
    </item>
        <item>
        <title><![CDATA[LOL新版客户端下载器.exe]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/398570]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 20 May 2016 00:58:24 -0700]]></pubDate>
        <description><![CDATA[File Size: 3.21 MiBWord Count: 5,943&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/398570">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[百度翻译语音接口]]></title>
		<link><![CDATA[https://kaike.wodemo.com/entry/398084]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sun, 15 May 2016 09:23:20 -0700]]></pubDate>
        <description><![CDATA[接口地址：http://tts.baidu.com/text2audio?lan=zh&amp;ie=UTF-8&amp;text=任何文字

可以为进入网站的人语音介绍你的网站

*注意该接口不支持HTTPS协议，HTTPS类型加密的网站部分浏览器不支持调用HTTP协议资源]]></description>
    </item>
        <item>
        <title><![CDATA[2016 Mid -Season Invitational - Opening Ceremony.mp3]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/397718]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Thu, 12 May 2016 18:18:53 -0700]]></pubDate>
        <description><![CDATA[File Size: 16.82 MiBWord Count: 5,943&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/397718">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[PageKiteApp.apk]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/397593]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Wed, 11 May 2016 20:07:47 -0700]]></pubDate>
        <description><![CDATA[File Size: 2.03 MiBWord Count: 5,943Orignal Name: PageKiteVersion: 1.006ID：net.pagekite.app&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/397593">Browse</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/397593">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[凯柯文件上传正式版更新.zip]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/397316]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 09 May 2016 00:22:25 -0700]]></pubDate>
        <description><![CDATA[File Size: 15.73 KiBWord Count: 5,943Orignal Name: PageKiteVersion: 1.006ID：net.pagekite.app&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/397316">Decompress</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/397316">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[i2p.apk]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/396979]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 06 May 2016 15:33:14 -0700]]></pubDate>
        <description><![CDATA[File Size: 4.73 MiBWord Count: 5,943Orignal Name: I2PVersion: 0.9.25ID：net.i2p.android&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/396979">Browse</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/396979">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[lantern-installer-beta.exe]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/396975]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 06 May 2016 15:04:48 -0700]]></pubDate>
        <description><![CDATA[File Size: 5.32 MiBWord Count: 5,943Orignal Name: I2PVersion: 0.9.25ID：net.i2p.android&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/396975">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[lantern-installer-beta.apk]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/396973]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 06 May 2016 15:03:10 -0700]]></pubDate>
        <description><![CDATA[File Size: 5.15 MiBWord Count: 5,943Orignal Name: LanternVersion: 1.0.20160412223742ID：org.getlantern.lantern&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/396973">Browse</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/396973">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[FreeBrowser.apk]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/396972]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 06 May 2016 14:56:59 -0700]]></pubDate>
        <description><![CDATA[File Size: 20.93 MiBWord Count: 5,943Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/396972">Browse</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/396972">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[glype-1.4.15.zip]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/396658]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Wed, 04 May 2016 04:24:55 -0700]]></pubDate>
        <description><![CDATA[File Size: 238.33 KiBWord Count: 5,943Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/396658">Decompress</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/396658">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[代码高亮JS.zip]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/396539]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 02 May 2016 20:48:03 -0700]]></pubDate>
        <description><![CDATA[File Size: 36.22 KiBWord Count: 5,943Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/396539">Decompress</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/396539">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[On The Radio - Groove Coverage.mp3]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/395523]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 25 Apr 2016 21:46:25 -0700]]></pubDate>
        <description><![CDATA[File Size: 2.78 MiBWord Count: 5,943Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/395523">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[I Want My Tears Back - Nightwish.mp3]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/395522]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 25 Apr 2016 21:45:06 -0700]]></pubDate>
        <description><![CDATA[File Size: 7.05 MiBWord Count: 5,943Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/395522">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[JS悬浮特效]]></title>
		<link><![CDATA[https://kaike.wodemo.com/entry/394932]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sat, 23 Apr 2016 05:07:21 -0700]]></pubDate>
        <description><![CDATA[&lt;div id=&quot;StayPosition&quot; style=&quot;position:absolute;top:5px;&quot;&gt;
&lt;img src=&quot;/down/20160423/394931/LOL%E5%8E%9F%E7%94%BB.jpg&quot; width=&quot;80&quot; onmouseover=&quot;this.style.width='50%';&quot; onmouseout=&quot;this.style.width='5%'&quot;&gt;
&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;/down/394915/scrollwindow.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var float_s= new StayPosition(0.2);//滑动速度
float_s.add(document.getElementById(&quot;StayPosition&quot;),&quot;top&quot;);
float_s.start();
&lt;/script&gt;




var float_s= new StayPosition(0.2);//滑动速度
float_s.add(document.getElementById("StayPosition"),"top");
float_s.start();

]]></description>
    </item>
        <item>
        <title><![CDATA[LOL原画.jpg]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/394931]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sat, 23 Apr 2016 05:01:12 -0700]]></pubDate>
        <description><![CDATA[File Size: 0.73 MiBWord Count: 5,943Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/394931">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[scrollwindow.js]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/394915]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sat, 23 Apr 2016 04:02:36 -0700]]></pubDate>
        <description><![CDATA[File Size: 1.95 KiBWord Count: 1,994Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/394915">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[There Goes My Baby - Enrique Iglesias.mp3]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/392933]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Fri, 08 Apr 2016 09:31:50 -0700]]></pubDate>
        <description><![CDATA[File Size: 3.03 MiBWord Count: 1,994Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/392933">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[ApkImage.php]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/389567]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sat, 12 Mar 2016 15:48:41 -0800]]></pubDate>
        <description><![CDATA[File Size: 7.06 KiBWord Count: 7,214Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/389567">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[留言板表情]]></title>
		<link><![CDATA[https://kaike.wodemo.com/entry/385071]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Wed, 10 Feb 2016 06:30:05 -0800]]></pubDate>
        <description><![CDATA[$.ready(function(){
var h=$(&quot;body&quot;),b=h.html(),str=&quot;&quot;;
var p=/\[([0-9]+)\]/ig;
if(p.test(b)){
h.html(b.replace(p,'&lt;img src=&quot;/browse/dl/384422/emoji/$1.png&quot; /&gt;'));
}
for(var i=0;i&lt;40;i++){
str+='&lt;tr&gt;&lt;td&gt;&lt;b&gt;['+(i+1)+']:&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;img src=&quot;/browse/dl/384422/emoji/'+(i+1)+'.png&quot; onclick=&quot;setFace('+(i+1)+');&quot;&gt;&lt;/td&gt;&lt;/tr&gt;';
}
$(&quot;.faceMain&quot;).html(str);
});
function setFace(i){
var a=$(&quot;.wo-reply-textarea&quot;);
if(a.val()==&quot;&quot;){
a.val(&quot;[&quot;+i+&quot;] &quot;);
}else{
a.val(a.val()+&quot;[&quot;+i+&quot;] &quot;);
}
}查看示例》》]]></description>
    </item>
        <item>
        <title><![CDATA[emoji表情.zip]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/384422]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Mon, 01 Feb 2016 05:47:48 -0800]]></pubDate>
        <description><![CDATA[File Size: 0.61 MiBWord Count: 7,214Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/384422">Decompress</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/384422">Meta</a>]]></description>
    </item>
        <item>
        <title><![CDATA[JQuery左右滑动特效.zip]]></title>
		<link><![CDATA[https://kaike.wodemo.com/file/384250]]></link>
		<dc:creator><![CDATA[凯柯网络 (@kaike)]]></dc:creator>
		<pubDate><![CDATA[Sat, 30 Jan 2016 17:16:32 -0800]]></pubDate>
        <description><![CDATA[File Size: 136.77 KiBWord Count: 7,214Orignal Name: FreeBrowserVersion: 1.9.10.auID：org.greatfire.freebrowser&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/browse/384250">Decompress</a>&nbsp;|&nbsp;<a href="https://kaike.wodemo.com/meta/384250">Meta</a>]]></description>
    </item>
    </channel>
</rss>
