<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>ikbear (Ikbear)</title>
    <link>https://ruby-china.org/ikbear</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>你们的编辑器背景是什么</title>
      <description>&lt;p&gt;这个编辑器的背景好看是好看，就是感觉干扰比较大 &lt;a href="http://venturebeat.files.wordpress.com/2012/10/codecademy-ruby.jpg?w=558&amp;amp;h=9999&amp;amp;crop=0" rel="nofollow" target="_blank"&gt;http://venturebeat.files.wordpress.com/2012/10/codecademy-ruby.jpg?w=558&amp;amp;h=9999&amp;amp;crop=0&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;我现在的背景是纯黑色，加绿色字体，你们的呢？&lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Fri, 05 Oct 2012 23:19:27 +0800</pubDate>
      <link>https://ruby-china.org/topics/5890</link>
      <guid>https://ruby-china.org/topics/5890</guid>
    </item>
    <item>
      <title>好吧，Rails 也需要重启解决问题</title>
      <description>&lt;p&gt;今天用 devise 碰到问题，解决方案是这个 issue 中的第一条回复：
&lt;code&gt;For some reason, restarting the rails server fixed this issue.&lt;/code&gt;
&lt;a href="https://github.com/plataformatec/devise/issues/1773" rel="nofollow" target="_blank"&gt;https://github.com/plataformatec/devise/issues/1773&lt;/a&gt;&lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Tue, 18 Sep 2012 22:17:48 +0800</pubDate>
      <link>https://ruby-china.org/topics/5618</link>
      <guid>https://ruby-china.org/topics/5618</guid>
    </item>
    <item>
      <title>多用户使用 rvm 安装的 ruby</title>
      <description>&lt;p&gt;用 RVM 安装的 Ruby 没法在不同的用户下使用吗？比如我在 ikbear 这个用户的 home 目录下安装了 rvm 和 ruby 等，但是切换到 root 用户貌似就没法使用了。&lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Sun, 16 Sep 2012 12:27:57 +0800</pubDate>
      <link>https://ruby-china.org/topics/5563</link>
      <guid>https://ruby-china.org/topics/5563</guid>
    </item>
    <item>
      <title>安装 Ruby-China 项目 Bundle 的时候遇到的问题</title>
      <description>&lt;p&gt;这是 Taobao 上的这个 Gem 的问题吗？还是我自己机器的问题？&lt;/p&gt;

&lt;p&gt;Gem::RemoteFetcher::FetchError: too many connection resets (&lt;a href="http://ruby.taobao.org/gems/md_emoji-0.0.6.gem" rel="nofollow" target="_blank"&gt;http://ruby.taobao.org/gems/md_emoji-0.0.6.gem&lt;/a&gt;)
An error occured while installing md_emoji (0.0.6), and Bundler cannot continue.
Make sure that &lt;code&gt;gem install md_emoji -v '0.0.6'&lt;/code&gt; succeeds before bundling.&lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Tue, 14 Aug 2012 14:43:15 +0800</pubDate>
      <link>https://ruby-china.org/topics/4931</link>
      <guid>https://ruby-china.org/topics/4931</guid>
    </item>
    <item>
      <title>Ruby 操作 Word</title>
      <description>&lt;p&gt;用 Ruby 将 Word 中的代码片段根据相应的代码语法高亮，怎么弄呢？  &lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Fri, 20 Apr 2012 17:44:03 +0800</pubDate>
      <link>https://ruby-china.org/topics/2774</link>
      <guid>https://ruby-china.org/topics/2774</guid>
    </item>
    <item>
      <title>从 Ruby Best Practice 书上看到的，代码哪里出错呢</title>
      <description>&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;respond_to?&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;message&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="n"&gt;message&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;message&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;to_sym&lt;/span&gt;
  &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="ss"&gt;:__result__&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="ss"&gt;:inspect&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="nf"&gt;include?&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;message&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;||&lt;/span&gt;
    &lt;span class="n"&gt;__result__&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;respond_to?&lt;/span&gt; &lt;span class="n"&gt;message&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;提示出现这样的错误：syntax error, unexpected tIDENTIFIER, expecting keyword_end，还需要什么 keyword_end 呢？  &lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Wed, 07 Mar 2012 20:47:39 +0800</pubDate>
      <link>https://ruby-china.org/topics/1683</link>
      <guid>https://ruby-china.org/topics/1683</guid>
    </item>
    <item>
      <title>对象、类、类的类与超类</title>
      <description>&lt;p&gt;Ruby 中的普通类、普通对象、Object、BasicObject、Module 和 Class 等的 class 和 superclass，我真的纠结不清啊。BasicObject 的 superclass 又是 nil，这是神学还是哲学啊？  &lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Wed, 29 Feb 2012 10:35:43 +0800</pubDate>
      <link>https://ruby-china.org/topics/1491</link>
      <guid>https://ruby-china.org/topics/1491</guid>
    </item>
    <item>
      <title>还是决定找个技术方面的工作</title>
      <description>&lt;p&gt;这个帖子纯属“瞎扯淡”。之所以这样瞎扯淡是因为我最近感觉很凌乱很迷茫，需要有人来指点下。&lt;/p&gt;

&lt;p&gt;我本科和硕士读的都是计算机，对技术很有兴趣。读研期间，我在 Tech2IPO 兼职写写创业方面的文章。现在快毕业了（马上，4 月份），实验室的同学大家都定下来了，我还没定。&lt;/p&gt;

&lt;p&gt;一方面是感觉不急，自己要到 4 月份才能出去，急也没用；另一方面是去年联系了一个法国的公司，做云计算方面的，我去年去那边看了下，公司老板让我先在那边读博，先在那边熟悉半年到一年他们的生活和工作方式，再考虑去公司工作。我已经读研浪费两年多时间了，不想再去浪费了，读博伤不起。再说，迟早要回中国来混的，去也是给他们打工。因此我决定不去了。&lt;/p&gt;

&lt;p&gt;相对于继续去北京 PE.VC 做创业方面的工作，我还是倾向于做技术方面的工作。至于原因，我也讲不清楚，虽然两者都比较热衷。问题是，我技术并不算强（当然也不算太差，否则我早就找个安逸点的工作签了，毕竟自己平时无论是创业方面的还是技术方面的都还算勤奋），没动手做过什么项目（很实在的）。&lt;/p&gt;

&lt;p&gt;求指点，求带！  &lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Sat, 18 Feb 2012 00:33:52 +0800</pubDate>
      <link>https://ruby-china.org/topics/1263</link>
      <guid>https://ruby-china.org/topics/1263</guid>
    </item>
    <item>
      <title>如何关闭 zsh 的自动纠正功能</title>
      <description>&lt;p&gt;有时手快，打个 ls 都打错，zsh 就自作多情的来提示我是否纠正了。我花时间来看 zsh 的提示和思考是否纠正，还不如迅速重新打一个 ls。所以，我决定关闭这个自作多情的纠正提示功能。StackOverflow 上有一个类似问答，但是我没看到方法。
请问如何关闭？  &lt;/p&gt;</description>
      <author>ikbear</author>
      <pubDate>Fri, 17 Feb 2012 00:21:26 +0800</pubDate>
      <link>https://ruby-china.org/topics/1245</link>
      <guid>https://ruby-china.org/topics/1245</guid>
    </item>
  </channel>
</rss>
