#36 楼 @andor_chen +1
#1 楼 @blacktulip x 是基准,把小于或等于 x 的放在 x 的左边,大于 x 的放在 x 右边.....
#7 楼 @blacktulip 对啊 说说怎么解决的
rvm pkg install readline 试试
#1 楼 @lisa_zhao 怎么没有薪资范围呢
#1 楼 @blacktulip 这个就得从思想上去入手了,比如 between,不应该想的是大于 0,小于 7,应该想在 0 和 7 之间,这种 ruby 一般会有方法,然后看文档呗
#45 楼 @zhangjinzhu 赞 大赞
#42 楼 @RainFlying 这个我十二万分的赞同
#33 楼 @RainFlying 哪里不靠谱了哦
#17 楼 @jiyinyiyong 没在 mac 上装过 arch,不过键盘布局可以是 mac 的
~ ll /usr/share/kbd/keymaps/ppc
lrwxrwxrwx 1 root root 26 7月 30 17:13 /usr/share/kbd/keymaps/ppc -> /usr/share/kbd/keymaps/mac
我的触摸板只支持两指 键盘定制可以用 xmodmap
如果是 gnome 可以用 gnome-tweak-tools
女程序员....mark 一下
可以用插件作弊,,,
用 FireBreath+js 就可以了,可以调用 c 和 c++, 想干什么都行
我写了个小例子
https://github.com/towonzhou/firebreath/blob/master/example.md
正式公司还是劳务外派啊?
有兴趣,但英文口语不太好
想搞 nodejs 职位,在烟台办公么?
#1 楼 @sunzhigang 男神回复好快
class Exercise < ActiveRecord::Base
attr_accessible :code, :file_in, :file_out, :text, :title
before_save :issave
before_update :isupdate
before_create :iscreate
#validates :text, :length => { :is => 2 }
#validates_length_of :text, is: 2
def issave
p "save"
end
def iscreate
p "create"
end
def isupdate
p "update"
end
end
>>test = Exercise.create!(text: "ae") 输出的是 "save" "create"
>>test = Exercise.find(1) >>test = Exercise.update_attribute(:text, "hello") 输出的是 "save" "update"