edit 就是出一个 form,update 就是执行更新吧。
我试验 t-bootstrap,似乎很简单,拷贝到 app/assets 下就可以了,不需要写 require。
测试例子,只发现下拉菜单有问题,其他似乎都可用的。
与 twitter bootstrap 没什么区别吧。
tower 可以看看,不是开源的。
拿不准的话,把脚本贴出来,看怎么改。
run 'which nginx'
也可以看一下 etc 下的 nginx 内容,是一个脚本吧。
不错,rack 原来是行李架。
#4 楼 @sandybeauty 不必太在意这个定义。怎么提高水平才是重要的。 我是考虑到现在有很多业余爱好者,所以从零起点开始的。
功能很强。可惜 bundle install 就错了。
谢谢,看上去不错。
上面那段代码理解起来有些难度。
埃拉托斯特尼筛法
埃拉托斯特尼筛法,简称埃氏筛或爱氏筛,是一种公元前 250 年由古希腊数学家埃拉托斯特尼所提出的一种简单检定素数的算法。
#参考wikipedia,求120以内的素数
n=120
primes = Array.new
for i in 0..n-2
primes[i] = i+2
end
index = 0
while primes[index]**2 <= primes.last
prime = primes[index]
primes = primes.select { |x| x == prime || x % prime != 0 }
index += 1
end
p primes
学习下。sinatra 是个好东东。
感觉学习这个靠两个字,逼和泡。有个项目逼着,有点压力,带着问题。泡就是投入时间,天天看。
rails 就像一个迷宫,知识多而散,还有点烦。急不得,没有一两年的功夫是学不好的。
试试原来的 rubygems.org
http://www.ruby-lang.org/en/about/, 这个是对 ruby 的很好的概述。ruby 表面简单,实际 very 复杂。
The Ideals of Ruby’s Creator
Ruby is a language of careful balance. Its creator, Yukihiro “matz” Matsumoto, blended parts of his favorite languages (Perl, Smalltalk, Eiffel, Ada, and Lisp) to form a new language that balanced functional programming with imperative programming.
He has often said that he is “trying to make Ruby natural, not simple,” in a way that mirrors life.
Building on this, he adds:
Ruby is simple in appearance, but is very complex inside, just like our human body.
建议换 linux 吧,windows 听说不太 OK。
命令行上执行:rake db:migrate
还是命令行吧,ide 出问题很难搞的。
不会吧。实验是一样的。
历史一次次证明,没有备份是不行的。在服务器上测试是不严肃的。
还好不是银行存款。