#1 楼 @fresh_fish Well, obviously I DO want to keep verifing authenticity token, but just don't need them in the form
别说啥 G T,我连 4 级都没考,高中毕业后就没专门碰过英语,光吃高中老本了……但就我这水平,平时看资料文档纪录片啥的,总是感觉英文比中文更好懂,不知道为啥……难道是因为英语信息冗余度大么……
前面有人说"看到其他领域的就撑不住了",其实那啥,相关领域要是英文撑不住,翻成对应的中文也大概不见得撑得住……
比方说把Gibbs free energy
翻成自由焓
并不能促进理解,反正当年我上课没整明白的热力学后来直接裸看(连字幕都没……)斯坦福的一个 statistical mechanics 公开课视频给整明白了
小声的说,ruby-china 是我现在唯二经常在用的国内网站……另一个是 b 站……
Status: 204 我觉得会不会是因为在 controller 里面没加 respond_to :json
……
#1 楼 @huacnlee 模拟是为了浏览器兼容吧,但是直接用 put 应该也是可以的啊,至少我这用 angular.js update 直接用 PUT 没啥问题……
# angular/services/restful.js.coffee
# index: GET '/resource.json'
# save: POST '/resource.json'
# get: GET '/resource/:id.json'
# update: PUT '/resource/:id.json'
# edit: GET '/resource/:id/edit.json'
# new: GET just use get, id: 'new'
app.factory('RESTful', ['$resource',
($resource)->
(resource_name) ->
url = "/#{resource_name}/:id:format"
defaults={format: '.json', id: '@id'}
actions = {
index:
id: ''
url: "/#{resource_name}:format"
method: 'GET'
isArray:false
edit:
url: "/#{resource_name}/:id/edit:format"
method: 'GET'
update:
method: 'PUT'
save:
url: "/#{resource_name}:format"
method: 'POST'
}
$resource url, defaults, actions
])
用 jquery put 的话倒是没试,因为已经把 jquery 去掉了……
你需要一款能明显区分中文和英文标点的字体……
有时这样的用法也挺有用的:
class << self
private
def some_private_method
end
end
#13 楼 @darkbaby123 我也刚学,不太清楚所以要问……不过刚试了下,ng-include 是可以嵌套的,controller 应该也是可以嵌套的,我看到过实作一个页面有 3 个 controller 的: goodfil.ms, 他们貌似用 6 个 controller 就完成整个 app 的功能了 实际上 angularjs 的 controller 不是应该完全不管页面结构,只管业务逻辑的么,跟模板有啥关系……
#11 楼 @darkbaby123 ng-include 原来不可以嵌套的么?
#5 楼 @john1king 深色系用透明背景比较舒服……
我是这样的: guard + rspec + pry(其实 guard 自带的) 先写测试,然后写实现,搞着搞着就通过了, 要是实在出问题弄不明白就加断点看…… vim 设个快捷键插入 binding.pry
调布局感觉用 tilt 比 firebug 好用,更直观一点
这个如何 http://www.webdesignerdepot.com/ 如果觉得 talk is cheap,show me the code,那么还是这个好 http://codepen.io
额……居然 google 翻东西的时候挖到这个贴子出来…… 我觉得配合ccze效果更好:
tail -f log/development.log | ccze -A -o noscroll
dd if=/dev/sda of=/root/sda_mbr_date +%Y%m%d
.bak bs=512 count=1
若干年之后
sudo dd if=/root/sda_mbr_20100713.bak of=/dev/sda && sudo reboot
按下回车才想起来期间调整过分区结构……
rails 里面再调用 api 走两次网络请求
弱问为啥会有两次网络请求呢,不是就一个 json 么……
直接把 git config 设置 autocrlf = input
囧,这技术栈跟我现在用的一模一样……
去看了原文,才发现原来百度是可以用来 ping 啊……
可怜我一直都是 echo '74.125.128.99 www.baidu.com' >> /etc/hosts
什么的
用 pry 加个断点 ls 一下
#7 楼 @NonTwitter 开平方最经典的不是这个么:
float Q_rsqrt( float number )
{
long i;
float x2, y;
const float threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil floating point bit level hacking(对浮点数的邪恶位级hack)
i = 0x5f3759df - ( i >> 1 ); // what the fuck?(这他妈的是怎么回事?)
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration (第一次牛顿迭代)
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed(第二次迭代,可以删除)
return y;
}
我的意思是像这种:用到了某巨大的富文本编辑器, 对一般浏览用户不是必须的,所以只在用户需要编辑时载入, 而编辑时又不会使用服务器资源不需要刷新页面,那么正常也只载入一次 这样对只看不写的 80% 的一般人来说,大概可以省掉他们载入时间吧
doctype html html head title = title = render "layouts/stylesheet" = javascript_include_tag "application" body = render "layouts/header" .container = notice_message = yield
= yield :skip_container
= render 'shared/uploader_footer' if needs_uploader? = javascript_include_tag "editor" if needs_editor?