<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>windless_j (windless)</title>
    <link>https://ruby-china.org/windless_j</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>找到解决 10.10 卡的问题的方法了</title>
      <description>&lt;p&gt;装了个虚拟机，突然发现打开虚拟机的情况下。打开 MissionControl 如丝般顺滑，关掉虚拟机就开始掉帧。
然后在“系统偏好设置 - 节能器”里面找到了这个选项。&lt;/p&gt;

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

&lt;p&gt;关掉这个以后，MissionControl 就不掉帧了。
按理来说这个选项应该要区分插电还是不插电才对啊。&lt;/p&gt;</description>
      <author>windless_j</author>
      <pubDate>Mon, 26 Jan 2015 19:23:48 +0800</pubDate>
      <link>https://ruby-china.org/topics/23952</link>
      <guid>https://ruby-china.org/topics/23952</guid>
    </item>
    <item>
      <title>UnderOS 使用 web 方法写 iOS 的本地应用</title>
      <description>&lt;p&gt;&lt;code&gt;UnderOS&lt;/code&gt;(or shortly &lt;code&gt;uOS&lt;/code&gt;) is a project that aims to build a web-browser like environment on top of RubyMotion so you could build native iOS apps while keeping your web-developer’s habits.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://under-os.com" rel="nofollow" target="_blank" title=""&gt;iOS app in 10 minutes&lt;/a&gt;&lt;/p&gt;</description>
      <author>windless_j</author>
      <pubDate>Wed, 18 Dec 2013 13:21:26 +0800</pubDate>
      <link>https://ruby-china.org/topics/16275</link>
      <guid>https://ruby-china.org/topics/16275</guid>
    </item>
    <item>
      <title>升级到 Mavericks 出现的问题</title>
      <description>&lt;p&gt;不知道各位升级了 Mavericks 的同学，有没有遇到下面几个问题。&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Safari 滚动的确十分顺滑，但是用触摸板的时候，上下滚动经常会伴有一点点左右晃动。强迫症患者实在是不能忍啊。&lt;/li&gt;
&lt;li&gt; 在 Launchpad 里面，有的时候，左右滑动界面会卡在那，橡皮筋效果没有了。&lt;/li&gt;
&lt;li&gt; App Store 显示有问题，Launchpad 中明明显示正在下载了，App Store 里面就不显示下载进度。还碰到过同个 App，有两个下载任务在跑。这个时候就发现 App Store 上显示的下载进度不停的在两个下载任务上跳。&lt;/li&gt;
&lt;li&gt; Quick Time 播视频卡死。&lt;/li&gt;
&lt;li&gt;经常碰到 Things 卡死的问题。&lt;/li&gt;
&lt;/ul&gt;</description>
      <author>windless_j</author>
      <pubDate>Thu, 24 Oct 2013 11:34:55 +0800</pubDate>
      <link>https://ruby-china.org/topics/14994</link>
      <guid>https://ruby-china.org/topics/14994</guid>
    </item>
    <item>
      <title>vim ultisnips 插件无法输入 &lt;%= %&gt;</title>
      <description>&lt;p&gt;用 &lt;a href="https://github.com/SirVer/ultisnips" rel="nofollow" target="_blank" title=""&gt;ultisnips&lt;/a&gt; 做 snippet 插件。&lt;/p&gt;

&lt;p&gt;在 eruby.snippets 中配置了：&lt;/p&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;snippet =
&amp;lt;%= ${1} %&amp;gt;
endsnippet
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;但是当"="前面有其他字符的时候无法触发，&lt;/p&gt;

&lt;p&gt;比如：&lt;/p&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&amp;gt;&lt;/span&gt;=|&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;当在 "|" 位置时，无法触发上面的 snippet。&lt;/p&gt;

&lt;p&gt;之前使用 &lt;a href="https://github.com/msanders/snipmate.vim" rel="nofollow" target="_blank" title=""&gt;snipmate.vim&lt;/a&gt; 的时候是没问题的&lt;/p&gt;</description>
      <author>windless_j</author>
      <pubDate>Fri, 23 Aug 2013 13:21:54 +0800</pubDate>
      <link>https://ruby-china.org/topics/13544</link>
      <guid>https://ruby-china.org/topics/13544</guid>
    </item>
    <item>
      <title>Rspec should 和 expect 的区别</title>
      <description>&lt;p&gt;回顾了下新版的 &lt;a href="http://ruby.railstutorial.org/ruby-on-rails-tutorial-book" rel="nofollow" target="_blank" title=""&gt;Rails Tutorial&lt;/a&gt;，发现新版的 Rspec 的用法不同了。&lt;/p&gt;

&lt;p&gt;从之前的&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="kp"&gt;true&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;should&lt;/span&gt; &lt;span class="n"&gt;be_true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;改成了现在的&lt;/p&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;expect&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kp"&gt;true&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;to&lt;/span&gt; &lt;span class="n"&gt;be_true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;请问下这两着有什么区别，为什么现在要改成 expect 的风格&lt;/p&gt;</description>
      <author>windless_j</author>
      <pubDate>Thu, 22 Aug 2013 10:34:44 +0800</pubDate>
      <link>https://ruby-china.org/topics/13512</link>
      <guid>https://ruby-china.org/topics/13512</guid>
    </item>
    <item>
      <title>请教：学习开源项目的过程是怎样的</title>
      <description>&lt;p&gt;每次 git clone 下一个项目之后都很迷茫，不知道从哪开始。
请教各位大牛，学习一个开源项目的流程是怎么样的？&lt;/p&gt;</description>
      <author>windless_j</author>
      <pubDate>Sun, 14 Oct 2012 16:17:09 +0800</pubDate>
      <link>https://ruby-china.org/topics/6052</link>
      <guid>https://ruby-china.org/topics/6052</guid>
    </item>
    <item>
      <title>rails one click</title>
      <description>&lt;p&gt;&lt;a href="http://railsoneclick.com/" rel="nofollow" target="_blank"&gt;http://railsoneclick.com/&lt;/a&gt;  &lt;/p&gt;</description>
      <author>windless_j</author>
      <pubDate>Fri, 20 Apr 2012 12:57:43 +0800</pubDate>
      <link>https://ruby-china.org/topics/2758</link>
      <guid>https://ruby-china.org/topics/2758</guid>
    </item>
  </channel>
</rss>
