middleware 实际上有一部分就是处理 app 之后的。
当前服务器是当前请求设备的 ip, 还是当前处理服务器的 ip 呢?
:plus1:
喜欢这类小文...
mac + vim + tmux + vagrant(ubuntu) + 各种 (ruby, rails)
玩点小应用
#30 楼 @meeasyhappy 不是说 a == b 获取到 差值,而是说 Ruby 在内部使用 C 函数 memcmp 来实现 ==
方法,你可以看一下这个 C 函数
:plus1: 支持
加油
#你为何总是这么吊#
一般的我做法是 order('id desc')
buffer
贴个 log 上来,我访问挺快的。
A Rake task is basically a block. A block, except lambdas, doesn't support return but you can skip to the next statement using next which in a rake task has the same effect of using return in a method.
task :foo do
puts "printed"
next
puts "never printed"
end
Or you can move the code in a method and use return in the method.
task :foo do
do_something
end
def do_something
puts "startd"
return
puts "end"
end
I prefer the second choice.
http://stackoverflow.com/questions/2316475/how-do-i-return-early-from-a-rake-task
熟悉了这么多语言,却依然过不好这一生。
#19 楼 @linjunhalida 让我也听听把。
@huobazi +1
还可以,但是最近几天有点问题