Ruby China
  • Topics
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • Sign Up
  • Sign In
Rei
@Rei
Admin
NO. 1 / 2011-10-28

[email protected]
深圳
188 Topics / 9160 Replies
730 Followers
0 Following
11 Favorites
中下水平 Rails 程序员
Reward
GitHub Public Repos
  • writings 941

    [Closed] Source code of writings.io

  • alipay 732

    Unofficial alipay ruby gem

  • code_campo 291

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

  • asciidoctor-pdf-cjk-ka... 101

    **no longer maintained**

  • geeknote 34

  • asciidoctor-htmlbook 31

    Asciidoctor HTMLBook is an Asciidoctor backend for converting AsciiDoc documents to HTMLBook docu...

  • material-ui 17

  • rich-text-editor 12

  • htmlrenderer 12

  • rails-chatgpt-demo 8

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • Ruby China 是不能发视频的吗? at May 27, 2014

    #7 楼 @huacnlee 我是不建议支持视频的,贴链接就够用了。

  • Ruby China 是不能发视频的吗? at May 27, 2014

    #5 楼 @Seabornlee 都是安全漏洞很大。

  • Ruby China 是不能发视频的吗? at May 27, 2014

    #2 楼 @lgn21st markdown 兼容 html。直接允许嵌播放器的代码会有安全问题,一个方案是贴链接,解析的时候从链接中抽出视频 id 转换成嵌入代码。

  • Production 代码更新后如何重启 Puma at May 26, 2014

    #4 楼 @cameo puma 进程管理是通常的 Linux 进程管理,启动的时候通过配置参数把进程 ID 写到一个 .pid 文件里面,重启的时候读取这个 .pid 文件里的进程 ID,然后发送信号。puma 定义用 -SIGUSR2 信号重启。二楼例子不能直接运行因为 .pid 文件路径名没有写全,而且也不知道你怎么配置 .pid 文件路径。

    如果你觉得管理进程很麻烦,推荐用 Passenger。

  • 响应式布局加入 at May 26, 2014

    我屏幕分辨率 1920x1080,有些图片不够清晰~

  • 一个 Rails 新手的学习过程望朋友们多提建议 at May 26, 2014
    Model.find(:all, :conditions => ['name LIKE ?', "%#{search}%"]
    

    这个是挺早前的语法了,楼主的那本《web 开发敏捷之道》是不是旧了?

    Rails 每个主要版本升级都有很多变化。

  • rails 4 的改进导图 at May 26, 2014

    Ruby on Rails 4.1 Release Notes 每次发布第一时间看。

  • rails 4 的改进导图 at May 26, 2014

    哦,用来整理更新的。

  • rails 4 的改进导图 at May 26, 2014

    这些图要怎么用的?没学过的看不懂,学过的用不着。

  • [北京] 高端旅游公司 招聘高级 python 开发工程师 2 人 at May 26, 2014

    招聘移动到招聘节点。

  • 一个 Rails 新手的学习过程望朋友们多提建议 at May 26, 2014

    《web 开发敏捷之道——应用 rails 进行敏捷 Web 开发》 :plus1:

    为什么要学 simple_form?你不需要这些 Gems http://chloerei.com/2013/11/22/you-do-not-need-these-gems/

  • 响应式布局加入 at May 25, 2014

    #3 楼 @huacnlee 那点击查看原图?

  • 响应式布局加入 at May 25, 2014

    图片不如保留原图算了?

  • 现在 Ruby China 主站开启 SSL at May 25, 2014

    #48 楼 @huacnlee 能确定是哪个组件的问题么?既然浏览器能连上,是不是在客户端修复?

  • 多台机器上 Unicorn 共享 Session at May 25, 2014

    #5 楼 @6233843 新手常见的是:

    session[:user] = current_user
    

    推荐的是

    session[:user_id] = current_user.id
    
  • 现在 Ruby China 主站开启 SSL at May 25, 2014

    #39 楼 @lgn21st 高瞻远瞩、审时度势、运筹帷幄、决胜千里、疾风劲草、路遥马力!

  • 多台机器上 Unicorn 共享 Session at May 25, 2014

    cookiestore 的限制是大小限制,cookies 不能超过大约 4K 大小,所以不要往 session 里面塞大的对象。

  • 多台机器上 Unicorn 共享 Session at May 25, 2014

    cookiestore 没有这个问题。

  • 同样碰到 403 问题了 directory index of "/*/public/" is forbidden at May 24, 2014

    #18 楼 @ruohanc passenger 权限比自己管理还简单,检查应用根目录所属用户,然后用这个用户身份运行。但是为了安全,不能用 root 用户运行。

  • 同样碰到 403 问题了 directory index of "/*/public/" is forbidden at May 24, 2014

    #18 楼 @ruohanc passenger 没打开,我写的教程也漏了。

  • 同样碰到 403 问题了 directory index of "/*/public/" is forbidden at May 24, 2014
    ##
    # Phusion Passenger config
    ##
    # Uncomment it if you installed passenger or passenger-enterprise
    ##
    
    # passenger_root /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini;
    
  • 同样碰到 403 问题了 directory index of "/*/public/" is forbidden at May 24, 2014

    #4 楼 @patxiao 不要等,我不知道问题在哪。

  • 同样碰到 403 问题了 directory index of "/*/public/" is forbidden at May 24, 2014

    public 目录和应用根目录拥有者是什么?

  • 现在 Ruby China 主站开启 SSL at May 24, 2014

    #9 楼 @HungYuHei 应该有,baidu 不收录 https 页面。我在想是不是可以针对 baidubot 允许访问 http。

  • 为啥没有 mruby 的节点? at May 23, 2014

    创建了 http://ruby-china.org/topics/node66

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