楼主,如果要想彻底整明白的话
http://www.postgresql.org/docs/manuals/
挑你对应的版本,把第一章 Tutorial 和第三章 Server Administration 仔细看一遍。
其实大家的意思就是 RTFM ... 没什么捷径可走。
#1 楼 @shangrenzhidao “We are happy to provide New Zealand work visa sponsorship if you are the right person we are looking for.”
Read the thing.
你的 PostgreSQL 指定的用户没有创建数据库的权限
不清楚,windows 这么小众的系统没用过,想帮楼主也有心无力....
略老...
彩票?
这次我也一行党...
def coushu(n, m)
(1..n).each { |i| (1..n).to_a.combination(i).each { |j| p j if j.inject(:+) == m } }
end
首先得先有能力写成一行,然后才有资格讨论一行好不好...
custom.css.scss 也贴一下
我能想出拆成好几个小方法的代码来,但是不好意思贴,还是等楼下一行党现身吧...
我了个去,居然有招 rubymotion 的人!顶一下
我觉得吧他有点用力过猛了..
#4 楼 @moliliang 免费帐号保存 24 小时,收费帐号一直保存,不是「而且」的关系
据我实验,楼主结论有误。
1] pry(main)> x = [[]] * 4
=> [[], [], [], []]
[2] pry(main)> x
=> [[], [], [], []]
[3] pry(main)> x[0] << 1
=> [1]
[4] pry(main)> x
=> [[1], [1], [1], [1]]
[5] pry(main)> -------------
[5] pry(main)*
[5] pry(main)*
[6] pry(main)> x = [[]] * 4
=> [[], [], [], []]
[7] pry(main)> x
=> [[], [], [], []]
[8] pry(main)> x << 1
=> [[], [], [], [], 1]
[9] pry(main)> x
=> [[], [], [], [], 1]
[10] pry(main)> x[0] << 1
=> [1]
[11] pry(main)> x
=> [[1], [1], [1], [1], 1]
[12] pry(main)>
我估计是这样,这个x = [[]] * 4
是同一个空数组 (的指针) 重复了 4 次,用 x=[[], [], [], []]
才是建立了四个不一样的空数组。
rails 啥版本?
还是自带的最多人用吧,rspec 第二?我是感觉的没有数据支持。
tdd 可以学习,明白是怎么回事,未必每个项目都要用,具体情况具体分析