<?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://icyleaf.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://icyleaf.com</link>
	<description>icyleaf&#039;s blog - 心外无理，心外无物，心外无事</description>
	<lastBuildDate>Tue, 13 Dec 2011 02:34:45 +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>让 Android 支持下拉刷新(Pull Refresh)</title>
		<link>http://icyleaf.com/2011/07/pull-refresh-for-android/</link>
		<comments>http://icyleaf.com/2011/07/pull-refresh-for-android/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 12:37:19 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[移动平台]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=911</guid>
		<description><![CDATA[曾几何时，自 Android 发布之后一直以来就被管以 Geek 的玩具，而不太注重界面设计和用户交互设计，这让 Android 开发者也顺其自然的接受了这个不好的头衔，但我一度认为这只是不思进取的行为，谁说 Android 就不能像 iPhone 的界面那样设计，我认为只有用心，没神马不能实现的。说回正题，第一次看到 Android 有这项功能的莫过于改版后的 Twitter，我认为它绝对是一个标榜性的 App（同时也包括已开源许久的 Foursquare）。于是全世界的开发者就开始寻思这个效果 Twitter 是如何实现的，于是就有了&#8230; 这是由 johannilsson 以及众位其好友的研究成果，并已 Apache 2.0 协议开源托管在 Github：https://github.com/johannilsson/android-pulltorefresh 大概看了一下源码，发现和我初步的想法类似，除了需要集成系统的 ListView 之外，只能在 HeaderView 上面做文章，外加配合 onTouchEvent， onScroll 事件可以捕捉用户下拉和上滑的事件监听。 用法： Layout Activity // Set a listener &#8230; <a href="http://icyleaf.com/2011/07/pull-refresh-for-android/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>曾几何时，自 Android 发布之后一直以来就被管以 Geek 的玩具，而不太注重界面设计和用户交互设计，这让 Android 开发者也顺其自然的接受了这个不好的头衔，但我一度认为这只是不思进取的行为，谁说 Android 就不能像 iPhone 的界面那样设计，我认为只有用心，没神马不能实现的。说回正题，第一次看到 Android 有这项功能的莫过于改版后的 Twitter，我认为它绝对是一个标榜性的 App（同时也包括已开源许久的 <a href="http://code.google.com/p/foursquared/" target="_blank">Foursquare</a>）。于是全世界的开发者就开始寻思这个效果 Twitter 是如何实现的，于是就有了&#8230;</p>
<p><img class="alignnone" title="pull refresh for android" src="https://github.com/johannilsson/android-pulltorefresh/raw/master/android-pull-to-refresh.png" alt="" width="811" height="525" /></p>
<p>这是由 <a href="http://johannilsson.com/2011/03/13/android-pull-to-refresh-update.html" target="_blank">johannilsson</a> 以及众位其好友的研究成果，并已 Apache 2.0 协议开源托管在 Github：<a href="https://github.com/johannilsson/android-pulltorefresh" target="_blank">https://github.com/johannilsson/android-pulltorefresh</a></p>
<p>大概看了一下源码，发现和我初步的想法类似，除了需要集成系统的 ListView 之外，只能在 HeaderView 上面做文章，外加配合 onTouchEvent， onScroll 事件可以捕捉用户下拉和上滑的事件监听。</p>
<p>用法：</p>
<p>Layout</p>
<pre lang="xml">
<!--
  The PullToRefreshListView replaces a standard ListView widget.
-->
<com.markupartist.android.widget.PullToRefreshListView
    android:id="@+id/android:list"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    />
</pre>
<p>Activity</p>
<pre lang="java">
// Set a listener to be invoked when the list should be refreshed.
((PullToRefreshListView) getListView()).setOnRefreshListener(new OnRefreshListener() {
    @Override
    public void onRefresh() {
        // Do work to refresh the list here.
        new GetDataTask().execute();
    }
});

private class GetDataTask extends AsyncTask<Void, Void, String[]> {
    ...
    @Override
    protected void onPostExecute(String[] result) {
        mListItems.addFirst("Added after refresh...");
        // Call onRefreshComplete when the list has been refreshed.
        ((PullToRefreshListView) getListView()).onRefreshComplete();
        super.onPostExecute(result);
    }
}
</pre>
<p>仓库里除了实现类外，还有<a href="https://github.com/johannilsson/android-pulltorefresh/tree/master/pulltorefreshexample" target="_blank">一个实例</a>，看看人家够意思吧。</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/07/pull-refresh-for-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>如何让 iOS 和 Android 支持自定义字体</title>
		<link>http://icyleaf.com/2011/07/custom-fonts-both-in-ios-and-android/</link>
		<comments>http://icyleaf.com/2011/07/custom-fonts-both-in-ios-and-android/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 05:36:11 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[移动平台]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=904</guid>
		<description><![CDATA[本篇教程的目前源于我们团队设计师一直询问，iOS(iPhone/iPad) 和 Android 两个平台是否支持自定义字体的问题，恰巧前不久唐茶计划出了一个关于在中文阅读新体验的电子书应用：失控。里面提到中文的显示采用了香港字体设计室的全新中文黑体字：信黑体。于是我就在想看来 iOS 是可以支持自定义字体的。通过搜索和研究整理如下，供自己备份和大家参考 iOS iOS 对字体以样式的支持是非常有限的(内嵌默认字库列表)，尤其说对于用习惯了 HTML + CSS，就觉得 iOS 对字体的扩展真是逊到渣了，当然高人们已经准备为大众造福，出现了轻巧的 FontLable，TTTAttributedLabel 开源库到怪兽级别 Three20 开源框架。但假如仅仅是想加载自定义字体来说，对于 iOS 4 版本还是比较简单的： 添加自定义字体文件做资源文件添加到 XCode 项目之中 在 info.plist 中新增一个名为 UIAppFonts 的 Key，类型是数组（array） 把新增的字体的文件名（包括后缀）依次填入 UIAppFonts 数组 （注意区分大小写） 保存 info.plist（废话）。准备工作完毕，下面是编码部分 @implementation CustomFontLabel - (id)initWithCoder:(NSCoder *)decoder &#8230; <a href="http://icyleaf.com/2011/07/custom-fonts-both-in-ios-and-android/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>本篇教程的目前源于我们团队设计师一直询问，iOS(iPhone/iPad) 和 Android 两个平台是否支持自定义字体的问题，恰巧前不久<a href="http://www.v2ex.com/t/15220" target="_blank">唐茶计划</a>出了一个关于在中文阅读新体验的电子书应用：<a href="http://itunes.apple.com/cn/app/id446752200?mt=8" target="_blank">失控</a>。里面提到中文的显示采用了香港字体设计室的全新中文黑体字：<a href="http://www.typeisbeautiful.com/2011/07/4276" target="_blank">信黑体</a>。于是我就在想看来 iOS 是可以支持自定义字体的。通过搜索和研究整理如下，供自己备份和大家参考</p>
<h1>iOS</h1>
<p>iOS 对字体以样式的支持是非常有限的(内嵌<a href="http://iosfonts.com/" target="_blank">默认字库列表</a>)，尤其说对于用习惯了 HTML + CSS，就觉得 iOS 对字体的扩展真是逊到渣了，当然高人们已经准备为大众造福，出现了轻巧的 <a href="https://github.com/zynga/FontLabel" target="_blank">FontLable</a>，<a href="https://github.com/mattt/TTTAttributedLabel" target="_blank">TTTAttributedLabel</a> 开源库到怪兽级别 <a href="https://github.com/facebook/three20" target="_blank">Three20</a> 开源框架。但假如仅仅是想加载自定义字体来说，对于 iOS 4 版本还是比较简单的：</p>
<ol>
<li>添加自定义字体文件做资源文件添加到 XCode 项目之中</li>
<li>在 info.plist 中新增一个名为 UIAppFonts 的 Key，类型是数组（array）</li>
<li>把新增的字体的文件名（包括后缀）依次填入 UIAppFonts 数组 （注意区分大小写）</li>
<li>保存 info.plist（废话）。准备工作完毕，下面是编码部分</li>
</ol>
<pre lang="objective-c">
@implementation CustomFontLabel

- (id)initWithCoder:(NSCoder *)decoder
{
    if (self = [super initWithCoder: decoder])
    {
        [self setFont: [UIFont fontWithName: @"Custom Font Name" size: self.font.pointSize]];
        // 这里 Custom Font Name 并不是字体的文件名，而且系统注册显示的字体标准名称，比如
        // 比如，微软雅黑，最好就用 Microsoft YaHei （不过这个会存在版权问题把 XD）
        // 另外，注意区分大小写
    }
    return self;
}

@end
</pre>
<p>这里还有更完整的<a href="http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application" target="_blank">关于 iOS 不同平台支持自定义字体</a>的问答。</p>
<h1>Android</h1>
<p>Android 默认支持  Droid Sans，Droid Sans Mono 和 Droid Serif 三种字体，其实对于中文的显示还是很不错的，有些类似于微软雅黑字体（<a href="http://www.cnbeta.com/articles/114854.htm" target="_blank">区别</a>）。假如只是对默认的字体进行更换，最简单的方法就是配置 layout 文件：</p>
<pre lang="xml">
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
        >
    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="This is a 'sans' demo!"
            android:typeface="sans"
            />
     <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="This is a 'serif' demo!"
            android:typeface="serif"
            android:textStyle="italic"
            />
     <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="This is a 'monospace' demo!"
            android:typeface="monospace"
            android:textStyle="bold"
            />
</LinearLayout>
</pre>
<p>但是这样肯定不能满足大家对于字体排版高一级的要求，下面是支持自定义字体的步骤：</p>
<p>首先，添加自定义字体文件放在项目的 assets/fonts 目录下面（目录可能需要自己创建）。</p>
<p>其次，编辑 layout 文件（这里做一个示范）</p>
<pre lang="xml">
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
        >
    <TextView android:id="@+id/textview"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="This is a 'Microsoft YaHei' demo!"
            />
    <Button android:id="@+id/button"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="This is a 'Microsoft YaHei' button!"
            />
</LinearLayout>
</pre>
<p>最后，在代码部分实现自定义字体（和 iOS 类似）</p>
<pre lang="java">
public void onCreate(Bundle savedInstanceState)
{
       super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        TextView textView = null;
        Button button = null;

        setFont(textView, "fonts/YaHei.ttf", R.id.text_view);
        setFont(button, "fonts/YaHei.ttf", R.id.button);
}

void setFont(TextView name, String path, int res)
{
    	name = (TextView) findViewById(res);
        Typeface font = Typeface.createFromAsset(this.getAssets(), path);
        name.setTypeface(font);
}
</pre>
<p>扩展阅读 [<a href="http://mobile.tutsplus.com/tutorials/android/customize-android-fonts/" target="_blank">1</a>] [<a href="http://russenreaktor.wordpress.com/2010/04/29/solved-android-using-custom-fonts/" target="_blank">2</a>]</p>
<p>话说，为什么 Android 到现在都没有更多的开源的库和框架呢？</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/07/custom-fonts-both-in-ios-and-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome 扩展: URL to QR-Code</title>
		<link>http://icyleaf.com/2011/06/chrome-extension-url-to-qr-code/</link>
		<comments>http://icyleaf.com/2011/06/chrome-extension-url-to-qr-code/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 04:06:20 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[网络开发]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[QR-Code]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=895</guid>
		<description><![CDATA[URL to QR-Code 是一个 Chrome 扩展,适用于 Chrome 浏览页面的同时希望把在手机设备(当然手机得支持 QR-Code 的扫描)也能访问.我总结可以适用于以下情景: 这个网页必须使用手机设备访问 这个网页是一个手机应用的安装链接(AppStore/Google Market),用手机访问可以直接安装 我就是想用手机浏览此网页,怎么着 好吧,基于以上情景,我做了一个 Chrome 扩展,恩,没错,只适用于 Chrome,也许会有人说,这个东西网上已经有了,为什么你还要重造轮子.我的理由是,虽然我的功能非常简单,鉴于目前现有的一些应用,都会把功能显示在 Chrome 的 Tab 上面,其实这个功能用的几率并不多,放在 Tab 实在是浪费了太大的空间,我的 Tab 的 Icons 已经负载过多了(大家可参考我之前分享的 我常用的 Chrome 扩展集合),因此我决定把 Icon 丢在地址栏的右侧,这里相对于的利用空间更小.点击之后直接弹出 QR-Code,方便手机扫描. 安装地址: http://icyleaf.googlecode.com/svn/javascript/Chrome/url_to_qr_code_v0.1.crx &#8212;&#8212;&#8212;&#8212;&#8211;需要更新的分割线&#8212;&#8212;&#8212;&#8212;&#8212;- 发现 Google Chart API &#8230; <a href="http://icyleaf.com/2011/06/chrome-extension-url-to-qr-code/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>URL to QR-Code 是一个 Chrome 扩展,适用于 Chrome 浏览页面的同时希望把在手机设备(当然手机得支持 QR-Code 的扫描)也能访问.我总结可以适用于以下情景:</p>
<li>这个网页必须使用手机设备访问</li>
<li>这个网页是一个手机应用的安装链接(AppStore/Google Market),用手机访问可以直接安装</li>
<li>我就是想用手机浏览此网页,怎么着</li>
<p>好吧,基于以上情景,我做了一个 Chrome 扩展,恩,没错,只适用于 Chrome,也许会有人说,这个东西网上已经有了,为什么你还要重造轮子.我的理由是,虽然我的功能非常简单,鉴于目前现有的一些应用,都会把功能显示在 Chrome 的 Tab 上面,其实这个功能用的几率并不多,放在 Tab 实在是浪费了太大的空间,我的 Tab 的 Icons 已经负载过多了(大家可参考我之前分享的 <a href="http://icyleaf.com/2011/06/11/im-using-chrome-extensions-software-list/" target="_blank">我常用的 Chrome 扩展集合</a>),因此我决定把 Icon 丢在地址栏的右侧,这里相对于的利用空间更小.点击之后直接弹出 QR-Code,方便手机扫描.</p>
<p>安装地址: <a href="http://icyleaf.googlecode.com/svn/javascript/Chrome/url_to_qr_code_v0.1.crx">http://icyleaf.googlecode.com/svn/javascript/Chrome/url_to_qr_code_v0.1.crx</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8211;需要更新的分割线&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>发现 Google Chart API 居然提供支持 QR-Code ,文档在此后面准备更换生成QR-Code的服务接口支持选文字生成和文字链的原始链接的生成.这里算是埋下一个坑,大家可以提醒我来填满。。。</p>
<p>文档地址：<a href="http://code.google.com/apis/chart/image/docs/gallery/qr_codes.html" target="_blank">http://code.google.com/apis/chart/image/docs/gallery/qr_codes.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/06/chrome-extension-url-to-qr-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>个人常用 Chrome 扩展集合</title>
		<link>http://icyleaf.com/2011/06/im-using-chrome-extensions-software-list/</link>
		<comments>http://icyleaf.com/2011/06/im-using-chrome-extensions-software-list/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 09:02:13 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=885</guid>
		<description><![CDATA[Google Chrome 最近更新的厉害，几天之间更新数次，加上扩展安装，更新，卸载都非常的方便，今天刚刚有发现了一些好的扩展，随兴一起列以下: AdBlock 最受欢迎的Google 浏览器扩充功能，拥有超过150 万位使用者！阻挡网路上所有的广告。 Android SDK Reference Search Adds an &#8216;ad&#8217; omnibox command and view source links for the Android SDK class and XML references. ChromYQLip Quickly clip any information from a page &#38; ignore the noise. &#8230; <a href="http://icyleaf.com/2011/06/im-using-chrome-extensions-software-list/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Google Chrome 最近更新的厉害，几天之间更新数次，加上扩展安装，更新，卸载都非常的方便，今天刚刚有发现了一些好的扩展，随兴一起列以下:</p>
<p><strong>AdBlock</strong><br />
最受欢迎的Google 浏览器扩充功能，拥有超过150 万位使用者！阻挡网路上所有的广告。</p>
<p><strong>Android SDK Reference Search</strong><br />
Adds an &#8216;ad&#8217; omnibox command and view source links for the Android SDK class and XML references.</p>
<p><strong>ChromYQLip</strong><br />
Quickly clip any information from a page &amp; ignore the noise. Targeting web developers for YQL scrapping.</p>
<p><strong>GitHub Feed Filter</strong><br />
Enables filtering out GitHub feeds by projects, commits, comments and issues</p>
<p><strong>GitHub Gist</strong><br />
Paste and share your Gist CodeSnippets from your Browser Window.</p>
<p><strong>Gitmarks</strong><br />
Keep track of your github projects.</p>
<p><strong>Github improved</strong><br />
Adds in-page changeset unfolding, shows branch and tag names, and some other niceties for github&#8217;s Commit History view.</p>
<p><strong>Github Search</strong><br />
Integrated Github Searching.</p>
<p><strong>JSONView for Chrome™</strong><br />
JSONView for chrome is an extension that helps you to parse and view JSON documents</p>
<p><strong>MultiSwitch</strong><br />
Switch between development, test and productive application.</p>
<p><strong>PHP Console</strong><br />
Display PHP errors/debugs in Google Chrome console or by notification popups</p>
<p><strong>Dribbble</strong><br />
The unofficial Dribbble extension for Google Chrome by Stu Greenham of DesignWoop.com.</p>
<p><strong>Edit This Cookie</strong><br />
Edit This Cookie is a cookie manager. You can add, delete, edit, search, protect and block cookies!</p>
<p><strong>Regular Expression Checker</strong><br />
Regular Expression Testing Tool</p>
<p><strong>cREST Client</strong><br />
RESTful service testing using xhr made easy!</p>
<p><strong>REST Console</strong><br />
&#8216;REST Console&#8217; is a REST Client for Google Chrome to visualize and construct custom HTTP requests to test with any web service.</p>
<p><strong>XV — XML Viewer</strong><br />
Powerful XML viewer for Google Chrome</p>
<p><strong>Zen-Coding Textarea Extension</strong><br />
This extension is able to use the Zen-Coding for all textareas. This is using Zen-Coding Textarea plugin.</p>
<p><strong>Halo Word Dictionary</strong><br />
精巧易用的英汉字典，界面简洁舒适。包含单词表、划词查询、右键查询等功能。Enjoy!</p>
<p><strong>Instachrome</strong><br />
Save your URLs to Instapaper</p>
<p><strong>iReader</strong><br />
View news stories and other articles in a very easy to read, clutter-free, scrollable display.</p>
<p><strong>Readability</strong><br />
Readability is a web and mobile app that zaps clutter and saves web articles in a comfortable reading view.</p>
<p><strong>Proxy Switchy!</strong><br />
Manage and switch between multiple proxies quickly and easily.</p>
<p><strong>Shoyu RSS/Atom Feed Preview</strong><br />
Simple feed preview and subscribe.</p>
<p><strong>Smooth Gestures</strong><br />
拥有鼠标手势，可以更加便捷地通过鼠标或键盘浏览网页。</p>
<p><strong>豆瓣用户邀请辅助工具</strong><br />
豆瓣用户邀请全选/反选辅助工具</p>
<p><strong>豆瓣助手 Douban Helper For Chrome</strong><br />
Make Douban better 为豆瓣增加各种人性化功能</p>
<p><strong>加入卓越亚马逊心愿单</strong><br />
将任意网站的商品添加到你的卓越亚马逊心愿单</p>
<p><strong>截图快手: 截屏, 批注, 分享 (仅限于 OSX 可用）</strong><br />
截取网页可见部分或者整个页面，像画图软件那样用直线、箭头、圆圈、文字做出标识。方便的通过链接分享。</p>
<p><strong>下载助手（由Google提供）</strong><br />
使用快车、迷你快车、迅雷、迷你迅雷、QQ旋风、电驴、Orbit、Internet Download Manager或Free Download Manager下载网页链接。</p>
<p><strong>迅雷、快车、旋风专用链自动破解</strong><br />
自动把页面里的迅雷,快车Flashget,旋风链接替换为真实地址,使用你自己喜欢的下载方式来下载.</p>
<p><strong>暂存</strong><br />
保存窗口，顷刻收纳，轻松还原</p>
<p>=====华丽的分割线==========</p>
<p>博客分享也比较方便，进入扩展管理界面，全选，复制，粘贴，稍微编辑下就ok了，假如 Google 提供一个自用扩展或者收藏分享的服务就好了</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/06/im-using-chrome-extensions-software-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colors: Mac 开发颜色辅助利器</title>
		<link>http://icyleaf.com/2011/05/colors-is-ios-development-utility-tool/</link>
		<comments>http://icyleaf.com/2011/05/colors-is-ios-development-utility-tool/#comments</comments>
		<pubDate>Sun, 22 May 2011 00:00:32 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Colors]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=882</guid>
		<description><![CDATA[Colors 是一个简单的颜色取色器，简单的有可能你都没有听说过它，虽然它对于平面设计师以及 Web 设计师不太看中，但它可是程序员中的一个实用利器，为什么这样说呢，看下面截图，除了基本的颜色取值外，还包括了 Mac 和 iOS（iPhone/iPad）对于类的取值。 等等，你说的不对，我下载了发现并没有 UIColor 的值，坑爹这不是，哈哈，非也，这个应用的最大好处在于可以自定义输出值。默认程序并没有 UIColor 这值。其实添加也很简单，在设置里（Command+逗号），添加一个名为 UIColor 的选项，其中只需要设置 GRB 的输出值和 Alpha 一样即可（Short Decimal over 1），输出格式使用 UIColor 的 RGBA 格式： [UIColor colorWithRed:%r green:%g blue:%b alpha:%a] 后来发现这个应用是开源项目，且最后更新时间为 2009 年，难怪没有 UIColor 的输出值，有兴趣的朋友可以 Fork ：https://github.com/13bold/Colors]]></description>
			<content:encoded><![CDATA[<p><a href="http://mattpatenaude.com/" target="_blank">Colors</a> 是一个简单的颜色取色器，简单的有可能你都没有听说过它，虽然它对于平面设计师以及 Web 设计师不太看中，但它可是程序员中的一个实用利器，为什么这样说呢，看下面截图，除了基本的颜色取值外，还包括了 Mac 和 iOS（iPhone/iPad）对于类的取值。</p>
<p><a href="http://icyleaf.com/wp-content/uploads/2011/05/屏幕快照-2011-05-22-上午07.46.27.png"><img class="alignnone size-full wp-image-880" title="Colors" src="http://icyleaf.com/wp-content/uploads/2011/05/屏幕快照-2011-05-22-上午07.46.27.png" alt="" width="166" height="274" /></a></p>
<p>等等，你说的不对，我下载了发现并没有 UIColor 的值，坑爹这不是，哈哈，非也，这个应用的最大好处在于可以自定义输出值。默认程序并没有 UIColor 这值。其实添加也很简单，在设置里（Command+逗号），添加一个名为 UIColor 的选项，其中只需要设置 GRB 的输出值和 Alpha 一样即可（Short Decimal over 1），输出格式使用 UIColor 的 RGBA 格式：</p>
<pre lang="objective-c">[UIColor colorWithRed:%r green:%g blue:%b alpha:%a]</pre>
<p>后来发现这个应用是开源项目，且最后更新时间为 2009 年，难怪没有 UIColor 的输出值，有兴趣的朋友可以 Fork ：https://github.com/13bold/Colors</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/05/colors-is-ios-development-utility-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>魔豆及其豆瓣 API 测试平台开源咯</title>
		<link>http://icyleaf.com/2011/05/modou-and-douban-api-console-is-open-source-now/</link>
		<comments>http://icyleaf.com/2011/05/modou-and-douban-api-console-is-open-source-now/#comments</comments>
		<pubDate>Mon, 02 May 2011 09:22:04 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[网络开发]]></category>
		<category><![CDATA[Kohana]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[魔豆]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=873</guid>
		<description><![CDATA[这是作为 2011 年 5 月 1 日劳动节的福利发放，欢迎各位 Kohana 开发者及其爱好者围观领取，领取内容及其使用方式请前往本人 Github 的项目地址：https://github.com/icyleaf/modou]]></description>
			<content:encoded><![CDATA[<p>这是作为 2011 年 5 月 1 日劳动节的福利发放，欢迎各位 Kohana 开发者及其爱好者围观领取，领取内容及其使用方式请前往本人 Github 的项目地址：https://github.com/icyleaf/modou</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/05/modou-and-douban-api-console-is-open-source-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>为 ShareKit 增加国内相关微博/SNS 服务</title>
		<link>http://icyleaf.com/2011/05/append-related-services-into-sharekit-from-china/</link>
		<comments>http://icyleaf.com/2011/05/append-related-services-into-sharekit-from-china/#comments</comments>
		<pubDate>Mon, 02 May 2011 09:19:04 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[iDev]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[ShareKit]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=871</guid>
		<description><![CDATA[在 iDev 圈内，众所周知 ShareKit 是一个家喻户晓的分享框架，很多人都在问哪有支持国内相关微博/SNS 服务（比如，新浪微博，腾讯微博，豆瓣，开心网，校内等）的类似框架或者谁去做贡献，造福那些拿来主义的人类。正好碰巧我刚刚接触 iOS 开发不久，为了验证文章开头的那段话，恰巧我开发的应用也需要设计这块的内容，我就只好啃下了这块“硬面包”，实际上在熟悉整个 ShareKit 的代码后，外加上对于 OAuth 协议又非常的了解，做一个扩展还是很轻松的，虽然我对 Objective-C 代码并不是很熟悉，这一切得益于 ShareKit。 ShareKit 在整体上，代码写的比较完美，对于新增的服务可以轻松实现，而且另外最最大的一个好处在于国内的这些服务实际上都是 Copy to China，这有大大减少了移植的开发量，比较恶心的事，国内为了证明我们的结构和功能不同于原版，对其有做了细微的调整，这就导致使用标准化的协议不能通过，这对于只是想用的人来说就是一种灾难。 天下事有难易乎？为之，则难者亦易矣；不为，则易者亦难矣。人之为学有难易乎？学之，则难者亦易矣；不学，则易者亦难矣。 上面是从 V2EX 某帖子挖出来的一个评论，实际上这段文字大家在学校的时候应该并不陌生，随后又看到了《凭什么是我们》这篇文章，更是印证了上面这段话。 为什么我要说上面这段和标题并不沾边的文字呢，实际上现在要发布的日志本来在我看来是非常没有必要的，因为这个项目我已经在 git 上面 fork 并贡献了关于国内相关微博/SNS 服务的代码，我以为大家可以通过搜索引擎搜索到，可想还是有人来问我，那好吧，为了减少询问我的次数，以及这篇日志的 SEO，我还是写下了这个日志。 Github 项目地址：https://github.com/icyleaf/ShareKit 衷心希望这个 fork 的代码对热情开发的人有所帮助！]]></description>
			<content:encoded><![CDATA[<p>在 iDev 圈内，众所周知 ShareKit 是一个家喻户晓的分享框架，很多人都在问哪有支持国内相关微博/SNS 服务（比如，新浪微博，腾讯微博，豆瓣，开心网，校内等）的类似框架或者谁去做贡献，造福那些拿来主义的人类。正好碰巧我刚刚接触 iOS 开发不久，为了验证文章开头的那段话，恰巧我开发的应用也需要设计这块的内容，我就只好啃下了这块“硬面包”，实际上在熟悉整个 ShareKit 的代码后，外加上对于 OAuth 协议又非常的了解，做一个扩展还是很轻松的，虽然我对 Objective-C 代码并不是很熟悉，这一切得益于 ShareKit。</p>
<p>ShareKit 在整体上，代码写的比较完美，对于新增的服务可以轻松实现，而且另外最最大的一个好处在于国内的这些服务实际上都是 Copy to China，这有大大减少了移植的开发量，比较恶心的事，国内为了证明我们的结构和功能不同于原版，对其有做了细微的调整，这就导致使用标准化的协议不能通过，这对于只是想用的人来说就是一种灾难。</p>
<blockquote><p>天下事有难易乎？为之，则难者亦易矣；不为，则易者亦难矣。人之为学有难易乎？学之，则难者亦易矣；不学，则易者亦难矣。</p></blockquote>
<p>上面是从 V2EX 某帖子挖出来的一个评论，实际上这段文字大家在学校的时候应该并不陌生，随后又看到了《<a href="http://huajun.w18.net/?p=388">凭什么是我们</a>》这篇文章，更是印证了上面这段话。</p>
<p>为什么我要说上面这段和标题并不沾边的文字呢，实际上现在要发布的日志本来在我看来是非常没有必要的，因为这个项目我已经在 git 上面 fork 并贡献了关于国内相关微博/SNS 服务的代码，我以为大家可以通过搜索引擎搜索到，可想还是有人来问我，那好吧，为了减少询问我的次数，以及这篇日志的 SEO，我还是写下了这个日志。</p>
<p>Github 项目地址：https://github.com/icyleaf/ShareKit</p>
<p>衷心希望这个 fork 的代码对热情开发的人有所帮助！</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/05/append-related-services-into-sharekit-from-china/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>如何在开发和发布环境使用 Android Map Key</title>
		<link>http://icyleaf.com/2011/05/how-to-using-android-map-key-both-in-development-and-production/</link>
		<comments>http://icyleaf.com/2011/05/how-to-using-android-map-key-both-in-development-and-production/#comments</comments>
		<pubDate>Mon, 02 May 2011 08:56:18 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=867</guid>
		<description><![CDATA[在项目中第一次使用并涉及 Google Map 的功能，而由于 Google 的限制，Google Map 模块出来需要单独下载模块之外，对于每一个应用还都必须具有一个 Google Map Key，这点和使用 Web 开发调用 Google Map API 是一致的。 对于 Android 采用的 Google Map Key 来说，是由一串 MD5 值（类似这样：94:1E:43:49:87:73:BB:E6:A6:88:D7:20:F1:8E:B5:98）生成的。那么这个 MD5 是哪来的呢？ 1. 开发环境的 Google Map Key 这个比较简单，网上大面积教程所采用的 android 系统默认带有一个 debug.keystore。假如开发使用 Eclipse，在其 windows -&#62; &#8230; <a href="http://icyleaf.com/2011/05/how-to-using-android-map-key-both-in-development-and-production/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>在项目中第一次使用并涉及 Google Map 的功能，而由于 Google 的限制，Google Map 模块出来需要单独下载模块之外，对于每一个应用还都必须具有一个 Google Map Key，这点和使用 Web 开发调用 Google Map API 是一致的。</p>
<p>对于 Android 采用的 Google Map Key 来说，是由一串 MD5 值（类似这样：94:1E:43:49:87:73:BB:E6:A6:88:D7:20:F1:8E:B5:98）生成的。那么这个 MD5 是哪来的呢？</p>
<p>1. 开发环境的 Google Map Key</p>
<p>这个比较简单，网上大面积教程所采用的 android 系统默认带有一个 debug.keystore。假如开发使用 Eclipse，在其 windows -&gt; Preference -&gt; Android -&gt; Build 下，其中 Default debug keystore 的值便是 debug.keystore 的路径。</p>
<p>在命令行或者终端执行下面命令（注意指明 debug.keystore 的路径）即可获取到 MD5 值。</p>
<pre lang="bash">keytool -list -keystore debug.keystore</pre>
<p>2. 发布环境的 Google Map Key</p>
<p>假如你的应用需要上线到官方的 Google Market 上面，则需要根据其 apk 的签名证书（keystore）的 MD5 值去生成，方法也很简单，发布的签名同样可以使用 Eclipse 的 Export 工具制作。制作完毕后（或许这个生成的签名没有 .keystore 后缀，不用在意）。同样也使用上面的命令获取其 MD5 值。</p>
<pre lang="bash">
# 比如，证书路径 /home/icyleaf/android/ews
keytool -list -keystore /home/icyleaf/android/ews
...
#  查询到了 MD5 值
Certificate fingerprint (MD5): 94:1E:43:49:87:73:BB:E6:A6:88:D7:20:F1:8E:B5:98
</pre>
<p>使用其 MD5 值在 <a href="http://code.google.com/android/maps-api-signup.html">Sign Up for the Android Maps API</a> 页面填写生成即可。</p>
<p>接下来的步骤就没什么了，又是搜索出千篇一律的教程，大家 Google 之。</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/05/how-to-using-android-map-key-both-in-development-and-production/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>个人常用 OS X 软件集合</title>
		<link>http://icyleaf.com/2011/03/im-using-osx-software-list/</link>
		<comments>http://icyleaf.com/2011/03/im-using-osx-software-list/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 15:29:00 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=861</guid>
		<description><![CDATA[用了 OS X 已经半年多了，整理下日常常用的软件。大多数都是开源或者免费软件，少数需要购买 AppCleaner：卸载软件必备，适合用于第三方安装和 App Store aliwangwang：淘宝用户必备 DiffMerge：文件、文件夹对比的工具，貌似对中文支持有问题（没有细研究） Dropbox：改 hosts 还能继续用的多平台文件云同步软件 DoubanFM：豆瓣电台 Cdto：可以快速从 Finder 切换当前路径到 terminal 里 Evernote：笔记整理同步必备 Facetime：大家都知道，免费版， HD 是收费版 Firefox：就是一火狐 FIT：免费开源的 OSX 输入法 fraise：文本编辑器，个人比较喜欢，比 TextWrangler 好用 git：SCM 软件 brew：terminal 下的软件包管理器 Chrome：浏览网页的神器 Growl：消息半透明窗提醒，Ubuntu 都模仿 iOS Simulator Cropper：可以截 iOS &#8230; <a href="http://icyleaf.com/2011/03/im-using-osx-software-list/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>用了 OS X 已经半年多了，整理下日常常用的软件。大多数都是开源或者免费软件，少数需要购买</p>
<ul>
<li>AppCleaner：卸载软件必备，适合用于第三方安装和 App Store</li>
<li>aliwangwang：淘宝用户必备</li>
<li>DiffMerge：文件、文件夹对比的工具，貌似对中文支持有问题（没有细研究）</li>
<li>Dropbox：改 hosts 还能继续用的多平台文件云同步软件</li>
<li>DoubanFM：豆瓣电台</li>
<li>Cdto：可以快速从 Finder 切换当前路径到 terminal 里</li>
<li>Evernote：笔记整理同步必备</li>
<li>Facetime：大家都知道，免费版， HD 是收费版</li>
<li>Firefox：就是一火狐</li>
<li>FIT：免费开源的 OSX 输入法</li>
<li>fraise：文本编辑器，个人比较喜欢，比 TextWrangler 好用</li>
<li>git：SCM 软件</li>
<li>brew：terminal 下的软件包管理器</li>
<li>Chrome：浏览网页的神器</li>
<li>Growl：消息半透明窗提醒，Ubuntu 都模仿</li>
<li>iOS Simulator Cropper：可以截 iOS 模拟器截图</li>
<li>iTerm：Cocoa 重写的 Terminal，支持 Linux 下快捷键切换 Tab</li>
<li>MesaSQLite：SQLite 数据库管理软件</li>
<li>MPlayerX：视频播放器</li>
<li>mysql workbench：Mysql 建模软件</li>
<li>OmniDiskSweeper：磁盘空间使用率情况</li>
<li>PHPStorm：Jetbrain 的新一神器，PHP IDE（收费）</li>
<li>PlistEditPro：plist 编辑器</li>
<li>PowerWord：金山词霸（最新版是 08 年，汗颜）</li>
<li>Reeder：Google Reader for OSX</li>
<li>Sequel pro：Mysql 数据库管理软件</li>
<li>SIMBL</li>
<li>Simple Comic：漫画软件</li>
<li>Skitch：处理截图的好工具</li>
<li>Sparrow：Gmail 客户端</li>
<li>TextWrangler：又一文本编辑器</li>
<li>The Unarchiver: 最智能且免费的解压缩软件</li>
<li>TotalFinder：Finder 增强型工具，强烈推荐（收费）</li>
<li>VirtualBox：开源虚拟机</li>
<li>Xcode 4：Apple 开发必备</li>
</ul>
<ul></ul>
<p>睡觉前的粗略整理，待续&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/03/im-using-osx-software-list/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>2010年度总结</title>
		<link>http://icyleaf.com/2011/01/2010-year-in-review/</link>
		<comments>http://icyleaf.com/2011/01/2010-year-in-review/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 06:42:09 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[生活记录]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[总结报告]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=836</guid>
		<description><![CDATA[2011年已至，又到了一年一度的年终终结的时候了。上个星期还和 @CNBorn 同学聊了年终总结的事情，今天在看翻 Google Reader 发现订阅的很多人都写了总结，虽然晚了几步，还得赶紧跟上。提炼过往的一年内所经历的事情，所感受到的一些事物&#8230;整体来说 2010 年对我来说是憧憬的一年。 2008 年是起步并定制计划的一年，2009 年是 2008 年计划沉淀后发挥的一年，2010 年在事业，技术，思想得到了逐步提高，这次总结大致按照性质为工作，技术，生活等几类： 工作 2010年可谓是 Twitter 年，作为一名从 2007 年就开始使用的轻度用户到现在随时关注的中度用户。之所谓不能说重度用户，现在已经逐渐减少了 Twitter 的牢骚，慢慢的沉淀浮躁的心，做一些自认为有意义的事情。其中最大的也是让我最满意的一件就是通过 Twitter 让我成功的从 Java 转到了 PHP 开发，感谢  @lnsoso 给我这个机会。对个人来说，比较遗憾的是在转入 PHP 这一行业之前，曾尝试以移动互联网开发者的身份“杀入”豆瓣，后因逢遇高人 @flycondor 告知个人能力有待提高，未遂 &#62;.&#60; 虽然没能进入豆瓣，但能转入互联网开发领域已经让人欣喜了，在新浪乐居的一年内，由于公司技术氛围很融洽，经常会在一起讨论一些技术，分享会。给个人有很好的成长空间和发挥能力。同时非常欣喜能遇上这么多好好的同事和领导 技术 PHP/Kohana 1. 2009 &#8230; <a href="http://icyleaf.com/2011/01/2010-year-in-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>2011年已至，又到了一年一度的年终终结的时候了。上个星期还和 @<a href="http://cnborn.net" target="_blank">CNBorn</a> 同学聊了年终总结的事情，今天在看翻 Google Reader 发现订阅的很多人都写了总结，虽然晚了几步，还得赶紧跟上。提炼过往的一年内所经历的事情，所感受到的一些事物&#8230;整体来说 2010 年对我来说是憧憬的一年。</p>
<div><a href="http://icyleaf.com/2008/12/30/2008-year-in-review/" target="_blank">2008</a> 年是起步并定制计划的一年，<a href="http://icyleaf.com/2010/01/01/2009-year-in-review/" target="_blank">2009</a> 年是 2008 年计划沉淀后发挥的一年，2010 年在事业，技术，思想得到了逐步提高，这次总结大致按照性质为工作，技术，生活等几类：</div>
<h3><strong>工作</strong></h3>
<p>2010年可谓是 Twitter 年，作为一名从 2007 年就开始使用的轻度用户到现在随时关注的中度用户。之所谓不能说重度用户，现在已经逐渐减少了 Twitter 的牢骚，慢慢的沉淀浮躁的心，做一些自认为有意义的事情。其中最大的也是让我最满意的一件就是通过 Twitter 让我成功的从 Java 转到了 PHP 开发，感谢  @<a href="http://twitter.com/lnsoso">lnsoso</a> 给我这个机会。对个人来说，比较遗憾的是在转入 PHP 这一行业之前，曾尝试以移动互联网开发者的身份“杀入”豆瓣，后因逢遇高人 @<a href="http://www.douban.com/people/flycondor/" target="_blank">flycondor</a> 告知个人能力有待提高，未遂 &gt;.&lt;</p>
<p>虽然没能进入豆瓣，但能转入互联网开发领域已经让人欣喜了，在<a href="http://house.sina.com.cn" target="_blank">新浪乐居</a>的一年内，由于公司技术氛围很融洽，经常会在一起讨论一些技术，分享会。给个人有很好的成长空间和发挥能力。同时非常欣喜能遇上这么多好好的同事和领导 <img src='http://icyleaf.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>技术</h3>
<div>
<ul>
<li>PHP/Kohana<br />
1. 2009 年提到的 Douban API Package 以开源的形式正式发布到了 <a href="https://github.com/icyleaf/douban" target="_blank">github</a> 上面。<br />
2. <a href="https://github.com/icyleaf/alpaca" target="_blank">alpaca</a> 社区系统在整个一年之中虽然没太多的功能增加，但其代码在不断的重构（最近在读<a href="http://book.douban.com/subject/4262627/" target="_blank">重构</a>更加确定了重构的重要性）<br />
3. 学习了一个轻量级的模版引擎框架 <a href="http://www.twig-project.org/" target="_blank">twig-php</a>，虽然也是今年开始熟悉 Smarty 的，但是我更喜欢 twig，语义清晰，解析速度迅速，其实框架的灵感来自于 Django 自身的模版系统，而且易于扩展开发。 详情请看作者在最初的<a href="http://fabien.potencier.org/article/34/templating-engines-in-php" target="_blank">介绍</a>。<br />
4. gears 项目一个类似于 ROR 下面 Redmine 的项目需求管理系统，由于 PHP 上面没也太好的系统，自己着手开发并熟悉下复杂逻辑的开发，项目尚在开发中，没有源码发布 <img src='http://icyleaf.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </li>
<li>JAVA/Android<br />
在 2010 年的后半年因好奇和对 Google 开源的个人憧憬心态开始对 Android 开发做了一些研究，开始东拼西凑的做了一些小的应用，后被公司看中正式着手一个公司项目的 App，历时近 3 个月，边学习边琢磨边专注 Android 界面设计，在 12 月中旬终于可以缓一口气，并可以拍拍胸脯说这个软件可以在同等行业内软件的用户体验是可以最棒的！当然功能也不差的 <img src='http://icyleaf.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  不过该项目还没有最后的完成，等待发布吧！</li>
<li>Objective-C/iOS<br />
接触 iOS 开发的时间在 Android 之后，正好在做完一两个 Android 应用的时候拥有的人生的第一台 MacBook Pro，破不急奈的安装了 Xcode 一展其 IDE 和 Interface Builder 的风采，体验完之后傻了，相对于 Android 的界面设计，我真想发泄一下摔些东西。同等的时间在 Android 下只能设计界面，而在 Xcode 里面设计界面只是几分钟的时候（参考 <a href="http://developer.apple.com/library/mac/#documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGIntro/XHIGIntro.html" target="_blank">Apple HIG</a>）其余的时间可尽情的编码。于是从头开始学 Objective-C 下一步尝试 iOS 开发。、</li>
</ul>
</div>
<p>另外很高兴成功 <a href="http://www.beijing-open-party.org/" target="_blank">Beijng Open Party</a> 活动的志愿者，希望在新的一年中可以努力为 OP 加油&amp;奋斗！</p>
<h3><strong><span id="more-836"></span>数码设备</strong></h3>
<ol>
<li>Mac Book Pro<br />
本来是期待身边的朋友购买的，因某人坚持不下，自己集资购入该设备，为今后 iOS 开发打好前期准备。</li>
<li>BlackBerry 8900<br />
再一次下定觉得购入了第二台 bb 设备，第一台 8310 走完了它自己人生光辉的一年，主要是被我蹂躏了不成样子了，作为 RIM 公司后期拥有绝对血统的 8900 和 9000，果断入手前者，同时对 @cooku 童鞋当时问她为什么不买 9000 自我推倒- -！</li>
<li>iPad<br />
啊哈，有一个推倒前期自我反对思想的奢侈品，作为一个较长期的苹果用户，其产品具有一定的“洗脑”作用。当然目前 iPad 使用频率最高的是 iBook、Twitter 和浏览器，偶尔玩玩游戏和体验一些有趣的 app。</li>
<li>Canon 50mm/1.8f<br />
第一个也可能是唯一个佳能的镜头，用的次数并不是很多 &gt;.&lt;</li>
</ol>
<h3>读书</h3>
<p>书里面水分很多，夹杂了一些曾经看到的漫画和小说，但也阅读了一些有信仰，有深刻含义的图书，比如 1984，动物庄园，切·格瓦拉传，刀锋，不去会死，苹果往事。</p>
<p>技术图书推荐：Rework(Olivda 合译本)，用户故事，重构，Pro Git，给大家看的设计书</p>
<p><img id="chartMonth" src="http://chart.apis.google.com/chart?chs=400x200&amp;cht=bvs&amp;chd=s:CEUEIKSEcIrQ&amp;chxt=y,x,x&amp;chxl=0:|0|5|10|15|20|25|30|1:|1|2|3|4|5|6|7|8|9|10|11|12|2:|month&amp;chxp=2,100&amp;chf=c,lg,90,76A4FB,0.5,ffffff,0|bg,s,EFEFEF&amp;chco=0000ff&amp;chtt=82 books+you+added+in+year+2010|divided+by+month" alt="" /></p>
<div id="doubanlist">
<table>
<tbody>
<tr>
<td><a title="Objective-C基础教程/图灵程序设计丛书" href="http://book.douban.com/subject/3864073/" target="_blank"><img src="http://img3.douban.com/spic/s3885296.jpg" border="0" alt="" /></a></td>
<td><a title="iPhone游戏编程实例" href="http://book.douban.com/subject/4923180/" target="_blank"><img src="http://img3.douban.com/spic/s4438552.jpg" border="0" alt="" /></a></td>
<td><a title="我的私宅论" href="http://book.douban.com/subject/4746130/" target="_blank"><img src="http://img3.douban.com/spic/s4339288.jpg" border="0" alt="" /></a></td>
<td><a title="我在伊朗长大（合订本）" href="http://book.douban.com/subject/4071859/" target="_blank"><img src="http://img5.douban.com/spic/s4145135.jpg" border="0" alt="" /></a></td>
<td><a title="Objective C" href="http://book.douban.com/subject/4036004/" target="_blank"><img src="http://img3.douban.com/spic/s4474747.jpg" border="0" alt="" /></a></td>
<td><a title="生命的游行" href="http://book.douban.com/subject/4882162/" target="_blank"><img src="http://img3.douban.com/spic/s4447802.jpg" border="0" alt="" /></a></td>
<td><a title="搞定" href="http://book.douban.com/subject/4849382/" target="_blank"><img src="http://img3.douban.com/spic/s4373530.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="用洗脸盆吃羊肉饭" href="http://book.douban.com/subject/4908871/" target="_blank"><img src="http://img3.douban.com/spic/s4455593.jpg" border="0" alt="" /></a></td>
<td><a title="Become an Xcoder" href="http://book.douban.com/subject/4516143/" target="_blank"><img src="http://img3.douban.com/spic/s4481857.jpg" border="0" alt="" /></a></td>
<td><a title="大便书" href="http://book.douban.com/subject/3181927/" target="_blank"><img src="http://img3.douban.com/spic/s3330898.jpg" border="0" alt="" /></a></td>
<td><a title="独唱团（第一辑）" href="http://book.douban.com/subject/4886245/" target="_blank"><img src="http://img3.douban.com/spic/s4436571.jpg" border="0" alt="" /></a></td>
<td><a title="刀锋" href="http://book.douban.com/subject/2035162/" target="_blank"><img src="http://img3.douban.com/spic/s2507506.jpg" border="0" alt="" /></a></td>
<td><a title="Android应用开发" href="http://book.douban.com/subject/5250774/" target="_blank"><img src="http://img3.douban.com/spic/s4484502.jpg" border="0" alt="" /></a></td>
<td><a title="Google Android揭秘" href="http://book.douban.com/subject/4320723/" target="_blank"><img src="http://img3.douban.com/spic/s4205363.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="瞬间之美" href="http://book.douban.com/subject/3886044/" target="_blank"><img src="http://img5.douban.com/spic/s4190255.jpg" border="0" alt="" /></a></td>
<td><a title="BOY圣子到" href="http://book.douban.com/subject/1798557/" target="_blank"><img src="http://img3.douban.com/spic/s1668507.jpg" border="0" alt="" /></a></td>
<td><a title="新網球王子 (1)" href="http://book.douban.com/subject/4582912/" target="_blank"><img src="http://img5.douban.com/spic/s4345185.jpg" border="0" alt="" /></a></td>
<td><a title="蜡笔小新（全32册）" href="http://book.douban.com/subject/1006639/" target="_blank"><img src="http://img3.douban.com/spic/s1069521.jpg" border="0" alt="" /></a></td>
<td><a title="噬魂师" href="http://book.douban.com/subject/2160939/" target="_blank"><img src="http://img3.douban.com/spic/s3170350.jpg" border="0" alt="" /></a></td>
<td><a title="JOJO的奇妙冒險(01)" href="http://book.douban.com/subject/1467599/" target="_blank"><img src="http://img5.douban.com/spic/s3141185.jpg" border="0" alt="" /></a></td>
<td><a title="富江 PARTIII" href="http://book.douban.com/subject/1441241/" target="_blank"><img src="http://img3.douban.com/spic/s3144138.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="CLOVER（VOL.1--4）" href="http://book.douban.com/subject/1439894/" target="_blank"><img src="http://img3.douban.com/spic/s1456959.jpg" border="0" alt="" /></a></td>
<td><a title="名侦探柯南(42)" href="http://book.douban.com/subject/1138986/" target="_blank"><img src="http://img3.douban.com/spic/s1106686.jpg" border="0" alt="" /></a></td>
<td><a title="犬夜叉01" href="http://book.douban.com/subject/1458192/" target="_blank"><img src="http://img3.douban.com/spic/s3156692.jpg" border="0" alt="" /></a></td>
<td><a title="幽遊白書1" href="http://book.douban.com/subject/1467914/" target="_blank"><img src="http://img3.douban.com/spic/s3143419.jpg" border="0" alt="" /></a></td>
<td><a title="666撒旦01" href="http://book.douban.com/subject/3128051/" target="_blank"><img src="http://img3.douban.com/spic/s3157416.jpg" border="0" alt="" /></a></td>
<td><a title="聖石小子01" href="http://book.douban.com/subject/3125569/" target="_blank"><img src="http://img3.douban.com/spic/s3153854.jpg" border="0" alt="" /></a></td>
<td><a title="铳梦" href="http://book.douban.com/subject/1467239/" target="_blank"><img src="http://img3.douban.com/spic/s2157023.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="寄生兽" href="http://book.douban.com/subject/2361442/" target="_blank"><img src="http://img3.douban.com/spic/s2828271.jpg" border="0" alt="" /></a></td>
<td><a title="代码整洁之道(英文影印版)" href="http://book.douban.com/subject/3892588/" target="_blank"><img src="http://img3.douban.com/spic/s3999236.jpg" border="0" alt="" /></a></td>
<td><a title="小王子" href="http://book.douban.com/subject/1084336/" target="_blank"><img src="http://img3.douban.com/spic/s1103152.jpg" border="0" alt="" /></a></td>
<td><a title="Android基础教程(第3版)" href="http://book.douban.com/subject/4923187/" target="_blank"><img src="http://img3.douban.com/spic/s4447848.jpg" border="0" alt="" /></a></td>
<td><a title="用户故事与敏捷方法" href="http://book.douban.com/subject/4743056/" target="_blank"><img src="http://img3.douban.com/spic/s4362528.jpg" border="0" alt="" /></a></td>
<td><a title="垮掉的一代" href="http://book.douban.com/subject/2159470/" target="_blank"><img src="http://img3.douban.com/spic/s2619598.jpg" border="0" alt="" /></a></td>
<td><a title="缔造苹果神话" href="http://book.douban.com/subject/1963022/" target="_blank"><img src="http://img5.douban.com/spic/s2181305.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="苹果往事" href="http://book.douban.com/subject/4214837/" target="_blank"><img src="http://img3.douban.com/spic/s4114974.jpg" border="0" alt="" /></a></td>
<td><a title="可爱的洪水猛兽" href="http://book.douban.com/subject/3860856/" target="_blank"><img src="http://img3.douban.com/spic/s3947864.jpg" border="0" alt="" /></a></td>
<td><a title="Rework" href="http://book.douban.com/subject/3889178/" target="_blank"><img src="http://img3.douban.com/spic/s4242326.jpg" border="0" alt="" /></a></td>
<td><a title="演讲之禅：一位技术演讲家的自白" href="http://book.douban.com/subject/4760725/" target="_blank"><img src="http://img3.douban.com/spic/s4279952.jpg" border="0" alt="" /></a></td>
<td><a title="黄昏清兵卫" href="http://book.douban.com/subject/4140396/" target="_blank"><img src="http://img3.douban.com/spic/s4354292.jpg" border="0" alt="" /></a></td>
<td><a title="bash Quick Reference" href="http://book.douban.com/subject/2702037/" target="_blank"><img src="http://img3.douban.com/spic/s2889034.jpg" border="0" alt="" /></a></td>
<td><a title="Wow！黑背（全2册）" href="http://book.douban.com/subject/3088345/" target="_blank"><img src="http://img3.douban.com/spic/s3157101.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="(黑背书系.第三辑)差点忘记最原汁原味的童年回忆盛宴" href="http://book.douban.com/subject/4211589/" target="_blank"><img src="http://img3.douban.com/spic/s4409338.jpg" border="0" alt="" /></a></td>
<td><a title="MySQL性能调优与架构设计" href="http://book.douban.com/subject/3729677/" target="_blank"><img src="http://img3.douban.com/spic/s3780587.jpg" border="0" alt="" /></a></td>
<td><a title="Beginning Android 2" href="http://book.douban.com/subject/4042925/" target="_blank"><img src="http://img3.douban.com/spic/s4449424.jpg" border="0" alt="" /></a></td>
<td><a title="世界游戏制作大师" href="http://book.douban.com/subject/3744787/" target="_blank"><img src="http://img3.douban.com/spic/s3793352.jpg" border="0" alt="" /></a></td>
<td><a title="英国式谋杀的衰落" href="http://book.douban.com/subject/2135140/" target="_blank"><img src="http://img3.douban.com/spic/s4493738.jpg" border="0" alt="" /></a></td>
<td><a title="六顶思考帽" href="http://book.douban.com/subject/1050510/" target="_blank"><img src="http://img3.douban.com/spic/s2368757.jpg" border="0" alt="" /></a></td>
<td><a title="不去会死！" href="http://book.douban.com/subject/4618225/" target="_blank"><img src="http://img3.douban.com/spic/s4232721.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="三杯茶" href="http://book.douban.com/subject/3266345/" target="_blank"><img src="http://img3.douban.com/spic/s3353679.jpg" border="0" alt="" /></a></td>
<td><a title="家常菜精选1288例" href="http://book.douban.com/subject/1931913/" target="_blank"><img src="http://img3.douban.com/spic/s1937833.jpg" border="0" alt="" /></a></td>
<td><a title="家常菜精选1288例 II 创意版(264页，彩色印刷，附赠100分钟超值DVD烹饪入门光盘)" href="http://book.douban.com/subject/2974467/" target="_blank"><img src="http://img3.douban.com/spic/s3061121.jpg" border="0" alt="" /></a></td>
<td><a title="高性能网站建设指南" href="http://book.douban.com/subject/3132277/" target="_blank"><img src="http://img3.douban.com/spic/s3436216.jpg" border="0" alt="" /></a></td>
<td><a title="乔布斯的秘密日记" href="http://book.douban.com/subject/4139280/" target="_blank"><img src="http://img3.douban.com/spic/s4113036.jpg" border="0" alt="" /></a></td>
<td><a title="月亮和六便士" href="http://book.douban.com/subject/1858513/" target="_blank"><img src="http://img3.douban.com/spic/s2659208.jpg" border="0" alt="" /></a></td>
<td><a title="我为什么要写作" href="http://book.douban.com/subject/2135139/" target="_blank"><img src="http://img3.douban.com/spic/s2560681.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="织田信长——菊与刀" href="http://book.douban.com/subject/2284574/" target="_blank"><img src="http://img5.douban.com/spic/s2745115.jpg" border="0" alt="" /></a></td>
<td><a title="Pro Git" href="http://book.douban.com/subject/3420144/" target="_blank"><img src="http://img3.douban.com/spic/s4530364.jpg" border="0" alt="" /></a></td>
<td><a title="构建可扩展的Web站点" href="http://book.douban.com/subject/3039216/" target="_blank"><img src="http://img3.douban.com/spic/s2966683.jpg" border="0" alt="" /></a></td>
<td><a title="Android应用开发揭秘" href="http://book.douban.com/subject/4200822/" target="_blank"><img src="http://img3.douban.com/spic/s4143787.jpg" border="0" alt="" /></a></td>
<td><a title="情系撒哈拉" href="http://book.douban.com/subject/3523037/" target="_blank"><img src="http://img3.douban.com/spic/s3604307.jpg" border="0" alt="" /></a></td>
<td><a title="三狗生活" href="http://book.douban.com/subject/3221567/" target="_blank"><img src="http://img3.douban.com/spic/s3265739.jpg" border="0" alt="" /></a></td>
<td><a title="九故事" href="http://book.douban.com/subject/2161892/" target="_blank"><img src="http://img3.douban.com/spic/s2909572.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="丰臣家族" href="http://book.douban.com/subject/3074411/" target="_blank"><img src="http://img3.douban.com/spic/s3089968.jpg" border="0" alt="" /></a></td>
<td><a title="日本战国史" href="http://book.douban.com/subject/4214213/" target="_blank"><img src="http://img3.douban.com/spic/s4424328.jpg" border="0" alt="" /></a></td>
<td><a title="乐者为王" href="http://book.douban.com/subject/1395123/" target="_blank"><img src="http://img3.douban.com/spic/s2295689.jpg" border="0" alt="" /></a></td>
<td><a title="当我们旅行" href="http://book.douban.com/subject/1884249/" target="_blank"><img src="http://img3.douban.com/spic/s1986597.jpg" border="0" alt="" /></a></td>
<td><a title="欢乐英雄" href="http://book.douban.com/subject/1264579/" target="_blank"><img src="http://img3.douban.com/spic/s3188630.jpg" border="0" alt="" /></a></td>
<td><a title="古龙传奇" href="http://book.douban.com/subject/1056335/" target="_blank"><img src="http://img5.douban.com/spic/s2157345.jpg" border="0" alt="" /></a></td>
<td><a title="失魂引" href="http://book.douban.com/subject/1172466/" target="_blank"><img src="http://img3.douban.com/spic/s2991276.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="上班族必懂的office天择定律" href="http://book.douban.com/subject/3267342/" target="_blank"><img src="http://img3.douban.com/spic/s3438310.jpg" border="0" alt="" /></a></td>
<td><a title="明朝那些事儿（柒）" href="http://book.douban.com/subject/3626924/" target="_blank"><img src="http://img3.douban.com/spic/s3688538.jpg" border="0" alt="" /></a></td>
<td><a title="走出软件作坊" href="http://book.douban.com/subject/3319935/" target="_blank"><img src="http://img3.douban.com/spic/s4026944.jpg" border="0" alt="" /></a></td>
<td><a title="7-11之恋" href="http://book.douban.com/subject/3276795/" target="_blank"><img src="http://img5.douban.com/spic/s3336935.jpg" border="0" alt="" /></a></td>
<td><a title="夜玫瑰" href="http://book.douban.com/subject/1036243/" target="_blank"><img src="http://img3.douban.com/spic/s1086361.jpg" border="0" alt="" /></a></td>
<td><a title="爱尔兰咖啡" href="http://book.douban.com/subject/1083290/" target="_blank"><img src="http://img3.douban.com/spic/s2076467.jpg" border="0" alt="" /></a></td>
<td><a title="檞寄生" href="http://book.douban.com/subject/1416954/" target="_blank"><img src="http://img3.douban.com/spic/s1429117.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="明朝那些事儿（陆）" href="http://book.douban.com/subject/3274113/" target="_blank"><img src="http://img3.douban.com/spic/s4428711.jpg" border="0" alt="" /></a></td>
<td><a title="明朝那些事儿（伍）" href="http://book.douban.com/subject/3009821/" target="_blank"><img src="http://img3.douban.com/spic/s2967063.jpg" border="0" alt="" /></a></td>
<td><a title="软件随想录" href="http://book.douban.com/subject/4163938/" target="_blank"><img src="http://img3.douban.com/spic/s4073980.jpg" border="0" alt="" /></a></td>
<td><a title="写给大家看的设计书（第3版）" href="http://book.douban.com/subject/3323633/" target="_blank"><img src="http://img3.douban.com/spic/s3390920.jpg" border="0" alt="" /></a></td>
<td><a title="明朝那些事兒 肆" href="http://book.douban.com/subject/3717819/" target="_blank"><img src="http://img3.douban.com/spic/s3769993.jpg" border="0" alt="" /></a></td>
</tr>
</tbody>
</table>
</div>
<h3><strong>电影</strong></h3>
<p>这一年的电影可没少看，因总看恐怖片被 @CNBorn 无比鄙视，因此开始计划看完 <a href="http://www.imdb.com/chart/top" target="_blank">IMDB Top 250</a> (<a href="http://www.verycd.com/topics/2803261/" target="_blank">电驴下载</a>)，起初计划每天一部，逐渐到后来因各种工作或其他事情只能减少频率，啊，现在已经看满编号的第 100 部了（不包括下面已经看过的）！今年继续努力！</p>
<p><img id="chartMonth" src="http://chart.apis.google.com/chart?chs=400x200&amp;cht=bvs&amp;chd=s:WCftcfnUvphY&amp;chxt=y,x,x&amp;chxl=0:|0|5|10|15|20|25|30|1:|1|2|3|4|5|6|7|8|9|10|11|12|2:|month&amp;chxp=2,100&amp;chf=c,lg,90,76A4FB,0.5,ffffff,0|bg,s,EFEFEF&amp;chco=0000ff&amp;chtt=178 movies+you+added+in+year+2010|divided+by+month" alt="" /></p>
<div id="doubanlist">
<table>
<tbody>
<tr>
<td><a title="买凶拍人" href="http://movie.douban.com/subject/1300616/" target="_blank"><img src="http://img5.douban.com/spic/s1649155.jpg" border="0" alt="" /></a></td>
<td><a title="千年女優" href="http://movie.douban.com/subject/1307394/" target="_blank"><img src="http://img3.douban.com/spic/s2599193.jpg" border="0" alt="" /></a></td>
<td><a title="In the Loop" href="http://movie.douban.com/subject/3073079/" target="_blank"><img src="http://img3.douban.com/spic/s3744690.jpg" border="0" alt="" /></a></td>
<td><a title="La marche de l'empereur" href="http://movie.douban.com/subject/1369747/" target="_blank"><img src="http://img3.douban.com/spic/s1428562.jpg" border="0" alt="" /></a></td>
<td><a title="让子弹飞" href="http://movie.douban.com/subject/3742360/" target="_blank"><img src="http://img3.douban.com/spic/s4562692.jpg" border="0" alt="" /></a></td>
<td><a title="12 Angry Men" href="http://movie.douban.com/subject/1293182/" target="_blank"><img src="http://img3.douban.com/spic/s2757357.jpg" border="0" alt="" /></a></td>
<td><a title="Despicable Me" href="http://movie.douban.com/subject/3287562/" target="_blank"><img src="http://img3.douban.com/spic/s4357597.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="La dama y la muerte" href="http://movie.douban.com/subject/4158027/" target="_blank"><img src="http://img3.douban.com/spic/s4180797.jpg" border="0" alt="" /></a></td>
<td><a title="パプリカ" href="http://movie.douban.com/subject/1865703/" target="_blank"><img src="http://img3.douban.com/spic/s2503561.jpg" border="0" alt="" /></a></td>
<td><a title="The Blind Side" href="http://movie.douban.com/subject/3552028/" target="_blank"><img src="http://img3.douban.com/spic/s3970373.jpg" border="0" alt="" /></a></td>
<td><a title="All About Eve" href="http://movie.douban.com/subject/1401385/" target="_blank"><img src="http://img3.douban.com/spic/s1495096.jpg" border="0" alt="" /></a></td>
<td><a title="The Apartment" href="http://movie.douban.com/subject/1394218/" target="_blank"><img src="http://img3.douban.com/spic/s1887728.jpg" border="0" alt="" /></a></td>
<td><a title="The Great Dictator" href="http://movie.douban.com/subject/1295646/" target="_blank"><img src="http://img3.douban.com/spic/s1429179.jpg" border="0" alt="" /></a></td>
<td><a title="The Green Mile" href="http://movie.douban.com/subject/1300374/" target="_blank"><img src="http://img3.douban.com/spic/s1887027.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Resident Evil: Afterlife" href="http://movie.douban.com/subject/3041294/" target="_blank"><img src="http://img3.douban.com/spic/s4379754.jpg" border="0" alt="" /></a></td>
<td><a title="Metropolis" href="http://movie.douban.com/subject/2998422/" target="_blank"><img src="http://img3.douban.com/spic/s4344373.jpg" border="0" alt="" /></a></td>
<td><a title="Braveheart" href="http://movie.douban.com/subject/1294639/" target="_blank"><img src="http://img3.douban.com/spic/s2804838.jpg" border="0" alt="" /></a></td>
<td><a title="山楂树之恋" href="http://movie.douban.com/subject/4151110/" target="_blank"><img src="http://img3.douban.com/spic/s4466072.jpg" border="0" alt="" /></a></td>
<td><a title="唐山大地震" href="http://movie.douban.com/subject/3596502/" target="_blank"><img src="http://img3.douban.com/spic/s4287549.jpg" border="0" alt="" /></a></td>
<td><a title="天空の城ラピュタ" href="http://movie.douban.com/subject/1291583/" target="_blank"><img src="http://img3.douban.com/spic/s3819594.jpg" border="0" alt="" /></a></td>
<td><a title="Love at First Hiccup" href="http://movie.douban.com/subject/3288397/" target="_blank"><img src="http://img3.douban.com/spic/s4433907.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Gran Torino" href="http://movie.douban.com/subject/3026357/" target="_blank"><img src="http://img5.douban.com/spic/s3574425.jpg" border="0" alt="" /></a></td>
<td><a title="11度青春之《老男孩》" href="http://movie.douban.com/subject/5344178/" target="_blank"><img src="http://img3.douban.com/spic/s4525371.jpg" border="0" alt="" /></a></td>
<td><a title="Memento" href="http://movie.douban.com/subject/1304447/" target="_blank"><img src="http://img3.douban.com/spic/s3185152.jpg" border="0" alt="" /></a></td>
<td><a title="Up in the Air" href="http://movie.douban.com/subject/3077791/" target="_blank"><img src="http://img3.douban.com/spic/s3943419.jpg" border="0" alt="" /></a></td>
<td><a title="Amadeus" href="http://movie.douban.com/subject/1293399/" target="_blank"><img src="http://img3.douban.com/spic/s1317900.jpg" border="0" alt="" /></a></td>
<td><a title="羅生門" href="http://movie.douban.com/subject/1291879/" target="_blank"><img src="http://img3.douban.com/spic/s1310568.jpg" border="0" alt="" /></a></td>
<td><a title="意外" href="http://movie.douban.com/subject/3013580/" target="_blank"><img src="http://img3.douban.com/spic/s3958466.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="The Social Network" href="http://movie.douban.com/subject/3205624/" target="_blank"><img src="http://img5.douban.com/spic/s4387115.jpg" border="0" alt="" /></a></td>
<td><a title="Wallace and Gromit in 'A Matter of Loaf and Death'" href="http://movie.douban.com/subject/3312633/" target="_blank"><img src="http://img3.douban.com/spic/s3512749.jpg" border="0" alt="" /></a></td>
<td><a title="爱情维修站" href="http://movie.douban.com/subject/5044741/" target="_blank"><img src="http://img3.douban.com/spic/s4507511.jpg" border="0" alt="" /></a></td>
<td><a title="The Maltese Falcon" href="http://movie.douban.com/subject/1297874/" target="_blank"><img src="http://img3.douban.com/spic/s3048839.jpg" border="0" alt="" /></a></td>
<td><a title="Some Like It Hot" href="http://movie.douban.com/subject/1292574/" target="_blank"><img src="http://img3.douban.com/spic/s2719030.jpg" border="0" alt="" /></a></td>
<td><a title="岁月神偷" href="http://movie.douban.com/subject/3792799/" target="_blank"><img src="http://img3.douban.com/spic/s4226652.jpg" border="0" alt="" /></a></td>
<td><a title="Modern Times" href="http://movie.douban.com/subject/1294371/" target="_blank"><img src="http://img3.douban.com/spic/s1429177.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Der Untergang" href="http://movie.douban.com/subject/1309115/" target="_blank"><img src="http://img3.douban.com/spic/s1325586.jpg" border="0" alt="" /></a></td>
<td><a title="Back to the Future" href="http://movie.douban.com/subject/1300555/" target="_blank"><img src="http://img5.douban.com/spic/s1739825.jpg" border="0" alt="" /></a></td>
<td><a title="La vita è bella" href="http://movie.douban.com/subject/1292063/" target="_blank"><img src="http://img3.douban.com/spic/s2355022.jpg" border="0" alt="" /></a></td>
<td><a title="枪王之王" href="http://movie.douban.com/subject/4133988/" target="_blank"><img src="http://img3.douban.com/spic/s4381860.jpg" border="0" alt="" /></a></td>
<td><a title="Inception" href="http://movie.douban.com/subject/3541415/" target="_blank"><img src="http://img3.douban.com/spic/s4356687.jpg" border="0" alt="" /></a></td>
<td><a title="2001: A Space Odyssey" href="http://movie.douban.com/subject/1292226/" target="_blank"><img src="http://img3.douban.com/spic/s1311508.jpg" border="0" alt="" /></a></td>
<td><a title="Monty Python and the Holy Grail" href="http://movie.douban.com/subject/1294917/" target="_blank"><img src="http://img3.douban.com/spic/s1317736.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="The Ghost Writer" href="http://movie.douban.com/subject/3120852/" target="_blank"><img src="http://img3.douban.com/spic/s4149033.jpg" border="0" alt="" /></a></td>
<td><a title="The Prestige" href="http://movie.douban.com/subject/1780330/" target="_blank"><img src="http://img5.douban.com/spic/s1872245.jpg" border="0" alt="" /></a></td>
<td><a title="Rear Window" href="http://movie.douban.com/subject/1299080/" target="_blank"><img src="http://img5.douban.com/spic/s1317985.jpg" border="0" alt="" /></a></td>
<td><a title="Julie &amp; Julia" href="http://movie.douban.com/subject/2996640/" target="_blank"><img src="http://img3.douban.com/spic/s4155880.jpg" border="0" alt="" /></a></td>
<td><a title="Precious: Based on the Novel Push by Sapphire" href="http://movie.douban.com/subject/3011072/" target="_blank"><img src="http://img3.douban.com/spic/s3860300.jpg" border="0" alt="" /></a></td>
<td><a title="Das Leben der Anderen" href="http://movie.douban.com/subject/1900841/" target="_blank"><img src="http://img3.douban.com/spic/s2187983.jpg" border="0" alt="" /></a></td>
<td><a title="Salt" href="http://movie.douban.com/subject/2153526/" target="_blank"><img src="http://img3.douban.com/spic/s4063848.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="색즉시공2" href="http://movie.douban.com/subject/3008892/" target="_blank"><img src="http://img3.douban.com/spic/s2965306.jpg" border="0" alt="" /></a></td>
<td><a title="색즉시공" href="http://movie.douban.com/subject/1305279/" target="_blank"><img src="http://img3.douban.com/spic/s1792841.jpg" border="0" alt="" /></a></td>
<td><a title="The Million Pound Note" href="http://movie.douban.com/subject/1304374/" target="_blank"><img src="http://img3.douban.com/spic/s4433853.jpg" border="0" alt="" /></a></td>
<td><a title="The Imaginarium of Doctor Parnassus" href="http://movie.douban.com/subject/2282449/" target="_blank"><img src="http://img3.douban.com/spic/s4017962.jpg" border="0" alt="" /></a></td>
<td><a title="Singin' in the Rain" href="http://movie.douban.com/subject/1293460/" target="_blank"><img src="http://img3.douban.com/spic/s1500143.jpg" border="0" alt="" /></a></td>
<td><a title="一頁台北" href="http://movie.douban.com/subject/3217122/" target="_blank"><img src="http://img3.douban.com/spic/s4204277.jpg" border="0" alt="" /></a></td>
<td><a title="The Pixar Story" href="http://movie.douban.com/subject/2223463/" target="_blank"><img src="http://img3.douban.com/spic/s2750237.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="The Expendables" href="http://movie.douban.com/subject/3279080/" target="_blank"><img src="http://img3.douban.com/spic/s4225756.jpg" border="0" alt="" /></a></td>
<td><a title="Fantastic Mr. Fox" href="http://movie.douban.com/subject/1759386/" target="_blank"><img src="http://img3.douban.com/spic/s3969142.jpg" border="0" alt="" /></a></td>
<td><a title="The Thirty Nine Steps" href="http://movie.douban.com/subject/1302597/" target="_blank"><img src="http://img3.douban.com/spic/s1486099.jpg" border="0" alt="" /></a></td>
<td><a title="Coraline" href="http://movie.douban.com/subject/1919245/" target="_blank"><img src="http://img3.douban.com/spic/s3338584.jpg" border="0" alt="" /></a></td>
<td><a title="Lie to Me Season 2" href="http://movie.douban.com/subject/3882839/" target="_blank"><img src="http://img3.douban.com/spic/s3994206.jpg" border="0" alt="" /></a></td>
<td><a title="Coco avant Chanel" href="http://movie.douban.com/subject/2148257/" target="_blank"><img src="http://img3.douban.com/spic/s3656959.jpg" border="0" alt="" /></a></td>
<td><a title="A Serious Man" href="http://movie.douban.com/subject/3135483/" target="_blank"><img src="http://img3.douban.com/spic/s3922380.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Un prophète" href="http://movie.douban.com/subject/3077739/" target="_blank"><img src="http://img3.douban.com/spic/s3988574.jpg" border="0" alt="" /></a></td>
<td><a title="(500) Days of Summer" href="http://movie.douban.com/subject/3072086/" target="_blank"><img src="http://img5.douban.com/spic/s3952995.jpg" border="0" alt="" /></a></td>
<td><a title="Love Actually" href="http://movie.douban.com/subject/1292401/" target="_blank"><img src="http://img5.douban.com/spic/s1312705.jpg" border="0" alt="" /></a></td>
<td><a title="Iron Man 2" href="http://movie.douban.com/subject/3066739/" target="_blank"><img src="http://img3.douban.com/spic/s4234948.jpg" border="0" alt="" /></a></td>
<td><a title="The Twilight Saga: Eclipse" href="http://movie.douban.com/subject/3289086/" target="_blank"><img src="http://img5.douban.com/spic/s4233495.jpg" border="0" alt="" /></a></td>
<td><a title="You Don't Know Jack" href="http://movie.douban.com/subject/3074482/" target="_blank"><img src="http://img3.douban.com/spic/s4401306.jpg" border="0" alt="" /></a></td>
<td><a title="Food, Inc." href="http://movie.douban.com/subject/3564499/" target="_blank"><img src="http://img3.douban.com/spic/s3701640.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="3 Idiots" href="http://movie.douban.com/subject/3793023/" target="_blank"><img src="http://img3.douban.com/spic/s4433349.jpg" border="0" alt="" /></a></td>
<td><a title="Waterloo Bridge" href="http://movie.douban.com/subject/1293964/" target="_blank"><img src="http://img3.douban.com/spic/s3812838.jpg" border="0" alt="" /></a></td>
<td><a title="L.A. Confidential" href="http://movie.douban.com/subject/1292348/" target="_blank"><img src="http://img3.douban.com/spic/s3104346.jpg" border="0" alt="" /></a></td>
<td><a title="Requiem for a Dream" href="http://movie.douban.com/subject/1292270/" target="_blank"><img src="http://img3.douban.com/spic/s2155554.jpg" border="0" alt="" /></a></td>
<td><a title="Splice" href="http://movie.douban.com/subject/2301701/" target="_blank"><img src="http://img3.douban.com/spic/s4354806.jpg" border="0" alt="" /></a></td>
<td><a title="Eternal Sunshine of the Spotless Mind" href="http://movie.douban.com/subject/1308777/" target="_blank"><img src="http://img3.douban.com/spic/s1327734.jpg" border="0" alt="" /></a></td>
<td><a title="千と千尋の神隠し" href="http://movie.douban.com/subject/1291561/" target="_blank"><img src="http://img3.douban.com/spic/s1309372.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Milk" href="http://movie.douban.com/subject/2336737/" target="_blank"><img src="http://img3.douban.com/spic/s3249953.jpg" border="0" alt="" /></a></td>
<td><a title="Ninja Assassin" href="http://movie.douban.com/subject/3011033/" target="_blank"><img src="http://img5.douban.com/spic/s3896805.jpg" border="0" alt="" /></a></td>
<td><a title="Proof Of The Man" href="http://movie.douban.com/subject/1291861/" target="_blank"><img src="http://img3.douban.com/spic/s3099844.jpg" border="0" alt="" /></a></td>
<td><a title="The Pianist" href="http://movie.douban.com/subject/1296736/" target="_blank"><img src="http://img3.douban.com/spic/s1471959.jpg" border="0" alt="" /></a></td>
<td><a title="Manhattan" href="http://movie.douban.com/subject/1294300/" target="_blank"><img src="http://img3.douban.com/spic/s3018119.jpg" border="0" alt="" /></a></td>
<td><a title="To Kill a Mockingbird" href="http://movie.douban.com/subject/1297991/" target="_blank"><img src="http://img3.douban.com/spic/s2831893.jpg" border="0" alt="" /></a></td>
<td><a title="Nuovo cinema Paradiso" href="http://movie.douban.com/subject/1291828/" target="_blank"><img src="http://img3.douban.com/spic/s4011078.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="A Clockwork Orange" href="http://movie.douban.com/subject/1292233/" target="_blank"><img src="http://img3.douban.com/spic/s1669022.jpg" border="0" alt="" /></a></td>
<td><a title="The Twilight Saga: New Moon" href="http://movie.douban.com/subject/3148027/" target="_blank"><img src="http://img3.douban.com/spic/s4034230.jpg" border="0" alt="" /></a></td>
<td><a title="Avatar" href="http://movie.douban.com/subject/1652587/" target="_blank"><img src="http://img3.douban.com/spic/s4065701.jpg" border="0" alt="" /></a></td>
<td><a title="Lawrence of Arabia" href="http://movie.douban.com/subject/1292349/" target="_blank"><img src="http://img3.douban.com/spic/s2549253.jpg" border="0" alt="" /></a></td>
<td><a title="叶问2：宗师传奇" href="http://movie.douban.com/subject/3578981/" target="_blank"><img src="http://img3.douban.com/spic/s4208411.jpg" border="0" alt="" /></a></td>
<td><a title="The Big Bang Theory Season 3" href="http://movie.douban.com/subject/3990470/" target="_blank"><img src="http://img3.douban.com/spic/s4008103.jpg" border="0" alt="" /></a></td>
<td><a title="The Big Bang Theory Season 2" href="http://movie.douban.com/subject/3190880/" target="_blank"><img src="http://img3.douban.com/spic/s4194192.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="The Big Bang Theory" href="http://movie.douban.com/subject/2156528/" target="_blank"><img src="http://img3.douban.com/spic/s2697823.jpg" border="0" alt="" /></a></td>
<td><a title="おせん" href="http://movie.douban.com/subject/3003093/" target="_blank"><img src="http://img3.douban.com/spic/s3176871.jpg" border="0" alt="" /></a></td>
<td><a title="フラガール" href="http://movie.douban.com/subject/1788940/" target="_blank"><img src="http://img3.douban.com/spic/s1882033.jpg" border="0" alt="" /></a></td>
<td><a title="Shutter Island" href="http://movie.douban.com/subject/2334904/" target="_blank"><img src="http://img3.douban.com/spic/s3895194.jpg" border="0" alt="" /></a></td>
<td><a title="Toy Story 3" href="http://movie.douban.com/subject/1858711/" target="_blank"><img src="http://img3.douban.com/spic/s4207957.jpg" border="0" alt="" /></a></td>
<td><a title="Star Trek" href="http://movie.douban.com/subject/2132932/" target="_blank"><img src="http://img3.douban.com/spic/s3686567.jpg" border="0" alt="" /></a></td>
<td><a title="Slumdog Millionaire" href="http://movie.douban.com/subject/2209573/" target="_blank"><img src="http://img3.douban.com/spic/s3321179.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Toy Story 2" href="http://movie.douban.com/subject/1291574/" target="_blank"><img src="http://img3.douban.com/spic/s2832110.jpg" border="0" alt="" /></a></td>
<td><a title="Green Zone" href="http://movie.douban.com/subject/2131649/" target="_blank"><img src="http://img3.douban.com/spic/s4046263.jpg" border="0" alt="" /></a></td>
<td><a title="How to Train Your Dragon" href="http://movie.douban.com/subject/2353023/" target="_blank"><img src="http://img3.douban.com/spic/s4178837.jpg" border="0" alt="" /></a></td>
<td><a title="The Men Who Stare at Goats" href="http://movie.douban.com/subject/3075921/" target="_blank"><img src="http://img3.douban.com/spic/s3977950.jpg" border="0" alt="" /></a></td>
<td><a title="Bridge to Terabithia" href="http://movie.douban.com/subject/1860745/" target="_blank"><img src="http://img5.douban.com/spic/s2548065.jpg" border="0" alt="" /></a></td>
<td><a title="Toy Story" href="http://movie.douban.com/subject/1291575/" target="_blank"><img src="http://img3.douban.com/spic/s2679796.jpg" border="0" alt="" /></a></td>
<td><a title="The Graduate" href="http://movie.douban.com/subject/1292271/" target="_blank"><img src="http://img3.douban.com/spic/s1325574.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Beyond the Sea" href="http://movie.douban.com/subject/1309090/" target="_blank"><img src="http://img3.douban.com/spic/s1946198.jpg" border="0" alt="" /></a></td>
<td><a title="Once Upon a Time in America" href="http://movie.douban.com/subject/1292262/" target="_blank"><img src="http://img3.douban.com/spic/s2383154.jpg" border="0" alt="" /></a></td>
<td><a title="Chinatown" href="http://movie.douban.com/subject/1293889/" target="_blank"><img src="http://img3.douban.com/spic/s3539734.jpg" border="0" alt="" /></a></td>
<td><a title="Léon" href="http://movie.douban.com/subject/1295644/" target="_blank"><img src="http://img3.douban.com/spic/s3877058.jpg" border="0" alt="" /></a></td>
<td><a title="Double Indemnity" href="http://movie.douban.com/subject/1293226/" target="_blank"><img src="http://img3.douban.com/spic/s3883174.jpg" border="0" alt="" /></a></td>
<td><a title="Munich" href="http://movie.douban.com/subject/1438338/" target="_blank"><img src="http://img5.douban.com/spic/s2544975.jpg" border="0" alt="" /></a></td>
<td><a title="火龙对决" href="http://movie.douban.com/subject/3993708/" target="_blank"><img src="http://img3.douban.com/spic/s4214851.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="M" href="http://movie.douban.com/subject/1293381/" target="_blank"><img src="http://img3.douban.com/spic/s2524081.jpg" border="0" alt="" /></a></td>
<td><a title="Heroes" href="http://movie.douban.com/subject/1837856/" target="_blank"><img src="http://img5.douban.com/spic/s2688745.jpg" border="0" alt="" /></a></td>
<td><a title="24 Season 8" href="http://movie.douban.com/subject/4113335/" target="_blank"><img src="http://img3.douban.com/spic/s4079767.jpg" border="0" alt="" /></a></td>
<td><a title="杜拉拉升职记" href="http://movie.douban.com/subject/3820191/" target="_blank"><img src="http://img3.douban.com/spic/s4236072.jpg" border="0" alt="" /></a></td>
<td><a title="The Emperor's New Groove" href="http://movie.douban.com/subject/1301887/" target="_blank"><img src="http://img3.douban.com/spic/s1410450.jpg" border="0" alt="" /></a></td>
<td><a title="Prince of Persia: The Sands of Time" href="http://movie.douban.com/subject/1819388/" target="_blank"><img src="http://img3.douban.com/spic/s4216019.jpg" border="0" alt="" /></a></td>
<td><a title="Full Metal Jacket" href="http://movie.douban.com/subject/1300055/" target="_blank"><img src="http://img3.douban.com/spic/s1647461.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Banlieue 13" href="http://movie.douban.com/subject/1292326/" target="_blank"><img src="http://img3.douban.com/spic/s1311988.jpg" border="0" alt="" /></a></td>
<td><a title="鹰爪铁布衫" href="http://movie.douban.com/subject/1456879/" target="_blank"><img src="http://img3.douban.com/spic/s4196783.jpg" border="0" alt="" /></a></td>
<td><a title="Paths of Glory" href="http://movie.douban.com/subject/1292969/" target="_blank"><img src="http://img3.douban.com/spic/s4419883.jpg" border="0" alt="" /></a></td>
<td><a title="Vertigo" href="http://movie.douban.com/subject/1297294/" target="_blank"><img src="http://img3.douban.com/spic/s1888538.jpg" border="0" alt="" /></a></td>
<td><a title="Taxi 2" href="http://movie.douban.com/subject/1302271/" target="_blank"><img src="http://img3.douban.com/spic/s1960358.jpg" border="0" alt="" /></a></td>
<td><a title="Taxi" href="http://movie.douban.com/subject/1294262/" target="_blank"><img src="http://img3.douban.com/spic/s1387342.jpg" border="0" alt="" /></a></td>
<td><a title="Reservoir Dogs" href="http://movie.douban.com/subject/1299603/" target="_blank"><img src="http://img3.douban.com/spic/s1799689.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Citizen Kane" href="http://movie.douban.com/subject/1292288/" target="_blank"><img src="http://img5.douban.com/spic/s1317945.jpg" border="0" alt="" /></a></td>
<td><a title="North by Northwest" href="http://movie.douban.com/subject/1295872/" target="_blank"><img src="http://img3.douban.com/spic/s4034010.jpg" border="0" alt="" /></a></td>
<td><a title="2012" href="http://movie.douban.com/subject/3005875/" target="_blank"><img src="http://img5.douban.com/spic/s3964805.jpg" border="0" alt="" /></a></td>
<td><a title="엽기적인 그녀" href="http://movie.douban.com/subject/1292286/" target="_blank"><img src="http://img3.douban.com/spic/s2376357.jpg" border="0" alt="" /></a></td>
<td><a title="无间道" href="http://movie.douban.com/subject/1307914/" target="_blank"><img src="http://img3.douban.com/spic/s1951819.jpg" border="0" alt="" /></a></td>
<td><a title="Saving Private Ryan" href="http://movie.douban.com/subject/1292849/" target="_blank"><img src="http://img3.douban.com/spic/s2383216.jpg" border="0" alt="" /></a></td>
<td><a title="El laberinto del fauno" href="http://movie.douban.com/subject/1767042/" target="_blank"><img src="http://img3.douban.com/spic/s1931446.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Apocalypse Now" href="http://movie.douban.com/subject/1292260/" target="_blank"><img src="http://img3.douban.com/spic/s1669128.jpg" border="0" alt="" /></a></td>
<td><a title="The Lord of the Rings: The Two Towers" href="http://movie.douban.com/subject/1291572/" target="_blank"><img src="http://img3.douban.com/spic/s1309386.jpg" border="0" alt="" /></a></td>
<td><a title="The Departed" href="http://movie.douban.com/subject/1315316/" target="_blank"><img src="http://img3.douban.com/spic/s1789769.jpg" border="0" alt="" /></a></td>
<td><a title="The Lord of the Rings: The Fellowship of the Ring" href="http://movie.douban.com/subject/1291571/" target="_blank"><img src="http://img3.douban.com/spic/s1309384.jpg" border="0" alt="" /></a></td>
<td><a title="The Lord of the Rings: The Return of the King" href="http://movie.douban.com/subject/1291552/" target="_blank"><img src="http://img3.douban.com/spic/s1309362.jpg" border="0" alt="" /></a></td>
<td><a title="The Matrix" href="http://movie.douban.com/subject/1291843/" target="_blank"><img src="http://img3.douban.com/spic/s3052684.jpg" border="0" alt="" /></a></td>
<td><a title="大兵小将" href="http://movie.douban.com/subject/3279107/" target="_blank"><img src="http://img3.douban.com/spic/s4158727.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Sunset Blvd." href="http://movie.douban.com/subject/1298733/" target="_blank"><img src="http://img3.douban.com/spic/s1408972.jpg" border="0" alt="" /></a></td>
<td><a title="Rebecca" href="http://movie.douban.com/subject/1293824/" target="_blank"><img src="http://img5.douban.com/spic/s3379015.jpg" border="0" alt="" /></a></td>
<td><a title="American Beauty" href="http://movie.douban.com/subject/1292062/" target="_blank"><img src="http://img3.douban.com/spic/s1796089.jpg" border="0" alt="" /></a></td>
<td><a title="It's a Wonderful Life" href="http://movie.douban.com/subject/1293749/" target="_blank"><img src="http://img3.douban.com/spic/s1796407.jpg" border="0" alt="" /></a></td>
<td><a title="The Silence of the Lambs" href="http://movie.douban.com/subject/1293544/" target="_blank"><img src="http://img3.douban.com/spic/s1317930.jpg" border="0" alt="" /></a></td>
<td><a title="Inglourious Basterds" href="http://movie.douban.com/subject/1438652/" target="_blank"><img src="http://img3.douban.com/spic/s3943470.jpg" border="0" alt="" /></a></td>
<td><a title="Se7en" href="http://movie.douban.com/subject/1292223/" target="_blank"><img src="http://img3.douban.com/spic/s3968977.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="The Usual Suspects" href="http://movie.douban.com/subject/1292214/" target="_blank"><img src="http://img5.douban.com/spic/s2150065.jpg" border="0" alt="" /></a></td>
<td><a title="The Hurt Locker" href="http://movie.douban.com/subject/2028645/" target="_blank"><img src="http://img3.douban.com/spic/s3874161.jpg" border="0" alt="" /></a></td>
<td><a title="Cidade de Deus" href="http://movie.douban.com/subject/1292208/" target="_blank"><img src="http://img3.douban.com/spic/s1666536.jpg" border="0" alt="" /></a></td>
<td><a title="七人の侍" href="http://movie.douban.com/subject/1295399/" target="_blank"><img src="http://img3.douban.com/spic/s1666798.jpg" border="0" alt="" /></a></td>
<td><a title="Goodfellas" href="http://movie.douban.com/subject/1292268/" target="_blank"><img src="http://img3.douban.com/spic/s4171963.jpg" border="0" alt="" /></a></td>
<td><a title="Percy Jackson &amp; the Olympians: The Lightning Thief" href="http://movie.douban.com/subject/3090455/" target="_blank"><img src="http://img3.douban.com/spic/s4151434.jpg" border="0" alt="" /></a></td>
<td><a title="Casablanca" href="http://movie.douban.com/subject/1296753/" target="_blank"><img src="http://img3.douban.com/spic/s3812869.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="One Flew Over the Cuckoo's Nest" href="http://movie.douban.com/subject/1292224/" target="_blank"><img src="http://img3.douban.com/spic/s1441891.jpg" border="0" alt="" /></a></td>
<td><a title="Pulp Fiction" href="http://movie.douban.com/subject/1291832/" target="_blank"><img src="http://img3.douban.com/spic/s1310511.jpg" border="0" alt="" /></a></td>
<td><a title="Lock, Stock and Two Smoking Barrels" href="http://movie.douban.com/subject/1293350/" target="_blank"><img src="http://img5.douban.com/spic/s1401145.jpg" border="0" alt="" /></a></td>
<td><a title="My Sister's Keeper" href="http://movie.douban.com/subject/3011049/" target="_blank"><img src="http://img5.douban.com/spic/s3794515.jpg" border="0" alt="" /></a></td>
<td><a title="The Da Vinci Code" href="http://movie.douban.com/subject/1329950/" target="_blank"><img src="http://img3.douban.com/spic/s1354344.jpg" border="0" alt="" /></a></td>
<td><a title="Find Me Guilty" href="http://movie.douban.com/subject/1750027/" target="_blank"><img src="http://img3.douban.com/spic/s1516289.jpg" border="0" alt="" /></a></td>
<td><a title="Zombieland" href="http://movie.douban.com/subject/3259993/" target="_blank"><img src="http://img3.douban.com/spic/s3936048.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Before Sunrise" href="http://movie.douban.com/subject/1296339/" target="_blank"><img src="http://img3.douban.com/spic/s1401102.jpg" border="0" alt="" /></a></td>
<td><a title="Before Sunset" href="http://movie.douban.com/subject/1291990/" target="_blank"><img src="http://img3.douban.com/spic/s1435592.jpg" border="0" alt="" /></a></td>
<td><a title="GOEMON" href="http://movie.douban.com/subject/2301772/" target="_blank"><img src="http://img3.douban.com/spic/s3634076.jpg" border="0" alt="" /></a></td>
<td><a title="Watchmen" href="http://movie.douban.com/subject/1972698/" target="_blank"><img src="http://img3.douban.com/spic/s3571830.jpg" border="0" alt="" /></a></td>
<td><a title="隋朝来客" href="http://movie.douban.com/subject/3737283/" target="_blank"><img src="http://img3.douban.com/spic/s3995759.jpg" border="0" alt="" /></a></td>
<td><a title="The Cove" href="http://movie.douban.com/subject/3442220/" target="_blank"><img src="http://img3.douban.com/spic/s4101713.jpg" border="0" alt="" /></a></td>
<td><a title="Diarios de motocicleta" href="http://movie.douban.com/subject/1309015/" target="_blank"><img src="http://img3.douban.com/spic/s1806669.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="かもめ食堂" href="http://movie.douban.com/subject/1892578/" target="_blank"><img src="http://img3.douban.com/spic/s1870552.jpg" border="0" alt="" /></a></td>
<td><a title="P.S. I Love You" href="http://movie.douban.com/subject/1920796/" target="_blank"><img src="http://img3.douban.com/spic/s2953841.jpg" border="0" alt="" /></a></td>
<td><a title="V for Vendetta" href="http://movie.douban.com/subject/1309046/" target="_blank"><img src="http://img3.douban.com/spic/s1884078.jpg" border="0" alt="" /></a></td>
<td><a title="Perfume: The Story of a Murderer" href="http://movie.douban.com/subject/1760622/" target="_blank"><img src="http://img3.douban.com/spic/s1824931.jpg" border="0" alt="" /></a></td>
<td><a title="Knowing" href="http://movie.douban.com/subject/2354729/" target="_blank"><img src="http://img3.douban.com/spic/s3653401.jpg" border="0" alt="" /></a></td>
<td><a title="Get Smart" href="http://movie.douban.com/subject/1972701/" target="_blank"><img src="http://img3.douban.com/spic/s2987596.jpg" border="0" alt="" /></a></td>
<td><a title="High School Musical" href="http://movie.douban.com/subject/1765009/" target="_blank"><img src="http://img3.douban.com/spic/s1636246.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="EuroTrip" href="http://movie.douban.com/subject/1308773/" target="_blank"><img src="http://img3.douban.com/spic/s2872658.jpg" border="0" alt="" /></a></td>
<td><a title="True Lies" href="http://movie.douban.com/subject/1292553/" target="_blank"><img src="http://img3.douban.com/spic/s2545627.jpg" border="0" alt="" /></a></td>
<td><a title="The Rock" href="http://movie.douban.com/subject/1292728/" target="_blank"><img src="http://img3.douban.com/spic/s2953833.jpg" border="0" alt="" /></a></td>
</tr>
</tbody>
</table>
</div>
<h3><strong>音乐</strong></h3>
<p>这方面还是比较随心所欲，没有太大的变动，只不过开始听古典（莫扎特），开始小听下电影的 OST （曾一度在网上搜索关键词写成 OTA）</p>
<p><img id="chartMonth" src="http://chart.apis.google.com/chart?chs=400x200&amp;cht=bvs&amp;chd=s:GMfAAMAAlYfY&amp;chxt=y,x,x&amp;chxl=0:|0|1|2|3|4|5|6|7|8|9|10|1:|1|2|3|4|5|6|7|8|9|10|11|12|2:|month&amp;chxp=2,100&amp;chf=c,lg,90,76A4FB,0.5,ffffff,0|bg,s,EFEFEF&amp;chco=0000ff&amp;chtt=29 musics+you+added+in+year+2010|divided+by+month" alt="" /></p>
<div id="doubanlist">
<table>
<tbody>
<tr>
<td><a title="Hands All Over" href="http://music.douban.com/subject/4905616/" target="_blank"><img src="http://img3.douban.com/spic/s4407377.jpg" border="0" alt="" /></a></td>
<td><a title="Some Kind of Trouble" href="http://music.douban.com/subject/5271118/" target="_blank"><img src="http://img3.douban.com/spic/s4506567.jpg" border="0" alt="" /></a></td>
<td><a title="Wreckorder" href="http://music.douban.com/subject/5315971/" target="_blank"><img src="http://img3.douban.com/spic/s4498416.jpg" border="0" alt="" /></a></td>
<td><a title="A Thousand Suns" href="http://music.douban.com/subject/4912480/" target="_blank"><img src="http://img3.douban.com/spic/s4421578.jpg" border="0" alt="" /></a></td>
<td><a title="The Other Side of Down" href="http://music.douban.com/subject/4919170/" target="_blank"><img src="http://img3.douban.com/spic/s4496852.jpg" border="0" alt="" /></a></td>
<td><a title="Dream Of You" href="http://music.douban.com/subject/4930176/" target="_blank"><img src="http://img3.douban.com/spic/s4430061.jpg" border="0" alt="" /></a></td>
<td><a title="Tiger Suit" href="http://music.douban.com/subject/5045959/" target="_blank"><img src="http://img3.douban.com/spic/s4486861.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="Swanlights" href="http://music.douban.com/subject/4904337/" target="_blank"><img src="http://img3.douban.com/spic/s4484109.jpg" border="0" alt="" /></a></td>
<td><a title="上天堂去唱歌" href="http://music.douban.com/subject/5317753/" target="_blank"><img src="http://img3.douban.com/spic/s4500229.jpg" border="0" alt="" /></a></td>
<td><a title="Imagine" href="http://music.douban.com/subject/1412675/" target="_blank"><img src="http://img3.douban.com/spic/s1422874.jpg" border="0" alt="" /></a></td>
<td><a title="An Airplane Carried Me to Bed" href="http://music.douban.com/subject/4896879/" target="_blank"><img src="http://img3.douban.com/spic/s4399468.jpg" border="0" alt="" /></a></td>
<td><a title="Be My Thrill" href="http://music.douban.com/subject/4893614/" target="_blank"><img src="http://img5.douban.com/spic/s4397155.jpg" border="0" alt="" /></a></td>
<td><a title="Sweet and Wild [Deluxe Edition] [2 CD]" href="http://music.douban.com/subject/4845933/" target="_blank"><img src="http://img3.douban.com/spic/s4370243.jpg" border="0" alt="" /></a></td>
<td><a title="Aphrodite" href="http://music.douban.com/subject/4818380/" target="_blank"><img src="http://img3.douban.com/spic/s4395556.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="rising love" href="http://music.douban.com/subject/4886406/" target="_blank"><img src="http://img3.douban.com/spic/s4391599.jpg" border="0" alt="" /></a></td>
<td><a title="A Year Without Rain [Deluxe Edition]" href="http://music.douban.com/subject/5266695/" target="_blank"><img src="http://img3.douban.com/spic/s4470648.jpg" border="0" alt="" /></a></td>
<td><a title="HOLIDAYS IN THE SUN" href="http://music.douban.com/subject/4874450/" target="_blank"><img src="http://img5.douban.com/spic/s4385715.jpg" border="0" alt="" /></a></td>
<td><a title="《荒野生存》原声/ Into the Wild (Soundtrack)" href="http://music.douban.com/subject/2375607/" target="_blank"><img src="http://img3.douban.com/spic/s2844830.jpg" border="0" alt="" /></a></td>
<td><a title="Take A Bow" href="http://music.douban.com/subject/4308659/" target="_blank"><img src="http://img3.douban.com/spic/s4193631.jpg" border="0" alt="" /></a></td>
<td><a title="1998个人第1张创作专辑" href="http://music.douban.com/subject/1427935/" target="_blank"><img src="http://img3.douban.com/spic/s1441669.jpg" border="0" alt="" /></a></td>
<td><a title="ASIA" href="http://music.douban.com/subject/4246649/" target="_blank"><img src="http://img3.douban.com/spic/s4195949.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="笑侃三十年" href="http://music.douban.com/subject/3767556/" target="_blank"><img src="http://img3.douban.com/spic/s3825920.jpg" border="0" alt="" /></a></td>
<td><a title="笑侃大上海" href="http://music.douban.com/subject/4274420/" target="_blank"><img src="http://img3.douban.com/spic/s4166127.jpg" border="0" alt="" /></a></td>
<td><a title="Private/Public" href="http://music.douban.com/subject/2077369/" target="_blank"><img src="http://img3.douban.com/spic/s2694449.jpg" border="0" alt="" /></a></td>
<td><a title="北上列车" href="http://music.douban.com/subject/4061669/" target="_blank"><img src="http://img3.douban.com/spic/s3992940.jpg" border="0" alt="" /></a></td>
<td><a title="The Fame Monster" href="http://music.douban.com/subject/4140534/" target="_blank"><img src="http://img3.douban.com/spic/s4019251.jpg" border="0" alt="" /></a></td>
<td><a title="Stefanie" href="http://music.douban.com/subject/3147867/" target="_blank"><img src="http://img3.douban.com/spic/s3183887.jpg" border="0" alt="" /></a></td>
<td><a title="传奇 (限量珍藏EP)" href="http://music.douban.com/subject/5365287/" target="_blank"><img src="http://img3.douban.com/spic/s4185764.jpg" border="0" alt="" /></a></td>
</tr>
<tr>
<td><a title="A Little Love" href="http://music.douban.com/subject/3566603/" target="_blank"><img src="http://img3.douban.com/spic/s3350764.jpg" border="0" alt="" /></a></td>
</tr>
</tbody>
</table>
</div>
<h3>日志</h3>
<div>
<div>好吧，我承认我没有达到去年说的要求：“2010年的日志数量和2009年类似”，刚才统计了结果，发现 2009 年度共计发布了 31 篇日志，而 2010 年加上 09 年的总结在内也仅仅只有 10 篇，数量下降了 1/3  左右，汗颜。今年开始经过会多发布技术相关的日志，早期一些分享软件或框架的内容会少一些，比较不能再这么水下去了&#8230;</div>
</div>
<h3>运动</h3>
<p>很遗憾，2010 年度并没也什么运动了&#8230;需要恢复！我要减灰 Orz&#8230;</p>
<h3>言而总之</h3>
<p><strong> </strong>2010 年读了许多书，也看了不少电影，在个人修养上面有很大的提高，早晨 6 点 50 起床是一个长期考验而且我坚持下来了，也算是摆脱了很大的“懒”的坏习惯。今年最大的开发实践准备尝试敏捷开发流程 + TDD以及重构相结合的开发模式双结合。</p>
<p>新的一年，加油！</p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2011/01/2010-year-in-review/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

