Ruby China
  • 社区
  • 招聘
  • Wiki
  • 酷站
  • Gems
  • 注册
  • 登录
Deshi Xiao
@xds2000
高级会员
第 202 位会员 / 2011-11-23

北京
70 篇帖子 / 1107 条回帖
29 关注者
0 正在关注
3 收藏
follow me on twitter: xds2000
GitHub Public Repos
  • k8e 418

    K8E - Kubernetes Easy Engine

  • docker-for-production-... 66

    《容器技术生产实践指南》容器技术生产实践指南,收集百家之长,弘扬类似本草纲目之精神,把中国用户的开发经验积累汇集成册,以资借鉴

  • binance-bot 28

    qcat automate trading bot

  • cranfly 6

    Cloud Native Container Image Distribution mesh

  • conflux-remix 2

    remix based on Conlux Web

  • cilium 0

    eBPF-based Networking, Security, and Observability

  • ethtracking-bot 0

    feature exchange for eth tracking price.

  • README 0

    A pupil in the computer world.(Felix Fu)

  • conflux-rpc-mockserver 0

    conflux rpc api for openrpc format

  • k3s 0

    Lightweight Kubernetes

More on GitHub
  • 概况
  • 话题
  • 回帖
  • 收藏
  • 正在关注
  • 关注者
  • 浏览器测试的持续集成 at 2013年11月17日

    https://browserling.com/

  • 如何用代码描述问题而不是过程式思考? at 2013年11月14日

    写了点小心得,高下立判的事实背后隐藏的秘密

  • 有没有这样一种 HTTP 请求方案? at 2013年11月14日

    @iBachue 你这个需求已经不是应用层的协议了。直接到下面一层 TCP 吧。

  • 有没有这样一种 HTTP 请求方案? at 2013年11月14日

    @iBachue 是 Stream API? https://dev.twitter.com/docs/streaming-apis

  • 修改默认的 Gemfile at 2013年11月14日

    @song940 Oops. 我理解错了,可以给 ruby.taobao.org 提个建议奥。加上你的 patch

  • 修改默认的 Gemfile at 2013年11月14日

    @jxs471494539 那可以报一个 bug 给 ruby.taobao.org 喽

  • 修改默认的 Gemfile at 2013年11月14日

    http://ruby.taobao.org/ 首页最下面

  • 修改默认的 Gemfile at 2013年11月14日

    sed -i 's!ftp.ruby-lang.org/pub/ruby!ruby.taobao.org/mirrors/ruby!' $rvm_path/config/db http://ruby.taobao.org/官方网上写的

  • 用 Ruby Koans 学习 Ruby,其中一道题,到 stackoverflow 上一看,高下立判啊! at 2013年11月13日

    ὅπερ ἔδει δεῖξαι

  • 大家对 django-cms 如何看?我感觉 diango cms 生态圈做的太好了。。 at 2013年11月13日

    需要自己写插件。

  • 超简约,超易用, iOS 图表库 PNChart 开源!(NO.1 Trending in Objective-C on Github today) at 2013年11月11日

    v5,

  • OpenShift Rails App Error at 2013年11月11日

    @bruceyue 还有一招,报错信息说你的磁盘满了,你提示说你的项目只有 8M。所以提交一个 issue 到 openshift,客服一查就知道原因了。在这里提交:https://www.openshift.com/forums/openshift

  • OpenShift Rails App Error at 2013年11月10日

    做个 Google 大法分享给你。 https://www.google.com/search?q=remote%3A+Disk+quota+exceeded+openshift&oq=remote%3A+Disk+quota+exceeded+openshift&aqs=chrome..69i57j69i58.2036j0j7&sourceid=chrome&espv=210&es_sm=91&ie=UTF-8

  • OpenShift Rails App Error at 2013年11月10日

    Disk quota exceeded,磁盘空间满了。

    建议下回贴代码之前,请敲点中文说一下你遇到这个之后你是如何思考解决这个问题的。

  • 大家最近有看中什么新的编程语言么 at 2013年11月10日

    scala

  • Rails 4 选书 Ruby on Rails 4.0 Guide vs. Rails 101 at 2013年11月09日

    我的建议是,看一下章节目录后,按你的直觉来一本。学技术花多少钱都不贵,贵的是坚持。

  • 今年的大会视频还会放到 railscasts-china 上吗? at 2013年11月07日

    infoq 录制的,应该在它🏠的网站吧

  • 谁有业余时间吗?找合作者帮忙做一套收费的 Rails 课程 at 2013年11月03日

    这种收费视频是最没有价值的。还业余时间,are you kidding?

  • 有关 Array #join 的 encoding at 2013年11月02日

    相关问题很多,google 点这里

  • 有关 Array #join 的 encoding at 2013年11月02日
    irb(main):027:0> '错误'.force_encoding('ASCII-8BIT').force_encoding('utf-8').encoding
    => #<Encoding:UTF-8>
    
  • 有关 Array #join 的 encoding at 2013年11月02日

    我觉得这是个 bug.

  • 有关 Array #join 的 encoding at 2013年11月02日

    这个能说明啥问题。你期望的是什么情况

    irb(main):001:0> a=['hello']
    => ["hello"]
    irb(main):002:0> a.push 'kitty'.force_encoding('ASCII-8BIT')
    => ["hello", "kitty"]
    irb(main):003:0> puts a.join
    hellokitty
    => nil
    irb(main):004:0> a=['问题']
    => ["问题"]
    irb(main):005:0> a.push '错误'.force_encoding('ASCII-8BIT')
    => ["问题", "\xE9\x94\x99\xE8\xAF\xAF"]
    irb(main):006:0> puts a.join
    Encoding::CompatibilityError: incompatible character encodings: UTF-8 and ASCII-8BIT
        from (irb):6:in `join'
        from (irb):6
        from /Users/dxiao/.rubies/ruby-2.0.0-p247/bin/irb:12:in `<main>'
    
  • lazy_high_charts 1.2.2 稳定版发布。画图就用它了 at 2013年11月01日

    @331299 你提交一个 issue,把你的例子提交一下。我看看再说。

  • 有哪些代码质量比较高的、值得学习的开源项目? at 2013年10月30日

    比如 rubychina

  • 新博文搬运: 一周试用期,好还是坏? at 2013年10月29日

    非常适合 lean startup 的公司。

  • 已购买的 themeforest 的主题模板是否能开源? at 2013年10月29日

    @jianpanxiu 啥开源项目。

  • Still like Backbone/Marionette over Ember at 2013年10月29日

    看看大猫的最新讲座: MVC is not enough

    楼主说的喜好问题,我觉得没有阐述的非常清楚,所以如何有机会,还是把你列出的内容在展开讲讲。这样讨论才有意思。

  • Steve Blank 原来已经在 Udacity 上开课了啊 at 2013年10月27日

    🆒

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