<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>zlx_star (Newell)</title>
    <link>https://ruby-china.org/zlx_star</link>
    <description>Ruby, Rust, .Net, 各种脚本爱好者</description>
    <language>en-us</language>
    <item>
      <title>gems.ruby-china.org 异常</title>
      <description>&lt;p&gt;今天出现了以下异常：&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Fetching gem metadata from https://gems.ruby-china.org/.
Retrying dependency api due to error (2/4): Bundler::HTTPError Net::HTTPInternalServerError: &amp;lt;h1&amp;gt;Internal Server Error&amp;lt;/h1&amp;gt;
Retrying dependency api due to error (3/4): Bundler::HTTPError Net::HTTPInternalServerError: &amp;lt;h1&amp;gt;Internal Server Error&amp;lt;/h1&amp;gt;
Retrying dependency api due to error (4/4): Bundler::HTTPError Net::HTTPInternalServerError: &amp;lt;h1&amp;gt;Internal Server Error&amp;lt;/h1&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href="/huacnlee" class="user-mention" title="@huacnlee"&gt;&lt;i&gt;@&lt;/i&gt;huacnlee&lt;/a&gt; &lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Tue, 11 Jul 2017 11:36:27 +0800</pubDate>
      <link>https://ruby-china.org/topics/33459</link>
      <guid>https://ruby-china.org/topics/33459</guid>
    </item>
    <item>
      <title>GitHub 中国区前 100 名到底是什么样的人？</title>
      <description>&lt;p&gt;看到蛮有意思的一个文章，发过来大家看看。&lt;/p&gt;

&lt;p&gt;&lt;a href="http://diycode.cc/topics/23" rel="nofollow" target="_blank"&gt;http://diycode.cc/topics/23&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;有意思的是这件事情已经在知乎上面讨论开了，貌似还有一点小故事：&lt;a href="https://www.zhihu.com/question/42256682" rel="nofollow" target="_blank"&gt;https://www.zhihu.com/question/42256682&lt;/a&gt;&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Sun, 08 May 2016 22:15:40 +0800</pubDate>
      <link>https://ruby-china.org/topics/29946</link>
      <guid>https://ruby-china.org/topics/29946</guid>
    </item>
    <item>
      <title>腾讯对象云存储的 Ruby SDK－qcloud-cos-sdk</title>
      <description>&lt;p&gt;前段时间搞出来的基于腾讯对象云存储的 SDK －－ &lt;a href="https://github.com/zlx/qcloud-cos-sdk" rel="nofollow" target="_blank"&gt;https://github.com/zlx/qcloud-cos-sdk&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;实现的主要功能：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;完成了腾讯对象云存储的所有 API 接口&lt;/li&gt;
&lt;li&gt;添加了一些特定场景下的实用接口&lt;/li&gt;
&lt;li&gt;提供了命令行工具来便于操作&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;这里是一个中文的 &lt;a href="https://github.com/zlx/qcloud-cos-sdk/blob/master/wiki/get_started.md" rel="nofollow" target="_blank" title=""&gt;使用指南&lt;/a&gt;，具体方法参数请参考 &lt;a href="http://www.rubydoc.info/gems/qcloud_cos" rel="nofollow" target="_blank" title=""&gt;RDoc&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;本着多多交流才能快速成长的原则，开源出来多听听大家意见。&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Thu, 17 Mar 2016 20:52:00 +0800</pubDate>
      <link>https://ruby-china.org/topics/29376</link>
      <guid>https://ruby-china.org/topics/29376</guid>
    </item>
    <item>
      <title>使用 Setter 方法代替 Before Validation</title>
      <description>&lt;p&gt;今天看到这篇文章：&lt;a href="http://blog.arkency.com/2016/01/drop-this-before-validation-and-use-method/" rel="nofollow" target="_blank"&gt;http://blog.arkency.com/2016/01/drop-this-before-validation-and-use-method/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;文中作者建议使用 setter 方法&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Something&lt;/span&gt;
  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;val&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="vi"&gt;@title&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;val&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;strip&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;来代替以下这种 validation:&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Something&lt;/span&gt;
  &lt;span class="n"&gt;before_validation&lt;/span&gt; &lt;span class="ss"&gt;:strip_title&lt;/span&gt;

  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;strip_title&lt;/span&gt;
    &lt;span class="nb"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;title&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;title&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;strip&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;对此我有疑惑，希望大家能分析一下这两种做法的优劣。&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Fri, 29 Jan 2016 19:49:49 +0800</pubDate>
      <link>https://ruby-china.org/topics/28911</link>
      <guid>https://ruby-china.org/topics/28911</guid>
    </item>
    <item>
      <title>Rails 4.2 默认行为</title>
      <description>&lt;h3 id="Rails 4.2 以后 server 默认监听 localhost 而不是之前的 0.0.0.0"&gt;Rails 4.2 以后 server 默认监听 localhost 而不是之前的 0.0.0.0&lt;/h3&gt;
&lt;p&gt;要使用原先的 0.0.0.0，可以这样启动：&lt;code&gt;rails s -b 0.0.0.0&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;今天被小坑了一把，附上相关 Release Note
&lt;a href="http://edgeguides.rubyonrails.org/4_2_release_notes.html#default-host-for-rails-server" rel="nofollow" target="_blank"&gt;http://edgeguides.rubyonrails.org/4_2_release_notes.html#default-host-for-rails-server&lt;/a&gt;&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Wed, 27 Jan 2016 21:07:53 +0800</pubDate>
      <link>https://ruby-china.org/topics/28885</link>
      <guid>https://ruby-china.org/topics/28885</guid>
    </item>
    <item>
      <title>查找文件创建时间－寻找解决方案</title>
      <description>&lt;p&gt;很抱歉打扰各位了，我请教一个简单的问题：&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;查找文件创建时间&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;这里的文件创建时间表示文件第一次被创建的时间，修改文件内容，修改文件权限，移动，重命名，touch 文件均不改变。&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;我已经了解到 Linux 体系里面有 atime, mtime, ctime，&lt;a href="http://cavepopo.hd.free.fr/wordpress/linux/atime-mtime-and-ctime-concepts-practical-examples/" rel="nofollow" target="_blank" title=""&gt;这里&lt;/a&gt; 对它们做了详细的分析，但均不能满足我的需求。&lt;/p&gt;

&lt;p&gt;另外，Mac 上面的 mdls 可以得到这个信息：kMDItemContentCreationDate&lt;/p&gt;

&lt;p&gt;有没有在在 Linux 可以使用的方案，如果是兼容各大操作系统最好？&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update 2015-09-16 12:57:47 +0800&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;自己整理了一个脚本： &lt;a href="https://gist.github.com/zlx/c8b1cedc797028d6bc82" rel="nofollow" target="_blank" title=""&gt;creation_time.rb&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;</description>
      <author>zlx_star</author>
      <pubDate>Wed, 16 Sep 2015 11:16:51 +0800</pubDate>
      <link>https://ruby-china.org/topics/27357</link>
      <guid>https://ruby-china.org/topics/27357</guid>
    </item>
    <item>
      <title>RubyGem 的 Native 依赖之痛</title>
      <description>&lt;p&gt;我们平时安装 Gem 经常会碰到 &lt;code&gt;Failed to build gem native extension&lt;/code&gt; 的问题&lt;/p&gt;

&lt;p&gt;StackOverflow 上面关于这个问题的讨论有 2500+
&lt;a href="http://stackoverflow.com/search?q=Failed+to+build+gem+native+extension" rel="nofollow" target="_blank"&gt;http://stackoverflow.com/search?q=Failed+to+build+gem+native+extension&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;那么：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;RubyGem 官方是如何处理这种 Native 依赖的，完全交由 Gem 开发者自己处理还是有什么规范指导？&lt;/li&gt;
&lt;li&gt;大家平时又是如何处理这种依赖的？&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;欢迎大家讨论和建议&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Sun, 12 Jul 2015 12:21:18 +0800</pubDate>
      <link>https://ruby-china.org/topics/26450</link>
      <guid>https://ruby-china.org/topics/26450</guid>
    </item>
    <item>
      <title>是否考虑加入 RubyMotion 节点</title>
      <description>&lt;p&gt;最近在使用 RubyMotion，没有找到有料一点的 RubyMotion 中文社区，是不是考虑在 RubyChina 里面加入一个 RubyMotion 节点？ &lt;a href="/huacnlee" class="user-mention" title="@huacnlee"&gt;&lt;i&gt;@&lt;/i&gt;huacnlee&lt;/a&gt; &lt;a href="/lgn21st" class="user-mention" title="@lgn21st"&gt;&lt;i&gt;@&lt;/i&gt;lgn21st&lt;/a&gt;&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Tue, 25 Nov 2014 13:28:01 +0800</pubDate>
      <link>https://ruby-china.org/topics/22854</link>
      <guid>https://ruby-china.org/topics/22854</guid>
    </item>
    <item>
      <title>酷站里面有部分链接失效了</title>
      <description>&lt;p&gt;@管理员大大，酷站里面有部分链接失效了，最好能定期清理一下。&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Tue, 25 Nov 2014 10:24:35 +0800</pubDate>
      <link>https://ruby-china.org/topics/22848</link>
      <guid>https://ruby-china.org/topics/22848</guid>
    </item>
    <item>
      <title>API 添加验证机制或者隐藏联系信息</title>
      <description>&lt;p&gt;最近收到一些邮件发现是通过 RubyChina 获取到邮箱地址。&lt;/p&gt;

&lt;p&gt;但是在我的个人主页里面并没有显示，然后继续查找，发现 &lt;a href="https://ruby-china.org/api/users.json" rel="nofollow" target="_blank"&gt;https://ruby-china.org/api/users.json&lt;/a&gt; 这个 API 可以获取用户信息，里面包含了用户信息，包括了邮箱，并且这个 API 没有做验证。&lt;/p&gt;

&lt;p&gt;各位管理员大大 &lt;a href="/Rei" class="user-mention" title="@Rei"&gt;&lt;i&gt;@&lt;/i&gt;Rei&lt;/a&gt; &lt;a href="/huacnlee" class="user-mention" title="@huacnlee"&gt;&lt;i&gt;@&lt;/i&gt;huacnlee&lt;/a&gt; &lt;a href="/lgn21st" class="user-mention" title="@lgn21st"&gt;&lt;i&gt;@&lt;/i&gt;lgn21st&lt;/a&gt; ，请加一下验证机制或者隐藏掉联系信息，否则就是容易变成大量优质朋友来源哦。&lt;/p&gt;

&lt;p&gt;&lt;em&gt;注：我已经偷偷记下所有用户的邮箱了哦&lt;/em&gt;&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Tue, 09 Sep 2014 17:18:22 +0800</pubDate>
      <link>https://ruby-china.org/topics/21436</link>
      <guid>https://ruby-china.org/topics/21436</guid>
    </item>
    <item>
      <title>Ruby 里面如何移除字符串中的 emoji 符号？</title>
      <description>&lt;p&gt;一串中文文本里面含有 emoji 符号，如何能够移除 emoji 符号而不移除中文呢？&lt;/p&gt;

&lt;p&gt;自己的想法是通过正则表达式移除特定一段 unicode 编码，但是尝试了很久都没成功。&lt;/p&gt;

&lt;p&gt;比如&lt;/p&gt;

&lt;p&gt;&lt;code&gt;'🈶！回答：搪塞他们给自己介绍，到最后直接说一句已经有男朋友了，在谈着尼\n，准备带回家跟他们把把关！'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/2014/230f59c0a32fbe87ab9eadfd090d57a7.png" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;RubyChina 不能显示出原本的符号，直接上图了。符号是手机输入的 emoji 符号&lt;/p&gt;

&lt;p&gt;请各路的大神帮忙。&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Wed, 26 Feb 2014 21:10:13 +0800</pubDate>
      <link>https://ruby-china.org/topics/17509</link>
      <guid>https://ruby-china.org/topics/17509</guid>
    </item>
    <item>
      <title>请问有人用过 PredictionIO 吗？</title>
      <description>&lt;p&gt;不知道社区里面有没有人用过 &lt;a href="https://github.com/PredictionIO/PredictionIO" rel="nofollow" target="_blank" title=""&gt;PredictionIO&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;求教一下使用场景和坑！&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Sat, 09 Nov 2013 19:24:10 +0800</pubDate>
      <link>https://ruby-china.org/topics/15420</link>
      <guid>https://ruby-china.org/topics/15420</guid>
    </item>
    <item>
      <title>Github 出现奇怪页面</title>
      <description>&lt;p&gt;今天打开项目，发现出现这样的页面：&lt;/p&gt;

&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/b6ecff981acce4db74da5c4ab1d5d4ca.png" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;并且自己 fork 的项目内容找不到了，出现了很漂亮的 500 页面：&lt;/p&gt;

&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/3f44d4871bac04a8b7b8d0de678a929e.png" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;不知道是不是 github 出现数据错乱还是数据丢失了！求鉴定&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Sun, 06 Oct 2013 22:17:32 +0800</pubDate>
      <link>https://ruby-china.org/topics/14559</link>
      <guid>https://ruby-china.org/topics/14559</guid>
    </item>
    <item>
      <title>Faster Rails Test</title>
      <description>&lt;p&gt;整理了一篇博客 &lt;a href="http://blog.zlxstar.me/blog/2013/08/29/fast-rails-tests/" rel="nofollow" target="_blank" title=""&gt;Faster Rails Test&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;欢迎大家批评指正！&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Thu, 29 Aug 2013 21:18:05 +0800</pubDate>
      <link>https://ruby-china.org/topics/13735</link>
      <guid>https://ruby-china.org/topics/13735</guid>
    </item>
    <item>
      <title>如何获取一个 app 里面所有的监督人？</title>
      <description>&lt;p&gt;现在有三张表如下：&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class App &amp;lt; AR::Base
   has_many :users
end

class User &amp;lt; AR::Base
   belongs_to :app
   has_one :user_info

  # columns: app_id, ... others
end

class UserInfo &amp;lt; AR::Base
   belongs_to :user

  # columns: user_id, reviewer_id, ... others
end
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;user_infos 表里面有个字段为 reviewer_id 指向 users 里面的一条记录。&lt;/p&gt;
&lt;h3 id="现在我想找出一个 app 下面的所有监督人?"&gt;现在我想找出一个 app 下面的所有监督人？&lt;/h3&gt;
&lt;p&gt;很普通的需求吧！但是由于扩展表显得很复杂。&lt;/p&gt;

&lt;p&gt;目前我的方法 (app 为某个特定 app)&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User.where(id: UserInfo.where(user_id: app.users.map(&amp;amp;:id)).map(&amp;amp;:reviewer_id))
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;我自己看着都别扭，&lt;img title=":pensive:" alt="😔" src="https://twemoji.ruby-china.com/2/svg/1f614.svg" class="twemoji"&gt; 所以请教更清晰的办法~~~&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Wed, 21 Aug 2013 11:37:10 +0800</pubDate>
      <link>https://ruby-china.org/topics/13486</link>
      <guid>https://ruby-china.org/topics/13486</guid>
    </item>
    <item>
      <title>关于 gitlab 的 hooks</title>
      <description>&lt;p&gt;我希望在 gitlab web 上面创建了 merge request 的时候做一点事情。&lt;/p&gt;

&lt;p&gt;&lt;em&gt;gitlab 有没有 merge request 的 hooks？&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;类似于 &lt;a href="http://developer.github.com/v3/repos/hooks/" rel="nofollow" target="_blank" title=""&gt;github hooks&lt;/a&gt; 里面的 pull request&lt;/p&gt;

&lt;p&gt;&lt;a href="/Saito" class="user-mention" title="@Saito"&gt;&lt;i&gt;@&lt;/i&gt;Saito&lt;/a&gt;&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Fri, 31 May 2013 10:43:06 +0800</pubDate>
      <link>https://ruby-china.org/topics/11365</link>
      <guid>https://ruby-china.org/topics/11365</guid>
    </item>
    <item>
      <title>借道请教个问题</title>
      <description>&lt;p&gt;&lt;a href="/huacnlee" class="user-mention" title="@huacnlee"&gt;&lt;i&gt;@&lt;/i&gt;huacnlee&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;我可以在 Gemfile 里面同时指定淘宝镜像和官方网址吗？像这样：&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;source&lt;/span&gt; &lt;span class="s2"&gt;"http://ruby.taobao.org/"&lt;/span&gt;
&lt;span class="n"&gt;source&lt;/span&gt; &lt;span class="s2"&gt;"https://rubygems.org/"&lt;/span&gt;


&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;之所以有这个问题，是看到 &lt;a href="http://ruby.taobao.org/" rel="nofollow" target="_blank"&gt;http://ruby.taobao.org/&lt;/a&gt; 上面有这样一段话：&lt;/p&gt;

&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/edba2d0657d73b1b08ef5d2a7666d00a.png" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;不知道如何自己验证，所以请教一下。&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Wed, 29 May 2013 17:20:36 +0800</pubDate>
      <link>https://ruby-china.org/topics/11324</link>
      <guid>https://ruby-china.org/topics/11324</guid>
    </item>
    <item>
      <title>name.com 被攻击了？</title>
      <description>&lt;p&gt;name.com 也被攻击了，还是 linode 事件的延续？&lt;/p&gt;

&lt;p&gt;这是今天早上收到的邮件：&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;We are writing to inform you of a security measure we have taken to protect the integrity of the domain names and information associated with your account.&lt;/p&gt;

&lt;p&gt;Name.com recently discovered a security breach where customer account information including usernames, email addresses, and encrypted passwords and encrypted credit card account information may have been accessed by unauthorized individuals. It appears that the security breach was motivated by an attempt to gain information on a single, large commercial account at Name.com.&lt;/p&gt;

&lt;p&gt;Name.com stores your credit card information using strong encryption and the private keys required to access that information are stored physically in a separate remote location that was not compromised. Therefore, we don't believe that your credit card information was accessed in a usable format. Additionally, your EPP codes (required for domain transfers) were unaffected as they are also stored separately. We have no evidence to suggest that your data has been used for fraudulent activities.&lt;/p&gt;

&lt;p&gt;As a response to these developments, and as a precautionary measure, we are requiring that all customers reset their passwords before logging in. If you use your previous Name.com password in other online systems, we also strongly recommend that you change your password in each of those systems as well.&lt;/p&gt;
&lt;/blockquote&gt;</description>
      <author>zlx_star</author>
      <pubDate>Thu, 09 May 2013 09:32:05 +0800</pubDate>
      <link>https://ruby-china.org/topics/10841</link>
      <guid>https://ruby-china.org/topics/10841</guid>
    </item>
    <item>
      <title>谁知道 amazon 美国登录错误超过三次怎么办？</title>
      <description>&lt;p&gt;登陆后出现提示：&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Sorry, you've made too many failed attempts. We blocked your sign-in to protect it against unauthorized access. Please sign in with a device that you've previously used, or contact Amazon Customer Service.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;下方的 Amazon Customer Service 貌似没有中国的选择： &lt;/p&gt;

&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/b6e09985072303b83a265134841cf8ea.png" title="" alt=""&gt;&lt;/p&gt;

&lt;p&gt;是不是水货机子都这样没人疼啊，中国 amazon 不管，美国 amazon 不支持。求助求助&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Fri, 19 Apr 2013 09:28:07 +0800</pubDate>
      <link>https://ruby-china.org/topics/10327</link>
      <guid>https://ruby-china.org/topics/10327</guid>
    </item>
    <item>
      <title>程序新手要不要学习 C</title>
      <description>&lt;p&gt;女友想学习编程，要不要先学习 C 这些基础语言，还是直接让她学习 Ruby 这样的高级语言。&lt;/p&gt;</description>
      <author>zlx_star</author>
      <pubDate>Tue, 02 Apr 2013 21:48:34 +0800</pubDate>
      <link>https://ruby-china.org/topics/9931</link>
      <guid>https://ruby-china.org/topics/9931</guid>
    </item>
  </channel>
</rss>
