<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>dotcomxy (夏宇)</title>
    <link>https://ruby-china.org/dotcomxy</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>Awesome Ruby</title>
      <description>&lt;p&gt;今天 Product Hunt 上 featured 的一个 Ruby web 开发工具集的 collection, 快速扫了下，质量很高，分享给大家。
&lt;a href="http://awesome-ruby.com/" rel="nofollow" target="_blank"&gt;http://awesome-ruby.com/&lt;/a&gt;&lt;/p&gt;</description>
      <author>dotcomxy</author>
      <pubDate>Sat, 07 Feb 2015 04:20:52 +0800</pubDate>
      <link>https://ruby-china.org/topics/24151</link>
      <guid>https://ruby-china.org/topics/24151</guid>
    </item>
    <item>
      <title>黑色星期五 App &amp; Books deal</title>
      <description>&lt;p&gt;&lt;a href="http://dealroundup.io/" rel="nofollow" target="_blank"&gt;http://dealroundup.io/&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;O'relly 和 pragmatic bookshelf 都在打折，收了不少之前看上的电子书，另外 Designmodo 的模板也是大幅度优惠，感兴趣的朋友可以看看。&lt;/p&gt;</description>
      <author>dotcomxy</author>
      <pubDate>Sat, 29 Nov 2014 11:51:36 +0800</pubDate>
      <link>https://ruby-china.org/topics/22925</link>
      <guid>https://ruby-china.org/topics/22925</guid>
    </item>
    <item>
      <title>Leetcode 电子书</title>
      <description>&lt;p&gt;Leetcode 相信社区里很多朋友都知道，尤其是对在北美这边招工求职的人，leetcode150 题会有很大帮助。今天 Leetcode 发售了他们自己的第一本电子书， &lt;a href="https://oj.leetcode.com/book/" rel="nofollow" target="_blank"&gt;https://oj.leetcode.com/book/&lt;/a&gt;  我也第一时间入手了一本，相比于酷壳陈浩的 c++ 版本，&lt;a href="https://github.com/haoel/leetcode" rel="nofollow" target="_blank"&gt;https://github.com/haoel/leetcode&lt;/a&gt; 和 soulmachine 的 150 题题解，&lt;a href="https://github.com/soulmachine/leetcode" rel="nofollow" target="_blank"&gt;https://github.com/soulmachine/leetcode&lt;/a&gt;  这本书实例代码主要是 java 实现，同时带有一些讲解和时间复杂度，可以作为前面两种免费资源的补充。&lt;/p&gt;

&lt;p&gt;最近要好好刷题，准备来年投一些北美的公司，Airbnb，Groupon，Shopify，Artsy，Hashrocket，Thoughtbot，37Signals 这些都打算试一把。&lt;/p&gt;</description>
      <author>dotcomxy</author>
      <pubDate>Mon, 17 Nov 2014 13:05:06 +0800</pubDate>
      <link>https://ruby-china.org/topics/22715</link>
      <guid>https://ruby-china.org/topics/22715</guid>
    </item>
    <item>
      <title>软工课上 brain storm 的优秀程序员的一些特点</title>
      <description>&lt;p&gt;这个学期的 &lt;a href="http://cseweb.ucsd.edu/users/wgg/CSE210/" rel="nofollow" target="_blank" title=""&gt;Principle of Software Engineering&lt;/a&gt; 快上完了，这周的 reading 是人月神话中的一些章节，上课的时候教授让大家列举下我们觉得优秀程序员的一些特点，于是一帮 graduate student, phd student 花了半个小时列举出了 1、20 条，然后 merge 后，留下来了下面几条。Po 出来和大家分享下&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Think first, code later&lt;/li&gt;
&lt;li&gt;Review/Refactor often&lt;/li&gt;
&lt;li&gt;Never stop learning&lt;/li&gt;
&lt;li&gt;Keep Open Lines of Communication&lt;/li&gt;
&lt;li&gt;Learn From Peers&lt;/li&gt;
&lt;li&gt;Validate ideas early&lt;/li&gt;
&lt;li&gt;Don't be a lemming（Lemming 是一种动物，别人跳崖他也跟着跳）&lt;/li&gt;
&lt;li&gt;Conceptual Integrity&lt;/li&gt;
&lt;li&gt;Fail fast Build better&lt;/li&gt;
&lt;li&gt;KISS  Keep it simple and stupid&lt;/li&gt;
&lt;li&gt;Know when to start over&lt;/li&gt;
&lt;li&gt;Prototype early and often&lt;/li&gt;
&lt;li&gt;Keep the user in mind&lt;/li&gt;
&lt;/ul&gt;</description>
      <author>dotcomxy</author>
      <pubDate>Wed, 28 May 2014 14:02:34 +0800</pubDate>
      <link>https://ruby-china.org/topics/19592</link>
      <guid>https://ruby-china.org/topics/19592</guid>
    </item>
    <item>
      <title>下学期的课程要用 Go 语言重构一个微博系统</title>
      <description>&lt;p&gt;今天看 Spring quarter 课程介绍的时候突然发现，这个学期的分布式系统课程要用 Go 来搞，&lt;a href="http://cseweb.ucsd.edu/classes/sp14/cse223B-a/" rel="nofollow" target="_blank"&gt;http://cseweb.ucsd.edu/classes/sp14/cse223B-a/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here is the story: some cowboy programmer wrote a simple online microblogging service called Tribbler, and leveraging the power of the Web, it becomes quite popular. However, the program runs in one single process; it does not scale, cannot support many concurrent connections, and is vulnerable to machine crashes. Knowing that you are taking the distributed computing system course at UCSD, he asks you for help. You answered his call and started this project.&lt;/p&gt;

&lt;p&gt;Your goal is to refactor Tribbler into a distributed system, make it robust and scalable.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://cseweb.ucsd.edu/classes/sp14/cse223B-a/labs.html" rel="nofollow" target="_blank"&gt;http://cseweb.ucsd.edu/classes/sp14/cse223B-a/labs.html&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;之前 Rails 用的很多，初次接触 Go 语言，一直听说 Go 非常适合用在分布式系统上，明天会去学习把 project clone 下来，放到自己 github 上，感兴趣的朋友也可以看一眼。希望能在这个学期中多多记录学习经历，分享给大家&lt;/p&gt;</description>
      <author>dotcomxy</author>
      <pubDate>Tue, 01 Apr 2014 14:51:09 +0800</pubDate>
      <link>https://ruby-china.org/topics/18316</link>
      <guid>https://ruby-china.org/topics/18316</guid>
    </item>
    <item>
      <title>今天看高分贴中 git 视频的时候，很好奇大神用的这些工具是什么</title>
      <description>&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/3e93a3653941d3e231964c55c8a8d4de.png" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;keynote 左边都还认识，往右第八个开始就不行了。
8 号到 12 号都不认识，13 号 github, 14 号 Adobe Flash Builder, 15 号 vlc，16 号 omni Graffle，17 号到最后都不认识。工具控们求解惑。&lt;/p&gt;</description>
      <author>dotcomxy</author>
      <pubDate>Wed, 28 Aug 2013 23:29:43 +0800</pubDate>
      <link>https://ruby-china.org/topics/13709</link>
      <guid>https://ruby-china.org/topics/13709</guid>
    </item>
  </channel>
</rss>
