用 !=
的话不能用到索引,建议用 in
每天看美剧,要坚持
998
楼主,不好意思,请问下能让你的头像不动吗。。。。。
看起来你是用 apache 用户启动 Apache 的。用 su 切换到 apache 这个用户,你能进入项目,并打开文件吗?(随便打开个)
权限的话,能否使用 apache2-mpm-itk 模块来设置虚拟主机的用户、用户组?
标题很水 +1
1 在 application.rb 是不是配置了 config.assets.prefix?默认这个值是
config.assets.prefix = "/assets"
2 它和 ENV['RAILS_RELATIVE_URL_ROOT']
这个环境变量有关,你有没有设置过呢?
close 后文件描述符就没有了吧?应该是重新打开文件?
convert -size 400x300 xc:white \
a.png -geometry +50+50 -composite \
b.png -geometry +100+25 -composite \
output.png
解释一下:第一行是画一个白色的背景画布;第二行是把 a.png 画在 (50, 50) 坐标上;第三行把 b.png 画在 (100, 25) 坐标上。
如果你想用 carrier_wave + mini_magick 结合的话,可以参考这个 gist
用 Image Magick 的 composite 选项
iPad 看书费眼睛
据说是厦门和成都
楼上正解。
每年有很多应届生去 MTK,楼主应该问他们。
在主要的网站使用相同的 ID、头像,挺好的。前提是这个 ID 不要太普遍。。。
在深圳的话就想试试了。可惜在广州,我唔识讲白话
今天刚做了个 sidekiq 和 celluloid 的讲座……
celluloid 也有个视频,confreaks 上的~ http://www.confreaks.com/videos/1302-rubyconf2012-the-celluloid-ecosystem
大写字母开头的是 变量 常量
$
开头的是全局变量
Thank LZ. :)
Good taste...
中间人攻击?
User.current 这种用法,从 redmine 里来的吧 XD
传送门 https://github.com/redmine/redmine/blob/2.3.2/app/models/user.rb#L590
def self.current=(user)
Thread.current[:current_user] = user
end
def self.current
Thread.current[:current_user] ||= User.anonymous
end