Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
andy
@clarkyi
会员
第 9770 位会员 / 2013-10-28

[email protected]
2 篇帖子 / 127 条回帖
6 关注者
3 正在关注
42 收藏
GitHub Public Repos
  • free-programming-books... 2

    免费的计算机编程类中文书籍,欢迎投稿

  • ohmyzsh 0

    🙃 A delightful community-driven (with 1900+ contributors) framework for managing your zsh confi...

  • sh-circle 0

  • jd_seckill-1 0

    fork huanghyw/jd_seckill

  • python-script 0

    python script

  • emoji-js 0

    emoji表情包及简约版功能

  • clarkyi.github.io 0

    随手记

  • openbilibili-go-common 0

    听说这是来自 https://github.com/openbilibili/go-common/ 的 “哔哩哔哩 bilibili 网站后台工程 源码”,不过咱也不知道这是啥。

  • xinge-sdk-ruby 0

    xinge push sdk

  • create-react-app 0

    Create React apps with no build configuration.

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • alias new_name old_name 中的参数能用变量吗? at 2017年09月20日

    我去,你知道 alias 的用法?alias 是对 method 的,不是对两个变量好吧 http://blog.bigbinary.com/2012/01/08/alias-vs-alias-method.html

  • alias new_name old_name 中的参数能用变量吗? at 2017年09月20日

    这样吧,你把 new 换成别的试一下

  • alias new_name old_name 中的参数能用变量吗? at 2017年09月20日

    monkey patch

  • RubyConf China 2017 视频 at 2017年09月20日

    辛苦👍

  • RubyConf China 2017 视频 at 2017年09月20日

    有云盘资源供下载么?@Rei

  • [RubyConfChina2017 话题分享] Ruby Web 实时通讯方案剖析 (资料和参会感受) at 2017年09月20日

    膜拜一下大神

  • 应用了元编程,开心哦 at 2017年09月11日

    我已经加上去了😂

  • [深圳] 脚印数据招聘 ROR 工程师 4 名 at 2017年09月04日

    Ruby 开发主要负责后台和 API?

  • 招聘 [广州] 15-25k 招聘 Ruby 开发工程师一名 5 险一金 免费旅游 免费下午茶 还等什么 快到碗里来? at 2017年08月20日

    帮顶

  • [上海] 牛牛汽车招聘 Rails 工程师 15-35K at 2017年08月08日

    这办公环境感觉科技感爆棚啊

  • 大家有被颈椎病困扰的吗? at 2017年07月11日

    看完去试过的举一下抓

  • 大家有被颈椎病困扰的吗? at 2017年07月10日

    最近肩周炎困扰严重,颈椎目前还不错

  • [深圳] [结束] 2017.07.22 Pragmatic Elixir Meetup at 2017年07月10日

    到时会有会议直播么?或者会后总结,PPT 这些共享么?

  • 当前设置新手用户不能在 22:00-9:00 发贴 at 2017年07月10日

    我也发现了,偶尔出现一个时间段内不能回帖的提醒

  • [杭州][9.16 - 17] RubyConf China 2017 正式宣布!征集赞助、主题分享 at 2017年07月05日

    @jasl 出去玩还带着电脑,女友说:叫你打代码,叫你打代码,然后电脑坏了。脑补.....😂

  • [深圳] 跨境供应链 招聘 Ruby 高级开发 [15K-25K](另有实习岗开放) at 2017年05月27日

    帮顶

  • 我们的办公室有几个空的工位,我想免费送给你 at 2017年04月20日

    👍

  • 用十几行代码阐述了一个非常小的类 ActiveRecord::Relation 的实现思路 at 2017年03月13日

    😂

  • Ruby China 正在衰退吗? at 2017年03月13日

    公司已经从 ruby 完全转了,就留我一个在这里苦苦挣扎

  • IT 人的辛苦,何来价值 at 2017年02月23日

    心灵不干净,去哪漂洗都净化不了😂

  • [上海] 百姓喜事招聘 Ruby on rails 工程师 (20K-40K) at 2017年02月09日

    好诱惑呀

  • [译] Terminal 功夫——方便开发者的实用技巧 at 2016年12月08日

    经常忘记_这个方式,学到了

  • 十年磨一剑,从菜鸟到 CTO —— 我的故事 at 2016年11月28日

    顶礼膜拜一下

  • 使用 Ruby 处理大型 CSV 文件 at 2016年11月08日

    👍 💯

  • 提一个会员域名的小建议 at 2016年10月11日

    我尝试过一次,故意注册一个"index"的用户,没有成功,直接提醒用户名已经存在

  • database 添加 application_name 问题 at 2016年10月10日

    问题解决 由 bundle install --path /opt/rails_apps/appname/shared/bundle --without development test --deployment --quiet改为 bundle install --without development test --no-deployment --quiet

  • database 添加 application_name 问题 at 2016年10月09日

    有一种临时解决方案

    step1

    bundle config build.pg --with-pg-config=/usr/pgsql-9.2/bin/pg_config
    

    step 2

    gem uninstall pg
    bundle install
    

    step 3

    vim Gemfile
    #gem ‘pg'
    

    step 4

    bundle install
    

    step 5

    vim Gemfile
    gem ‘pg'
    

    step 6

    bundle install
    

    验证 RAILS_ENV=test rails c :

     PGconn.connect({:application_name=>”name", :host=>”ip", :password=>”pwd", :user=>”user", :dbname=>”dbname"})
    => #<PG::Connection:0x00000006c65b78>
    

    这种方案存在的问题是后续的发布都需要执行上述步骤,所以没有采用

  • 办公室午睡最佳实践? at 2016年07月06日

    趴着睡,醒了之后真是手脚麻木

  • [北京] 万维星辰高薪 + 期权招揽天下 Rails 高手 at 2016年05月30日

    发现两张图片不显示

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