/play 56k
不是,英语有三级么...考试尤其是语言考试,不太靠谱,学英语看看石康就好了
其实可以写个爬虫程序来判断有没有回帖的...每天邮件好多啊...坟了,自删
在哪写不是问题,问题是我写的太慢了,笔头太慢了...
#12 楼 @andor_chen 神一般的执行力,感谢
要长期干电脑的时候就把AntiRSI这个小软件打开。还有就是不用鼠标。偶尔打 Dota 都用触摸板。还有就是经常跑步。
you can configure your first emacs by Emacs Prelude or Starter-kit. The peepcode has a screencast named 'meet emacs' which is very use ful for beginner. Elisp is not must skill for emacs , actually you only need some basic knowledge . If you really want to study lisp, You can start by The litter schemer.
macruby 和 cocoa?
好像还有 Elisp 跟 VimL,多学几门语言没什么坏处。
ha ,Thanks
#3 楼 @happypeter The chapter github and note is really usefully for me. Thanks for your great work.
GREAT!!!
C+Z....
测试的时候是由 eval 抛出异常,如果不加 _ FILE _ , 和 _ LINE _ 就不会显示文件和行号信息而是直接显示 from (eval) 被 markdown 加斜了...
class A
end
A.class_eval(<<-EOF, __FILE__, __LINE__)
def method_a
puts "calling method_a......"
end
EOF
A.new.method_a("bug")
class_eval.rb:3:in method_a': wrong number of arguments (1 for 0) (ArgumentError)
from class_eval.rb:15:in
class A
end
A.class_eval <<-EOF
def method_b
puts "calling method_b......"
end
EOF
A.new.method_b("bug")
(eval):1:in method_b': wrong number of arguments (1 for 0) (ArgumentError)
from class_eval.rb:16:in