Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Juanito Fatas
@juanito
VIP
NO. 1510 / 2012-03-19

[email protected]
https://Buildkite.com
Tokyo
71 Topics / 454 Replies
113 Followers
11 Following
51 Favorites
GitHub Public Repos
  • what-do-you-call-this-... 976

    Solving the second hard problem in Computer Science.

  • ruby-style-guide 127

    Ruby Style Guide (Chinese)

  • - 3

  • fast_uuid 2

  • rails 1

    Ruby on Rails

  • rails-versions 1

    A common repository of Rails version metadata.

  • puma 0

    A Ruby/Rack web server built for concurrency

  • dev.to 0

    Where programmers share ideas and help each other grow

  • dd-trace-rb 0

    Datadog Tracing Ruby Client

  • dalli 0

    High performance memcached client for Ruby

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • RubyConfChina 2013 After Party - 大会期间的三场 Party 活动! at October 26, 2013

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

  • RubyConfChina 2013 After Party - 大会期间的三场 Party 活动! at October 25, 2013

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

  • [广州] 招聘 Ruby 程序员 at October 23, 2013

    羨慕 👍

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

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

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

    真不錯!

  • Ruby 里有没有比较成熟的爬虫框架 at October 07, 2013

    https://github.com/hooopo/direct_web_spider

  • 給 Rails Developer 的一些基本 SEO 設定 at September 28, 2013

    沙發!

  • 现在大伙上 Rails 4 了吗? at September 24, 2013

    4

  • Rails Database Migrations 译文 at September 22, 2013

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

  • 這年頭還有人用 .irbrc 嗎? at September 22, 2013

    我有一個 .pryrc

  • Rails Database Migrations 译文 at September 22, 2013

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

  • Action View Form Helpers Guides 译文 at September 21, 2013

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

  • 关于 Ruby & Rails 风格指南 at September 15, 2013

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

  • 为什么大家不去翻译 Rails Guides at September 14, 2013

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

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

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

  • 为什么大家不去翻译 Rails Guides at September 13, 2013

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

  • 你所见过的拥有最好阅读体验的站点是? at September 01, 2013

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

  • guard + rspec + spork 在配置后运行 guard 找不到 rspec/ra at August 27, 2013
    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 August 27, 2013

    Good read 👍

  • Ruby 是函数式语言吗? at August 26, 2013

    保羅•葛拉漢姆大叔是想說這些語言演化的越來越像 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 August 22, 2013

    https://github.com/guard/listen

  • Jammit at August 19, 2013

    SaitoWu/linner

  • Rails has Two Default Stacks at August 14, 2013

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

  • 录了一段 Screencast, 体会到 Ryan 的艰辛. at August 12, 2013

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

  • 录了一段 Screencast, 体会到 Ryan 的艰辛. at August 11, 2013

    @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 August 09, 2013
    Hash::new(obj)
    Hash.new 0
    

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

    太厲害了!

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

    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 August 07, 2013
    • 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 July 23, 2013

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

  • 你系安全带吗 at July 15, 2013

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

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