Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Rei
@Rei
管理员
第 1 位会员 / 2011-10-28

[email protected]
深圳
194 篇帖子 / 9192 条回帖
732 关注者
0 正在关注
11 收藏
中下水平 Rails 程序员
打赏作者
GitHub Public Repos
  • writings 941

    [Closed] Source code of writings.io

  • alipay 731

    Unofficial alipay ruby gem

  • code_campo 289

    [Closed] Source code of http://codecampo.com

  • asciidoctor-pdf-cjk-ka... 102

    **no longer maintained**

  • geeknote 38

  • material-ui 17

  • rich-text-editor 12

  • htmlrenderer 12

  • llmrpg 8

  • rails-chatgpt-demo 8

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 神奇的 form_for at 2012年07月24日

    魔法!

  • 新手问 Rails 更适合什么样的项目 at 2012年07月24日

    有时我真不知道某些 Pyhtoner 的偏见是从哪来的。

    楼主的需求不需要 Web 端,Rails 是个 Web 框架对楼主帮助不大。

    Python 和 Ruby 都行,看楼主喜欢哪个,库都不缺。

  • Let's Party! at 2012年07月24日

    别回啦,这贴太老了。

  • HTML 5 and HTML Living standard at 2012年07月24日

    Implementations and specifications have to do a delicate dance together. You don’t want implementations to happen before the specification is finished, because people start depending on the details of implementations and that constrains the specification. However, you also don’t want the specification to be finished before there are implementations and author experience with those implementations, because you need the feedback. There is unavoidable tension here, but we just have to muddle on through.

    http://diveintohtml5.info/past.html

  • HTML 5 and HTML Living standard at 2012年07月24日

    #3 楼 @zhex HTML5 压根就不是标准

  • HTML 5 and HTML Living standard at 2012年07月24日

    #1 楼 @zfben 赞同

    吐槽的其实都没明白 Html5 是什么。

  • nginx+passenger 403 forbidden 解决 at 2012年07月24日

    chmod -R 777

    是很不安全的行为,等于说「我不需要安全机制了」

  • 手指受伤了.. at 2012年07月24日

    歪楼成功

  • 手指受伤了.. at 2012年07月23日

    「放手!我的手指不能用了,活在这个世上还有什么意义!」 「你还有我啊!」

  • [分享] 学习 Rails 的过程中遇到的一些陷阱, 新人一定进来看看! at 2012年07月23日

    -编辑掉-

  • rails 创建新闻怎么正确排序显示? at 2012年07月23日

    http://guides.rubyonrails.org/active_record_querying.html#ordering

  • 求 Capistrano 部署过程文档 at 2012年07月23日

    http://www.beiww.com/doc/oss/smart-questions.html 提问的智慧

  • moible 版本能否考虑加入分页? at 2012年07月23日

    我也建议加上分页了,现在回复过百不是难事,虽然会导致楼层链接失效。

  • 请问 nginx+rails3.2.1+ubuntu11.10 的最佳权限设置是什么呢? at 2012年07月23日

    #8 楼 @jialezhang 这是 ~ 键下面的那个符号

  • 请问 nginx+rails3.2.1+ubuntu11.10 的最佳权限设置是什么呢? at 2012年07月23日

    #5 楼 @jialezhang 我一直想说了,文本里面滥用重点(加粗) == 无重点。

    代码用代码块包裹起来。

    your code

  • 比较一下 ruby-taiwan 与 ruby-china 的技术讨论氛围 at 2012年07月23日

    #42 楼 @hawkflying 我看了你的个人页面,再 mark 就要处罚了。

  • Ubuntu 12.04 + Nginx + Passenger + Mongodb + Rails 环境搭配 at 2012年07月23日

    http://ruby-china.org/topics/1377

  • Ubuntu 12.04 + Nginx + Passenger + Mongodb + Rails 环境搭配 at 2012年07月23日

    #4 楼 @jialezhang 给个提示:passenger 进程或者 nginx 进程没有权限访问 /home/jialezhang

  • 法文 rake db:seed 失败 at 2012年07月23日

    文件顶部加

    # encoding: UTF-8
    
  • RSpec 到底好用在哪? at 2012年07月22日

    #7 楼 @quakewang 这个牛逼

  • 想问一下,给用户看的界面怎么弄? at 2012年07月22日

    namespace https://github.com/chloerei/code_campo/blob/master/config/routes.rb

  • RSpec 到底好用在哪? at 2012年07月22日

    #2 楼 @quakewang http://guides.rubyonrails.org/testing.html#running-tests -n 参数

  • 现在 Rails 工资都那么高么? at 2012年07月22日

    低档

  • Ubuntu 12.04 + Nginx + Passenger + Mongodb + Rails 环境搭配 at 2012年07月22日

    如果没能力解决源码安装产生的问题,那么不要用源码安装。

  • rails 中继承过来的 controller 中的有些 action 需要屏蔽,怎么做? at 2012年07月22日

    我不会继承一个有 action 的类,继承的时候只会继承一些 Base controller,里面定义了一些 filter 和 private 方法。

  • Ubuntu 12.04 + Nginx + Passenger + Mongodb + Rails 环境搭配 at 2012年07月22日

    passenger 编译的 nginx,没有提供 /etc/init.d/nginx 脚本。passenger 安装 nginx 的时候别跳那么快,看看它的提示说了啥。

  • 如何同时使用 sqlite 和 mysql,或者其他数据库 at 2012年07月22日
    class A < ActiveRecord::Base
      establish_connection(
        # Databse A options
      )
    end
    
    class B < ActiveRecord::Base
      establish_connection(
        # Databse B options
      )
    end
    
  • 如何同时使用 sqlite 和 mysql,或者其他数据库 at 2012年07月21日

    可以在每个 model 里面调用 establish_connection 来指定数据库连接。

    http://apidock.com/rails/v3.2.3/ActiveRecord/Base/establish_connection/class

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