Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Juanito Fatas
@juanito
高级会员
第 1510 位会员 / 2012-03-19

[email protected]
https://Buildkite.com
Tokyo
71 篇帖子 / 454 条回帖
113 关注者
11 正在关注
51 收藏
GitHub Public Repos
  • ruby-style-guide 128

    Ruby Style Guide (Chinese)

  • - 3

  • fast_uuid 2

  • rails 1

    Ruby on Rails

  • rails-versions 1

    A common repository of Rails version metadata.

  • scim.cloud 0

    SCIM Community Website

  • dalli 0

    High performance memcached client for Ruby

  • renovate 0

    Universal dependency update tool that fits into your workflows.

  • zed-mcp-server-buildkite 0

    Buildkite Integration for Zed - Access your Buildkite CI/CD pipelines and builds directly from yo...

  • rdoc 0

    RDoc produces HTML and online documentation for Ruby projects.

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • RubyConfChina 2013 After Party - 大会期间的三场 Party 活动! at 2013年10月26日

    #77 楼 @hooopo 是的,明天见!

  • RubyConfChina 2013 After Party - 大会期间的三场 Party 活动! at 2013年10月25日

    @hooopo 沒機會膜拜炮哥了...... 😭

  • [广州] 招聘 Ruby 程序员 at 2013年10月23日

    羨慕 👍

  • 翻译一本 IT 方面的书,能赚多少钱? at 2013年10月21日

    可以看看这篇文章:图灵社区 : 阅读 : 写一本书作者到底能拿到多少稿酬?

  • 新的起点,加入远程创业团队 Pragmatic.ly at 2013年10月17日

    真不錯!

  • Ruby 里有没有比较成熟的爬虫框架 at 2013年10月07日

    https://github.com/hooopo/direct_web_spider

  • 給 Rails Developer 的一些基本 SEO 設定 at 2013年09月28日

    沙發!

  • 现在大伙上 Rails 4 了吗? at 2013年09月24日

    4

  • Rails Database Migrations 译文 at 2013年09月22日

    @hooopo 沒貨了,繼續努力。。。

  • 這年頭還有人用 .irbrc 嗎? at 2013年09月22日

    我有一個 .pryrc

  • Rails Database Migrations 译文 at 2013年09月22日

    #2 楼 @hooopo 感谢提示,还有目录也不能... T_T

  • Action View Form Helpers Guides 译文 at 2013年09月21日

    #2 楼 @hooopo 這是人如其文的稱讚嗎,謝謝 ; )

  • 关于 Ruby & Rails 风格指南 at 2013年09月15日

    #1 楼 #2 楼 @xds2000 @hooopo 哈哈,謝謝!

  • 为什么大家不去翻译 Rails Guides at 2013年09月14日

    支持楼主翻译 Rails Guides! <3 <3 <3

  • 为什么我不去翻译 Rails Guides , 而且你也不应该去翻译 at 2013年09月14日

    具体想参与翻译的关注这里 https://github.com/ruby-china/rails-guides/issues/72#issuecomment-24385409

  • 为什么大家不去翻译 Rails Guides at 2013年09月13日

    我有個建議,要翻譯 Guide 直接上最新的 Edge guide,在 rails/rails guides 目錄下可找到源文件。

  • 你所见过的拥有最好阅读体验的站点是? at 2013年09月01日

    喜歡 http://svbtle.com/ 這種簡單的風格。

  • guard + rspec + spork 在配置后运行 guard 找不到 rspec/ra at 2013年08月27日
    group :development, :test do
      gem 'sqlite3'
      gem "rspec", "~> 2.13.0"
    end
    

    gem 要用 rspec-rails,还缺一个 guard-rspec,改好记得 bundle 一下,下次贴到 Gist 吧,这样比较好看。https://gist.github.com/JuanitoFatas/6350632

    group :development, :test do
      gem 'sqlite3', '1.3.7'
      gem 'rspec-rails', '2.13.1'
      gem 'guard-rspec', '2.5.0'
    end
    
  • Writing Sensible Tests for Happiness at 2013年08月27日

    Good read 👍

  • Ruby 是函数式语言吗? at 2013年08月26日

    保羅•葛拉漢姆大叔是想說這些語言演化的越來越像 Lisp。Lisp 不是函數式的,函數式是一種編程範式。話說 Java 也可以很函數式哦! http://lisp.tw/2013/02/17/functional-programming-for-the-rest-of-us/ 當然 Ruby 也可以... https://github.com/JuanitoFatas/Ruby-Functional-Programming

  • 请问 ruby 如何监听文件变动? at 2013年08月22日

    https://github.com/guard/listen

  • Jammit at 2013年08月19日

    SaitoWu/linner

  • Rails has Two Default Stacks at 2013年08月14日

    主厨推荐 vs 私房菜单;消费者自选,教父干的好!

  • 录了一段 Screencast, 体会到 Ryan 的艰辛. at 2013年08月12日

    #32 楼 @Saito 理解。OSX 下 ScreenFlow 這軟件不錯。

  • 录了一段 Screencast, 体会到 Ryan 的艰辛. at 2013年08月11日

    @Saito http://showterm.io/

    Termshows are purely text based. This makes them ideal for demoing instructions (as the user can copy-paste), making fail-safe "live-coding" sessions (plain text is very scalable), and sharing all your l33t terminal hacks.

  • 看了大家的讨论觉得很有帮助,于是又来贴题目 at 2013年08月09日
    Hash::new(obj)
    Hash.new 0
    

    If obj is specified, this single object will be used for all default values.

    太厲害了!

  • 看了大家的讨论觉得很有帮助,于是又来贴题目 at 2013年08月09日

    Inspired from @luikore's use of String, but still a very sloppy solution o_O...

    class Phrase < String
    
      def word_count
        scanned = scan(/\w+/).map(&:downcase)
        scanned.inject({}) do |hash, element|
          hash.merge(element => scanned.count(element))
        end
      end
    end
    
  • 2.1 复数的写法 at 2013年08月07日
    • Added integer and float literals: r, i, and ri.
      • "42r" and "3.14r" are evaluated as Rational(42, 1) and 3.14.rationalize, respectively. But exponential form with r suffix like "6.022e+23r" is not accepted because it is misleading.
      • "42i" and "3.14i" are evaluated as Complex(0, 42) and Complex(0, 3.14), respectively.
      • "42ri" and "3.14ri" are evaluated as Complex(0, 42r) and Complex(0, 3.14r), respectively.
  • Teahour.fm 第 24 期 和 knewone 的李路聊聊技术和精益创业 at 2013年07月23日

    @poshboytl Lisp 可以找黃澗石,有興趣我幫你聯繫他。

  • 你系安全带吗 at 2013年07月15日

    友情提示:到台灣旅遊時,打車不管是前後都得繫,不然會罰款。

  • 上一页
  • 1
  • 2
  • …
  • 6
  • 7
  • 8
  • 9
  • 10
  • …
  • 14
  • 15
  • 下一页
关于 / RubyConf / Ruby 镜像 / RubyGems 镜像 / 活跃会员 / 组织 / API / 贡献者
由众多爱好者共同维护的 Ruby 中文社区,本站使用 Homeland 构建,并采用 Docker 部署。
服务器由 赞助 CDN 由 赞助
iOS 客户端 / Android 客户端 简体中文 / English