要不绕一下?用 bash 和 scp 命令算了?前面是坑我们除了跳,还可以绕。。
#/bin/bash
bzip2 -kf ../server/db/time_inout.sqlite3
scp -i ~/.ssh/server_id_rsa ../server/db/time_inout.sqlite3.bz2 user@hostname:server/db/time_inout.sqlite3.bz2
ssh -i ~/.ssh/server_id_rsa user@hostname 'bunzip2 -f ~/server/db/time_inout.sqlite3.bz2'
做的很不错啦!比我当年强多了。
四十二楼被占了。。。
好像升级到 4.1,get 返回 RJS 也是安全的了:
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end
For Rails 4.1: https://github.com/rails/rails/pull/13345
Since we don't know the response format until rendering, it's simplest to use an after_action to verify that we aren't serving JS to a non-XHR GET request.
This piggybacks on the same protect_from_forgery
declarations that
apps already use, so they'll transparently get protection without
changing anything.
Apps that intentionally expose JavaScript responses (like third-party
widgets, per-customer API embeds, etc) will need to exclude those
actions using existing protect_from_forgery
API.
Thanks everyone for the (long) discussion and thanks to Egor for the initial report - months ago now! - and this reminder.
讨论好长。。。 反正我经常用,好像不要用在 get 的时候返回 RJS 就好了?
#1 楼 @leekelby 那就要用active_attr?
买来的 CSS 和 JS 是压缩?那就意味着无需修改只要写 HTML 啊,因为压缩的就是不让你改啊!
试了,可以,开了 2 step verify,没有用代理。
刚升级,发现rake test:all
下面的 controller test 会测试 render 出来的 HTML 标记的是否闭合了!
目测 Rails 社区里 TypeScript 多半火不起来。连 server 端语言咱都玩的是动态类型,web 端会有人容忍一个静态类型安全语言?
#13 楼 @317583395 这样其实不好,不 rails way,呵呵。。
解了,PR,先顺手升级所有 gems 到最新版,然后开始准备解,发现就好了。。。
读一下bootstrap-sass的 readme?或者给个 git 的源码地址? 单纯看报错看不出啥问题。。
不用那么烦吧,oci8 足以。
require 'oci8'
conn=OCI8.new('username','password','DB')
co_la_sql = """
SELECT co.containername, la.stdmrgebatch
FROM container co
INNER JOIN a_scheduledata sd on sd.scheduledataid=co.scheduledataid
INNER JOIN a_lotattributes la ON la.containerid=co.containerid
WHERE co.batchno IS NULL AND la.stdmrgebatch IS NOT NULL
AND la.stdmrgebatch like 'M%'
"""
containernames = []
stdmrgebatch = []
conn.exec(co_la_sql) do |r|
containernames << r[0]
stdmrgebatch << r[1]
end
containernames.each_with_index do |id, i|
sql = "UPDATE container co SET co.batchno='#{stdmrgebatch[i]}', co.changecount=co.changecount+1 WHERE co.containername IN ('#{id}')"
puts sql + ";\n"
num_rows = conn.exec(sql)
puts "#{num_rows} rows updated."
end
conn.exec "commit"
conn.logoff
这腿好内八。。
ruby-2.0.0-p451, rails 4.0.4 & 3.2.17
调用 Oracle procedure 你应该用ruby-plsql这个 gem,而不是直接用 ruby-oci8
这排行榜的公司绝对弯微软,只要是微软系的都上升!
另外随便查了下文档,如果报 could not create any TCP/IP sockets,可以改/etc/postgresql/9.3/main/postgresql.conf
换个端口试试 (比如 port 改为 5433)。
我没用过cubian,我只能说 ubuntu 12.04 的 pg 缺省源安装肯定可以启动的。。
如果你默认安装 pg,啥都不改,然后不能启动,这可能是一个发行版的 bug。。
开两个贴问一个问题真的很不礼貌哦。。
host: localhost
改host: 10.0.0.5
试试?
其实不建议改任何 postgresql 设置,默认本机 unix socket 侦听是最安全的。
然后 rails 里面这样配,不用 host 和 password 的。。
production:
adapter: postgresql
encoding: unicode
database: sanmate_prd
port: 5433
pool: 5
username: sanmate
其实 Mac 最大的缺点是:太贵。。。
gem install [package_name_with_version in gems cache folder].gem