Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Mr.Passer-by
@MrPasserby
高级会员
第 2852 位会员 / 2012-07-13

武汉
3 篇帖子 / 366 条回帖
3 关注者
0 正在关注
8 收藏
GitHub Public Repos
  • passerby.github.io 0

  • .nvim 0

  • Piccolo 0

    Piccolo (formerly Pilot) – mini game engine for games104

  • typora-theme-ursine 0

    A Typora theme, inspired by Bear

  • lifeRestart 0

    やり直すんだ。そして、次はうまくやる。

  • restart 0

  • scribble 0

    :tomato: A Jekyll theme.

  • reinforcement-learning... 0

    《Reinforcement Learning: An Introduction》(第二版)中文翻译

  • Dota2-FullOverwrite 0

    Work in progress for a full-overwrite Dota 2 bot framework

  • update_notification 0

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 平复心情的方法???????? at 2014年11月04日

    其实你想换工作,只是要大家给你一个能说服自己的理由

  • [已解决] Mac 命令终端怎样改前面那段默认的东东? at 2014年10月24日

    #8 楼 @chairy11 这个主题不是更长了吗 😪

  • 一个贴读懂 RubyConf China 2014 at 2014年10月22日

    出售 200 元票一张= =, 可在会场门口交易 😃

  • Rails 中引入 Bootstrap 的问题 at 2014年10月20日
    1. 直接用 gem ,不纠结。
    2. http://getbootstrap.com/customize/#navbar
  • 犹豫是不是要升级 Yosemite at 2014年10月17日

    #10 楼 @congteng 我的 vim 也出了问题 😖

  • item2 如何让 $ 前面的路径信息变得短点 at 2014年10月14日

    https://github.com/robbyrussell/oh-my-zsh

  • [已解决] 求教统计实现方法 at 2014年10月14日
    class User < ActiveRecord::Base
      has_many :workloads
    end
    
    class Project < ActiveRecord::Base
      has_many :workloads
    end
    
    class Workload < ActiveRecord::Base
      belongs_to :user
      belongs_to :project
    
      // 工作量放这个表里面
    end
    

    另外 google 的方法:http://lmgtfy.com/?q=how+to+set+many+to+many+rails

  • 如何实现一个类似 Facebook/ 人人网的添加好友系统? at 2014年10月10日

    人与人之间的关系应该是唯一的吧, 如果你删掉 Friendship,那么就代表可以重复发送请求。 如果你将 Friendship.status = denied, 那还能不能继续呢? 所以说应该设计一个状态机制。

  • cap deploy 一直失敗! at 2014年10月08日

    #12 楼 @jossjoss54 试试 ssh-add ~/.ssh/key-name

  • cap deploy 一直失敗! at 2014年10月08日

    服务器上 ssh pub key 是存在哪个目录下面的哪个文件?

  • 学习 Rails 后第一个作品完成! at 2014年10月08日

    #15 楼 @akirapanda 上海公共办公区很便宜。

  • 讨论一下,大家是如何存储时间范围的? at 2014年09月27日

    Range

  • 求助,有没有方法快速递格式化以下代码? at 2014年09月27日

    vim easy align

  • 有必要用 rails_admin 吗? at 2014年09月23日

    #11 楼 @bhuztez +1

  • 想问个问题,你们为何选择 Rails? at 2014年09月21日

    stackoverflow 比博客质量高多了=。=

  • sunspot + solr 生产环境配置 ubuntu at 2014年09月17日

    :plus1:

  • [上海][2014年9月16日] 2014 年 9 月 周中聚会 at 2014年09月16日

    签到

  • 向大家请教一个关于 Rails 的验证的问题 at 2014年09月12日

    #4 楼 @shangrenzhidao save 或 update 之前 select 一下,看有没有字段相同的记录。

  • 关于建 User 表的问题 at 2014年09月12日

    has_one :user_profile, inverse_of: :user

    这样会不会好一点?

  • [北京或上海] 我很菜但很热血,求 ruby 职位,或者实习。 at 2014年09月05日

    用 issue 写博客好机智 :plus1: ,我以后用 issue 做 BBS 好了 😄

  • 《Ruby on Rails 教程 (第二版)》最后的折扣 at 2014年09月02日

    国内访问速度不乐观,云端开发还是离我们有点距离。

  • 想做一个语音群聊,跪求指点 at 2014年09月01日

    手机?网页?本地化客户端?

  • 程序要天天写啊!一个月没写代码忘了差不多了! at 2014年09月01日

    羡慕一下!

  • 感谢社区,我 2 个月学会了 ruby 并实施了一个项目 at 2014年09月01日

    还是开发模式,应该换成 production 模式, 前端也有个问题 Uncaught TypeError: Cannot read property 'addRule' of undefined

  • Happycasts: 使用 resque 处理后台任务 at 2014年09月01日

    #25 楼 @davidqhr start: kill -s QUIT, restart: kill -s USR2

  • 请各位看看这是不是 Rails console 和 runner production 下的一个 bug at 2014年09月01日

    测试了下,这边没有 spring 很正常呢

  • Capistrano 部署的错误 at 2014年08月22日

    #13 楼 @zicjin 我看你 rvm 用的都是 default 的 gemset,最好指定下 gemset, 还有可能是 Capfile 里面忘了 require 了 gem 了

    # Load DSL and Setup Up Stages
    require 'capistrano/setup'
    
    # Includes default deployment tasks
    require 'capistrano/deploy'
    # Includes tasks from other gems included in your Gemfile
    #
    # For documentation on these, see for example:
    #
    #   https://github.com/capistrano/rvm
    #   https://github.com/capistrano/rbenv
    #   https://github.com/capistrano/chruby
    #   https://github.com/capistrano/bundler
      # https://github.com/capistrano/rails
    #
    require 'capistrano/rvm'
    # require 'capistrano/rbenv'
    # require 'capistrano/chruby'
    require 'capistrano/bundler'
    require 'capistrano/rails/assets'
    require 'capistrano/rails/migrations'
    # require 'capistrano/unicorn_nginx'
    
  • Capistrano 部署的错误 at 2014年08月22日

    试试 https://github.com/capistrano/rvm

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