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

[email protected]
深圳
182 Topics / 9135 Replies
727 Followers
0 Following
11 Favorites
中下水平 Rails 程序员
Reward
GitHub Public Repos
  • writings 940

    [Closed] Source code of writings.io

  • alipay 731

    Unofficial alipay ruby gem

  • code_campo 291

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

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

    **no longer maintained**

  • 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

  • rails-app 7

    A Rails project template lets me start new projects quickly.

More on GitHub
  • Overview
  • Topics
  • Replies
  • Favorites
  • Following
  • Followers
  • 为什么大家不去翻译 Rails Guides at September 12, 2013

    #44 楼 @ytwman 谁规定的?

  • HTML5 有效改善用户体验~ at September 12, 2013

    https://github.com/blueimp/jQuery-File-Upload 这个照顾了 IE6 等老浏览器。

    如果不用兼容的话自己调用原生的 File API 还简单一些。

  • 各位有谁对枕头比较有研究的? at September 12, 2013

    我想试试膝枕

  • 为什么大家不去翻译 Rails Guides at September 12, 2013

    #21 楼 @zhibin_ https://github.com/ruby-china/rails-guides

  • 好奇的一问,国内有哪些公司是类似 37signals 这样的? at September 12, 2013

    印象中彩程比较像 http://mycolorway.com/

  • DHH, A PERSONAL INTERVIEW (PART 1) at September 12, 2013

    果然配图是赛车

  • 为什么大家不去翻译 Rails Guides at September 12, 2013

    与其写新书,确实不如翻译官方文档。

    但是我温饱问题没解决,现在无暇参与。

  • 求一个定时任务的解决方案 at September 11, 2013

    以前我工作的时候碰到个类似的任务,让用户绑定微博帐号,然后在个人页面显示最新微博。

    后来我提议用微博嵌入挂件,改改样式,搞掂了。

  • 求一个定时任务的解决方案 at September 11, 2013

    用 cron 执行定时任务,每 30 分钟把设置 30 分钟的用户任务推入任务队列,不同设置的用户用不同的 cron。不同设置的用户还可以区分不同队列。

    任务 worker 就是来任务就执行,注意监控队列大小,任务增长速度大于处理速度就要加线程/进程/机器。

  • 作息不规律,长期熬夜,以及压力过大导致开复老师的癌症 at September 11, 2013

    创建了健康节点。不过我很奇怪为什么要对“分享”和“其它”节点视而不见,非要发瞎扯淡。

  • 论坛里有谁近期去美国吗? at September 11, 2013

    不是同步发售么。

  • 简洁,更简洁 at September 10, 2013

    #27 楼 @jamchange 写作最重要的是将内容传播出去,包装逐渐就不太在乎了。

  • Github 如何 pull at September 10, 2013

    #1 楼 @Lax

    想让一个从没用过 git 的人在网页界面下搞定一些简单的操作

  • threads.*** do 后面是什么意思 at September 09, 2013

    楼主看什么书,看到 block 那一节。

  • 请教,bootstrap 里有没有让 DIV 悬浮在浏览器底部的功能? at September 09, 2013

    #2 楼 @tyaccp_guojian 故意留点瑕疵。

  • 请教,bootstrap 里有没有让 DIV 悬浮在浏览器底部的功能? at September 09, 2013

    这也要插件?

    .name {
      position: fixed;
      bottom: 0;
    }
    
  • 哪一个 ajax 文件上传框架跨平台能力最好? at September 09, 2013

    #2 楼 @lvjian700 已经有了 https://developer.mozilla.org/en-US/docs/Using_files_from_web_applications#Example.3A_Uploading_a_user-selected_file

    现在 iframe 拿来做低版本兼容。

  • Windows XP 下的 Ruby 升级不到 2.0 么? at September 09, 2013

    装 rubyinstaller 的 2.0 版

  • 随手摘 - Vim 官方教程 “精编版” at September 08, 2013

    我觉得懒是学不会的。

  • 写给大家看的 Rails 部署:第一篇 简单快捷的部署方案 at September 08, 2013

    #51 楼 @cqcn1991 旧博客废弃了,旧文章我看看也过时了,有空我更新一下内容重发一篇。

    如果很急要找以前的内容可以看这里 https://github.com/chloerei/chloerei.com/tree/master/tech/_posts

  • Bootstrap 有没有好用、美观一点的弹层插件,类似于 Fancybox 的。 at September 08, 2013

    写得不如 bootstrap 好,不如参考 bootstrap。

  • Bootstrap 有没有好用、美观一点的弹层插件,类似于 Fancybox 的。 at September 08, 2013

    writings.io 的弹出框是自己写的,跟 bootstrap 的实现比较像。

    bootstrap 的样式不佳,就是拿来定制的啊。

  • Optional source for `bundle install` at September 08, 2013

    感觉可以啊,有试过吗?

  • Ruby2.0 后 yield 只能接收一个参数了么? at September 08, 2013

    如果格式化好你自己就能看出问题

    def math (a,b)
          yield(a,b)
    end
    def teach_math(x,y,&operation) 
            puts “let's do the  math” 
            puts math (x,y,&operation) 
    end
    
    teach_math(2,3)  {     |  c,d  |      c*d  }                      #==>  Let's  do the math
                                                                                                   6
    
  • Ruby2.0 后 yield 只能接收一个参数了么? at September 08, 2013

    楼主请把代码格式化好,是否对格式有着苛刻的自我要求跟你这次遇到的问题是有关的。

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

  • 简洁,更简洁 at September 07, 2013

    #24 楼 @kongkong Happy writing : )

  • 简洁,更简洁 at September 07, 2013

    #22 楼 @kongkong 因为容量是有直接成本的,合适的时候我会发布更高的套餐提供更大的容量。其实 1G 已经很宽裕了。

  • 简洁,更简洁 at September 07, 2013

    #20 楼 @kongkong 做文章配图很足够,我的主博客 blog.chloerei.com 写了半年用了 9.6 MB。用来做相册就不够了。

  • 简洁,更简洁 at September 07, 2013

    #13 楼 @Peter 我也不喜欢 gmail 的工具栏,鼠标放上去出现,移开又消失很让人抓狂。

  • 简洁,更简洁 at September 07, 2013

    #16 楼 @jasli2 我曾经做过 Z 型,但是一切换到 I 型就顿时高端大气了,而且三个图片的内容区域是对齐的。

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