https://github.com/chjj/marked 解析速度要快很多
签到!
以前租房子的时候,在赶集上看到地铁边上超便宜的房子,还特么家电全配,拍的照片超好,一看时间不到一刻钟前发布的。 结果打电话去问,已经被租掉了,这特么速度,后来才知道,那些信息根本就是假的,图片是别的地方找来的,其目的就是让你打电话过去,然后给你推荐别的房子
link_to 里有一个"data-over-text
的属性,我是 JS 来切换显示文字的
// over text
// <a href="/painters/1/unfollow" data-over-text="取消关注" data-remote="true">已关注</a>
// <a href="/u/2/unfollow" data-over-text="取消关注" over-rel="#follow-2-text">
// <span id="follow-2-text">已关注</span>
// </a>
$(document).delegate('[data-over-text]', 'mouseover', function() {
var $element = $(this);
var $target = $($element.attr('over-rel'));
$element.data('original', $element.text());
$target = $target.size() > 0 ? $target : $element;
$target.text($element.attr('data-over-text'));
});
$(document).delegate('[data-over-text]', 'mouseout', function() {
var $element = $(this);
var $target = $($element.attr('over-rel'));
$target = $target.size() > 0 ? $target : $element;
$target.text($element.data('original'));
});
我之前的做法是这样: help:
# Painter follow button
def painter_follow_button(painter)
if current_user.favorite? painter
render "painters/followed", :painter => painter
else
render "painters/follow", :painter => painter
end
end
_followed.html.erb
<%= link_to "已关注", unfollow_painter_path(painter), :remote => true, :method => :post, :class => "action", :id => "follow-action", "data-disable-with" => "请稍候...", "data-over-text" => "取消关注" %>
_follow.html.erb
<%= link_to "关注TA", follow_painter_path(painter), :remote => true, :method => :post, :class => "action", :id => "follow-action", "data-disable-with" => "请稍候..." %>
follow.js.erb
$('#follow-action').replaceWith("<%= escape_javascript(render('followed', :painter => @painter)) %>");
unfollow.js.erb
$('#follow-action').replaceWith("<%= escape_javascript(render('follow', :painter => @painter)) %>");
你至少也得写个 README 来说明一下这个插件是用来干嘛的
除了 gitcafe,其它貌似都在赤裸裸的抄袭
出去骑车
块元素最好不要包含在内联元素里面
参加
Ruby Tuesday
dp2 下 command+i 无法显示文件简介
在 10.9 下用 Xcode5 老是 crash,刚把 Xcode4.6.2 升级到 4.6.3 后就没有这个问题了
新婚快乐 @lgn21st 明天去喝喜酒了
我目前不是 BOSS,所以说招与不招都是在扯蛋 作为公司方,如果那个人解决不了你的问题,公司也不会招进去,不过要想清楚,招进去的是人,不是机器 为作个人,当然是要去一个能实现自己价值的地方,但不是一个要改变价值观的地方 互联网是开放并自由的,每个人都有权力表达自己的看法,你不满意,你也可以写 blog 反驳! 除了自己老婆陪着走一条路,人家走什么样的路,关我屁事!我只是偶尔看看风景。
http://bashooka.com/template/404-error-page-html-templates/
太多了,只要你去 Google
<%= link_to content_tag('i', nil, class: "icon-white icon-home") + "Index", root_path %>
Raspberry Pi Audio 音频 https://github.com/miclle/WALL-E/blob/master/Raspberry-Pi/audio.md Raspberry Pi Text to Speech 文本转语音 https://github.com/miclle/WALL-E/blob/master/Raspberry-Pi/Text_to_Speech.md
controller_name
Raspberry Pi Watchdog https://github.com/miclle/WALL-E/blob/master/Raspberry-Pi/watchdog.md