Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
@rubyu2
Member
NO. 5489 / 2013-01-27

[email protected]
杭州
28 Topics / 292 Replies
11 Followers
25 Following
49 Favorites
GitHub Public Repos
  • stable-bloom-filter 42

    A Rust-implementation of a stable Bloom filter for filtering duplicates out of data streams.

  • ether-router 13

    Just Truffle2.0 of ether-router

  • leetcode-rust 9

    leetcode-rust

  • lightning 6

    Lightning Network's Bidirectional Payment Channels on CKB

  • solidity-assembly-prac... 1

  • comet 0

    An efficient money market protocol for Ethereum and compatible chains (aka Compound III, Compound...

  • u2.github.io 0

    u2.github.io

  • ckb-compose-example 0

    Example codes shows how to use deleagte lock to do on-chain composing and vice-versa

  • did-contracts 0

    This is the repository for contract scripts and development documents of DID.

  • MediaCrawler 0

    小红书笔记 | 评论爬虫、抖音视频 | 评论爬虫、快手视频 | 评论爬虫、B 站视频 | 评论爬虫、微博帖子 | 评论爬虫

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • Rails 5 - 将会有更快的 render collection 以及优化小细节 at May 26, 2015

    非常棒

  • 吐槽一下 railscasts-china at May 22, 2015

    一直非常喜欢 teahour。很久没看到 teahour 更新,希望能继续下去。如果自己能做点贡献就好了。

  • git rebase 奇怪报错,按提示操作多次,都没有 rebase 成功,如何解决? at May 20, 2015

    https://www.atlassian.com/git/tutorials/undoing-changes

  • 如何丢弃 commit message 中包含 "default message"的所有提交呢? at May 20, 2015

    https://ruby-china.org/topics/25656 看看这里:https://www.atlassian.com/git/tutorials/rewriting-history,希望有帮助。

  • 推荐一个 Git 学习的网站 at May 20, 2015

    #1 楼 @kikyous 嗯,也是 bitbucket 的开发商。

  • Tower 的用户记录是用什么记录的呢?(动态) at May 19, 2015

    #11 楼 @est 哈哈

  • Ruby 的内存陷阱 at May 15, 2015
    ruby -v
    ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-darwin14.0]
    
  • 一个新项目,用 Mongo 还是 SQL DB? at May 15, 2015

    pg

  • Ruby 的内存陷阱 at May 15, 2015

    为什么我运行了第一段代码,内存也没有释放?

    irb(main):008:0> report
    Memory 48900KB
    => nil
    irb(main):009:0> big_var = nil
    => nil
    irb(main):010:0> report
    Memory 48900KB
    => nil
    irb(main):011:0> ObjectSpace.garbage_collect
    => nil
    irb(main):012:0> sleep 1
    => 1
    irb(main):013:0> report
    Memory 48900KB
    => nil
    
  • Rails 中自动布署工具 mina 的经验谈 at May 14, 2015

    多环境发布自己传参数也挺方便的,multistage 不要也行。mina 不足之处就是并行部署,@quakewang提到的这个方法也想过,但是因为对并行暂时没有太多需求也就没考虑。没有用过 cap,不知道 cap 是如何解决并行部署的问题的。

  • Bundler 的作用及原理 at May 14, 2015

    官方文档讲的更清楚些。

  • [杭州] Ruby 攻城狮 / 程序猿 大搜车团队就等你来~ at May 08, 2015

    公司还在招人,欢迎大家加入。

  • RailsConf 2015 视频 720p at May 06, 2015

    不错

  • Rails 中的事务处理 at May 05, 2015

    👏

  • 多看《Ruby 元编程》限免 at April 30, 2015

    第一版。。。

  • 利用 ActiveSupport::Notifications 在 Rails 中实现 PUB/SUB 模式 at April 29, 2015

    一直都很少用,因为觉得这种写法太罗嗦。而且封装的层太多,调试和测试难度加大。

  • 最近写了一些关于分布式数据库的博文 at April 29, 2015

    挺不错的,通俗易懂。

  • Rails 集群部署问题 at April 24, 2015

    一般默认都是放 cookie,如果考虑全面一点就放内存数据库,cookie 里存放 session 的 key 就 OK 了。

  • after_save 不能使用 previous_changes at April 15, 2015

    你的 rails 版本是?

  • Data Warehouse Schema Design at April 13, 2015

    :plus1:

  • ActiveSupport::Autoload 学习 at April 13, 2015

    #7 楼 @gelihai1991 这个帖子是 11 年的,autoload 多线程的问题已经在 2.0 解决了。 https://bugs.ruby-lang.org/issues/921

  • 帅爆了的 RSpec 测试结果显示方法:Philips Hue at April 12, 2015

    吓尿了,价格好贵!

  • 帅爆了的 RSpec 测试结果显示方法:Philips Hue at April 12, 2015

    赞,准备入手!

  • 新主题上线 at April 11, 2015

    #82 楼 @weigang @huacnlee 上传不了图片了!!

  • Rails 3 和 Rails 4 中 ETags 工作原理 at April 09, 2015

    :plus1:

  • ActiveSupport::Autoload 学习 at April 08, 2015

    #5 楼 @zhangyuan Ruby 中的autoload在 2.0 以后是线程安全的。

  • ActiveSupport::Autoload 学习 at April 07, 2015

    #3 楼 @huopo125 是的。

    autoload 在不同情况下就是调用了 require 或者 autoload。

    修改为:

    ActiveSupport 的 autoload 在不同情况下就是调用了 require 或者原生 ruby 的 autoload。

    其实应该也不是require,而是require_dependency或者require。在不同情况下的处理也是不同的。

  • 新主题上线 at April 05, 2015

    配色感觉没有以前好,其他还不错。还有最下面的“讨论节点分类导航”,感觉还是之前的样子好看些。

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