电脑椅普遍都贵吧,200 应该是比较便宜的了
一票在手,天下我有
类似的有没有 HAML 转 erb 的?
FactoryGirl 或 Fabricate
#7 楼 @datty258 http://developer.baidu.com/map/jsdemo.htm#i7_1 百度文档里有很详细的示例啊
LZ 是想给一个地址的字符串,通过百度 API 生成地图?
#2 楼 @jiwoorico 看源码 https://github.com/rails/rails/blob/797fcdf738a2a2772544731027d4fc5ca9d358bc/actionpack/lib/action_view/helpers/url_helper.rb#L280
这行
url = options.is_a?(String) ? options : url_for(options)
第 2 个参数如果是字符串,则把它当做 form 的 action URL,否则把他当参数传给 url_for
对公司当前已运行系统的熟悉与维护,当前公司主要信息流系统为 OA、Lims、引物合成、基因检测、库存管理、固定资产管理。
啥都要干。。
拜神
#19 楼 @Vincent178 到了
提示信息里写的很清楚了
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option.
加上-k
参数
curl -k -L https://get.rvm.io | bash -s stable --ruby
地方有点小啊
不考虑复杂情况 (仅按空白字符作为分割单词的依据),把基于正则的scan
换成简单的split
,会快一些。。。。
=> cat /tmp/ruby_test1.rb
1000000.times do
'olly olly in come free'.downcase.scan(/[a-zA-Z0-9]+/).group_by{ |elem| elem }
end
=> cat /tmp/ruby_test2.rb
1000000.times do
'olly olly in come free'.downcase.split.group_by{ |elem| elem }
end
=> time ruby /tmp/ruby_test1.rb
real 0m6.860s
user 0m6.823s
sys 0m0.035s
=> time ruby /tmp/ruby_test2.rb
real 0m3.678s
user 0m3.669s
sys 0m0.007s
当然,这点差距可以忽略不计。。。
google yum
, 不过要使用 CentOS 的源 or If you are sure you want Emacs compiled without X window support, pass
--without-x
#10 楼 @blacktulip 恩,这个不是必须的,只是读起来比较舒服,WordParser 是个解析器,他应该parse(解析)
输入内容,这样比 new 读起来语义上更通顺吧
class WordsParser
def self.parse(words)
return new(words)
end
def initialize(words)
@words = words
end
def silent?
@words.nil? || @words.strip.empty?
end
def shout?
@words.upcase == @words
end
def question?
@words.end_with?("?")
end
end
class Bob
def hey(words)
@parser = WordsParser.parse(words)
if @parser.silent?
"Fine. Be that way!"
elsif @parser.shout?
"Woah, chill out!"
elsif @parser.question?
"Sure."
else
"Whatever."
end
end
end
LZ 的分享都是高质量的啊
#117 楼 @hpyhacking 这些可以有