很多用户用手机刷论坛,看图片的文字会非常吃力。
楼主如果把图片换成文本的 code,就更赞了。
markdown 代码排版格式
```ruby
puts 1
puts 2
puts 3
```
帮你排个版
list 中有段落时,要缩进四个空格。
代码请高亮
活到老学到老,拥抱新技术自己就不会过时。
幻想学好 Rails 后能够一劳永逸,最容易过时。
搜索提示的排序有两种策略:
根据 tag 数量:文件加此 tag 时,counter +1
根据 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()
身体、家庭都是玻璃球,工作是弹力球,所以工作排到了第五位。
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.
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.
Do housework for Angela (my wife)
Encourage her to exercise/study
Delicate moments with Angela
Chat with my Grandpa/Grandma, my father and mother every week.
reading
writing
learn how to code like a master
review my Anki flashcards
design/coding
Prepare lunch for Sunday
Study bible for cell group leading
Communicate with members in cell group
Social activities
Online SNS tools, such as WeChat moments, Weibo, Zhihu and so on.
技术工作只是一部分,还要很多额外的工作还包括:
如果想让自己的邮件不进垃圾箱,最佳实践就是:不发垃圾邮件。
刚起步那段时间学习曲线陡峭,速度总是慢的,日积月累就越来越快了。楼主不要灰心,加油。
可以用动物名(或魔戒人物)作为机器的名字,团队内部沟通起来很方便,也很有趣。
这是 Vincent 教给我的,哈哈。
:plus1:
楼主有没有订阅 Ruby Weekly?里面有不少值得翻译的好文章。
@nightire 很喜欢你这种认真回答的风格,每篇都可以单独成为一篇精华帖。
请仔细排排版,不知道你在说什么
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 也皆不同。
我有个疑问:如果对象的实例变量在 Robject 中是个数组,它的 key 在哪呢?
Ruby 的对象是一堆的实例变量,加上指向类的引用。假如你自己在 Ruby 中定义了一个类,那么这个类的对象在 C 中是通过 Robject Structure 来实现。
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.)
为了性能,一些简单的 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 requirements
会列出一堆的依赖,都安装了吗?
下次记得给代码排版,语法:
```bash
```
开发速度好快
收到客户端请求后,去访问一些远端服务,得到数据,写数据库。
很有可能 external request 把你的 web server 的进程 block 住了。
你换成 puma 会好一些。(最多阻塞一个线程,而不是一个进程)
整个重构过程写的很详细,但缺少了两个重要信息:
建议楼主补齐,否则其他人无法做更加深入的探讨。
这是我的版本,供参考:
FactoryGirl.define do
# user
factory :user do
# 动态 name,可创建多个用户
name { SecureRand.hex }
end
end
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