<?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.shenaiqiu.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shenaiqiu.com</link>
	<description>深爱邱&#124;每天爱你多一些</description>
	<lastBuildDate>Tue, 31 Aug 2010 06:33:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress 3.0.1 升级吗？</title>
		<link>http://www.shenaiqiu.com/archives/wordpress/1230.html</link>
		<comments>http://www.shenaiqiu.com/archives/wordpress/1230.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 06:10:29 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1230</guid>
		<description><![CDATA[　我很大声的说，不升。
　呵呵，不知道现在用的主题是否支持 3.0.1 ，安全起见。... ]]></description>
			<content:encoded><![CDATA[<p>　我很大声的说，不升。</p>
<p>　呵呵，不知道现在用的主题是否支持 3.0.1 ，安全起见。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/wordpress/1230.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 模板代码调用说明（一）</title>
		<link>http://www.shenaiqiu.com/archives/wordpress/1209.html</link>
		<comments>http://www.shenaiqiu.com/archives/wordpress/1209.html#comments</comments>
		<pubDate>Wed, 07 Jul 2010 05:29:11 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[模板]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1209</guid>
		<description><![CDATA[　　网上收集到的 wordpress 调用代码，官方已经放出新的3.0版本，所以部份调用代码可能有调整。
一、Wordpress 模板基本文件说明
　　1.style.css 样式表文件
　　2.index.php 主页文件
　　3.single.php ... ]]></description>
			<content:encoded><![CDATA[<p>　　网上收集到的 wordpress 调用代码，官方已经放出新的3.0版本，所以部份调用代码可能有调整。</p>
<p>一、Wordpress 模板基本文件说明</p>
<p>　　1.style.css 样式表文件<br />
　　2.index.php 主页文件<br />
　　3.single.php 日志单页文件<br />
　　4.page.php 页面文件<br />
　　5.archvie.php 分类和日期存档页文件<br />
　　6.searchform.php 搜索表单文件<br />
　　7.search.php 搜索页面文件<br />
　　8.comments.php 留言区域文件(包括留言列表和留言框)<br />
　　9.404.php 404错误页面<br />
　　10.header.php 网页头部文件<br />
　　11.sidebar.php 网页侧边栏文件<br />
　　12.footer.php 网页底部文件</p>
<p><span id="more-1209"></span>二、Wordpress Header头部 PHP代码<br />
注: PHP代码必须放置在 和 在之间<br />
　　1.网站标题</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('name');--&gt;</pre></div></div>

<p>　　2.日志或页面标题　</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p wp_title();--&gt;</pre></div></div>

<p>　　3.Wordpress主题样式表文件style.css的相对地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo(’stylesheet_url');--&gt;</pre></div></div>

<p>　　4.Wordpress博客的Pingback地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('pingback_url');--&gt;</pre></div></div>

<p>　　5.Wordpress主题文件的相对地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('template_url');--&gt;</pre></div></div>

<p>　　6.博客的Wordpress版本</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('version');--&gt;</pre></div></div>

<p>　　7.Wordpress博客的Atom地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('atom_url');--&gt;</pre></div></div>

<p>　　8.Wordpress博客的RSS2地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('rss2_url');--&gt;</pre></div></div>

<p>　　9.Wordpress博客的绝对地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('url');--&gt;</pre></div></div>

<p>　　10.Wordpress博客的名称</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('name');--&gt;</pre></div></div>

<p>　　11.网站的HTML版本</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('html_type');--&gt;</pre></div></div>

<p>　　12.网站的字符编码格式</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('charset');--&gt;</pre></div></div>

<p>三、Wordpress 主体模板 PHP代码<br />
　　1.日志内容</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_content();--&gt;</pre></div></div>

<p>　　2.确认是否有日志</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p if(have_posts()) :--&gt;</pre></div></div>

<p>　　3.如果有，则显示全部日志　　</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p while(have_posts()) : the_post();--&gt;</pre></div></div>

<p>　　4.结束PHP函数”while”</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p endwhile;--&gt;</pre></div></div>

<p>　　5.结束PHP函数“if”</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p endif;--&gt;</pre></div></div>

<p>　　6.header.php文件的内容</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p get_header();--&gt;</pre></div></div>

<p>　　7.sidebar.php文件的内容</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p get_sidebar();--&gt;</pre></div></div>

<p>　　8.comments.php文件的内容</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p comments_template();--&gt;</pre></div></div>

<p>　　9.footer.php文件的内容</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p get_footer();--&gt;</pre></div></div>

<p>　　10.显示格式为“02-19-08”的日期</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_time('m-d-y')--&gt;</pre></div></div>

<p>　　11.显示一篇日志的留言链接</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p comments_popup_link();--&gt;</pre></div></div>

<p>　　12.显示一篇日志或页面的标题</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_title();--&gt;</pre></div></div>

<p>　　13.显示一篇日志或页面的永久链接/URL地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_permalink()--&gt;</pre></div></div>

<p>　　14.显示一篇日志或页面的所属分类</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_category(',')--&gt;</pre></div></div>

<p>　　15.显示一篇日志或页面的作者</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_author();--&gt;</pre></div></div>

<p>　　16.显示一篇日志或页面的ID</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p the_ID();--&gt;</pre></div></div>

<p>　　17显示一篇日志或页面的编辑链接</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p edit_post_link();--&gt;</pre></div></div>

<p>　　18.显示Blogroll中的链接</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p get_links_list();--&gt;</pre></div></div>

<p>　　19.显示一份博客的页面列表</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p wp_list_pages();--&gt;</pre></div></div>

<p>　　20.显示一份博客的分类列表</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p wp_list_cats();--&gt;</pre></div></div>

<p>　　21.下一篇日志的URL地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p next_post_link('%link')--&gt;</pre></div></div>

<p>　　22.上一篇日志的URL地址</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p previous_post_link('%link')--&gt;</pre></div></div>

<p>　　23.调用日历</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p get_calendar();--&gt;</pre></div></div>

<p>　　24.显示一份博客的日期存档列表</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p wp_get_archives()--&gt;</pre></div></div>

<p>　　25.显示较新日志链接(上一页)和较旧日志链接（下一页）</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p posts_nav_link();--&gt;</pre></div></div>

<p>　　26.显示博客的描述信息</p>

<div class="wp_syntax"><div class="code"><pre class="lan" style="font-family:monospace;">&lt;!--p bloginfo('description');--&gt;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/wordpress/1209.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Name.com &#8211; 6月优惠码</title>
		<link>http://www.shenaiqiu.com/archives/domains/1196.html</link>
		<comments>http://www.shenaiqiu.com/archives/domains/1196.html#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:10:45 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[优惠码]]></category>
		<category><![CDATA[域名注册]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1196</guid>
		<description><![CDATA[　　优惠码只适用于 .COM和.NET域名注册、续费和转移，据说优惠码的有效期是6月30日，需要的赶紧了。
　　$8.15 优惠码：SAVENOW... ]]></description>
			<content:encoded><![CDATA[<p>　　优惠码只适用于 .COM和.NET域名注册、续费和转移，据说优惠码的有效期是6月30日，需要的赶紧了。</p>
<p>　　$8.15 优惠码：<span style="color: #ff0000;">SAVENOW</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/domains/1196.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>6月GoDaddy优惠码，域名注册 $5.99</title>
		<link>http://www.shenaiqiu.com/archives/domains/1193.html</link>
		<comments>http://www.shenaiqiu.com/archives/domains/1193.html#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:04:09 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[GoDaddy优惠码]]></category>
		<category><![CDATA[优惠码]]></category>
		<category><![CDATA[域名注册]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1193</guid>
		<description><![CDATA[　　优惠码只适用于 .COM 域名注册与转移，仅限5个域名，不支持支付宝付款。有少许失望，不过也没有想注册的域名。
　　$5.99 优惠码：gofivgcn2... ]]></description>
			<content:encoded><![CDATA[<p>　　优惠码只适用于 .COM 域名注册与转移，仅限5个域名，不支持支付宝付款。有少许失望，不过也没有想注册的域名。</p>
<p>　　$5.99 优惠码：<span style="color: #ff0000;">gofivgcn2</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/domains/1193.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Imagetwist &#8211; 可以赚钱的外链免费图片空间介绍</title>
		<link>http://www.shenaiqiu.com/archives/make-money/1187.html</link>
		<comments>http://www.shenaiqiu.com/archives/make-money/1187.html#comments</comments>
		<pubDate>Sun, 06 Jun 2010 17:30:59 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Make-Money]]></category>
		<category><![CDATA[免费图片空间]]></category>
		<category><![CDATA[免费空间]]></category>
		<category><![CDATA[网赚]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1187</guid>
		<description><![CDATA[　　今天给大家介绍一个即支持外链又可以赚美元的国外免费图片空间。就是有这种好事，ImageTwist.com 国外一个新建的免费图片空间，可以上传、分享图片，最重要的是当别人浏览你的图片时... ]]></description>
			<content:encoded><![CDATA[<p>　　今天给大家介绍一个即支持外链又可以赚美元的国外免费图片空间。就是有这种好事，<a href="http://imagetwist.com/?op=registration&amp;ref=ilovebux" target="_blank">ImageTwist.com</a> 国外一个新建的免费图片空间，可以上传、分享图片，最重要的是当别人浏览你的图片时就能给赚取点数，点数是可以换钱的。</p>
<p>　　注册成为会员后你将获得一个50G图片空间，单张图片最大为10M，可批量上传10张图片，支持直接从本地上传，也可通过图片网址来上传。每1000次展示可以得到1.05美元，20000点数可以兑换5美元，你邀请注册的会员还可以得到下线10%提成。有兴趣的朋友可以参于一下。</p>
<p>　　1、美国、英国、加拿大<br />
　　4.20积分单次展示（1.05美元每1000次展示）</p>
<p>　　2、澳大利亚、奥地利、比利时、丹麦、芬兰、法国、德国、意大利、列支敦士登、卢森堡、摩纳哥、荷兰、西班牙、瑞典、瑞士<br />
　　1.20积分单次展示（0.30美元每1000次展）</p>
<p>　　3、香港、冰岛、爱尔兰、日本、新西兰、挪威、葡萄牙、俄罗斯、新加坡<br />
0.40积分单次展示（0.10美元每1000次展）</p>
<p>　　网站地址：<a href="http://imagetwist.com/?op=registration&amp;ref=ilovebux" target="_blank">http://www.imagetwist.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/make-money/1187.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Megaproxy &#8211; 美国免费在线代理服务器</title>
		<link>http://www.shenaiqiu.com/archives/hosting/1184.html</link>
		<comments>http://www.shenaiqiu.com/archives/hosting/1184.html#comments</comments>
		<pubDate>Wed, 02 Jun 2010 18:19:30 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[代理服务器]]></category>
		<category><![CDATA[免费代理服务器]]></category>
		<category><![CDATA[在线代理]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1184</guid>
		<description><![CDATA[　　Megaproxy是美国一家免费在线代理服务器商，支持SSL加密传输，可以访问https协议的网站。支持中文网站。无广告，每5小时只能访问60个页面、文件限制大小为200K、不支持多媒体文件。
　　... ]]></description>
			<content:encoded><![CDATA[<p>　　Megaproxy是美国一家免费在线代理服务器商，支持SSL加密传输，可以访问https协议的网站。支持中文网站。无广告，每5小时只能访问60个页面、文件限制大小为200K、不支持多媒体文件。</p>
<p>　　登录网站后在 ADDRESS 后的输入框输入网址，点右边的“SURF”按钮即可匿名访问网站.</p>
<p>　　网站地址：<a href="https://www.megaproxy.com/freesurf/">https://www.megaproxy.com/freesurf/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/hosting/1184.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VPN98、MacroVPN两款美国免费VPN代理服务器</title>
		<link>http://www.shenaiqiu.com/archives/blue/1177.html</link>
		<comments>http://www.shenaiqiu.com/archives/blue/1177.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:41:41 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Blue]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Journal]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[代理服务器]]></category>
		<category><![CDATA[免费VPN]]></category>
		<category><![CDATA[免费代理服务器]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1177</guid>
		<description><![CDATA[　　VPN98、MacroVPN都是不错的美国代理服务器提供商，同时提供免费的VPN服务，两个VPN均不需要安装软件，直接在系统里设置即可。
　　什么！不会？VPN的设置就不讲了，用 Googel 搜索一下出一... ]]></description>
			<content:encoded><![CDATA[<p>　　VPN98、MacroVPN都是不错的美国代理服务器提供商，同时提供免费的VPN服务，两个VPN均不需要安装软件，直接在系统里设置即可。</p>
<p>　　什么！不会？VPN的设置就不讲了，用 Googel 搜索一下出一大把，呵呵。</p>
<p>　　两个VPN都有2G的流量限制，VPN98的使用上会麻烦一些，比如每次连接只能维持20分钟，20分钟后会自动断线，每次断线后需要等待5分钟才可以重新连接，还有每天同IP拨号次数不得超过3次，不能使用BT、迅雷等大流量的下载工具。MacroVPN的使用则没有那么麻烦，不过下载速率限制在256kbps，速度不怎么样。</p>
<p>　　好的当然有，想用好的那你就准备掏钱吧！收钱只收$。呵呵。舍得吗？</p>
<p>　　VPN98 网址：<a href="http://www.vpn98.com">http://www.vpn98.com</a><br />
　　MacroVPN 网址：<a href="http://www.macrovpn.com">http://www.macrovpn.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/blue/1177.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>财付通与西部数码联合提供200M全能免费虚拟主机</title>
		<link>http://www.shenaiqiu.com/archives/journal/1174.html</link>
		<comments>http://www.shenaiqiu.com/archives/journal/1174.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:18:45 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Journal]]></category>
		<category><![CDATA[免费虚拟主机]]></category>
		<category><![CDATA[虚拟主机]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1174</guid>
		<description><![CDATA[　　财大气粗，财付通与西部数码联合提供200M全能免费虚拟主机，Win2003系统，可选网通或电信服务器，200M容量，200M备份空间，200M邮局，月流量15G，并发连接不限，可绑定15个域名，支持ASP、P... ]]></description>
			<content:encoded><![CDATA[<p>　　财大气粗，财付通与西部数码联合提供200M全能免费虚拟主机，Win2003系统，可选网通或电信服务器，200M容量，200M备份空间，200M邮局，月流量15G，并发连接不限，可绑定15个域名，支持ASP、PHP、CGI、ACCESS、MSSQL、MySQL（50M），FTP、Web方式上传管理文件，功能强大的管理面板。无广告，申请无需审核，按照财付通给出的领取步骤一步步操作即可领取可使用一年的免费虚拟主机。不过必须绑定域名并备案才能使用，域名没有限制。<br />
　　申请网址：<a href="http://union.tenpay.com/xbsm_action">http://union.tenpay.com/xbsm_action</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/journal/1174.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT人士给自己的双胞胎搭配的衣服</title>
		<link>http://www.shenaiqiu.com/archives/journal/1163.html</link>
		<comments>http://www.shenaiqiu.com/archives/journal/1163.html#comments</comments>
		<pubDate>Sun, 30 May 2010 16:47:15 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1163</guid>
		<description><![CDATA[　　国外IT人士是如何给自己的双胞胎宝宝搭配的衣服，不得不佩服的创意。
　　一件穿的Ctrl+C，一件Ctrl+V；
　　一件穿的Copy，一件Paste；

... ]]></description>
			<content:encoded><![CDATA[<p>　　国外IT人士是如何给自己的双胞胎宝宝搭配的衣服，不得不佩服的创意。</p>
<p>　　一件穿的Ctrl+C，一件Ctrl+V；</p>
<p>　　一件穿的Copy，一件Paste；</p>
<p><img class="aligncenter size-full wp-image-1165" title="C+V" src="http://www.shenaiqiu.com/wp-content/uploads/2010/05/C+V.jpg" alt="" width="450" height="339" /></p>
<p><img class="aligncenter size-full wp-image-1166" title="C+P" src="http://www.shenaiqiu.com/wp-content/uploads/2010/05/C+P.jpg" alt="" width="450" height="339" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/journal/1163.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>总算能睡个饱觉了！</title>
		<link>http://www.shenaiqiu.com/archives/journal/1158.html</link>
		<comments>http://www.shenaiqiu.com/archives/journal/1158.html#comments</comments>
		<pubDate>Sun, 30 May 2010 16:04:33 +0000</pubDate>
		<dc:creator>Shenai Qiu</dc:creator>
				<category><![CDATA[Journal]]></category>
		<category><![CDATA[睡觉]]></category>

		<guid isPermaLink="false">http://www.shenaiqiu.com/?p=1158</guid>
		<description><![CDATA[　　5月开始就像玩命一样的工作，基本上每天都是零晨2-3点才能睡，方案、日报、报表等都要赶着交，昨晚总算能睡个饱觉了。
　　01:36+-(15分钟)至12:10+-(30分钟)睡；
　　13:20+-(30分钟)至15:20+-(... ]]></description>
			<content:encoded><![CDATA[<p>　　5月开始就像玩命一样的工作，基本上每天都是零晨2-3点才能睡，方案、日报、报表等都要赶着交，昨晚总算能睡个饱觉了。</p>
<p>　　01:36+-(15分钟)至12:10+-(30分钟)睡；</p>
<p>　　13:20+-(30分钟)至15:20+-(20分钟)睡。</p>
<p>　　真爽啊。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shenaiqiu.com/archives/journal/1158.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
