<?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>Sunky&#039;s Blog</title>
	<atom:link href="http://www.sunky.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sunky.net</link>
	<description>Why not try?</description>
	<lastBuildDate>Mon, 02 May 2011 15:16:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>《Google C++ Style Guide》备忘</title>
		<link>http://www.sunky.net/archives/2011/335.html</link>
		<comments>http://www.sunky.net/archives/2011/335.html#comments</comments>
		<pubDate>Wed, 27 Apr 2011 15:24:23 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[C]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=335</guid>
		<description><![CDATA[仔细看了遍Google这个编程规范，写得还真是细致，连哪个地方该不该用空格都有详细规定。而其中一些正是我以前纠结之处。就在此备忘一些以前忽略的一些小细节吧。 1. 将c文件对应的h文件放在include的第一位可减少隐藏依赖 [1.6] 2. 尽量使用++i代替i++，效率更高。[5.10] 3. 尽量使用const，并且写成const int* foo形式较好。[5.11] 4. 尽量不使用无符号数进行循环计数。[5.12] 5. 尽可能用 sizeof(varname) 代替 sizeof(type)。这样保证更改类型后会自动更新。[5.16] 6. 行后注释先空两格。[7.6&#62; 7. 函数名过长，形参如需换行，需缩进两个TAB(8个空格)。 [8.4] ReturnType LongClassName::ReallyReallyReallyLongFunctionName( &#160;&#160;&#160;&#160;&#160;&#160;&#160; Type par_name1,&#160; // 8 space indent &#160;&#160;&#160;&#160;&#160;&#160;&#160; Type par_name2, &#160;&#160;&#160;&#160;&#160;&#160;&#160; Type par_name3) { &#160;&#160;&#160; DoSomething();&#160; &#8230; <a href="http://www.sunky.net/archives/2011/335.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2011/335.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(转)《幸福课》</title>
		<link>http://www.sunky.net/archives/2011/314.html</link>
		<comments>http://www.sunky.net/archives/2011/314.html#comments</comments>
		<pubDate>Tue, 04 Jan 2011 16:03:34 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[发现]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=314</guid>
		<description><![CDATA[1、遵从你内心的热情。选择对你有意义并且能让你快乐的课，不要只是为了轻松地拿一个A而选课，或选你朋友上的课，或是别人认为你应该上的课。 2、多和朋友们在一起。不要被日常工作缠身，亲密的人际关系，是你幸福感的信号，最有可能为你带来幸福。 3、学会失败。成功没有快捷方式，历史上有成就的人，总是敢于行动，也会经常失败。不要让对失败的恐惧，绊住你尝试新事物的脚步。 4、接受自己全然为人。失望、烦乱、悲伤是人性的一部分。接纳这些，并把它们当成自然之事，允许自己偶尔的失落和伤感。然后问问自己，能做些什么来让自己感觉好过一点。 5、简化生活。更多并不总代表更好，好事多了，不一定有利。你选了太多的课吗？参加了太多的活动吗？应求精而不在多。 6、有规律地锻炼。体育运动是你生活中最重要的事情之一。每周只要3次，每次只要30分钟，就能大大改善你的身心健康。 7、睡眠。虽然有时”熬通宵”是不可避免的，但每天 7到9小时的睡眠是一笔非常棒的投资。这样，在醒着的时候，你会更有效率、更有创造力，也会更开心。 8、慷慨。现在，你的钱包里可能没有太多钱，你也没有太多时间。但这并不意味着你无法助人。”给予”和”接受”是一件事的两个面。当我们帮助别人时，我们也在帮助自己；当我们帮助自己时，也是在间接地帮助他人。 9、勇敢。勇气并不是不恐惧，而是心怀恐惧，仍依然向前。 10、表达感激。生活中，不要把你的家人、朋友、健康、教育等这一切当成理所当然的。它们都是你回味无穷的礼物。记录他人的点滴恩惠，始终保持感恩之心。每天或至少每周一次，请你把它们记下来。 网易淘课《幸福课》 http://v.163.com/special/sp/positivepsychology.html]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2011/314.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>《温柔》 &#8211; 五月天</title>
		<link>http://www.sunky.net/archives/2010/291.html</link>
		<comments>http://www.sunky.net/archives/2010/291.html#comments</comments>
		<pubDate>Wed, 11 Aug 2010 15:43:06 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[音乐]]></category>
		<category><![CDATA[五月天]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=291</guid>
		<description><![CDATA[抱歉 我又要贴歌了。。 很老的歌 但很经典 听起来还是那么有味道 我很喜欢 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 歌手： 五月天 专辑： 五月之恋 CD1 公司： 滚石唱片公司 走在风中 今天阳光 突然好温柔天的温柔 地的温柔 像你抱著我 然后发现 你的改变 孤单的今后 如果冷 该怎么渡过 天边风光 身边的我 也不在你眼中 你的眼中 藏著什么 我从来都不懂 没有关系 你的世界 就让你拥有 不打扰 是我的温柔 不知道 不明瞭 不想要 为什么 我的心 &#8230; <a href="http://www.sunky.net/archives/2010/291.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2010/291.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>无锡运河公园</title>
		<link>http://www.sunky.net/archives/2010/285.html</link>
		<comments>http://www.sunky.net/archives/2010/285.html#comments</comments>
		<pubDate>Sun, 02 May 2010 18:04:42 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[发现]]></category>
		<category><![CDATA[旅游]]></category>
		<category><![CDATA[无锡]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=285</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2010/285.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>《青春爱欲吻》里的猫</title>
		<link>http://www.sunky.net/archives/2010/249.html</link>
		<comments>http://www.sunky.net/archives/2010/249.html#comments</comments>
		<pubDate>Sat, 01 May 2010 18:21:54 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[发现]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=249</guid>
		<description><![CDATA[片子不多说，太喜欢里面那只猫了。上图。]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2010/249.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>搬到Godaddy了</title>
		<link>http://www.sunky.net/archives/2010/242.html</link>
		<comments>http://www.sunky.net/archives/2010/242.html#comments</comments>
		<pubDate>Thu, 01 Apr 2010 17:28:32 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[时光机]]></category>
		<category><![CDATA[Godaddy]]></category>
		<category><![CDATA[主机]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=242</guid>
		<description><![CDATA[因为寄住的主机被墙，博客离线快一个多月了，不过更新博客的却是去年的事了。 其实去年就已经把域名放到Godaddy了, 虽然没体验到他们的服务，一直都是人机交互，但是Godaddy的东西真是做得非常专业。林林总总的配置选项一大堆，操作起来还是很顺手的。就是广告太多了，几乎每周都有促销广告发我邮箱，而且每次看到的都是那位向我微笑的金发美女。潜移默化下，再次购买了他们的主机。 我买的是Deluxe Plan Linux Host. 配置还不错，就是不知负载如何。意外发现这主机还支持Java，这在两年前还真是稀有，不过如今对我来说已无大用。最看重是支持停放多个网站，这样就可以在买了已久的imayday.org上放点东西了。因为花费还不少，如果有人跟我分担点那也不错，有意的可以联系我。 以后还是多更新吧，且当是写代码之余写点东西自娱自乐吧。 最后还是要感谢下以前那位给我免费提供空间的大哥以及联系这位大哥的Dreamer同学。 谢谢。你们真是太亚克西了。]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2010/242.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>分享Google Wave邀请</title>
		<link>http://www.sunky.net/archives/2009/225.html</link>
		<comments>http://www.sunky.net/archives/2009/225.html#comments</comments>
		<pubDate>Tue, 17 Nov 2009 11:42:57 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[发现]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=225</guid>
		<description><![CDATA[前段时间在Google Wave官网登记了个E-mail。想不到还真收到了邀请。欣喜的是给了我20个邀请。目前没有发现Wave有什么好玩的，但那天发现淘宝上竟然把这个邀请卖到20～50块！反正我留着是没啥用，送给幸运发现这个长期冬眠偶尔苏醒的博客的朋友。。。]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2009/225.html/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Error &#8220;Failed to contact the GConf daemon; exiting.&#8221;</title>
		<link>http://www.sunky.net/archives/2009/218.html</link>
		<comments>http://www.sunky.net/archives/2009/218.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 03:14:00 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[技术]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.sunky.net/archives/2009/218.html</guid>
		<description><![CDATA[现象：Ubuntu 9.04下，在Terminal使用Command # gnome-terminal 试图打开Gnome Terminal时，出现错误信息： Failed to contact the GConf daemon; exiting. 原因：https://bugs.launchpad.net/ubuntu/+source/gconf2/+bug/328575 解决办法：更新系统至最新。 # sudo apt-get update # sudo apt-get dist-upgrade]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2009/218.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My December &#8211; LinkinPark</title>
		<link>http://www.sunky.net/archives/2009/208.html</link>
		<comments>http://www.sunky.net/archives/2009/208.html#comments</comments>
		<pubDate>Wed, 07 Jan 2009 17:25:31 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[音乐]]></category>
		<category><![CDATA[LinkinPark]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=208</guid>
		<description><![CDATA[This is my December, this is my time of the year This is my December, this is all so clear This is my December, this is my snow-covered home This is my December, this is me alone And I give &#8230; <a href="http://www.sunky.net/archives/2009/208.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2009/208.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>乌镇行</title>
		<link>http://www.sunky.net/archives/2008/194.html</link>
		<comments>http://www.sunky.net/archives/2008/194.html#comments</comments>
		<pubDate>Sun, 02 Nov 2008 18:27:11 +0000</pubDate>
		<dc:creator>Sunky</dc:creator>
				<category><![CDATA[时光机]]></category>
		<category><![CDATA[乌镇]]></category>
		<category><![CDATA[旅游]]></category>

		<guid isPermaLink="false">http://www.sunky.net/?p=194</guid>
		<description><![CDATA[       又到部门旅游的时间了。这次是去乌镇。        乌镇，众多古镇中比较有名气的一个。因为古镇我一个都没去逛过，所以还是有些期待的。“有些期待”，是听到前人评价后打折的效果。其实我以前是很期待的。意想中的古镇，应该是小桥流水，木屋瓦顶，民风古朴的地方。去过之后发现差距还是挺大的，但是也没什么后悔的，唯有去过方知其中乐趣。        和以前一样，早起集合乘车去景区。少睡了几个小时，就到车上合眼小睡了。车行三个小时才到乌镇。下车后，发现天飘着小雨，意外还发现有点薄雾。Hoho，心想这样的天气还算比较适合观玩古镇。导游去买门票了，我们就围在景区大门口的走廊上闲聊会，没办法，每次出游一是观景，二是扯淡。两者各有所乐。 看看周围，噢买尬(刚学会的，原来可以这么汉译)，人真TM多，人说现在也算是旅游淡季，唉。我们祖国真是人丁兴旺啊。        一会导游来了，领着我们进了景区。我们这伙四十多号人也不算少，一起走在这小道也太挤了。不喜欢跟导游，感觉跟着导游就像完成旅游任务一样。反正景区到处都是导游，想听解说随便找个靠过去蹭蹭完事。乌镇真的是很小，最大体的印象就是一河两排旧房N座小桥。下面就直接看图说话了。 远处薄雾，近处相映，不知道这算不算构图。 唯一拍到的美女 长巷 正好游船上没人，还有点古镇味道 其他景物我都故意避人，这张看看人有多少。我是举起相机拍的。原来有很多人注意到了，看他们的表情。。 藤 屋顶，不是歌名 木桥]]></description>
		<wfw:commentRss>http://www.sunky.net/archives/2008/194.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

