记得很久以前 @shiningray 发过一条饭否印象挺深的:在传播新东西时,我们 80 后 90 后要有耐心。
:trollface:
原先把 css 写成了固定宽度,这样在手机上也有显示问题...
小改下,刚刚交了个 pull-request: https://github.com/ruby-china/ruby-china/pull/31
刚刚收到,感谢 lz 和 ruby-china ^^
#9 楼 @zw963 刚刚 google 了下,印象中 haskell 有段很经典的筛法一句搞定的样子..感觉 rubinius 的那个实现该也是类似的 http://www.haskell.org/haskellwiki/Prime_numbers
刚刚下单付款买了件然后才看到了这个帖子没想到自己有赠送...于是又开心又郁闷中... T T 打包两件可以不 :D
#8 楼 @lidashuang 在学校的,啥时候有空去围观你?XD
#4 楼 @lidashuang 最怕别人来围观
拷贝下 rubinius 中的 Prime 类,不知道这个算法叫什么名字呢..
class Prime
include Enumerable
def initialize
@seed = 1
@primes = []
@counts = []
end
def succ
i = -1
size = @primes.size
while i < size
if i == -1
@seed += 1
i += 1
else
while @seed > @counts[i]
@counts[i] += @primes[i]
end
if @seed != @counts[i]
i += 1
else
i = -1
end
end
end
@primes.push @seed
@counts.push @seed + @seed
return @seed
end
alias next succ
def each
loop do
yield succ
end
end
end
还有宙哥的 rsec :D https://github.com/luikore/rsec
木有 end 的语言里 gg=G 会杯具爆浆的...
不过有时候想,如果让 ruby 社区重新发明一遍 ruby 的话该也是 coffeescript 的那种样子吧...
喜欢 3 号也是
fuckgfw 脚本以及一个『跑完命令弹个 notification』的小脚本
翻译外文资料的话,对译者自身而言是最好的精读方式。翻译会比较花时间,但是找一部好的作品一次精读,花的时间不一定比 n 次粗读更多。
大赞的文章,楼主辛苦了 :D
好中二的帖子... 不过倒挺感兴趣为啥日本那边 vim 党抬不起头来...emacs 压倒性的多数...
比较喜欢吐槽 class_eval 影响的是 instance 而 instance_eval 影响的是 class...
有个朋友是 python 党,算是比较早接触 python 的那帮人。先看了他翻译的 python 教程,后来看着看着 python 不知道怎么就看到了 ruby 那边感觉更对胃口...
openstack 好像可以
scala 该不算简洁的语言吧...
['rʌbi] 念了五年到今年才扳过来.... TvT
+1