<?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://asdfblog.com/feed" rel="self" type="application/rss+xml" />
	<link>http://asdfblog.com</link>
	<description>热衷于WEB开发</description>
	<lastBuildDate>Wed, 29 Feb 2012 08:14:15 +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>jQuery Mobile 系列文章</title>
		<link>http://asdfblog.com/technology/jquery-mobile-%e7%b3%bb%e5%88%97%e6%96%87%e7%ab%a0.html</link>
		<comments>http://asdfblog.com/technology/jquery-mobile-%e7%b3%bb%e5%88%97%e6%96%87%e7%ab%a0.html#comments</comments>
		<pubDate>Wed, 29 Feb 2012 08:14:15 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[jQuery Mobile]]></category>

		<guid isPermaLink="false">http://asdfblog.com/?p=450</guid>
		<description><![CDATA[把这次开发项目中有关于jQuery Mobile开发中的问题做个整理，以便查阅。 jQuery Mobile官网 Opera Mobile for Windows 模拟器]]></description>
		<wfw:commentRss>http://asdfblog.com/technology/jquery-mobile-%e7%b3%bb%e5%88%97%e6%96%87%e7%ab%a0.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quartz.NET 2.0 任务配置文档说明</title>
		<link>http://asdfblog.com/technology/quartz-net-2-0-job-file-format.html</link>
		<comments>http://asdfblog.com/technology/quartz-net-2-0-job-file-format.html#comments</comments>
		<pubDate>Sat, 25 Feb 2012 06:41:02 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[Quartz.NET]]></category>

		<guid isPermaLink="false">http://asdfblog.com/?p=439</guid>
		<description><![CDATA[Quartz.NET 2.0 任务配置文档说明，介绍pre-processing-commands、processing-directives、schedule三个节点的用法。]]></description>
		<wfw:commentRss>http://asdfblog.com/technology/quartz-net-2-0-job-file-format.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enyim Memcached 客户端几点偶遇</title>
		<link>http://asdfblog.com/technology/enyim-memcached-qa.html</link>
		<comments>http://asdfblog.com/technology/enyim-memcached-qa.html#comments</comments>
		<pubDate>Fri, 29 Jul 2011 04:28:45 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[cache]]></category>

		<guid isPermaLink="false">http://asdfblog.com/?p=433</guid>
		<description><![CDATA[二进制协议 MemcachedClientConfiguration.Protocol = Binary，这是新版默认配置，但是如果你的Memcached版本不是在1.3以上，将无法支持二进制协议传输模式，特别是Memcached for win32 好像还是处于1.2.4版本上，这里只能需要配置 MemcachedClientConfiguration.Protocol = Text。 Get泛型 我是第一次使用这个版本的客户端，这里有个比较好的就是支持泛型的获取数据。基本实现方式： return TryGet(key, out tmp) ? (T)tmp : default(T); 而Get return this.TryGet(key, out tmp) ? tmp : null; 因此在本质上并没有太多的区别，减少类型转换，我建议使用as简单明了。 尽量只创建过少的MemcachedClient Enyim.MemcachedClient支持不同池配置，我建议对每个Client做Singleton模式。 配置问题 其实我不想说这个事，但是我只是想提醒一下，Enyim.MemcachedClient在配置时，都是对套接字池的配置（即：Scoket Pool），对于入门来讲只要了解.NET中的套接字池配置就可以，哪怕不通过Web.Config，也可以通过很简单的MemcachedClientConfiguration.SocketPool套接字池配置，因些不要太过于复杂化。]]></description>
		<wfw:commentRss>http://asdfblog.com/technology/enyim-memcached-qa.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memcached for win32 命令描述</title>
		<link>http://asdfblog.com/technology/memcached-for-win32-command-summary.html</link>
		<comments>http://asdfblog.com/technology/memcached-for-win32-command-summary.html#comments</comments>
		<pubDate>Thu, 28 Jul 2011 15:04:17 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[cache]]></category>

		<guid isPermaLink="false">http://asdfblog.com/?p=431</guid>
		<description><![CDATA[我的系统是WIN7，所以如果遇到什么Telnet无法使用的，是因为WIN7默认没有安装Telnet client。可能还有遇到权限问题，详见：windows7下安装Memcached。 以下内容是转载的一篇文章，方便查阅： Connecting to Memcached server with telnet telnet &#60;hostname&#62; &#60;port&#62; In the following \r\n mean you have to type enter in telnet console If Memcached server send ERROR or CLIENT_ERROR, something is false with the command, if it&#8217;s SERVER_ERROR, server itself is in trouble Retrieval Commands Parameters : &#60;key&#62; : the key of the [...]]]></description>
		<wfw:commentRss>http://asdfblog.com/technology/memcached-for-win32-command-summary.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>html5的设计</title>
		<link>http://asdfblog.com/technology/html5%e7%9a%84%e8%ae%be%e8%ae%a1.html</link>
		<comments>http://asdfblog.com/technology/html5%e7%9a%84%e8%ae%be%e8%ae%a1.html#comments</comments>
		<pubDate>Fri, 10 Jun 2011 14:00:03 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[XHTML语义]]></category>

		<guid isPermaLink="false">http://asdfblog.com/?p=424</guid>
		<description><![CDATA[其实是在Jeremy Keith在 Fronteers 2010上的主题演讲，我只是做了一些归纳： 伯斯塔尔法则：发送时要保守；接收时要开放。 避免不必要的复杂性 1、简化doctype为：&#60;!DOCTYPE html&#62; 2、头部信息中发送字符编码简化为：&#60;meta charset=”utf-8&#8243;&#62; 3、CSS引用可以不需要type。 4、script可以不需要type。 支持已有的内容 1、支持大小写名称。 2、属性值可以不加引号。 3、标签可不闭合。 比如以下四段都是合法的： &#60;img src="foo" alt="bar" /&#62; &#60;p&#62;Hello world&#60;/p&#62; &#60;img src="foo" alt="bar"&#62; &#60;p&#62;Hello world &#60;IMG SRC="foo" ALT="bar"&#62; &#60;P&#62;Hello world&#60;/P&#62; &#60;img src=foo alt=bar&#62; &#60;p&#62;Hello world&#60;/p&#62; 解决现实的问题 链接包含块级元素，这点也是我的最爱。 内容模型 新增四个内容模型：头部（header）、脚部（footer）、分区（section）、文章（article）。 而像footer未必要放在底下，最重要的是它们的语义，跟位置没有关系。 在HTML5中，只要你建立一个新的内容块，不管用section、article、aside、nav，还是别的元素，都可以在其中使用H1，而不必担心这个块里的标题在整个页面中应该排在什么级别；H2、H3，都没有问题。 html5的vedio &#60;video&#62; &#60;source src="movie.mp4"&#62; &#60;source src="movie.ogv"&#62; &#60;object data="movie.swf"&#62; &#60;a href="movie.mp4"&#62;download&#60;/a&#62; &#60;/object&#62; [...]]]></description>
		<wfw:commentRss>http://asdfblog.com/technology/html5%e7%9a%84%e8%ae%be%e8%ae%a1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>谈男女贞操</title>
		<link>http://asdfblog.com/life/tannannvzhencaoguang.html</link>
		<comments>http://asdfblog.com/life/tannannvzhencaoguang.html#comments</comments>
		<pubDate>Thu, 09 Jun 2011 03:17:05 +0000</pubDate>
		<dc:creator>asdf</dc:creator>
				<category><![CDATA[生活]]></category>
		<category><![CDATA[心理学]]></category>

		<guid isPermaLink="false">http://asdfblog.com/?p=420</guid>
		<description><![CDATA[原来是在一篇感人的文章中受启发：大致是讲一女孩子被几个人强奸，非常绝望想自我了断，可舍不得爱他的男人，于是用委婉形式告诉他了整个事实。当然完美的结局是男人提出在没结婚之前为他守住第二次贞操。 现代贞操观 贞操观在不同年代人的眼里是完全不同的。早在《西厢记》中有这样一段描写：张生与崔莺莺初试云雨后，看着落红斑斑的手帕，充满自得地唱道：”春罗元莹白，早见红香点嫩色。”张生因获得了莺莺的贞操，而自鸣得意、自我炫耀，而此时的崔莺莺也将贞洁之身看作是自己人生价值所在，她说：”妾千金之躯，一旦去之，此身皆托与足下，勿以它日见弃，使妾有白头之叹。”。我有这么一句某大型网站调查文字： 70后对待贞操有种“正室范儿”、80后女孩子会说：你是处男吗？你凭什么要求我是处女？、90后70%有异性朋友，其中90%发生性关系。 好了，不同年代看待贞操一直在变化，而近现代这种变化只能用“极速发展”来形容。那么贞操到底在现实生活中有什么作用呢？按我理解就简单两字：婚姻。 择偶策略 在贞操话题上男人和女人在择偶策略有很大不同。男人不可能完全“确定”自己到底是不是孩子真正父亲，而对于女人来讲不存在这个问题，因此对于女人来说并不需要关心或害怕我生的孩子不是自己。在动物世界里面除了河马等不主动向雌性求欢以达到繁衍下一代以外，所有雄性都会主动向雌性求欢。 很多雄性动物会在不同雌性身上播种，其主要原因是不想让自己基因从这个世上消失，当然这需要除了自然灾害等不可避免的因素，而恐龙就是一个活生生的例子。于是他们会寻求更多的雌性来播种，以便自己更多基因得以流传。由于只有雌性才是负责制造卵子个体的母体，所以对于雌性来说有更多的选择权。 对于以上这些，做为高等动物中的人类，更明白这个道理。 消失的基因 我前面讲过为了不让自己的基因消失而去到处播种，同时对于女性来讲更多选择权。看似两条理论都是对立的，但是从某种角度来讲又是相互存在利益关系。 首先男性不管怎么样，他们只有一个目的就是让自己的基因继续得以流传，而不会去管到底跟谁交配，毕竟生孩子不是男人有的，所以他们没有选择权。 其次对于女性也会有自己的考虑，她们更希望跟优秀基因交配，毕竟是从身上掉下来的肉。 &#160;]]></description>
		<wfw:commentRss>http://asdfblog.com/life/tannannvzhencaoguang.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

