<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>zlfera (zlfera)</title>
    <link>https://ruby-china.org/zlfera</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>推荐一个免费部署 Elixir/Phoenix 应用的网站</title>
      <description>&lt;p&gt;gigalixir.com，免费不说，速度快，永远在线，不像 heroku 总是隔一段时间休眠&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Mon, 12 Nov 2018 08:17:01 +0800</pubDate>
      <link>https://ruby-china.org/topics/37751</link>
      <guid>https://ruby-china.org/topics/37751</guid>
    </item>
    <item>
      <title>想咨询各位代理会计记账的问题</title>
      <description>&lt;p&gt;本人开了一个小公司，想要找会计代理记账，不知道大家用的是哪家服务？&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Thu, 12 Oct 2017 11:23:51 +0800</pubDate>
      <link>https://ruby-china.org/topics/34361</link>
      <guid>https://ruby-china.org/topics/34361</guid>
    </item>
    <item>
      <title>发现一个很强大的手机开发软件</title>
      <description>&lt;p&gt;不多说了，直接上地址 &lt;a href="http://termux.com/" rel="nofollow" target="_blank"&gt;http://termux.com/&lt;/a&gt; 这个软件只要稍微配置一下就可以像在电脑上开发软件。不仅可以安装，ruby、python、nodejs、golang。我甚至可以在上面运行 rails。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Sat, 26 Dec 2015 11:50:13 +0800</pubDate>
      <link>https://ruby-china.org/topics/28529</link>
      <guid>https://ruby-china.org/topics/28529</guid>
    </item>
    <item>
      <title>Ruby 2.2 发布了</title>
      <description>&lt;p&gt;大家赶快下载哟，里面有好多更新&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Thu, 25 Dec 2014 18:30:30 +0800</pubDate>
      <link>https://ruby-china.org/topics/23401</link>
      <guid>https://ruby-china.org/topics/23401</guid>
    </item>
    <item>
      <title>在网上看到 Nim 这个语言，有种跟 Ruby 和 Python 混合的感觉</title>
      <description>&lt;p&gt;Nimrod (已改名为 Nim) 是一个新型的静态类型、命令式编程语言，支持过程式、函数式、面向对象和泛型编程风格而保持简单和高效。Nimrod 从 Lisp 继承来的一个特殊特性--抽象语法树 (AST) 作为语言规范的一部分，可以用作创建领域特定语言的强大宏系统。&lt;/p&gt;

&lt;p&gt;Nimrod 是一个编译型的具有垃圾收集的系统编程语言，有着极其卓越的生产/性能比。Nimrod 的设计集中在三个 E 上：即效率 (efficiency)、表达能力 (expressiveness) 和优雅 (elegance)。&lt;/p&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;# compute average line length
&lt;/span&gt;&lt;span class="n"&gt;var&lt;/span&gt; &lt;span class="n"&gt;count&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;
&lt;span class="n"&gt;var&lt;/span&gt; &lt;span class="nb"&gt;sum&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;

&lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;line&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;stdin&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;lines&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
  &lt;span class="n"&gt;count&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;
  &lt;span class="nb"&gt;sum&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="n"&gt;line&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nb"&gt;len&lt;/span&gt;

&lt;span class="n"&gt;echo&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Average line length: &lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;count&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;sum&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="n"&gt;count&lt;/span&gt; &lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;附上网址 &lt;a href="http://nim-lang.org" rel="nofollow" target="_blank"&gt;http://nim-lang.org&lt;/a&gt;&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Tue, 23 Sep 2014 09:10:18 +0800</pubDate>
      <link>https://ruby-china.org/topics/21674</link>
      <guid>https://ruby-china.org/topics/21674</guid>
    </item>
    <item>
      <title>对比 Ruby 和 Python 的垃圾回收</title>
      <description>&lt;p&gt;感觉很不错的文章地址是：&lt;a href="http://www.linuxeden.com/html/news/20140619/152798.html" rel="nofollow" target="_blank"&gt;http://www.linuxeden.com/html/news/20140619/152798.html&lt;/a&gt;&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Thu, 19 Jun 2014 19:31:09 +0800</pubDate>
      <link>https://ruby-china.org/topics/20060</link>
      <guid>https://ruby-china.org/topics/20060</guid>
    </item>
    <item>
      <title>今天看到一个很有意思的 gem</title>
      <description>&lt;p&gt;网址是&lt;a href="http://drx.rubyforge.org/" rel="nofollow" target="_blank"&gt;http://drx.rubyforge.org/&lt;/a&gt;可以打印出一个对象的继承结构图&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Mon, 19 May 2014 18:41:04 +0800</pubDate>
      <link>https://ruby-china.org/topics/19390</link>
      <guid>https://ruby-china.org/topics/19390</guid>
    </item>
    <item>
      <title>rails 升级了！</title>
      <description>&lt;p&gt;今天浏览 rails 的源码，发现 rails 小升级了一下，小伙伴们快去升补丁吧&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Wed, 07 May 2014 07:31:11 +0800</pubDate>
      <link>https://ruby-china.org/topics/19063</link>
      <guid>https://ruby-china.org/topics/19063</guid>
    </item>
    <item>
      <title>手里有个闲置的 wifi，想把它做成 wifi 登录认证，谁有这方面的经验</title>
      <description>&lt;p&gt;谁会改造 WIFI 路由吗？就别人想用这个路由的无线网络必须先点击认证。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Tue, 06 May 2014 19:14:05 +0800</pubDate>
      <link>https://ruby-china.org/topics/19055</link>
      <guid>https://ruby-china.org/topics/19055</guid>
    </item>
    <item>
      <title>ruby 的 require 加载文件是不是有先后顺序呀？</title>
      <description>&lt;p&gt;今天在加载几个文件的时候总是出错，看错误提示，改了几个文件的顺序就正常了。是不是 require 文件有先后顺序？&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Sun, 04 May 2014 19:28:46 +0800</pubDate>
      <link>https://ruby-china.org/topics/19009</link>
      <guid>https://ruby-china.org/topics/19009</guid>
    </item>
    <item>
      <title>大家用过 nokogiri 吗？官方的文档太简洁了，无从下手呀！</title>
      <description>&lt;p&gt;哪里有比较好的文档，到处搜都没搜到。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Mon, 21 Apr 2014 17:05:17 +0800</pubDate>
      <link>https://ruby-china.org/topics/18752</link>
      <guid>https://ruby-china.org/topics/18752</guid>
    </item>
    <item>
      <title>ruby 怎么一直往下降呀！</title>
      <description>&lt;p&gt;&lt;a href="http://www.cnbeta.com/articles/275299.htm" rel="nofollow" target="_blank"&gt;http://www.cnbeta.com/articles/275299.htm&lt;/a&gt; ruby 越降越低了，&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Fri, 07 Mar 2014 13:10:13 +0800</pubDate>
      <link>https://ruby-china.org/topics/17717</link>
      <guid>https://ruby-china.org/topics/17717</guid>
    </item>
    <item>
      <title>原来 git 的别名还可以这样用呀</title>
      <description>&lt;p&gt;每天 git push zain master 时感觉字太多了，想把它改短一点就想到 git 的 alias，于是 alias.pz 'push zain master'。居然成功，以前没想到它可以这样用，不知道大家是怎么搞的，还是我孤陋寡闻。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Fri, 17 Jan 2014 09:52:04 +0800</pubDate>
      <link>https://ruby-china.org/topics/16844</link>
      <guid>https://ruby-china.org/topics/16844</guid>
    </item>
    <item>
      <title>当自定义的方法与 Ruby 内部的方法重名时，如何在这个方法里面使用 Ruby 内部的方法？</title>
      <description>&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;a&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;''&lt;/span&gt;
&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nc"&gt;a&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;p&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;values&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;    &lt;span class="c1"&gt;#p()是自定义方法&lt;/span&gt;
  &lt;span class="nb"&gt;p&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;values&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;    &lt;span class="c1"&gt;#p()是Ruby内部定义的方法&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>zlfera</author>
      <pubDate>Tue, 26 Nov 2013 11:40:32 +0800</pubDate>
      <link>https://ruby-china.org/topics/15801</link>
      <guid>https://ruby-china.org/topics/15801</guid>
    </item>
    <item>
      <title>发现一个不错的 app</title>
      <description>&lt;p&gt;今天在 google play 商店里搜软件，发现一个强大的 app，ksweb 可以把我们的手机当服务器用集成了 php+mysql+lighttpd，不过很可惜只支持 php。有没有支持 ruby 的呀&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Fri, 01 Nov 2013 20:07:46 +0800</pubDate>
      <link>https://ruby-china.org/topics/15230</link>
      <guid>https://ruby-china.org/topics/15230</guid>
    </item>
    <item>
      <title>七天假，大家国庆怎么玩？</title>
      <description>&lt;p&gt;我准备去江西的庐山和婺源去。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Mon, 30 Sep 2013 18:26:33 +0800</pubDate>
      <link>https://ruby-china.org/topics/14491</link>
      <guid>https://ruby-china.org/topics/14491</guid>
    </item>
    <item>
      <title>今天是中秋！大家在做什么？</title>
      <description>&lt;p&gt;住大家中秋快乐，合家团圆，在此留个念想。。。。。。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Thu, 19 Sep 2013 10:52:36 +0800</pubDate>
      <link>https://ruby-china.org/topics/14228</link>
      <guid>https://ruby-china.org/topics/14228</guid>
    </item>
    <item>
      <title>看了大半天 Mongoid 网上的教程，还是不知道怎么用</title>
      <description>&lt;p&gt;大家怎么用 mongoid 的呀，网上怎么没有关于 mongoid 的，官网介绍的不够详细&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Sat, 24 Aug 2013 15:56:49 +0800</pubDate>
      <link>https://ruby-china.org/topics/13578</link>
      <guid>https://ruby-china.org/topics/13578</guid>
    </item>
    <item>
      <title>Sinatra + Mongoid 问题</title>
      <description>&lt;p&gt;&lt;img src="//l.ruby-china.com/photo/9dc1fe94836103a62952dd85c4650ebc.png" title="" alt=""&gt;
&lt;img src="//l.ruby-china.com/photo/8777b012e43f2a4b1f278ef78d4ec2d6.png" title="" alt=""&gt;
用 sinatra+mongoid 做的登录界面，可是我一输入帐号和密码就出现这样的错误&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Wed, 21 Aug 2013 18:49:19 +0800</pubDate>
      <link>https://ruby-china.org/topics/13498</link>
      <guid>https://ruby-china.org/topics/13498</guid>
    </item>
    <item>
      <title>在 Github 上下载的 zip 档案如何编译为 gems？</title>
      <description>&lt;p&gt;如题，望高手赐教。&lt;/p&gt;</description>
      <author>zlfera</author>
      <pubDate>Thu, 08 Aug 2013 09:26:42 +0800</pubDate>
      <link>https://ruby-china.org/topics/13147</link>
      <guid>https://ruby-china.org/topics/13147</guid>
    </item>
  </channel>
</rss>
