• Redis 实现自动输入完成 at November 11, 2015

    #7 楼 @xiaoronglv 👍

    很多用户用手机刷论坛,看图片的文字会非常吃力。

  • Redis 实现自动输入完成 at November 11, 2015

    楼主如果把图片换成文本的 code,就更赞了。

    markdown 代码排版格式

    ```ruby
      puts 1
      puts 2
      puts 3
    ```
    
  • Rails 在高并发下的性价比 at November 11, 2015

    #9 楼 @tangmonk 按你的访问量,估计连 1000 request/second 都达不到。

    可以先把云主机加到 6 台,看一下 newrelic 中的流量,观察一两周,然后根据流量调整实例的数量。

  • 帮你排个版 😄

    1. list 中有段落时,要缩进四个空格。

    2. 代码请高亮

  • #1 楼 @qhwa 这读写速度好快啊。

  • 活到老学到老,拥抱新技术自己就不会过时。

    幻想学好 Rails 后能够一劳永逸,最容易过时。

    😄

  • #4 楼 @chairy11 我也以为用 cap 就算自动了,哈哈。

  • Redis 实现自动输入完成 at November 11, 2015

    搜索提示的排序有两种策略:

    1. 根据 tag 数量:文件加此 tag 时,counter +1

    2. 根据 tag 被用户搜索的次数:用户每搜索一次,这个 tag 的 counter +1。

    我在丁香园的时候,第二种策略用户体验更好一些。

  • Ruby Weekly 曾推荐过一篇关于 Data Ojbect 文章,能帮上楼主的忙吗?

    http://brewhouse.io/2015/07/31/be-nice-to-others-and-your-future-self-use-data-objects.html

    class Card
      include Virtus.model
    
      attribute :url, String 
      attribute :data, String
      attribute :type, String
      attribute :style, String
      attribute :id, Integer
    end
    
    class Header
      include Virtus.model
    
      attribute :title, String
      attribute :menu, String
      attribute :icon, String
    end
    
    
    class Template
      include Virtus.model
    
      attribute :menu, String
      attribute :cards, Array[Card]
    end
    
    
    Card.new(card_params)
    Header.new(head_params)
    Template.new()
    
  • 身体、家庭都是玻璃球,工作是弹力球,所以工作排到了第五位。

    no1. God

    • Pray

    • Study Bible

    Some of you may be asking, “Why is God so important, even more than your family and yourself?”

    Because God is our strength and refuge, an ever present help in trouble.

    no2. Self

    • Sleep more than 7.5 hours
    • Healthy eating
    • Exercise 1 hour

    Some of you may be asking, “Why do you love yourself so much, even more than your wife, your work?

    Because Health is foundation of everything. Without health, you are unable to take care your family, love your friends and make money.

    no3. Family

    • Do housework for Angela (my wife)

      • take out the trash
      • boil water
      • prepare breakfast
    • Encourage her to exercise/study

    • Delicate moments with Angela

      • go to movies
      • have dinner at Satuday
    • Chat with my Grandpa/Grandma, my father and mother every week.

    no4. Learning

    • reading

    • writing

    • learn how to code like a master

    • review my Anki flashcards

    no5. Work

    design/coding

    no6. Church

    Prepare lunch for Sunday

    Study bible for cell group leading

    Communicate with members in cell group

    no7. Others

    • Shopping
    • Social activities

    • Online SNS tools, such as WeChat moments, Weibo, Zhihu and so on.

    http://mednoter.com/todo-list.html

  • 推荐的 EDM 服务商

    • mailgun +1,国内国外的到大理都很高。
    • sendcloud + 1,国内口碑不错。

    自己搭建 Mail server

    技术工作只是一部分,还要很多额外的工作还包括:

    1. 疏通与各个邮件服务商的关系
    2. SPF
    3. DKMI
    4. IP 预热

    如果想让自己的邮件不进垃圾箱,最佳实践就是:不发垃圾邮件。

  • 刚起步那段时间学习曲线陡峭,速度总是慢的,日积月累就越来越快了。楼主不要灰心,加油。

  • 关于 Rails 项目的一点问题 at November 04, 2015
  • 可以用动物名(或魔戒人物)作为机器的名字,团队内部沟通起来很方便,也很有趣。

    • dog - mongodb
    • tiger - web server
    • cat - mysql
    • snake - nginx

    这是 Vincent 教给我的,哈哈。

  • :plus1:

    楼主有没有订阅 Ruby Weekly?里面有不少值得翻译的好文章。

  • @nightire 很喜欢你这种认真回答的风格,每篇都可以单独成为一篇精华帖。

  • 请仔细排排版,不知道你在说什么

    排版帮助手册:https://ruby-china.org/markdown

  • #7 楼 @nowherekai

    RClass 的代码我也读过一部分,还没完全读完读懂。我想把我的问题表达的更具体一些,便于讨论。

    class B
    
    end
    
    b1 = B.new
    b1.instance_eval{
      @a = 1
      @b = 2
    }
    
    b2 = B.new
    b2.instance_eval{
      @c = 1
      @d = 2
    }
    

    同一个类不同对象的实例变量千差万别,key 也皆不同。

    • key 是存在同一个 RClass 中吗?
    • 或者,key 存在每个对象的 eigenclass 的 RClass 中?
  • 我有个疑问:如果对象的实例变量在 Robject 中是个数组,它的 key 在哪呢?

  • 左方:Ruby 的对象是用 hash 实现的(错了。曾经是哈希,现在是数组)

    Ruby 的对象是一堆的实例变量,加上指向类的引用。假如你自己在 Ruby 中定义了一个类,那么这个类的对象在 C 中是通过 Robject Structure 来实现。

    1. 其实例变量的保存形式是数组,不是哈希。(Ruby 1.8.7 其对象的实例变量是个哈希)
    2. klass 指向其类

    As you can see, each klass value points to the Mathematician RClass struc- ture, and each RObject structure has a separate array of instance variables. Both arrays contain VALUE pointers—the same pointer that Ruby uses to refer to the RObject structure. (Notice that one of the objects contains two instance variables, while the other contains only one.)

    右方:Ruby 对象的本质就是对象(这种说法也不太贴切)

    为了性能,一些简单的 value,比如 1, 2, 3, 4, 5,虽然是对象,但 Ruby 不使用任何 structure 来实现。

    As a performance optimization, Ruby saves small integers, symbols, and a few other simple values with- out any structure at all, placing them right inside the VALUE pointer, as shown in Figure 5-5.

    推荐两位阅读《Ruby under a microscope》

  • cool!

  • 用 RVM 安装 ruby-2.2.0 出错 at October 29, 2015

    这个错误我从没有碰到过。在终端中执行 rvm requirements 会列出一堆的依赖,都安装了吗?

    下次记得给代码排版,语法:

    ```bash
    
    ```
    
  • #32 楼 @tzwm

    Hi, 俊喆,我把你回贴中的照片整理到主贴了,并且声明了出处。

  • RubyConf China 2015 资源汇总 at October 27, 2015

    #97 楼 @jasl 辛苦了。

  • #12 楼 @birbird

    你的线程数配的太多了,额外增加了很多线程切换的开销。假如你的机器是 4 核,可以这样配置:4 个进程 x 16 个线程。

    PS: Puma 每个进程 130M 左右,4 个进程的内存开销不会超过 1G。

  • 开发速度好快

  • 收到客户端请求后,去访问一些远端服务,得到数据,写数据库。

    很有可能 external request 把你的 web server 的进程 block 住了。

    你换成 puma 会好一些。(最多阻塞一个线程,而不是一个进程)

  • 整个重构过程写的很详细,但缺少了两个重要信息:

    1. Transaction isolation level
    2. user_block_status 表的索引结构

    建议楼主补齐,否则其他人无法做更加深入的探讨。

  • 这是我的版本,供参考:

    users.rb

    FactoryGirl.define do
      # user
      factory :user do
        # 动态 name,可创建多个用户
        name { SecureRand.hex }
      end
    end
    

    posts.rb

    FactoryGirl.define do
      factory :post do
        user { create :user }
        title "Title"
        content "Content"
    
        trait :with_comments do 
          ignore do 
            number_of_comments 3 
          end
    
          after :create do |post, evaluator|
            FactoryGirl.create_list :comment, evaluator.number_of_comments, :post => post
            post.reload
          end
        end
      end
    end
    

    各种使用场景

    创建 user1: user1 = create :user

    创建 user2: user2 = create :user

    创建一个 post: post = create :post

    创建一个含有 3 个 comments 的 post: post = create :post, :with_comments, :number_of_comments => 3

    楼主的场景

    def setup
      @post =  create :post, :with_comments, :number_of_comments => 3
      @comment = @post.comments.last
    end
    

    参考资料:FactoryGirl Tips and Tricks

  • #10 楼 @dycalc #5 楼 @hewe

    肉身前往既可,不需要提前报名。 😄