#4 楼 @qinfanpeng 个人使用 Mac 系统,可以使用terminal-notifier
.
FYI: https://github.com/guard/guard/wiki/System-notifications
An RSA key can only encrypt data of a certain size, related to the key size. What you want to do is not what you are doing. RSA is rarely used to encrypt data directly. Instead, a symmetric key (AES, 3DES, or other secure algorithm) is used to encrypt the data using a randomly generated key, and then that key is encrypted with RSA.
From https://groups.google.com/forum/#!topic/rubyonrails-talk/K8nzLZhOOMo
Gemfile
贴一下
楼主给个完整的数据样例比较好让别人帮助你解决。
#2 楼 @qinfanpeng 如果测试包含一堆 log,puts 就被淹没在茫茫大海了。这种情况,可以使用系统通知插件,将报错的地方打出来。
这些事可能有比较紧急的,而插入这些事之后会 delay 之前的计划。
有些时候,明明某人有能力做某事,但是在工作中会说:等 XX 负责的来了搞定。
技术更新快,但是并不是所有的都会成为一个主流和方向。尤其是在初始的时候某技术是不明朗的。btw. 个人偏向后端,前端太烂。。。。
谢谢。Happy New Year !
会有 Mac 版本的计划么?
mackup 还可以备份程序的一些配置文件,这个比较赞。尤其是新装机器时(对于洁癖处女座来说)
@jasl 谢谢。
#24 楼 @alucardpj Republished 还是比较实用和考虑的
同问,有具体预计日期否?谢谢 @jasl
Thinkpad T450s i7
请问视频什么时候出?谢谢
TP 可以黑苹果哦
1+1=2 人肉测试下
#filename: bench_array_and_set.rb
require 'benchmark'
require 'set'
ary = (1..5).to_a
subary = [1, 2, 4]
subset = Set.new(subary)
set = Set.new(ary)
iterations = 10000
Benchmark.bm do |bm|
bm.report('Array & and any?') do
iterations.times { (ary & subary).any? }
end
bm.report('Array all? and include?') do
iterations.times { subary.all?(&ary.method(:include?)) }
end
bm.report('Set with new') do
iterations.times { Set.new(subary).subset? Set.new(ary) }
end
bm.report('Set without new') do
iterations.times { subset.subset? set }
end
end
user system total real
Array & and any? 0.010000 0.000000 0.010000 ( 0.012931)
Array all? and include? 0.020000 0.000000 0.020000 ( 0.023838)
Set with new 0.100000 0.010000 0.110000 ( 0.101239)
Set without new 0.030000 0.000000 0.030000 ( 0.034167)
#13 楼 @317583395 同样看过他很多博文,蛮有质量的
个人局的可以加个 callback,删除后级联删除关联权限
before callback 都会有这样的问题,被坑过。。
激活的菜单 class 没有设置正确
贴一下你这条语句执行的结果:
Post.main(params[:main]).sub(params[:sub]).create_after(params[:date]).limit(params[:count]).order(created_at: :desc).to_sql
踩到地雷,前来拜读下
HTTPS