Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Jasl
@jasl
Admin
NO. 1107 / 2012-02-21

[email protected]
北京
126 Topics / 3954 Replies
396 Followers
11 Following
82 Favorites
Ass♂we♂can
GitHub Public Repos
  • wx_pay 461

    An unofficial simple wechat pay gem

  • zk_dcap_verifier_poc 1

  • substrate 0

    Substrate: The platform for blockchain innovators

  • parity-common 0

    Collection of crates used in Parity projects

  • polkadot-sdk 0

    The Parity Polkadot Blockchain SDK

  • pjs-rs 0

    A javascript runtime with pjs embebed

  • agave 0

    Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.

  • ngine 0

    A nostr application framework

  • derive_more 0

    Some more derive(Trait) options

  • cybros-experimental 0

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • Ruby 用 jemalloc 有什么坑么? at April 23, 2018

    那就是 2.4

  • Ruby 用 jemalloc 有什么坑么? at April 23, 2018

    官方提到的的 Known Issue,是 2.4.0 还是 2.5.0 忘记了,具体可以看 Ruby 的 Redmine

  • Ruby 用 jemalloc 有什么坑么? at April 23, 2018

    Ruby 2.5 跟 Jemalloc 有兼容问题,其他跑了一段时间没遇到啥问题

  • 关于 Vim China 中文社区 at April 23, 2018

    不如,在这边开个 Vim 板块,你把人忽悠来 😀

  • REST 接口使用 PUT,PATCH,DELETE 方法的意义是什么? at April 21, 2018

    因为 form 标签只支持 GET 和 POST... 所以你在 Rails 里用的 PUT PATCH DELETE 都是借助 UJS 库模拟出来的。。。

  • [深圳] 2018-04-21 深圳 Ruby 技术交流活动 ( 已结束 ) at April 19, 2018

    来!一起摩擦

  • IO 模式和 IO 多路复用 at April 19, 2018

    催更~

    加上参考文献更佳

  • 给大家讲个笑话 at April 19, 2018

    更推荐 https://github.com/Shopify/ejson 之前还跟 @hooooopo 说写个接管 Credentials 的插件来,没啥空就坑了

  • 在 Rails 中实现拖拽排序功能 at April 19, 2018

    GoRails 最近也有一期讲 Drag and drop 的 https://gorails.com/episodes/sortable-drag-and-drop

  • rails 已经 5.2 了 ember.js 也 3.X 还有必要用 rails 做后端,前端用 ember.js 吗? at April 19, 2018

    这个还是要看你的需求的,另外还有团队人员的知识结构。

    谈不上有没有必要,更多看喜好

  • [深圳] 2018-04-21 深圳 Ruby 技术交流活动 ( 已结束 ) at April 19, 2018

    我是来替补的,讲得可长可短呀,你的主题更有价值的!

  • 不能发帖了? at April 18, 2018

    回复某层也有问题

  • GraalVM 1.0.0-rc1 released! at April 18, 2018

    https://www.zhihu.com/question/19588346

    https://www.zhihu.com/question/28927570

    看这两篇知乎 R 大的回答

  • Rails 5.2 的新 secret credentials 怎样让不同的环境使用不同的配置? at April 18, 2018

    说个无关的...讲真我觉得 https://github.com/Shopify/ejson 更好用一些。。。

  • Ruby 有糖相伴好下药 at April 16, 2018

    哈,我看成是你翻译的了,转载就不加精了,但一样感谢!

  • [深圳] 2018-04-21 深圳 Ruby 技术交流活动 ( 已结束 ) at April 13, 2018

    我可以替补~

  • 命令行创建一个 model 时怎么设置字段默认值? at April 11, 2018

    貌似不行,但你可以直接改生成出来的文件啊

  • [北京] 美团点评-数据平台 Python/Java 高级开发工程师 (25-45K,全年15.5 薪) at April 11, 2018

    去年美团的人在 SwiftCon 上说怎么用的 Ruby...

  • Rails 5.2.0 Released at April 10, 2018

    那个早荒废了吧。。。我自己魔改了下 form_builder 可以达到一样效果。。。

  • Rails 5.2.0 Released at April 10, 2018

    webpacker 4 没来及 release 算是遗憾

  • 自动路由是挺方便,不过在 Views 里面还能获得到 path 吗? at April 02, 2018

    你继续往后做,会发现更多的坑的,然后加上更多的类似这样的补丁来缓解,架构腐败就是这样开始的

  • 自动路由是挺方便,不过在 Views 里面还能获得到 path 吗? at April 01, 2018

    理论上只要技术可行你可以任意来搞,但是在所有的人为约定里有一种叫做 最佳实践

  • 自动路由是挺方便,不过在 Views 里面还能获得到 path 吗? at April 01, 2018

    http://api.rubyonrails.org/v5.1/classes/ActionDispatch/Routing/UrlFor.html http://api.rubyonrails.org/classes/ActionDispatch/Routing/PolymorphicRoutes.html

    可以是可以,但是我是很反对你这么粗暴的搞的

  • Ruby 中 require,load,autoload,extend,include,prepend 的区别 at March 29, 2018

    面向切面编程,其他语言应用也挺广泛的

  • Ruby 中 require,load,autoload,extend,include,prepend 的区别 at March 29, 2018

    extend、include 和 prepend 和 load require autoload 是两套完全不同的东西

    另外结合方法继承,prepend 可以用来实现 AOP 风格的编程 比如这样

  • 该用 Bootstrap 4 还是 3? at March 28, 2018

    4 吧,用 rubygems 的形式或者 webpack 都可以

  • 有没有 Asset Pipeline 的增强 gem 支持编译 ES6 的? at March 28, 2018

    gem "sprockets", "~> 4.0.0.beta4"

  • 各位大神 cap puma:restart 和 puma:stop puma:start 有什么区别? at March 27, 2018

    可以去看一下源码,在一些情况下,restart 可能会去执行 phase-restart

  • Ruby 里为什么要有 unless? at March 27, 2018

    你理解成语法糖也没问题,这种风格的另一种名字叫 guard clause

  • Ruby 里为什么要有 unless? at March 27, 2018

    想太多了 https://en.wikipedia.org/wiki/Guard_computer_science)(

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